SeleniumBase/help_docs/webdriver_installation.md

4.2 KiB
Executable File

Installing webdrivers

To run web automation, you'll need webdrivers for each browser you plan on using. Here are some commands that'll automatically download the driver you need into the SeleniumBase drivers folder once you've installed SeleniumBase:

sbase install chromedriver
sbase install geckodriver
sbase install edgedriver
sbase install iedriver
sbase install operadriver
  • If you have the latest version of Chrome installed, get the latest chromedriver (otherwise it defaults to chromedriver 2.44 for compatibility reasons):
sbase install chromedriver latest
  • You can also install a specific version of chromedriver for a specific version of Chrome:
sbase install chromedriver 94.0.4606.61

sbase install chromedriver 94
  • On Linux, you can run the following two commands (once you've installed SeleniumBase) to automatically upgrade your Chromedriver to match your version of Chrome: (wget downloads the file, and pytest runs it.)
wget https://raw.githubusercontent.com/seleniumbase/SeleniumBase/master/examples/upgrade_chromedriver.py
pytest upgrade_chromedriver.py -s
  • If you run a test without the correct webdriver installed, the driver will be downloaded automatically.

If you plan on using the Selenium Grid integration (which allows for remote webdriver), you'll need to put the drivers on your System PATH. On macOS and Linux, /usr/local/bin is a good PATH spot. On Windows, you may need to set the System PATH under Environment Variables to include the location where you placed the driver files. As a shortcut, you could place the driver files into your Python Scripts/ folder in the location where you have Python installed, which should already be on your System PATH.

Here's where you can go to manually install web drivers from the source:

macOS shortcuts:

brew cask install chromedriver

brew install geckodriver

You can also upgrade existing webdrivers:

brew cask upgrade chromedriver

brew upgrade geckodriver

Linux shortcuts:

If you still need the web drivers, here are some scripts to help you install chromedriver and geckodriver on a Linux machine:

wget http://chromedriver.storage.googleapis.com/2.44/chromedriver_linux64.zip
unzip chromedriver_linux64.zip
mv chromedriver /usr/local/bin/
chmod +x /usr/local/bin/chromedriver
wget https://github.com/mozilla/geckodriver/releases/download/v0.30.0/geckodriver-v0.30.0-linux64.tar.gz
tar xvfz geckodriver-v0.30.0-linux64.tar.gz
mv geckodriver /usr/local/bin/
chmod +x /usr/local/bin/geckodriver