Running Multiple Tests (Suites) on Windows
Oxygen also provides the option to run several tests one by one or parallel
module.exports = {
"iterations": 1,
"parallel": 1,
"url": "http://localhost:4444/wd/hub",
suites: [{
name: 'case1',
cases: [{
path: "./test-script.js"
}],
},
{
name: 'case2',
cases: [{
path: "./second-test-script.js"
}],
}],
"environment": {
"some_parameter": "foo",
"another_parameter": "bar"
},
"capabilities": [
{
"browserName": "chrome"
}
],
"options": {
"autoReopen": true
}
}Last updated
Was this helpful?