Appium自动化测试遇到的chromedriver/chrome坑

一、前言

app的webview自动化是依赖于chromedriver的,并且每个app的webview版本号都不太一样,这就导致了每次都需要重新去下载对应的chromedriver版本。如何根据当前的webdriver版本去匹配对应chromedriver版本,这是一个难题。根据官方文档翻译过来看,版本不匹配的话一般会报错:

An unknown server-side error occurred while processing the command.

Original error: unknown error: Chrome version must be >= 55.0.2883.0

二、Chrome driver启动

用chrome浏览器运行自动化测试用例时,如果报这样的错误selenium.common.exceptions.WebDriverException: Message: unknown error: call function result missing value

可以这样来解决:指定chromedriver.exe驱动绝对路径

driver = webdriver.Chrome(r'e:\xxx\chromedriver.exe')

三、常遇错误

我们在使用native和h5混合的应用程序测试时,可能会遇到报错

E:\ProgramFiles(x86)\Python\Python37\lib\site-packages\selenium\webdriver\remote\webdriver.py:1031:UserWarning: name used for saved screenshot does not match file type. It should end with a `.png` extension。"type. It should end with a `.png` extension", UserWarning)..['NATIVE_APP', 'WEBVIEW_chrome', 'WEBVIEW_com.android.browser']NATIVE_APP

Doctor my center Test Over.E

=====================================================

ERROR: test_e_AboutContact (__main__.center)

----------------------------------------------------------------------

Traceback (most recent call last):File "E:/ATS/TCyDoctorNew/test_case/test_dir/test_4doctormycenter.py", line 371, in test_e_AboutChengyiContact driver.switch_to.context('WEBVIEW_com.android.browser')File"E:\ProgramFiles(x86)\Python\Python37\lib\site-packages\appium\webdriver\switch_to.py", line 31, in contextself._driver.execute(MobileCommand.SWITCH_TO_CONTEXT, {'name': context_name})File"E:\ProgramFiles(x86)\Python\Python37\lib\site-packages\selenium\webdriver\remote\webdriver.py", line 321, in executeself.error_handler.check_response(response)File"E:\ProgramFiles(x86)\Python\Python37\lib\site-packages\appium\webdriver\errorhandler.py", line 29, in check_response raise wdeFile"E:\ProgramFiles(x86)\Python\Python37\lib\site-packages\appium\webdriver\errorhandler.py", line 24, in check_responsesuper(MobileErrorHandler, self).check_response(response)File "E:\Program Files (x86)\Python\Python37\lib\site-packages\selenium\webdriver\remote\errorhandler.py", line 242, in check_responseraise exception_class(message, screen, stacktrace)selenium.common.exceptions.WebDriverException: Message: An unknown server-side error occurred while processing the command. Original error: No Chromedriver found that can automate Chrome '55.0.2883'. See https://github.com/appium/appium/blob/master/docs/en/writing-running-appium/web/chromedriver.md for more details.

----------------------------------------------------------------------

Ran 3 tests in 66.001s

FAILED (errors=1)

Process finished with exit code 0

我们来看报错信息,第一个是warning,是指截图的格式最好是png,这个与本文无关我们先忽略,关键看第二个错误,它主要缘于“No Chromedriver found that can automate Chrome '55.0.2883”,在appium日志里也能看到详情


四、了解chromedriver

       通过管理Chromedriver,Appium支持安卓网页和支持谷歌的混合app的自动化。通过npm package安装的总是绑定最新的chromedriver。

        但是,每一版chromedriver的更新会支持最小的新增谷歌的版本,所以早期的版本不能再跟绑定的版本兼容。这时在appium server日志里会有类似的错误:

An unknown server-side error occurred while processing the command.

Original error: unknown error: Chrome version must be >= 55.0.2883.0

         为解决这个问题,appium可以通过加上—chromedriver_version属性配置使用特定的chromedriver版本,比如

         npm install appium –chromedriver_version="2.16"

         或者在CHROMEDRIVER_VERSION环境变量指定版本,如

         CHROMEDRIVER_VERSION=2.20 npm install appium

        这也能得到最新的版本。最后,还可以被指定在运行时,通过—chromedriver-executable 服务器标识与chromedriver执行路径手动下载,比如

         appium --chromedriver-executable /path/to/my/chromedriver

五、chromedriver/chrome兼容

下面是chromedriver与最小的chrome版本对应表:


六、自动查找匹配的chromedriver

         从Appium1.8.0开始,appium可以得到这个正确的基于chrome的chromedriver版本。当appium发布时,appium与chromedriver绑定,更多chromedriver版本可供下载到appium的安装文件里(不建议这样做,因为更新appium时将会删除它们)。

         当一个appium版本发布,最新的chromedriver版本可以被获取,可以通过chromedriver与最小chrome版本映射关系,得到映射的绝对路径文件。这个文件内容必须做成json对象,例如

{

"2.42": "63.0.3239",

"2.41": "62.0.3202"

}

七、安装网络问题

         当appium安装时需要下载chromedriver,所以会遇到安装失败的网络问题。

         默认下chromedriver从https://chromedriver.storage.googleapis.com/ 获取。使用chromedrivre的npm镜像配置chromedriver_cdnurl。

npm install appium-chromedriver --chromedriver_cdnurl=http://npm.taobao.org/mirrors/chromedriver

或者在你的.npmrc文件增加属性

chromedriver_cdnurl=http://npm.taobao.org/mirrors/chromedriver

另一种选择是使用Path环境变量CHROMEDRIVER_CDNURL

CHROMEDRIVER_CDNURL=http://npm.taobao.org/mirrors/chromedriver npm install appium-chromedriver

在国内,可以用cnpm~

首先,安装cnpm

npm install -g cnpm --registry=https://registry.npm.taobao.org


         输入cnpm -v,显示cnpm不是内部或外部命令,也不是可运行命令或批处理文件。

         cnpm默认会安装在C:\Users\admin\AppData\Roaming\npm个人用户路径下。所以追溯到这个文件夹,在这里可以执行cnpm v,因此推测没有把cnpm路径加入到path系统环境变量中。

         添加到path后,再关闭打开cmd,执行cnpm –v命令,


解决这个之后执行安装chromedriverc

npm install -g appium --chromedriver_version="2.28" --

chromedriver_cdnurl=http://npm.taobao.org/mirrors/chromedriver


你可能感兴趣的:(Appium自动化测试遇到的chromedriver/chrome坑)