diff --git a/modules/libpref/init/all.js b/modules/libpref/init/all.js index 8e9f21e03c42..1438ff7b867c 100644 --- a/modules/libpref/init/all.js +++ b/modules/libpref/init/all.js @@ -4475,6 +4475,16 @@ pref("services.common.log.logger.tokenserverclient", "Debug"); // Sets recommended automation preferences when Marionette is started. pref("marionette.prefs.recommended", true); + // Defines the protocols that will be active for the Remote Agent. + // 1: WebDriver BiDi + // 2: CDP (Chrome DevTools Protocol) + // 3: WebDriver BiDi + CDP + #if defined(NIGHTLY_BUILD) + pref("remote.active-protocols", 3); + #else + pref("remote.active-protocols", 2); + #endif + // Limits remote agent to listen on loopback devices, // e.g. 127.0.0.1, localhost, and ::1. pref("remote.force-local", true);