简体   繁体   English

Sauce 服务不适用于移动测试

[英]Sauce service doesn't work with mobile tests

I am using sauce-service package to send names of tests (feature files) and see them on Sauce Labs , everything is working fine when I am using web tests but unfortunately when I try to set mobile config it doesn't seem to work.我正在使用sauce-service包发送测试名称(功能文件)并在Sauce Labs上查看它们,当我使用 Web 测试时一切正常,但不幸的是,当我尝试设置移动配置时,它似乎不起作用。 What I am missing?我缺少什么?

My mobile config:我的手机配置:

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'],
    }
}

My package.json:我的 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"
  },

Is a problem with a package, sauce labs , webdriverio , or something else?是包、 sauce labswebdriverio还是其他问题?

I will appreciate your help :)我会感谢你的帮助:)

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

声明:本站的技术帖子网页,遵循CC BY-SA 4.0协议,如果您需要转载,请注明本站网址或者原文地址。任何问题请咨询:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM