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 ac9e5f0 + c319c5d commit 5f85558Copy full SHA for 5f85558
NodeFirefox/generate_config
@@ -1,6 +1,7 @@
1
#!/bin/bash
2
3
FIREFOX_VERSION=$( firefox -version | cut -d " " -f 3 )
4
+DRIVER_LOGLEVEL=${DRIVER_LOGLEVEL:-info}
5
6
cat <<_EOF
7
{
@@ -10,7 +11,14 @@ cat <<_EOF
10
11
"browserName": "firefox",
12
"maxInstances": $NODE_MAX_INSTANCES,
13
"seleniumProtocol": "WebDriver",
- "applicationName": "$NODE_APPLICATION_NAME"
14
+ "applicationName": "$NODE_APPLICATION_NAME",
15
+ "moz:firefoxOptions":
16
+ {
17
+ "log":
18
19
+ "level": "$DRIVER_LOGLEVEL"
20
+ }
21
22
}
23
],
24
"proxy": "org.openqa.grid.selenium.proxy.DefaultRemoteProxy",
0 commit comments