(self)
| 4 | |
| 5 | class TestSimpleLogin(BaseCase): |
| 6 | def test_simple_login(self): |
| 7 | self.goto("https://seleniumbase.io/simple/login") |
| 8 | self.type("#username", "demo_user") |
| 9 | self.type("#password", "secret_pass") |
| 10 | self.click('a:contains("Sign in")') |
| 11 | self.assert_exact_text("Welcome!", "h1") |
| 12 | self.assert_element("img#image1") |
| 13 | self.highlight("#image1") |
| 14 | self.click_link("Sign out") |
| 15 | self.assert_text("signed out", "#top_message") |
nothing calls this directly
no test coverage detected