51Testing软件测试论坛

标题: appium测试中出现Original error: Could not find package com.vphone.launcher on... [打印本页]

作者: 测试积点老人    时间: 2021-9-1 15:05
标题: appium测试中出现Original error: Could not find package com.vphone.launcher on...
做appium拖拽操作的相关代码时遇到了如下报错问题,不知道怎么解决,以为是包名错了,但是检查了确实没有问题
  1. selenium.common.exceptions.WebDriverException: Message: An unknown server-side error occurred while processing the command. Original error: Could not find package com.vphone.launcher on the device
复制代码
下面是具体的代码
  1. from appium import webdriver
  2. import time
  3. #连接移动设备所必须的参数
  4. desired_caps={}
  5. #当前要测试的设备的名称,因为一台电脑可能要插几部手机
  6. desired_caps["deviceName"]="127.0.0.1:62001"
  7. # 系统
  8. desired_caps["platformName"]="Android"
  9. # 系统的版本
  10. desired_caps["platformVersion"]="7.1.2"
  11. # 要启动APP的名称(包名)
  12. desired_caps["appPackage"]="com.vphone.launcher"
  13. #要启动的APP的哪个界面
  14. desired_caps["appActivity"]=".launcher3.Launcher"
  15. desired_caps["automationName"]="UiAutomator1"
  16. driver=webdriver.Remote("http://127.0.0.1:4723/wd/hub",desired_capabilities=desired_caps)
  17. time.sleep(1)
  18. el1=driver.find_element_by_xpath("//*[@text='酷安']")
  19. el2=driver.find_element_by_xpath("//*[@text='京东']")
  20. driver.drag_and_drop(el1,el2)
  21. time.sleep(2)
  22. #关闭app
  23. driver.close_app()
  24. #释放资源
  25. driver.quit()
复制代码
哪位可以帮忙看一下?感激不尽

作者: 海海豚    时间: 2021-9-2 09:15
1、检查数据线是否完好;2、手机设置开发者模式,并打开USB用途"传输文件(MTP);3、手机设置 授权安装应用
作者: qqq911    时间: 2021-9-2 11:04
包导入有问题,检查下环境
作者: bellas    时间: 2021-9-2 12:30
按一楼说的
作者: litingting0214    时间: 2021-9-2 16:32
检查是否连接上了




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