1#in the terminal add the following
2pip install webdriver-manager
3
4#in the script add the following to the imports
5from selenium import webdriver
6from webdriver_manager.chrome import ChromeDriverManager
7
8#then add the following line to create the page
9web = webdriver.chrome(chromeDriverManager().install())