dependabot[bot] on npm_and_yarn
dependabot[bot] on npm_and_yarn
Bump @typescript-eslint/utils f… (compare)
christian-bromann on npm_and_yarn
christian-bromann on v7
Bump @typescript-eslint/eslint-… (compare)
dependabot[bot] on npm_and_yarn
Bump @typescript-eslint/eslint-… (compare)
Yeah I had a stab at that but got nowhere unfortunately.
Currently I have
capabilities: [
{
// maxInstances can get overwritten per capability. So if you have an in-house Selenium
// grid with only 5 firefox instances available you can make sure that not more than
// 5 instances get started at a time.
maxInstances: 5,
//
"goog:chromeOptions": {
args: ["use-fake-ui-for-media-stream"],
},
browserName: "chrome",
acceptInsecureCerts: true,
// If outputDir is provided WebdriverIO can capture driver session logs
// it is possible to configure which logTypes to include/exclude.
// excludeDriverLogs: ['*'], // pass '*' to exclude all driver session logs
// excludeDriverLogs: ['bugreport', 'server'],
},
],
And I tried putting in what appeared to be along the lines of what I wanted
capabilities: {
browserA: {
capabilities: {
browserName: 'chrome',
}
},
browserB: {
capabilities: {
browserName: 'chrome'
}
}
},
But then everything stopped working, never even seemed to get the the point in my tests where I would normally execute browser.url(foo)