SeleniumBase/examples/master_qa/basic_masterqa_test_0.py

16 lines
548 B
Python

from seleniumbase import MasterQA
MasterQA.main(__name__, __file__)
class MasterQATests(MasterQA):
def test_masterqa(self):
self.open("https://seleniumbase.io/devices/")
self.highlight("div.mockup-wrapper")
self.verify("Do you see 4 computer devices?")
self.open("https://seleniumbase.io/demo_page")
self.highlight("table")
self.verify("Do you see elements in a table?")
self.open("https://xkcd.com/1700/")
self.highlight("#comic")
self.verify("Do you see a webcomic?")