pip install selenium
basic script
python -m venv venv
source venv/bin/activate
pip install selenium
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()