Skip to content

Commit 357ea95

Browse files
committed
Update the docs
1 parent cd911ed commit 357ea95

File tree

5 files changed

+12
-12
lines changed

5 files changed

+12
-12
lines changed

help_docs/chinese.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -464,7 +464,7 @@ pytest test_fail.py
464464
pytest test_suite.py --html=report.html
465465
```
466466

467-
<img src="https://cdn2.hubspot.net/hubfs/100006/images/pytest_report_3c.png" alt="Example Pytest Report" title="Example Pytest Report" width="520" />
467+
<img src="https://seleniumbase.io/cdn/img/html_report.png" alt="Example Pytest Report" title="Example Pytest Report" width="520" />
468468

469469
还可以使用``--junit-xml=report``。获取一个xml报告。Jenkins可以使用这个文件为您的测试显示更好的报告。
470470

@@ -480,7 +480,7 @@ pytest test_suite.py --junit-xml=report.xml
480480
nosetests test_suite.py --report
481481
```
482482

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

485485
(注意:您可以添加``--show-report ``来在测试套件完成后立即显示Nosetest报告。只在本地运行测试时使用``--show-report ``,因为它会暂停测试运行.)
486486

integrations/katalon/ReadMe.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44

55
#### Step 1: Make a recording with the Katalon Recorder
66

7-
![](https://cdn2.hubspot.net/hubfs/100006/images/katalon_recorder_2.png "Katalon Recorder example")
7+
![](https://seleniumbase.io/cdn/img/katalon_recorder_2.png "Katalon Recorder example")
88

99
#### Step 2: Export your recording as a Python 2 Webdriver script
1010

integrations/selenium_ide/ReadMe.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ Katalon Recorder (Selenium IDE) is a tool that allows you to record and playback
44

55
### Step 1: Make a recording with the Katalon Recorder
66

7-
![](https://cdn2.hubspot.net/hubfs/100006/images/katalon_recorder_2.png "Katalon Recorder example")
7+
![](https://seleniumbase.io/cdn/img/katalon_recorder_2.png "Katalon Recorder example")
88

99
### Step 2: Export your recording as a Python 2 Webdriver script
1010

seleniumbase/masterqa/ReadMe.md

Lines changed: 7 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,8 @@
1-
![](https://cdn2.hubspot.net/hubfs/100006/images/masterqa_logo-11.png "MasterQA")
1+
![](https://seleniumbase.io/cdn/img/masterqa_logo.png "MasterQA")
22

3-
### MasterQA combines automation with manual verification steps.
3+
<h3><img src="https://seleniumbase.io/img/logo6.png" title="SeleniumBase" width="32" /> MasterQA combines automation with manual verification steps.</h3>
44

5-
![](https://cdn2.hubspot.net/hubfs/100006/images/masterqa6.gif "MasterQA")
5+
![](https://seleniumbase.io/cdn/gif/masterqa6.gif "MasterQA")
66

77
Here's example code from [basic_masterqa_test_0.py](https://github.com/seleniumbase/SeleniumBase/blob/master/examples/master_qa/basic_masterqa_test_0.py):
88

@@ -19,16 +19,16 @@ After each automation checkpoint, a pop-up window will ask the user questions fo
1919

2020
When the test run completes, as seen from [this longer example](https://github.com/seleniumbase/SeleniumBase/blob/master/examples/master_qa/masterqa_test_1.py), you'll reach the results page that appears after answering all the verification questions. (Failed verifications generate links to screenshots and log files.)
2121

22-
![](https://cdn2.hubspot.net/hubfs/100006/images/hybrid_screen.png "MasterQA")
22+
![](https://seleniumbase.io/cdn/img/mqa_hybrid.png "MasterQA")
2323

2424
You may have noticed the ``Incomplete Test Runs`` row on the results page. If the value for that is not zero, it means that one of the automated steps failed. This could happen if you tell your script to perform an action on an element that doesn't exist. Now that we're mixing automation with manual QA, it's good to tell apart the failures from each. The results_table CSV file contains a spreadsheet with the details of each failure (if any) for both manual and automated steps.
2525

2626
#### How to run the example tests from scratch:
27+
2728
```bash
2829
git clone https://github.com/seleniumbase/SeleniumBase.git
2930
cd SeleniumBase
30-
pip install -r requirements.txt --upgrade
31-
python setup.py develop
31+
pip install .
3232
cd examples/master_qa
3333
pytest basic_masterqa_test_0.py
3434
pytest masterqa_test_1.py
@@ -48,6 +48,6 @@ self.verify()
4848
self.verify("Can you find the moon?")
4949
```
5050

51-
---
51+
--------
5252

5353
MasterQA is powered by [SeleniumBase](https://seleniumbase.com), the most advanced open-source automation framework on the [Planet](https://en.wikipedia.org/wiki/Earth).

seleniumbase/utilities/selenium_ide/ReadMe.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ Katalon Recorder (Selenium IDE) is a tool that allows you to record and playback
44

55
### Step 1: Make a recording with the Katalon Recorder
66

7-
![](https://cdn2.hubspot.net/hubfs/100006/images/katalon_recorder_2.png "Katalon Recorder example")
7+
![](https://seleniumbase.io/cdn/img/katalon_recorder_2.png "Katalon Recorder example")
88

99
### Step 2: Export your recording as a Python 2 Webdriver script
1010

0 commit comments

Comments
 (0)