Last active
January 12, 2016 01:59
-
-
Save arecker/3ba8d19046c42ac22760 to your computer and use it in GitHub Desktop.
busbot - 4
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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