We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 666e225 commit 019f7c5Copy full SHA for 019f7c5
java/src/org/openqa/selenium/firefox/FirefoxOptions.java
@@ -62,10 +62,9 @@ public class FirefoxOptions extends AbstractDriverOptions<FirefoxOptions> {
62
public FirefoxOptions() {
63
setCapability(CapabilityType.BROWSER_NAME, FIREFOX.browserName());
64
setAcceptInsecureCerts(true);
65
- // Firefox 129 onwards the CDP protocol will not be enabled by default. Setting this preference
66
- // will enable it.
67
// https://fxdx.dev/deprecating-cdp-support-in-firefox-embracing-the-future-with-webdriver-bidi/.
68
- addPreference("remote.active-protocols", 3);
+ // Enable BiDi only
+ addPreference("remote.active-protocols", 1);
69
}
70
71
public FirefoxOptions(Capabilities source) {
0 commit comments