Skip to content

Commit

Permalink
Update a test
Browse files Browse the repository at this point in the history
  • Loading branch information
mdmintz committed Jan 24, 2024
1 parent f44d803 commit 8c46e83
Showing 1 changed file with 5 additions and 5 deletions.
10 changes: 5 additions & 5 deletions examples/test_docs_site.py
Original file line number Diff line number Diff line change
Expand Up @@ -6,15 +6,15 @@ class DocsSiteTests(BaseCase):
def test_docs(self):
self.open("https://seleniumbase.io/help_docs/customizing_test_runs/")
self.assert_text("Command Line Options", "h1")
self.js_click('a[href="../../examples/example_logs/ReadMe/"]')
self.js_click('a[href$="/examples/example_logs/ReadMe/"]')
self.assert_text("Dashboard / Reports", "h1")
self.js_click('a[href*="/seleniumbase/console_scripts/ReadMe/"]')
self.js_click('a[href$="/seleniumbase/console_scripts/ReadMe/"]')
self.assert_text("Console Scripts", "h1")
self.js_click('a[href="../../../help_docs/syntax_formats/"]')
self.js_click('a[href$="/help_docs/syntax_formats/"]')
self.assert_text("Syntax Formats", "h1")
self.js_click('a[href="../recorder_mode/"]')
self.js_click('a[href$="/recorder_mode/"]')
self.assert_text("Recorder Mode", "h1")
self.js_click('a[href="../method_summary/"]')
self.js_click('a[href$="/method_summary/"]')
self.assert_text("API Reference", "h1")
self.click('img[alt="logo"]')
self.assert_text("SeleniumBase", "h1")

0 comments on commit 8c46e83

Please sign in to comment.