Skip to content
Closed
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
21 changes: 21 additions & 0 deletions docs_source_files/content/webdriver/driver_requirements.en.md
Original file line number Diff line number Diff line change
Expand Up @@ -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/).
Copy link
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

The PR should also include the package managers for macOS and Linux

Copy link
Author

Choose a reason for hiding this comment

The 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.

Copy link
Member

Choose a reason for hiding this comment

The 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:
Copy link
Member

Choose a reason for hiding this comment

The 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`.