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.
2 parents 2b642e9 + a55f9ae commit 19c9db0Copy full SHA for 19c9db0
test/helpers/selenium-helper.js
@@ -57,6 +57,10 @@ class SeleniumHelper {
57
// Stub getUserMedia to always not allow access
58
args.push('--use-fake-ui-for-media-stream=deny');
59
60
+ // Suppress complaints about AudioContext starting before a user gesture
61
+ // This is especially important on Windows, where Selenium directs JS console messages to stdout
62
+ args.push('--autoplay-policy=no-user-gesture-required');
63
+
64
chromeCapabilities.set('chromeOptions', {args});
65
chromeCapabilities.setLoggingPrefs({
66
performance: 'ALL'
0 commit comments