13 lines
402 B
Python
Executable File
13 lines
402 B
Python
Executable File
from seleniumbase import MasterQA
|
|
|
|
|
|
class MasterQATests(MasterQA):
|
|
|
|
def test_masterqa(self):
|
|
self.open("http://xkcd.com/1700/")
|
|
self.verify("Do you see a webcomic?")
|
|
self.click_link_text('Store')
|
|
self.verify("Do you see items for sale?")
|
|
self.update_text("input#top-search-input", "poster\n")
|
|
self.verify("Do you see posters in the search results?")
|