UNPKG

webdriverio-automation

Version:

WebdriverIO-Automation android ios project

26 lines (20 loc) 850 B
require('dotenv').config(); const {config} = require('./wdio.conf'); // Browserstack capabilities config.capabilities = [ { device : process.env.ANDROID_DEVICE || 'Google Pixel 3', os_version : process.env.ANDROID_OS_VERSION || '9.0', platformName : process.env.ANDROID_PLATFORM || 'android', project: 'WEBDRIVERIO-AUTOMATION', build : 'Android SDK Tests', name: 'SDK Data Collector Android Tests', maxInstances: 1, app : process.env.ANDROID_APP_ID || 'bs://<hashed app-id>', "browserstack.gpsLocation" : "37.421998333333335,-122.08400000000002", // To set let and lon for devices } ]; config.user = process.env.BROWSERSTACK_USERNAME, config.key = process.env.BROWSERSTACK_ACCESS_KEY, config.specs = ["./test/sdk/android/**/*.ts"]; exports.config = config;