Appium自动化测试系列: 2. 使用Appium启动APP(真机)

历史文章:Appium自动化测试系列: 1. Mac安装配置Appium_mac安装appium-CSDN博客

一、准备工作
  1. 安卓测试机打开调试模式,然后使用可以传输数据的数据线连接上你的电脑。注意:你的数据线一定要支持传输数据,有的数据线只支持充电。笔者但是就遇到过这种问题,使用数据线连接手机的时候,怎么到连接不上,排查的半天,最后才知道是数据线的问题。
一、通过Appium启动APP的代码

通过Python客户端启动的代码如下:

python 复制代码
from appium import webdriver

desired_caps = {
    "platformName": "Android",
    "platformVersion": "10", #adb shell getprop ro.build.version.release
    "deviceName": "your device name",
    "appPackage": "your appPackage",
    "appActivity": "appActivity"
}
print(type(desired_caps))
driver = webdriver.Remote("http://localhost:4723", desired_caps)

参数获取方式:

  1. 获取appActivity:这里可以理解启动名或启动页

在终端中执行:adb shell dumpsys activity activities | grep mResumedActivity。

查找当前由用户接触的活动。这个命令会输出一个包含当前活动的字符串,其格式通常是 packageName/activityName

  1. appPackage: 包名,在Android系统中是判断一个App的唯一标识

可以直接看代码,或者咨询开发人员

  1. deviceName:设备名

终端中输入adb devices,返回的一串英文+数字的组合就是

platformVersion也可以不用填,这个没有影响。

填充完毕参数以后开始运行,笔者当时遇到了下面的几个问题:

  1. 报错:

driver = webdriver.Remote("http://localhost:4723", desired_caps)

^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^

File "/Library/Frameworks/Python.framework/Versions/3.11/lib/python3.11/site-packages/appium/webdriver/webdriver.py", line 229, in init

super().init(

File "/Library/Frameworks/Python.framework/Versions/3.11/lib/python3.11/site-packages/selenium/webdriver/remote/webdriver.py", line 188, in init

capabilities = options.to_capabilities()

^^^^^^^^^^^^^^^^^^^^^^^

AttributeError: 'NoneType' object has no attribute 'to_capabilities'

原因是Appium-Python-Client与Selenium版本不兼容,我使用两个包的版本如下:

可能是这两个版本都是最新的,导致的不兼容,下面修改这两个包的版本为:

Appium-Python-Client 2.11.0、Selenium 4.10.0版本

第2个报错是:参数错误,提示没有驱动参数:

在上面的代码中添加:

"automationName": "uiautomator2",

添加好以后,继续运行还是报错,提示没有安装uiautomator2驱动,

运行appium driver install uiautomator2安装驱动,安装成功以后运行:

appium driver list --installed 查看安装是否成功。

除了上面的错误,笔者还启动chrome浏览器遇到以下错误:

No Chromedriver found that can automate Chrome '126.0.6478'. You could also try to enable automated chromedrivers download as a possible workaround.

解决方法:启动appium时允许自动下载chrome,将appium server的启动命令换成:

appium server --allow-insecure chromedriver_autodownload

来源:GitHub - appium/appium-uiautomator2-driver: Appium driver for Android UIAutomator2

相关推荐
niuniu_6663 天前
安全性测试(Security Testing)
测试工具·单元测试·appium·测试·安全性测试
niuniu_6664 天前
appium应用测试场景
功能测试·selenium·测试工具·appium·测试
suimeng64 天前
Appium中元素定位的注意点
appium
suimeng66 天前
Appium中元素定位之一个元素定位API
appium
一禅(OneZen)7 天前
【L2.第二章】Appium 元素定位工具
python·selenium·appium·自动化·web
suimeng67 天前
Appium中元素定位之一组元素定位API
appium
开水好喝9 天前
Appium Inspector使用教程
appium
曦若(xi ruo)18 天前
自动化APP测试APPium的元素等待
运维·appium·自动化
qq_白羊座21 天前
UI自动化:poium测试库使用文档
python·selenium·ui·appium
fantasy_421 天前
Appium高级操作--ActionChains类、Toast元素识别、Hybrid App操作、手机系统API的操作
android·python·appium·自动化