Answers for "how to install chromedriver for testing using selenium and python"

3

chromedriver selenium python

# For Linux, but it is similar for Windows
# First make sure first that you have chrome browser installed on your system.

# a simple way to get the driver is: 
sudo apt-get install chromium-chromedriver
# this will download 75MB of files.

# another way is:
1. Download the lastest version of driver from:
  https://sites.google.com/a/chromium.org/chromedriver/ # only 5-7MB
2. Unzip the file.
3. Paste the file in /usr/local/bin using this command:
  sudo mv chromedriver /usr/local/bin # this makes sure that the directory is in your PATH variable.
4. Make your file executable:
  sudo chmod +x /usr/local/bin/chromedriver

Now you can use this in python:
  >>from selenium import webdriver
  >>browser = webdriver.Chrome()
  # it will work fine
Posted by: Guest on November-09-2020
0

Check and Install appropriate ChromeDriver Version for Selenium Using Python

import chromedriver_autoinstaller
from selenium import webdriver

opt = webdriver.ChromeOptions()
opt.add_argument("--start-maximized")

chromedriver_autoinstaller.install()
driver = webdriver.Chrome(options=opt)
driver.get('https://stackoverflow.com/')
Posted by: Guest on May-12-2021

Code answers related to "how to install chromedriver for testing using selenium and python"

Python Answers by Framework

Browse Popular Code Answers by Language