Skip to content

Commit aad55ac

Browse files
committed
Update the docs
1 parent cc46914 commit aad55ac

File tree

2 files changed

+3
-3
lines changed

2 files changed

+3
-3
lines changed

help_docs/how_it_works.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -23,4 +23,4 @@ class MyTestClass(BaseCase):
2323

2424
--------
2525

26-
For more ways of using SeleniumBase, see: <a href="https://github.com/seleniumbase/SeleniumBase/blob/master/help_docs/syntax_formats.md">SyntaxFormats</a>.
26+
For more ways of using SeleniumBase, see: <a href="https://seleniumbase.io/help_docs/syntax_formats/">SyntaxFormats</a>.

help_docs/syntax_formats.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -119,7 +119,7 @@ from seleniumbase import BaseCase
119119
class LoginPage():
120120

121121
def login_to_swag_labs(self, sb, username):
122-
sb.open("https://www.saucedemo.com/")
122+
sb.open("https://www.saucedemo.com/v1")
123123
sb.type("#user-name", username)
124124
sb.type("#password", "secret_sauce")
125125
sb.click('input[type="submit"]')
@@ -142,7 +142,7 @@ This is similar to the classic Page Object Model with <code>BaseCase</code> inhe
142142
class LoginPage():
143143

144144
def login_to_swag_labs(self, sb, username):
145-
sb.open("https://www.saucedemo.com/")
145+
sb.open("https://www.saucedemo.com/v1")
146146
sb.type("#user-name", username)
147147
sb.type("#password", "secret_sauce")
148148
sb.click('input[type="submit"]')

0 commit comments

Comments
 (0)