/** * return an elements child given the key (context id), or uses the selector * to get the element. * * @param sel * @param key * element id. * @return {@link androidelement} * @throws elementnotfoundexception */ public androidelement getelement(final uiselector sel, final string key) throws elementnotfoundexception { androidelement baseel; baseel = elements.get(key); uiobject el; if (baseel == null) { el = new uiobject(sel); } else { try { el = baseel.getchild(sel); } catch (final uiobjectnotfoundexception e) { throw new elementnotfoundexception(); } } if (el.exists()) { return addelement(el); } else { throw new elementnotfoundexception(); } } |
@runwith(robolectrictestrunner.class) public class myactivitytest { @test public void clickingbutton_shouldchangeresultsviewtext() throws exception { activity activity = robolectric.buildactivity(myactivity.class).create().get(); button pressmebutton = (button) activity.findviewbyid(r.id.press_me_button); textview results = (textview) activity.findviewbyid(r.id.results_text_view); pressmebutton.performclick(); string resultstext = results.gettext().tostring(); assertthat(resultstext, equalto("testing android rocks!")); } } |
public list { list try { string sql = "select * from c"; sqlcommand cmd = new sqlcommand(sql,sqlcon); sqldatareader reader = cmd.executereader(); while (reader.read()) { //将结果集信息添加到返回向量中 list.add(reader[0].tostring()); list.add(reader[1].tostring()); list.add(reader[2].tostring()); } reader.close(); cmd.dispose(); } catch(exception) { } return list; } |
private void setlistview() { listview.setvisibility(view.visible); list list = dbutil.getallinfo(); adapter = new simpleadapter(mainactivity.this, list, r.layout.adapter_item, new string[] { "cno", "cname", "cnum" }, new int[] { r.id.txt_cno, r.id.txt_cname, r.id.txt_cnum }); listview.setadapter(adapter); } |
public list list arraylist.clear(); brraylist.clear(); crraylist.clear(); new thread(new runnable() { @override public void run() { // todo auto-generated method stub crraylist = soap.getwebservre("selectallcargoinfor", arraylist, brraylist); } }).start(); hashmap temphash.put("cno", "cno"); temphash.put("cname", "cname"); temphash.put("cnum", "cnum"); list.add(temphash); for (int j = 0; j < crraylist.size(); j = 3) { hashmap hashmap.put("cno", crraylist.get(j)); hashmap.put("cname", crraylist.get(j 1)); hashmap.put("cnum", crraylist.get(j 2)); list.add(hashmap); } return list; } |
05-02 15:51:40.642: i/system.out(3678): 05-02 15:51:40.647: i/system.out(3678): 05-02 15:51:40.647: i/system.out(3678): soap:envelope xmlns:soap="http://schemas.xmlsoap.org/soap/envelope/" xmlns:xsi="http://www.w3.org/2001/xmlschema-instance" xmlns:xsd="http://www.w3.org/2001/xmlschema" 05-02 15:51:40.647: i/system.out(3678): soap:body 05-02 15:51:40.647: i/system.out(3678): selectallcargoinforresponse xmlns="http://tempuri.org/" 05-02 15:51:40.647: i/system.out(3678): selectallcargoinforresult 05-02 15:51:40.647: i/system.out(3678): 0 05-02 15:51:40.647: i/system.out(3678): string>1 05-02 15:51:40.647: i/system.out(3678): string>rice 05-02 15:51:40.647: i/system.out(3678): string>100 05-02 15:51:40.647: i/system.out(3678): string>2 05-02 15:51:40.652: i/system.out(3678): string>dog 05-02 15:51:40.652: i/system.out(3678): string>50 05-02 15:51:40.652: i/system.out(3678): string>3 05-02 15:51:40.652: i/system.out(3678): string>白痴 05-02 15:51:40.652: i/system.out(3678): string>25 05-02 15:51:40.652: i/system.out(3678): /selectallcargoinforresult 05-02 15:51:40.652: i/system.out(3678): 1 |
private final static int request_success = 1; private final static int request_false = 0; private void requestdata() { arraylist.clear(); brraylist.clear(); crraylist.clear(); new thread(new runnable() { @override public void run() { // todo auto-generated method stub crraylist = soap.getwebservre("selectallcargoinfor", arraylist, brraylist); message msg = new message(); if(crraylist.size()>0) { msg.what = request_success; } else { msg.what = request_false; } // 发送消息 mhandler.sendmessage(msg); } }).start(); } public handler mhandler = new handler(){ // 接收消息 @override public void handlemessage(message msg) { // todo auto-generated method stub super.handlemessage(msg); switch (msg.what) { case request_success: setlistview(); break; case request_false: // 做错误处理 break; default: break; } } }; private void setlistview() { listview.setvisibility(view.visible); list list = dbutil.getallinfo(); adapter = new simpleadapter(mainactivity.this, list, r.layout.adapter_item, new string[] { "cno", "cname", "cnum" }, new int[] { r.id.txt_cno, r.id.txt_cname, r.id.txt_cnum }); listview.setadapter(adapter); } public list list hashmap temphash.put("cno", "cno"); temphash.put("cname", "cname"); temphash.put("cnum", "cnum"); list.add(temphash); for (int j = 0; j < crraylist.size(); j = 3) { hashmap hashmap.put("cno", crraylist.get(j)); hashmap.put("cname", crraylist.get(j 1)); hashmap.put("cnum", crraylist.get(j 2)); list.add(hashmap); } return list; } |
- (void)viewdidload { [super viewdidload]; dlog(@"开启 www.apple.com 的网络检测"); reachability* reach = [reachability reachabilitywithhostname:@"www.apple.com"]; dlog(@"-- current status: %@", reach.currentreachabilitystring); // start the notifier which will cause the reachability object to retain itself! [[nsnotificationcenter defaultcenter] addobserver:self selector:@selector(reachabilitychanged:) name:kreachabilitychangednotification object:nil]; reach.reachableblock = ^(reachability * reachability) { dispatch_async(dispatch_get_main_queue(), ^{ self.blocklabel.text = @"网络可用"; self.blocklabel.backgroundcolor = [uicolor greencolor]; }); }; reach.unreachableblock = ^(reachability * reachability) { dispatch_async(dispatch_get_main_queue(), ^{ self.blocklabel.text = @"网络不可用"; self.blocklabel.backgroundcolor = [uicolor redcolor]; }); }; [reach startnotifier]; } - (void)viewdidload { [super viewdidload]; dlog(@"开启 www.apple.com 的网络检测"); reachability* reach = [reachability reachabilitywithhostname:@"www.apple.com"]; dlog(@"-- current status: %@", reach.currentreachabilitystring); // start the notifier which will cause the reachability object to retain itself! [[nsnotificationcenter defaultcenter] addobserver:self selector:@selector(reachabilitychanged:) name:kreachabilitychangednotification object:nil]; reach.reachableblock = ^(reachability * reachability) { dispatch_async(dispatch_get_main_queue(), ^{ self.blocklabel.text = @"网络可用"; self.blocklabel.backgroundcolor = [uicolor greencolor]; }); }; reach.unreachableblock = ^(reachability * reachability) { dispatch_async(dispatch_get_main_queue(), ^{ self.blocklabel.text = @"网络不可用"; self.blocklabel.backgroundcolor = [uicolor redcolor]; }); }; [reach startnotifier]; } |
- (void)viewdidload { [super viewdidload]; dlog(@"开启 www.apple.com 的网络检测"); reachability* reach = [reachability reachabilitywithhostname:@"www.apple.com"]; dlog(@"-- current status: %@", reach.currentreachabilitystring); // start the notifier which will cause the reachability object to retain itself! [[nsnotificationcenter defaultcenter] addobserver:self selector:@selector(reachabilitychanged:) name:kreachabilitychangednotification object:nil]; [reach startnotifier]; } - (void) reachabilitychanged: (nsnotification*)note { reachability * reach = [note object]; if(![reach isreachable]) { self.notificationlabel.text = @"网络不可用"; self.notificationlabel.backgroundcolor = [uicolor redcolor]; self.wifionlylabel.backgroundcolor = [uicolor redcolor]; self.wwanonlylabel.backgroundcolor = [uicolor redcolor]; return; } self.notificationlabel.text = @"网络可用"; self.notificationlabel.backgroundcolor = [uicolor greencolor]; if (reach.isreachableviawifi) { self.wifionlylabel.backgroundcolor = [uicolor greencolor]; self.wifionlylabel.text = @"当前通过wifi连接"; } else { self.wifionlylabel.backgroundcolor = [uicolor redcolor]; self.wifionlylabel.text = @"wifi未开启,不能用"; } if (reach.isreachableviawwan) { self.wwanonlylabel.backgroundcolor = [uicolor greencolor]; self.wwanonlylabel.text = @"当前通过2g or 3g连接"; } else { self.wwanonlylabel.backgroundcolor = [uicolor redcolor]; self.wwanonlylabel.text = @"2g or 3g网络未使用"; } } - (void)viewdidload { [super viewdidload]; dlog(@"开启 www.apple.com 的网络检测"); reachability* reach = [reachability reachabilitywithhostname:@"www.apple.com"]; dlog(@"-- current status: %@", reach.currentreachabilitystring); // start the notifier which will cause the reachability object to retain itself! [[nsnotificationcenter defaultcenter] addobserver:self selector:@selector(reachabilitychanged:) name:kreachabilitychangednotification object:nil]; [reach startnotifier]; } - (void) reachabilitychanged: (nsnotification*)note { reachability * reach = [note object]; if(![reach isreachable]) { self.notificationlabel.text = @"网络不可用"; self.notificationlabel.backgroundcolor = [uicolor redcolor]; self.wifionlylabel.backgroundcolor = [uicolor redcolor]; self.wwanonlylabel.backgroundcolor = [uicolor redcolor]; return; } self.notificationlabel.text = @"网络可用"; self.notificationlabel.backgroundcolor = [uicolor greencolor]; if (reach.isreachableviawifi) { self.wifionlylabel.backgroundcolor = [uicolor greencolor]; self.wifionlylabel.text = @"当前通过wifi连接"; } else { self.wifionlylabel.backgroundcolor = [uicolor redcolor]; self.wifionlylabel.text = @"wifi未开启,不能用"; } if (reach.isreachableviawwan) { self.wwanonlylabel.backgroundcolor = [uicolor greencolor]; self.wwanonlylabel.text = @"当前通过2g or 3g连接"; } else { self.wwanonlylabel.backgroundcolor = [uicolor redcolor]; self.wwanonlylabel.text = @"2g or 3g网络未使用"; } } |
1 - (void)didreceiveweiboresponse:(wbbaseresponse *)response 2 { 3 if ([response iskindofclass:wbsendmessagetoweiboresponse.class]) 4 { 5 nsstring *title = @"发送结果"; 6 nsstring *message = [nsstring stringwithformat:@"响应状态: %d\n响应userinfo数据: %@\n原请求userinfo数据: %@", 7 response.statuscode, response.userinfo, response.requestuserinfo]; 8 nslog(@"%@", message); 9 } 10 else if ([response iskindofclass:wbauthorizeresponse.class]) 11 { 12 13 self.wbtoken = [(wbauthorizeresponse *)response accesstoken]; 14 15 if (self.wbtoken != nil) { 16 //获取userdefault单例 17 nsuserdefaults *token = [nsuserdefaults standarduserdefaults]; 18 [token setobject:self.wbtoken forkey:@"token"]; 19 } 20 } 21 } |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 |
1 package com.guowen.appiumdemo; 2 3 import org.junit.after; 4 import org.junit.before; 5 import org.junit.test; 6 import org.openqa.selenium.*; 7 import org.openqa.selenium.interactions.hastouchscreen; 8 import org.openqa.selenium.interactions.touchscreen; 9 import org.openqa.selenium.remote.capabilitytype; 10 import org.openqa.selenium.remote.desiredcapabilities; 11 import org.openqa.selenium.remote.remotetouchscreen; 12 import org.openqa.selenium.remote.remotewebdriver; 13 import java.io.file; 14 import java.net.url; 15 import java.util.list; 16 17 public class androidcontactstest { 18 private webdriver driver; 19 20 @before 21 public void setup() throws exception { 22 // set up appium 23 file classpathroot = new file(system.getproperty("user.dir")); 24 file appdir = new file(classpathroot, "apps/contactmanager"); 25 file app = new file(appdir, "contactmanager.apk"); 26 desiredcapabilities capabilities = new desiredcapabilities(); 27 capabilities.setcapability("device","android"); 28 capabilities.setcapability(capabilitytype.browser_name, ""); 29 capabilities.setcapability(capabilitytype.version, "4.4"); 30 capabilities.setcapability(capabilitytype.platform, "windows"); 31 capabilities.setcapability("app", app.getabsolutepath()); 32 capabilities.setcapability("app-package", "com.example.android.contactmanager"); 33 capabilities.setcapability("app-activity", ".contactmanager"); 34 driver = new swipeablewebdriver(new , capabilities); 35 } 36 37 @after 38 public void teardown() throws exception { 39 driver.quit(); 40 } 41 42 @test 43 public void addcontact(){ 44 webelement el = driver.findelement(by.name("add contact")); 45 el.click(); 46 list 47 textfieldslist.get(0).sendkeys("some name"); 48 textfieldslist.get(2).sendkeys("some@example.com"); 49 driver.findelement(by.name("save")).click(); 50 } 51 52 public class swipeablewebdriver extends remotewebdriver implements hastouchscreen { 53 private remotetouchscreen touch; 54 55 public swipeablewebdriver(url remoteaddress, capabilities desiredcapabilities) { 56 super(remoteaddress, desiredcapabilities); 57 touch = new remotetouchscreen(getexecutemethod()); 58 } 59 60 public touchscreen gettouch() { 61 return touch; 62 } 63 } 64 } |
-(void)tapclick:(uitapgesturerecognizer *)tap { cgpoint clickpoint = [tap locationinview:self]; for (uiimageview *imageview in [self subviews]) { if ([imageview.layer.presentationlayer hittest:clickpoint]) { // this button was hit whilst moving - do something with it here break; } } } } |
guowenxie-macbookair:~ guowenxie$ appium-doctor running ios checks xcode is installed at /applications/xcode.app/contents/developer xcode command line tools are not installed: error: command failed: no receipt for 'com.apple.pkg.cltools_executables' found at '/'. fix it (y/n) y press any key to continue: xcode command line tools are installed. devtoolssecurity is enabled. the authorization db is set up properly. node binary found at /usr/local/bin/node ios checks were successful. running android checks android_home is set but does not exist on the file system at "users/guowenxie/documents/adt-bundle_mac-x86_64-20140702/sdk" appium-doctor detected problems. please fix and rerun appium-doctor. |
guowenxie-macbookair:~ guowenxie$ appium-doctor running ios checks xcode is installed at /applications/xcode.app/contents/developer xcode command line tools are installed. devtoolssecurity is enabled. the authorization db is set up properly. node binary found at /usr/local/bin/node ios checks were successful. running android checks android_home is set to "/users/guowenxie/documents/adt-bundle-mac-x86_64-20140702/sdk" java_home is set to "/usr/libexec/java_home." adb exists at /users/guowenxie/documents/adt-bundle-mac-x86_64-20140702/sdk/platform-tools/adb android exists at /users/guowenxie/documents/adt-bundle-mac-x86_64-20140702/sdk/tools/android emulator exists at /users/guowenxie/documents/adt-bundle-mac-x86_64-20140702/sdk/tools/emulator android checks were successful. all checks were successful |
android:label=" for my app"/> |
package name.feisky.android.test; import android.test.androidtestcase; import junit.framework.assert; public class mytest extends androidtestcase { private static final string tag="mytest"; } |
package com.mitalk.test; import android.app.activity; import android.test.activityinstrumentationtestcase2; import com.jayway.android.robotium.solo.solo; @suppresswarnings("rawtypes") public class logintest extends activityinstrumentationtestcase2 { public solo solo; public activity activity; private static class launchactivityclass; // 对应re-sign.jar生成出来的信息框里的两个值 private static string mainactiviy = "com.tencent.mm.ui.launcherui"; private static string packagename = "com.tencent.mm"; static { try { launchactivityclass = class.forname(mainactiviy); } catch (classnotfoundexception e) { throw new runtimeexception(e); } } @suppresswarnings("unchecked") public logintest() { super(packagename, launchactivityclass); } @override protected void setup() throws exception { super.setup(); this.activity = this.getactivity(); // this.solo = new solo(getinstrumentation(), getactivity()); } public void testloginwithincorrentusernameandpassword() throws exception { wait(5000); //待完成 } @override public void teardown() throws exception { try { this.solo.finishopenedactivities(); } catch (throwable e) { e.printstacktrace(); } this.activity.finish(); super.teardown(); } } |