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 2850703 commit 5d2f6c6Copy full SHA for 5d2f6c6
1 file changed
javascript/node/selenium-webdriver/testing/index.js
@@ -286,12 +286,19 @@ class Environment {
286
const builder = new Builder()
287
builder.disableEnvironmentOverrides()
288
289
+
290
291
const realBuild = builder.build
292
builder.build = function () {
293
builder.forBrowser(browser.name, browser.version, browser.platform);
294
295
296
if (browser.capabilities) {
- builder.getCapabilities().merge(browser.capabilities)
297
+ builder.getCapabilities().merge(browser.capabilities);
298
+ }
299
300
+ if(browser.name === 'firefox') {
301
+ builder.setCapability('moz:debuggerAddress', true);
302
}
303
304
if (typeof urlOrServer === 'string') {
0 commit comments