Skip to content

Instantly share code, notes, and snippets.

@arecker
Last active January 12, 2016 01:59
Show Gist options
  • Save arecker/3ba8d19046c42ac22760 to your computer and use it in GitHub Desktop.
Save arecker/3ba8d19046c42ac22760 to your computer and use it in GitHub Desktop.
busbot - 4
fields = {'name': 'Alex Recker',
'Address': '123 Sesame St',
'City': 'Madison',
'Zip': '53704',
'email': '[email protected]'}
for name, value in fields.items():
elem = driver.find_element_by_name(name)
elem.send_keys(value)
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment