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