Answers for "how to install drivers for selenium python"

1

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())
Posted by: Guest on March-09-2021

Code answers related to "how to install drivers for selenium python"

Python Answers by Framework

Browse Popular Code Answers by Language