Skip to content

Commit bcf0b73

Browse files
committed
Update documentation
1 parent e0fb0b9 commit bcf0b73

File tree

2 files changed

+3
-3
lines changed

2 files changed

+3
-3
lines changed

examples/visual_testing/ReadMe.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
<p align="center"><a href="https://github.com/seleniumbase/SeleniumBase/"><img src="https://seleniumbase.io/cdn/img/sb_logo_f6.png" alt="SeleniumBase" width="330" /></a></p>
1+
<p align="center"><a href="https://github.com/seleniumbase/SeleniumBase/"><img src="https://seleniumbase.io/cdn/img/sb_logo_f6.png" alt="SeleniumBase" width="445" /></a></p>
22

33
## [<img src="https://seleniumbase.io/img/logo6.png" title="SeleniumBase" width="32">](https://github.com/seleniumbase/SeleniumBase/) Automated Visual Regression Testing
44

help_docs/how_it_works.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -31,9 +31,9 @@ class TestMFALogin(BaseCase):
3131
self.enter_mfa_code("#totpcode", "GAXG2MTEOR3DMMDG") # 6-digit
3232
self.assert_text("Welcome!", "h1")
3333
self.highlight("img#image1") # A fancier assert_element() call
34-
self.click('a:contains("This Page")')
34+
self.click('a:contains("This Page")') # Use :contains() on any tag
3535
self.save_screenshot_to_logs() # In "./latest_logs/" folder.
36-
self.click_link("Sign out") # Must be "a" tag. Not "button".
36+
self.click_link("Sign out") # Link must be "a" tag. Not "button".
3737
self.assert_element('a:contains("Sign in")')
3838
self.assert_exact_text("You have been signed out!", "#top_message")
3939
```

0 commit comments

Comments
 (0)