Skip to content

Instantly share code, notes, and snippets.

@john92paul
Created October 12, 2020 12:37
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save john92paul/fc7259aaa6b2d0106470c9a607e33647 to your computer and use it in GitHub Desktop.
Save john92paul/fc7259aaa6b2d0106470c9a607e33647 to your computer and use it in GitHub Desktop.
Selenium Basics
from selenium import webdriver # import packages
driver_path = "C:/Users/johndoe/chromedriver.exe" # Defines the chrome driver path
driver = webdriver.Chrome(driver_path) # Define the driver
driver.get("https://www.google.com/")
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment