(self)
| 4 | |
| 5 | class GitHubTests(BaseCase): |
| 6 | def test_github(self): |
| 7 | if self.headless or self.page_load_strategy == "none": |
| 8 | self.goto_if_not_url("about:blank") |
| 9 | print("\n Unsupported mode for this test.") |
| 10 | self.skip("Unsupported mode for this test.") |
| 11 | self.goto("https://github.com/seleniumbase/SeleniumBase") |
| 12 | self.click_if_visible('[data-action="click:signup-prompt#dismiss"]') |
| 13 | self.highlight('[class*="PageLayout-Content-"][data-width="large"]') |
| 14 | self.highlight('[class*="PageLayout-PaneWrapper"]') |
| 15 | self.assert_element("div.repository-content") |
| 16 | self.assert_text("SeleniumBase", "strong a") |
| 17 | self.js_click('a[title="seleniumbase"]') |
| 18 | self.slow_click('td[class*="large"] a[title="fixtures"]') |
| 19 | self.highlight('td[class*="large"] a[title="base_case.py"]', loops=8) |
nothing calls this directly
no test coverage detected