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 b6a95e2 commit e0afa8fCopy full SHA for e0afa8f
wdio.conf.cjs
@@ -88,6 +88,19 @@ module.exports.config = {
88
// binary: '/Applications/Google Chrome Canary.app/Contents/MacOS/Google Chrome Canary'
89
};
90
}
91
+ if (browserName === 'firefox') {
92
+ capability['moz:firefoxOptions'] = {
93
+ args: [],
94
+ prefs: {
95
+ // Temporarily disable interactionid on Firefox nightly as unstable
96
+ // See: https://bugzilla.mozilla.org/show_bug.cgi?id=1960645
97
+ // TODO: Remove this once this hits stable
98
+ 'dom.performance.event_timing.enable_interactionid': false,
99
+ },
100
+ // Uncomment to test on Firefox Nightly (now with INP support)
101
+ // binary: '/Applications/Firefox Nightly.app/Contents/MacOS/firefox'
102
+ };
103
+ }
104
return capability;
105
}),
106
//
0 commit comments