Skip to content

Instantly share code, notes, and snippets.

@Chalarangelo
Last active October 28, 2017 18:09
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 Chalarangelo/2dafc6379d6f893e83740160928abfef to your computer and use it in GitHub Desktop.
Save Chalarangelo/2dafc6379d6f893e83740160928abfef to your computer and use it in GitHub Desktop.
from selenium import webdriver
# The URL we want to browse to
url = "https://unsplash.com"
# Using Selenium's webdriver to open the page
driver = webdriver.Firefox(executable_path=r'geckodriver.exe')
driver.get(url)
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment