Use updated method names

This commit is contained in:
Michael Mintz 2016-04-29 20:41:03 -04:00
parent 818b6b9d47
commit fc0ef64647
1 changed files with 2 additions and 2 deletions

View File

@ -7,5 +7,5 @@ from seleniumbase import BaseCase
class MyTestClass(BaseCase):
def test_find_army_of_robots_on_xkcd_desert_island(self):
self.driver.get("http://xkcd.com/731/")
self.wait_for_element("div#ARMY_OF_ROBOTS", timeout=0.7)
self.open("http://xkcd.com/731/")
self.find_element("div#ARMY_OF_ROBOTS", timeout=0.7)