Comment installer des pilotes pour 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())
TheRubberDucky