-
-
Notifications
You must be signed in to change notification settings - Fork 1.5k
Add package managers #547
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Add package managers #547
Changes from all commits
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
| Original file line number | Diff line number | Diff line change |
|---|---|---|
|
|
@@ -632,4 +632,25 @@ so whilst the web will continue to change, PhantomJS will not be updated. | |
| This was after Google announced the ability to run Chrome headlessly, | ||
| something also now offered by Mozilla's Firefox. | ||
|
|
||
| ### Chocolatey | ||
|
|
||
| On Windows systems the driver binaries can be installed individually, or as a collection using [chocolatey](https://chocolatey.org/). | ||
|
Member
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. The PR should also include the package managers for
Author
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. I'd like to add this, but I don't have access to mac or linux systems to check it on.
Member
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. To move forward with this, maybe you can leave the placeholders for the sections. |
||
|
|
||
| * To find the available drivers, use choco list: | ||
|
Member
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Let's avoid adding the commands here, we should link to their official page that shows how to use the packages, if we duplicate things here, they can get easily out of date. |
||
|
|
||
| ```shell | ||
| choco list selenium | ||
| ``` | ||
|
|
||
| * you will be given a list of all the selenium related downloads avialble through chocolatey. Be aware that this is a keyword search, so there may be results that use the word selenium that are not directly related to the project. | ||
| * individual binaries can be installed thus: | ||
|
|
||
| ```shell | ||
| choco install selenium-chrome-driver selenium-gecko-driver | ||
| ``` | ||
| * all of the available drivers can be installed using: | ||
|
|
||
| ```shell | ||
| choco install selenium-all-drivers | ||
| ``` | ||
| This will automatically update the `PATH`. | ||
Uh oh!
There was an error while loading. Please reload this page.