You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardexpand all lines: docs/docs/test-runner/browser-launchers/browserstack.md
+12
Original file line number
Diff line number
Diff line change
@@ -70,6 +70,16 @@ export default {
70
70
os_version:'7',
71
71
},
72
72
}),
73
+
74
+
browserstackLauncher({
75
+
capabilities: {
76
+
...sharedCapabilities,
77
+
browserName:'Chrome',
78
+
os:'Windows',
79
+
os_version:'10',
80
+
},
81
+
local:false, // disables the local proxy
82
+
}),
73
83
],
74
84
};
75
85
```
@@ -81,3 +91,5 @@ The Browserstack launcher takes two properties, `capabilities` and `localOptions
81
91
`capabilities` are the selenium capabilities used to configure the browser to launch in Browserstack. You can generate most of these on the Saucelabs. It must contain a `browserstack.user` and `browserstack.key` property to authenticate with Browserstack, as well as `name`, `build` and `project` to identify the test run.
82
92
83
93
`localOptions` are options to configure the [browserstack-local](https://www.npmjs.com/package/browserstack-local) proxy. For most use cases, you don't need to configure this property.
94
+
95
+
`local` is a property which, when set to `false`, disables the local proxy entirely. This can be particularly helpful in CI environment where you may not need to proxy local resources through Browserstack.
0 commit comments