19 lines
799 B
Python
19 lines
799 B
Python
import pytest
|
|
|
|
|
|
@pytest.mark.usefixtures("sb")
|
|
class Test_UseFixtures:
|
|
def test_usefixtures_on_class(self):
|
|
sb = self.sb
|
|
sb.open("https://seleniumbase.io/realworld/login")
|
|
sb.type("#username", "demo_user")
|
|
sb.type("#password", "secret_pass")
|
|
sb.enter_mfa_code("#totpcode", "GAXG2MTEOR3DMMDG") # 6-digit
|
|
sb.assert_text("Welcome!", "h1")
|
|
sb.highlight("img#image1") # A fancier assert_element() call
|
|
sb.click('a:contains("This Page")') # Use :contains() on any tag
|
|
sb.save_screenshot_to_logs() # In "./latest_logs/" folder.
|
|
sb.click_link("Sign out") # Link must be "a" tag. Not "button".
|
|
sb.assert_element('a:contains("Sign in")')
|
|
sb.assert_exact_text("You have been signed out!", "#top_message")
|