Sauce 服务不适用于移动测试

问题描述

我正在使用 sauce-service 包发送测试名称功能文件)并在 Sauce Labs 上查看它们,当我使用网络测试时一切正常,但不幸的是当我尝试设置移动配置时它似乎不起作用。我缺少什么?

我的移动配置:

exports.config = {
    ...config,...{
        user: process.env.SAUCE_USERNAME,key: process.env.SAUCE_ACCESS_KEY,testobject_api_key: process.env.SAUCE_RDC_ACCESS_KEY,region: 'eu',specs: [
            './features/*'
        ],maxInstances: 1,capabilities: [{
            deviceName: 'Samsung galaxy S',automationName: 'UiAutomator2',platformName: 'Android',idleTimeout: 180,cacheId: new Date().getTime(),noreset: true,autoGrantPermissions: true,orientation: 'PORTRAIT',newCommandTimeout: 180,build: 'test',//name: 'test',<- Hardcoded test name,it should be name from feature file
            maxInstances: 1,}],services: ['sauce'],}
}

我的 package.json:

"devDependencies": {
    "@babel/cli": "^7.12.8","@babel/core": "^7.12.8","@babel/preset-env": "^7.12.7","@babel/register": "^7.12.1","@rpii/wdio-html-reporter": "^6.3.1","@wdio/appium-service": "^7.5.7","@wdio/junit-reporter": "^6.3.6","@wdio/cli": "^6.9.1","@wdio/cucumber-framework": "^6.8.0","@wdio/local-runner": "^6.9.1","@wdio/mocha-framework": "^6.8.0","@wdio/sauce-service": "^6.10.0","@wdio/spec-reporter": "^6.8.1","@wdio/sync": "^6.9.1","babel-plugin-source-map-support": "^2.1.3","chromedriver": "^91.0.1","mkdirp": "^1.0.4","moment": "^2.29.1","wdio-chromedriver-service": "^6.0.4","wdio-cucumberjs-json-reporter": "^2.0.2","wdio-json-reporter": "^2.0.0"
  },

是包、sauce labswebdriverio 还是其他问题?

感谢您的帮助:)

解决方法

这是 WebdriverIO V6 的一个已知问题,您需要至少升级到 Sauce Service 的第 7 版和至少 7.7.4 版才能正常工作。

相关问答

Selenium Web驱动程序和Java。元素在(x,y)点处不可单击。其...
Python-如何使用点“。” 访问字典成员?
Java 字符串是不可变的。到底是什么意思?
Java中的“ final”关键字如何工作?(我仍然可以修改对象。...
“loop:”在Java代码中。这是什么,为什么要编译?
java.lang.ClassNotFoundException:sun.jdbc.odbc.JdbcOdbc...