Skip to content

Commit 293bf88

Browse files
committed
Update the docs
1 parent db4fc4b commit 293bf88

File tree

7 files changed

+14
-14
lines changed

7 files changed

+14
-14
lines changed

README.md

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -56,7 +56,7 @@ Tests are run with <a href="https://docs.pytest.org/en/latest/index.html">pytest
5656

5757
--------
5858

59-
<p align="center"><img src="https://seleniumbase.io/cdn/gif/swag_mobile.gif" width="450" alt="SeleniumBase Mobile Mode" title="SeleniumBase Mobile Mode" /></p>
59+
<p align="center"><a href="https://github.com/seleniumbase/SeleniumBase/blob/master/examples/test_swag_labs.py"><img src="https://seleniumbase.io/cdn/gif/swag_mobile_2.gif" alt="SeleniumBase Mobile Mode" title="SeleniumBase Mobile Mode" /></a></p>
6060

6161
```bash
6262
pytest test_swag_labs.py --mobile
@@ -65,7 +65,7 @@ pytest test_swag_labs.py --mobile
6565
<p align="center">(Above: <a href="https://github.com/seleniumbase/SeleniumBase/blob/master/examples/test_swag_labs.py">test_swag_labs.py</a> in Mobile Mode.)</p>
6666

6767
<div><p align="center">(Below: Same test running in Demo Mode.)</p></div>
68-
<p align="center"><a href="https://github.com/seleniumbase/SeleniumBase/blob/master/examples/test_swag_labs.py"><img src="https://cdn2.hubspot.net/hubfs/100006/images/swag_labs_gif.gif" width="450" alt="SeleniumBase Demo Mode" title="SeleniumBase Demo Mode" /></a></p>
68+
<p align="center"><a href="https://github.com/seleniumbase/SeleniumBase/blob/master/examples/test_swag_labs.py"><img src="https://seleniumbase.io/cdn/gif/swag_demo_2.gif" alt="SeleniumBase Demo Mode" title="SeleniumBase Demo Mode" /></a></p>
6969

7070
```bash
7171
pytest test_swag_labs.py --demo
@@ -211,7 +211,7 @@ pytest test_swag_labs.py
211211
pytest my_first_test.py --demo
212212
```
213213
214-
<img src="https://cdn2.hubspot.net/hubfs/100006/images/my_first_test_gif.gif" title="SeleniumBase" />
214+
<img src="https://seleniumbase.io/cdn/gif/my_first_test_1.gif" title="SeleniumBase" />
215215
216216
<b>Here's the code for [my_first_test.py](https://github.com/seleniumbase/SeleniumBase/blob/master/examples/my_first_test.py):</b>
217217
@@ -514,7 +514,7 @@ The ``--report`` option gives you a fancy report after your test suite completes
514514
nosetests test_suite.py --report
515515
```
516516
517-
<img src="https://cdn2.hubspot.net/hubfs/100006/images/Test_Report_2.png" alt="Example Nosetest Report" title="Example Nosetest Report" width="320" />
517+
<img src="https://seleniumbase.io/cdn/img/nose_report.png" alt="Example Nosetest Report" title="Example Nosetest Report" width="320" />
518518
519519
(NOTE: You can add ``--show-report`` to immediately display Nosetest reports after the test suite completes. Only use ``--show-report`` when running tests locally because it pauses the test run.)
520520

examples/ReadMe.md

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -32,15 +32,15 @@ Run an example test in Demo Mode: (highlight assertions)
3232
pytest my_first_test.py --demo
3333
```
3434

35-
<img src="https://cdn2.hubspot.net/hubfs/100006/images/my_first_test_gif.gif" title="SeleniumBase Demo Mode" /><br />
35+
<img src="https://seleniumbase.io/cdn/gif/my_first_test_1.gif" title="SeleniumBase Demo Mode" /><br />
3636

3737
Run a different example in Demo Mode:
3838

3939
```bash
4040
pytest test_swag_labs.py --demo
4141
```
4242

43-
<img src="https://cdn2.hubspot.net/hubfs/100006/images/swag_labs_gif.gif" /><br />
43+
<img src="https://seleniumbase.io/cdn/gif/swag_demo_2.gif" /><br />
4444

4545
Run an example test in Headless Mode: (invisible browser)
4646

@@ -54,7 +54,7 @@ Run an example test using Chrome's mobile device emulator: (default settings)
5454
pytest test_swag_labs.py --mobile
5555
```
5656

57-
<img src="https://cdn2.hubspot.net/hubfs/100006/images/swag_mobile.gif" title="SeleniumBase Mobile Mode" /><br />
57+
<img src="https://seleniumbase.io/cdn/gif/swag_mobile_2.gif" title="SeleniumBase Mobile Mode" /><br />
5858

5959
Run tests with verbose output: (includes more details)
6060

@@ -68,7 +68,7 @@ Run a test on the Demo Site to try many SeleniumBase methods:
6868
pytest test_demo_site.py
6969
```
7070

71-
<img src="https://cdn2.hubspot.net/hubfs/100006/images/demo_page.gif" title="SeleniumBase Mobile Mode" /><br />
71+
<img src="https://seleniumbase.io/cdn/gif/demo_page_1.gif" title="SeleniumBase Demo Page" /><br />
7272

7373
Run tests multi-threaded using [n] threads:
7474

@@ -156,7 +156,7 @@ To make things easier, here's a simple GUI program that allows you to run a few
156156
python gui_test_runner.py
157157
```
158158

159-
<img src="https://cdn2.hubspot.net/hubfs/100006/images/gui_test_runner_py.png" title="GUI Test Runner" width="320" />
159+
<img src="https://seleniumbase.io/cdn/img/gui_test_runner.png" title="GUI Test Runner" width="320" />
160160

161161
--------
162162

examples/example_logs/ReadMe.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -39,7 +39,7 @@ The ``--report`` option gives you a fancy report after your test suite completes
3939
```bash
4040
nosetests test_suite.py --report --browser=chrome
4141
```
42-
<img src="https://cdn2.hubspot.net/hubfs/100006/images/Test_Report_2.png" alt="Example Nosetest Report" title="Example Nosetest Report" width="320" />
42+
<img src="https://seleniumbase.io/cdn/img/nose_report.png" alt="Example Nosetest Report" title="Example Nosetest Report" width="320" />
4343

4444
(NOTE: You can add ``--show-report`` to immediately display Nosetest reports after the test suite completes. Only use ``--show-report`` when running tests locally because it pauses the test run.)
4545

examples/swag_labs_suite.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@
66
class SwagLabsTests(BaseCase):
77

88
def login_to_swag_labs(self, username="standard_user"):
9-
""" Login to Swag Labs and verify that login was successful. """
9+
""" Login to Swag Labs and verify success. """
1010
self.open("https://www.saucedemo.com/")
1111
if username not in self.get_text("#login_credentials"):
1212
self.fail("Invalid user for login: %s" % username)

examples/test_swag_labs.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
class SwagLabsTests(BaseCase):
55

66
def login_to_swag_labs(self, username="standard_user"):
7-
""" Login to Swag Labs and verify that login was successful. """
7+
""" Login to Swag Labs and verify success. """
88
self.open("https://www.saucedemo.com/")
99
if username not in self.get_text("#login_credentials"):
1010
self.fail("Invalid user for login: %s" % username)

help_docs/customizing_test_runs.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -276,7 +276,7 @@ The ``--report`` option gives you a fancy report after your test suite completes
276276
nosetests test_suite.py --report
277277
```
278278

279-
<img src="https://cdn2.hubspot.net/hubfs/100006/images/Test_Report_2.png" alt="Example Nosetest Report" title="Example Nosetest Report" width="320" />
279+
<img src="https://seleniumbase.io/cdn/img/nose_report.png" alt="Example Nosetest Report" title="Example Nosetest Report" width="320" />
280280

281281
(NOTE: You can add ``--show_report`` to immediately display Nosetest reports after the test suite completes. Only use ``--show_report`` when running tests locally because it pauses the test run.)
282282

help_docs/mobile_testing.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -44,7 +44,7 @@ To find real User-Agent strings, see:
4444
pytest test_swag_labs.py --mobile
4545
```
4646

47-
[<img src="https://seleniumbase.io/cdn/gif/swag_mobile.gif" title="SeleniumBase Mobile Testing">](https://seleniumbase.io/cdn/gif/swag_mobile.gif)
47+
[<img src="https://seleniumbase.io/cdn/gif/swag_mobile_2.gif" title="SeleniumBase Mobile Testing">](https://seleniumbase.io/cdn/gif/swag_mobile.gif)
4848

4949
<b>Here's an example of configuring mobile settings for that test:</b>
5050

0 commit comments

Comments
 (0)