view refresh-browser.py @ 9:d09937a6cb4b

trying to build something to automatically refresh the browser.
author Robert McIntyre <rlm@mit.edu>
date Tue, 25 Oct 2011 05:33:36 -0700
parents
children 83e16df2288a
line wrap: on
line source
1 #!/usr/bin/env python
4 from selenium import webdriver
5 from selenium.common.exceptions import TimeoutException
6 from selenium.webdriver.support.ui import WebDriverWait # available since 2.4.0
7 import time
9 # Create a new instance of the Firefox driver
10 #driver = webdriver.Firefox()
12 driver = webdriver.Remote("http://localhost:4444/wd/hub", webdriver.DesiredCapabilities.FIREFOX)
15 # go to the google home page
16 driver.get("http://tycho.usno.navy.mil/cgi-bin/timer.pl")
18 # you HAVE to quit if you're reusing firefox sessions
19 driver.quit()