File tree Expand file tree Collapse file tree 2 files changed +4
-4
lines changed
src/org/openqa/selenium/grid/node/config
test/org/openqa/selenium/grid/node/config Expand file tree Collapse file tree 2 files changed +4
-4
lines changed Original file line number Diff line number Diff line change @@ -153,7 +153,7 @@ public class NodeFlags implements HasRoles {
153153 + "webdriver-path=\" /usr/local/bin/geckodriver\" "
154154 + "stereotype='{\" browserName\" : \" firefox\" , \" browserVersion\" : \" 86\" , "
155155 + "\" moz:firefoxOptions\" : "
156- + "{\" binary\" :\" /Applications/Firefox Nightly.app/Contents/MacOS/firefox-bin \" }}'" ,
156+ + "{\" binary\" :\" /Applications/Firefox Nightly.app/Contents/MacOS/firefox\" }}'" ,
157157 arity = 4 ,
158158 variableArity = true ,
159159 splitter = NonSplittingSplitter .class )
@@ -168,7 +168,7 @@ public class NodeFlags implements HasRoles {
168168 + "max-sessions = 2\n "
169169 + "stereotype = \" {\\ \" browserName\\ \" : \\ \" firefox\\ \" , \\ \" browserVersion\\ \" :"
170170 + " \\ \" 86\\ \" , \\ \" moz:firefoxOptions\\ \" : {\\ \" binary\\ \" :\\ \" /Applications/Firefox"
171- + " Nightly.app/Contents/MacOS/firefox-bin \\ \" }}\" " )
171+ + " Nightly.app/Contents/MacOS/firefox\\ \" }}\" " )
172172 public List <String > driverConfiguration ;
173173
174174 @ Parameter (
Original file line number Diff line number Diff line change @@ -368,7 +368,7 @@ void canBeConfiguredToUseHelperClassesToCreateSessionFactories() {
368368 void driversCanBeConfigured () {
369369 String chromeLocation =
370370 "/Applications/Google Chrome Beta.app/Contents/MacOS/Google Chrome Beta" ;
371- String firefoxLocation = "/Applications/Firefox Nightly.app/Contents/MacOS/firefox-bin " ;
371+ String firefoxLocation = "/Applications/Firefox Nightly.app/Contents/MacOS/firefox" ;
372372 ChromeOptions chromeOptions = new ChromeOptions ();
373373 chromeOptions .setBinary (chromeLocation );
374374 FirefoxOptions firefoxOptions = new FirefoxOptions ();
@@ -436,7 +436,7 @@ void driversCanBeConfigured() {
436436 @ Test
437437 void driversCanBeConfiguredWithASpecificWebDriverBinary () {
438438 String chLocation = "/Applications/Google Chrome Beta.app/Contents/MacOS/Google Chrome Beta" ;
439- String ffLocation = "/Applications/Firefox Nightly.app/Contents/MacOS/firefox-bin " ;
439+ String ffLocation = "/Applications/Firefox Nightly.app/Contents/MacOS/firefox" ;
440440 String chromeDriverLocation = "/path/to/chromedriver_beta/chromedriver" ;
441441 String geckoDriverLocation = "/path/to/geckodriver_nightly/geckodriver" ;
442442 ChromeOptions chromeOptions = new ChromeOptions ();
You can’t perform that action at this time.
0 commit comments