Skip to content

Commit

Permalink
Adapt broken assumption about google search.
Browse files Browse the repository at this point in the history
  • Loading branch information
jeffFranklin committed Mar 4, 2019
1 parent 3163fb5 commit a2f4058
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions webdriver_recorder/test_webdriver_recorder.py
Original file line number Diff line number Diff line change
Expand Up @@ -7,8 +7,8 @@ def test_basic(browser):
time.sleep(1)
browser.snap()
browser.send('keyboard cat\n')
browser.click('a', 'images for keyboard cat')
browser.wait_for('a', 'google images home')
browser.wait_for('a', 'keyboard cat')
browser.click('a', 'images')
assert len(browser.pngs) == 3


Expand All @@ -18,8 +18,8 @@ def test_xdist(browser):
time.sleep(1)
browser.snap()
browser.send('kool aid man\n')
browser.click('a', 'images for kool aid man')
browser.wait_for('a', 'google images home')
browser.wait_for('a', 'kool aid man')
browser.click('a', 'images')
assert len(browser.pngs) == 3


Expand Down

0 comments on commit a2f4058

Please sign in to comment.