首页
学习
活动
专区
圈层
工具
发布
社区首页 >问答首页 >Appium: chromeOptions未被appium识别

Appium: chromeOptions未被appium识别
EN

Stack Overflow用户
提问于 2021-03-23 17:47:39
回答 1查看 308关注 0票数 0

我正在尝试自动化一个移动应用程序。在capabilities.json文件中,我包含了chromeOptions。

代码语言:javascript
复制
"goog:chromeOptions": {
      "args": "--disable-fre"
    }

我这样做是为了在自动化过程中跳过欢迎进入铬页面。但这似乎不起作用,因为我仍然得到欢迎页。

在运行测试时,我得到了以下信息。

代码语言:javascript
复制
[debug] [BaseDriver] W3C capabilities and MJSONWP desired capabilities were provided
[debug] [BaseDriver] Creating session with W3C capabilities: {
[debug] [BaseDriver]   "alwaysMatch": {
[debug] [BaseDriver]     "goog:chromeOptions": {
[debug] [BaseDriver]       "args": "--disable-fre",
[debug] [BaseDriver]       "androidPackage": "com.android.chrome"
[debug] [BaseDriver]     },
[debug] [BaseDriver]     "platformName": "android",
[debug] [BaseDriver]     "appium:uiautomator2ServerInstallTimeout": 60000,
[debug] [BaseDriver]     "appium:app": "...",
[debug] [BaseDriver]     "appium:automationName": "UIAutomator2",
[debug] [BaseDriver]     "appium:chromedriverExecutable": "/Users/.../.m2/repository/webdriver/chromedriver/mac64/69/chromedriver",
[debug] [BaseDriver]     "appium:deviceName": "android",
[debug] [BaseDriver]     "appium:fullReset": true,
[debug] [BaseDriver]     "appium:noReset": false,
[debug] [BaseDriver]     "appium:noSign": true,
[debug] [BaseDriver]     "appium:platformVersion": "8.0",
[debug] [BaseDriver]     "appium:systemPort": 63463,
[debug] [BaseDriver]     "appium:udid": "emulator-5556"
[debug] [BaseDriver]   },
[debug] [BaseDriver]   "firstMatch": [
[debug] [BaseDriver]     {}
[debug] [BaseDriver]   ]
[debug] [BaseDriver] }
[BaseDriver] The following capabilities were provided, but are not recognized by Appium:
[BaseDriver]   goog:chromeOptions

在这里,它说goog:chromeOptions没有得到appium的认可。我该怎么做才能解决这个问题?我希望欢迎屏幕被禁用。

谢谢。

EN

回答 1

Stack Overflow用户

发布于 2022-01-20 17:15:41

在这里,您使用的参数对于appium的色驱动程序是无效的。尝试一次而不使用--disable-fre

票数 0
EN
页面原文内容由Stack Overflow提供。腾讯云小微IT领域专用引擎提供翻译支持
原文链接:

https://stackoverflow.com/questions/66768564

复制
相关文章

相似问题

领券
问题归档专栏文章快讯文章归档关键词归档开发者手册归档开发者手册 Section 归档