Skip to content

Instantly share code, notes, and snippets.

@kennethkoontz
Created December 3, 2011 20:35
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 kennethkoontz/1428075 to your computer and use it in GitHub Desktop.
Save kennethkoontz/1428075 to your computer and use it in GitHub Desktop.
webdriver bug repro script
from selenium import webdriver
wd = webdriver.Firefox()
wd.get('http://www.google.com')
e = wd.find_element_by_id('lst-ib')
t = 'webdriver'
while True:
e.clear()
e.send_keys(t)
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment