测试积点老人 发表于 2021-9-1 15:05:26

appium测试中出现Original error: Could not find package com.vphone.launcher on...

做appium拖拽操作的相关代码时遇到了如下报错问题,不知道怎么解决,以为是包名错了,但是检查了确实没有问题
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下面是具体的代码
from appium import webdriver
import time
#连接移动设备所必须的参数
desired_caps={}
#当前要测试的设备的名称,因为一台电脑可能要插几部手机
desired_caps["deviceName"]="127.0.0.1:62001"
# 系统
desired_caps["platformName"]="Android"
# 系统的版本
desired_caps["platformVersion"]="7.1.2"
# 要启动APP的名称(包名)
desired_caps["appPackage"]="com.vphone.launcher"
#要启动的APP的哪个界面
desired_caps["appActivity"]=".launcher3.Launcher"
desired_caps["automationName"]="UiAutomator1"
driver=webdriver.Remote("http://127.0.0.1:4723/wd/hub",desired_capabilities=desired_caps)
time.sleep(1)
el1=driver.find_element_by_xpath("//*[@text='酷安']")
el2=driver.find_element_by_xpath("//*[@text='京东']")
driver.drag_and_drop(el1,el2)
time.sleep(2)
#关闭app
driver.close_app()
#释放资源
driver.quit()
哪位可以帮忙看一下?感激不尽

海海豚 发表于 2021-9-2 09:15:08

1、检查数据线是否完好;2、手机设置开发者模式,并打开USB用途"传输文件(MTP);3、手机设置 授权安装应用

qqq911 发表于 2021-9-2 11:04:33

包导入有问题,检查下环境

bellas 发表于 2021-9-2 12:30:26

按一楼说的

litingting0214 发表于 2021-9-2 16:32:53

检查是否连接上了
页: [1]
查看完整版本: appium测试中出现Original error: Could not find package com.vphone.launcher on...