part 1 - start venv,
pip install selenium basic script

2 - start venv / pip install selenium

Mac
python -m venv venv
source venv/bin/activate
pip install selenium

2 - basic selenium driver script

2- basic script

basic script,

** We no longer need to download drivers, just invoke browser function, for example Chrome(), then, use the get() method, with the desired starting url,
https://sandbox.oxylabs.io/products
as the argument for get()

import time
from selenium import webdriver
driver = webdriver.Chrome()
driver.get('https://sandbox.oxylabs.io/products')
time.sleep(2)
driver.quit()