We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 6e8a107 commit 3fa0322Copy full SHA for 3fa0322
src/browserstack/index.js
@@ -12,7 +12,10 @@ export default class BrowserStackBrowser extends SeleniumLogging(SeleniumBrowser
12
builder.usingServer('https://hub-cloud.browserstack.com/wd/hub')
13
})
14
15
- this.setOS('windows', 10)
+ // set default os if user hasnt set anything
16
+ if (!config.browserConfig || !config.browserConfig.os) {
17
+ this.setOS('windows', 10)
18
+ }
19
}
20
21
getConfigProperty(property, capabilities = {}, defaulValue) {
0 commit comments