Skip to content

Commit bf9bdf7

Browse files
committed
Update MasterQA example tests
1 parent 6fa6203 commit bf9bdf7

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

examples/master_qa/basic_masterqa_test.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ class MasterQATests(MasterQA):
66
def test_masterqa(self):
77
self.open("https://xkcd.com/1700/")
88
self.verify("Do you see a webcomic?")
9-
self.highlight_click("link=Store")
9+
self.open("https://store.xkcd.com/collections/everything")
1010
self.highlight_click('[title="things for walls"]')
1111
self.verify('Do you see posters for sale?')
1212
self.highlight_update_text("input.search-input", "book\n")

examples/master_qa/masterqa_test.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@ def test_xkcd(self):
1616
self.verify("Can you find the moon?")
1717
self.click('a[rel="next"]')
1818
self.verify("Do the drones look safe?")
19-
self.click_link_text('Store')
19+
self.open("https://store.xkcd.com/collections/everything")
2020
self.update_text("input.search-input", "book\n")
2121
self.verify("Do you see books in the search results?")
2222
self.open("https://xkcd.com/213/")

0 commit comments

Comments
 (0)