-
Notifications
You must be signed in to change notification settings - Fork 2.3k
fix(direct): Use config's geckoDriver when specified #4554
Conversation
This change makes the `firefox` capability more closely match `chrome`'s. The `firefox` capability was not looking for `config_.geckoDriver` like `chrome` was.
Thanks for your pull request. It looks like this may be your first contribution to a Google open source project. Before we can look at your pull request, you'll need to sign a Contributor License Agreement (CLA). 📝 Please visit https://cla.developers.google.com/ to sign. Once you've signed, please reply here (e.g.
|
1 similar comment
Thanks for your pull request. It looks like this may be your first contribution to a Google open source project. Before we can look at your pull request, you'll need to sign a Contributor License Agreement (CLA). 📝 Please visit https://cla.developers.google.com/ to sign. Once you've signed, please reply here (e.g.
|
I signed it! |
CLAs look good, thanks! |
1 similar comment
CLAs look good, thanks! |
Hitting that problem, waiting for that fix... BTW, we wrote a small script which copies the gecko driver from the protractor node modeules. Download selenium drivers./node_modules/protractor/node_modules/webdriver-manager/bin/webdriver-manager update --versions.standalone 3.6.0 Copy the Gecko driverdriver_directory=./node_modules/protractor/node_modules/webdriver-manager/selenium |
Yeah we did the same thing to work around it. |
@juliemr This is a real simple fix. Can you—or someone else I should ping—take a look at this please? |
* fix(direct): Use config's geckoDriver when specified This change makes the `firefox` capability more closely match `chrome`'s. The `firefox` capability was not looking for `config_.geckoDriver` like `chrome` was.
This change makes the
firefox
capability more closely matchchrome
's. Thefirefox
capability was not looking forconfig_.geckoDriver
likechrome
was, making thegeckoDriver
configuration useless for directConnect and always resulting in an error if the driver wasn't installed in the default location.