diff --git a/runner/master/config.template.php b/runner/master/config.template.php index f96fd2c..c24ba97 100644 --- a/runner/master/config.template.php +++ b/runner/master/config.template.php @@ -193,6 +193,9 @@ public static function configure_profiles_for_browser(string $browser, string $r // Set the default profile to use the first selenium URL only. $profile['wd_host'] = getenv('SELENIUMURL_1') . '/wd/hub'; + // Work around for https://github.com/Behat/MinkExtension/issues/376. + $profile['capabilities']['extra_capabilities']['marionette'] = true; + $CFG->behat_profiles = []; $CFG->behat_profiles[$browser] = $profile;