I am using Python and Selenium and want to test it on a saved website so I don't keep generating a lot of login requests and get locked out. I have:
driver = webdriver.Chrome()
driver.get("WEBSITE URL")
How would this differ with a file location instead?
Thanks!