christian-bromann on cb-browser-runner-improvements
fix missing commands allow HTMLElement set in $$ com… (compare)
christian-bromann on cb-browser-runner-improvements
Various browser runner improvem… (compare)
SCG82 on replace-lerna-bootstrap-pnpm
Fixes to browser runner (#9667)… Install Jasmine types if user p… v8.2.4 and 1 more (compare)
github-actions[bot] on v8.2.4
v8.2.4 (compare)
github-actions[bot] on main
v8.2.4 (compare)
github-actions[bot] on v8.2.4
christian-bromann on cb-install-jasmine-types
christian-bromann on main
Install Jasmine types if user p… (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)