File tree Expand file tree Collapse file tree 1 file changed +8
-3
lines changed
java/server/test/org/openqa/selenium/server/htmlrunner Expand file tree Collapse file tree 1 file changed +8
-3
lines changed Original file line number Diff line number Diff line change 30
30
import org .junit .runners .Parameterized ;
31
31
import org .openqa .selenium .Platform ;
32
32
import org .openqa .selenium .environment .webserver .AppServer ;
33
+ import org .openqa .selenium .os .CommandLine ;
33
34
34
35
import java .io .File ;
35
36
import java .io .IOException ;
@@ -77,9 +78,13 @@ public void executeTests() throws IOException {
77
78
public static Iterable <String > parameters () {
78
79
ImmutableSortedSet .Builder <String > browsers = ImmutableSortedSet .naturalOrder ();
79
80
80
- // if (CommandLine.find("wires") != null) {
81
- browsers .add ("*firefox" );
82
- // }
81
+ if (CommandLine .find ("chromedriver" ) != null ) {
82
+ browsers .add ("*googlechrome" );
83
+ }
84
+
85
+ if (CommandLine .find ("wires" ) != null ) {
86
+ // browsers.add("*firefox");
87
+ }
83
88
84
89
switch (Platform .getCurrent ().family ()) {
85
90
case MAC :
You can’t perform that action at this time.
0 commit comments