Skip to content

Instantly share code, notes, and snippets.

@hankbot
Created April 2, 2019 21:39
Show Gist options
  • Save hankbot/9a099aff650db3a9d1bb822268a593ed to your computer and use it in GitHub Desktop.
Save hankbot/9a099aff650db3a9d1bb822268a593ed to your computer and use it in GitHub Desktop.
WebdriverIO config to reproduce WinAppDriver click issue
exports.config = {
runner: 'local',
specs: [
'./test/specs/**/*.js'
],
exclude: [],
maxInstances: 1,
capabilities: [{
maxInstances: 1,
app: 'Microsoft.WindowsCalculator_8wekyb3d8bbwe!App',
platformName: 'Windows',
deviceName: 'windowsPC'
}],
logLevel: 'trace',
bail: 0,
baseUrl: 'http://localhost',
port: 4723,
waitforTimeout: 10000,
connectionRetryTimeout: 90000,
connectionRetryCount: 3,
framework: 'mocha',
reporters: ['dot'],
mochaOpts: {
ui: 'bdd',
timeout: 60000
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment