Skip to content

Commit cf0f5f6

Browse files
committed
Update mkdocs
1 parent 879ef77 commit cf0f5f6

File tree

6 files changed

+13
-16
lines changed

6 files changed

+13
-16
lines changed

README.md

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,3 @@
1-
<meta property="og:title" content="SeleniumBase" />
2-
<meta property="og:description" content="Create browser tests for web and mobile user interfaces." />
31
<meta property="og:image" content="https://cdn2.hubspot.net/hubfs/100006/images/big_blue_logo_7.png" />
42
<link rel="icon" href="https://seleniumbase.io/img/logo4.png">
53
<h2 align="center"><a align="center" href="https://github.com/seleniumbase/SeleniumBase/"><img align="center" src="https://cdn2.hubspot.net/hubfs/100006/images/blue_logo_7.png" alt="SeleniumBase" height="170"></a></h2>

docs/img/logo4.png

-4 Bytes
Loading

docs/requirements.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
mkdocs==1.1.2
2-
mkdocs-material==5.0.2
2+
mkdocs-material==5.1.1
33
mkdocs-simple-hooks==0.1.0
44
mkdocs-material-extensions==1.0
55
mkdocs-minify-plugin==0.3.0

examples/master_qa/ReadMe.md

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

33
### MasterQA combines automation with manual verification steps.
44

@@ -19,7 +19,7 @@ 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.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-
![](http://cdn2.hubspot.net/hubfs/100006/images/hybrid_screen.png "MasterQA")
22+
![](https://cdn2.hubspot.net/hubfs/100006/images/hybrid_screen.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

@@ -38,7 +38,7 @@ At the end of your test run, you'll receive a report with results, screenshots,
3838

3939
### Check out [masterqa_test.py](https://github.com/seleniumbase/SeleniumBase/blob/master/examples/master_qa/masterqa_test.py) to learn how to write your own MasterQA tests:
4040

41-
You'll notice that tests are written the same way as regular [SeleniumBase](http://seleniumbase.com) tests, with the key difference being a different import: ``from seleniumbase import MasterQA`` rather than ``from seleniumbase import BaseCase``. Now your Python test class will import ``MasterQA`` instead of ``BaseCase``.
41+
You'll notice that tests are written the same way as regular [SeleniumBase](https://seleniumbase.com) tests, with the key difference being a different import: ``from seleniumbase import MasterQA`` rather than ``from seleniumbase import BaseCase``. Now your Python test class will import ``MasterQA`` instead of ``BaseCase``.
4242

4343
To add a manual verification step, use ``self.verify()`` in the code after each part of your test that needs a manual verification step. If you want to include a custom question, add text inside that call (in quotes). Example:
4444

@@ -50,4 +50,4 @@ self.verify("Can you find the moon?")
5050

5151
---
5252

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

mkdocs.yml

Lines changed: 4 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -19,8 +19,7 @@ markdown_extensions:
1919
- fontawesome_markdown
2020
- markdown.extensions.admonition
2121
- markdown.extensions.attr_list
22-
- markdown.extensions.codehilite:
23-
guess_lang: false
22+
- markdown.extensions.codehilite
2423
- markdown.extensions.def_list
2524
- markdown.extensions.footnotes
2625
- markdown.extensions.meta
@@ -29,16 +28,16 @@ markdown_extensions:
2928
# Configuration
3029
theme:
3130
name: material
32-
logo: https://seleniumbase.io/img/logo3a.png
33-
favicon: img/favicon.ico
31+
logo: img/logo3a.png
32+
favicon: img/logo4.png
3433
language: en
3534
features:
3635
- tabs
3736
# Plugins
3837
plugins:
3938
- search
4039
- minify:
41-
minify_html: true
40+
minify_html: false
4241
- mkdocs-simple-hooks:
4342
hooks:
4443
on_pre_build: docs.prepare:main

seleniumbase/masterqa/ReadMe.md

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

33
### MasterQA combines automation with manual verification steps.
44

@@ -19,7 +19,7 @@ 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.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-
![](http://cdn2.hubspot.net/hubfs/100006/images/hybrid_screen.png "MasterQA")
22+
![](https://cdn2.hubspot.net/hubfs/100006/images/hybrid_screen.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

@@ -38,7 +38,7 @@ At the end of your test run, you'll receive a report with results, screenshots,
3838

3939
### Check out [masterqa_test.py](https://github.com/seleniumbase/SeleniumBase/blob/master/examples/master_qa/masterqa_test.py) to learn how to write your own MasterQA tests:
4040

41-
You'll notice that tests are written the same way as regular [SeleniumBase](http://seleniumbase.com) tests, with the key difference being a different import: ``from seleniumbase import MasterQA`` rather than ``from seleniumbase import BaseCase``. Now your Python test class will import ``MasterQA`` instead of ``BaseCase``.
41+
You'll notice that tests are written the same way as regular [SeleniumBase](https://seleniumbase.com) tests, with the key difference being a different import: ``from seleniumbase import MasterQA`` rather than ``from seleniumbase import BaseCase``. Now your Python test class will import ``MasterQA`` instead of ``BaseCase``.
4242

4343
To add a manual verification step, use ``self.verify()`` in the code after each part of your test that needs a manual verification step. If you want to include a custom question, add text inside that call (in quotes). Example:
4444

@@ -50,4 +50,4 @@ self.verify("Can you find the moon?")
5050

5151
---
5252

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

0 commit comments

Comments
 (0)