christian-bromann on v4
IE Returns `405` message Selen… Update utilities.js Update utilities.js and 1 more (compare)
BorisOsipov on master
wdio-allure-reporter: added Iss… (compare)
browser.execute() just injects JS in the browser so you can inject everything you want
problem: jenkins run command test:grid but causes specs to run twice. Cant figure out WHY
i have 2 conf: normal plus grid with added props
"test:grid": "node_modules/.bin/wdio wdio.conf.grid.js --suite grid",var merge = require('deepmerge');
var wdioConf = require('./wdio.conf.js');
exports.config = merge(wdioConf.config, {
// GRID
host: 'SOME IP',
port: 4444,
// path: '/wd/hub',
suites: {
grid: [
'./__tests__/specs/etr.spec.js'
]
},
debug: false,
execArgv: null,
capabilities: [
{ 'browserName': 'chrome'}
// // { 'browserName': 'firefox' }
// // { 'browserName': 'internet explorer' },
// // { 'browserName': 'edge' }
]
}, {
clone: false
});the other wdio config is boiler plate.