01 2018 档案

摘要:python selenium 使用unittest 示例 并等待某个元素示例 阅读全文
posted @ 2018-01-22 18:53 testway 阅读(342) 评论(0) 推荐(0) 编辑
摘要:使用appium的 Connection 和driver 的setConnection方法,可以切换手机的上网方式 // 切换到wifi Connection cnn = Connection.WIFI; driver.setConnection(cnn); // 切换到手机网络数据 cnn = Connection.DATA; driver.setConnection(cnn); // 切换到... 阅读全文
posted @ 2018-01-11 11:57 testway 阅读(2822) 评论(0) 推荐(0) 编辑
摘要:用adb 命令把图片和uix获取出来,再导入uiautomatorviewer adb shell uiautomator dump /data/local/tmp/uidump.uixadb pull /data/local/tmp/uidump.uixadb shell screencap -p 阅读全文
posted @ 2018-01-11 09:13 testway 阅读(1204) 评论(4) 推荐(0) 编辑
摘要:使用uiautomatorviewer 查看android某些页面元素,出现错误Error obtaining UI hierarchy Reason: Error taking device screenshot: null 使用adb 的screencap 截图,拉取出来的图片大小也为0kb。 阅读全文
posted @ 2018-01-10 17:42 testway 阅读(2503) 评论(2) 推荐(0) 编辑
摘要:if (service == null || !service.isRunning()){ throw new AppiumServerHasNotBeenStartedLocallyException("An appium server node is not started!"); } 示例中 阅读全文
posted @ 2018-01-02 15:07 testway 阅读(1969) 评论(0) 推荐(0) 编辑