51Testing软件测试论坛

标题: appium自动化过程中重启设备后appium进程退出? [打印本页]

作者: 测试积点老人    时间: 2021-7-7 15:16
标题: appium自动化过程中重启设备后appium进程退出?
[size=15.008px]首先定义好driver
  1. desired_caps = {}
  2. desired_caps[‘platformName’] = ‘Android’
  3. desired_caps[‘deviceName’] = device
  4. driver = webdriver.Remote(‘http://127.0.0.1:4723/wd/hub’, desired_caps)
  5. driver.implicitly_wait(20)
复制代码
[size=15.008px]重启设备并等待设备启动后执行元素查找
  1. os.popen(“adb reboot”)
  2. WebDriverWait(driver, time).until(lambda x: x.find_element(by, value))
复制代码
[size=15.008px]报错
  1. Encountered internal error running command: UnknownError: An unknown server-side error occurred while processing the command. Original error: ‘POST /element’ cannot be proxied to UiAutomator2 server because the instrumentation process is not running (probably crashed). Check the server log and/or the logcat output for more details
复制代码



作者: 海海豚    时间: 2021-7-8 09:11
看下服务日志里报的错
作者: bellas    时间: 2021-7-8 10:19
看下输出日志
作者: qqq911    时间: 2021-7-8 10:33
对应进程没有找到
作者: 郭小贱    时间: 2021-7-8 16:44
Check the server log and/or the logcat output for more details,看看具体什么愿意呢。
作者: msnshow    时间: 2021-7-11 17:42
应该要重新跑一下连接才行,你都断开了adb ,UiAutomator2 的连接就断开了




欢迎光临 51Testing软件测试论坛 (http://bbs.51testing.com/) Powered by Discuz! X3.2