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 d663857 commit 4270e48Copy full SHA for 4270e48
examples/test_hack_search.py
@@ -16,6 +16,12 @@ def test_hack_search(self):
16
self.sleep(0.5)
17
self.js_click('[value="Bing Search"]')
18
self.highlight("h1.b_logo")
19
+ help_docs_install_link = 'a[href*="seleniumbase.io/help_docs/install"]'
20
+ if self.is_element_visible(help_docs_install_link):
21
+ self.highlight_click(help_docs_install_link)
22
+ self.switch_to_newest_window()
23
+ self.assert_text("Install SeleniumBase", "h1")
24
+ self.click_link_text("GitHub branch")
25
self.highlight_click('a[href*="github.com/seleniumbase/SeleniumBase"]')
26
self.switch_to_newest_window()
27
self.assert_element('[href="/seleniumbase/SeleniumBase"]')
0 commit comments