We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 9e8c7c7 commit b3dd883Copy full SHA for b3dd883
seleniumbase/fixtures/base_case.py
@@ -20,9 +20,11 @@ class MyTestClass(BaseCase):
20
def test_anything(self):
21
# Write your code here. Example:
22
self.open("https://github.com/")
23
- self.type("input.header-search-input", "SeleniumBase\n")
+ self.click('span[data-target*="inputButtonText"]')
24
+ self.type("input#query-builder-test", "SeleniumBase\n")
25
self.click('a[href="/seleniumbase/SeleniumBase"]')
26
self.assert_element("div.repository-content")
27
+ self.assert_text("SeleniumBase", "strong a")
28
# --------------------------------------------------------------
29
30
SeleniumBase methods expand and improve on existing WebDriver commands.
0 commit comments