We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
BROWSER
1 parent 7d1904e commit 3565a83Copy full SHA for 3565a83
1 file changed
docs/tutorials/jenkins/parallel-robot-pipeline/Jenkinsfile
@@ -17,6 +17,9 @@ pipeline {
17
args '--entrypoint=""'
18
reuseNode true
19
} }
20
+ environment {
21
+ BROWSER = "chromium"
22
+ }
23
steps {
24
sh "robot -d robot_output -l none -r none -o chromium.xml -N Chromium -v URL:${params.URL} --nostatusrc $d/suites/"
25
// If reuseNode true was not used, we would have to stash the output XML.
@@ -29,6 +32,9 @@ pipeline {
29
32
30
33
31
34
35
36
+ BROWSER = "firefox"
37
38
39
sh "robot -d robot_output -l none -r none -o b.xml -N Firefox -v URL:${params.URL} --nostatusrc $d/suites/"
40
0 commit comments