Skip to content

Instantly share code, notes, and snippets.

@arecker
Created January 12, 2016 01:40
Show Gist options
  • Save arecker/37c259c6eae49279cbe0 to your computer and use it in GitHub Desktop.
Save arecker/37c259c6eae49279cbe0 to your computer and use it in GitHub Desktop.
busbot - 2
from selenium import webdriver
driver = webdriver.Firefox()
driver.get('https://www.cityofmadison.com'
'/epayment/metro/busPass/index.cfm')
checkbox = driver.find_element_by_id('acceptTerms')
checkbox.click()
submit = driver.find_element_by_id('submit')
submit.click()
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment