简体   繁体   中英

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. 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:

"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?

I will appreciate your help :)

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

The technical post webpages of this site follow the CC BY-SA 4.0 protocol. If you need to reprint, please indicate the site URL or the original address.Any question please contact:yoyou2525@163.com.

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