Search
 
SCRIPT & CODE EXAMPLE
 
CODE EXAMPLE FOR PYTHON

how to install drivers for selenium python

#in the terminal add the following
pip install webdriver-manager

#in the script add the following to the imports
from selenium import webdriver
from webdriver_manager.chrome import ChromeDriverManager

#then add the following line to create the page
web = webdriver.chrome(chromeDriverManager().install())
 
PREVIOUS NEXT
Tagged: #install #drivers #selenium #python
ADD COMMENT
Topic
Name
5+4 =