From db90db7ecc2775512a94adbc307cb6d2949ebdce Mon Sep 17 00:00:00 2001 From: Michael Mintz Date: Wed, 23 Sep 2020 12:52:42 -0400 Subject: [PATCH] Update the docs --- README.md | 10 +++++----- help_docs/ReadMe.md | 4 ++-- help_docs/customizing_test_runs.md | 4 ++-- seleniumbase/console_scripts/run.py | 2 +- 4 files changed, 10 insertions(+), 10 deletions(-) diff --git a/README.md b/README.md index 2d60d40c..3e2da16c 100755 --- a/README.md +++ b/README.md @@ -1,6 +1,6 @@ - - + + @@ -28,8 +28,8 @@ Tests are run with pytest. Browsers are controlled by WebDri

πŸš€ Start | -πŸ§™β€β™‚οΈ cmd | 🏰 Features | +πŸ–₯️ CLI | πŸ‘¨β€πŸ« Examples
πŸ“š API | @@ -42,7 +42,7 @@ Tests are run with pytest. Browsers are controlled by WebDri πŸ—ΊοΈ Tours | πŸ–ΌοΈ VisualTest
-πŸ’» Console Scripts | +πŸ“œ Console Scripts | 🌐 Grid | πŸƒ NodeRunner
@@ -61,7 +61,7 @@ Tests are run with pytest. Browsers are controlled by WebDri

Get Started:

* Requires **[Python](https://www.python.org/downloads/)** and **[Git](https://git-scm.com/)** -* [Python:2.7|3.5|3.6|3.7|3.8](https://www.python.org/downloads/) +* [Python:2.7|3.5|3.6|3.7|3.8|3.9](https://www.python.org/downloads/) * A [Python virtual env](https://packaging.python.org/guides/installing-using-pip-and-virtual-environments/) is recommended. See shortcut. Upgrade **[pip](https://pypi.org/project/pip/)** to prevent warnings: diff --git a/help_docs/ReadMe.md b/help_docs/ReadMe.md index 23d3cede..707c2127 100755 --- a/help_docs/ReadMe.md +++ b/help_docs/ReadMe.md @@ -4,7 +4,7 @@

πŸš€ Start | -πŸ§™β€β™‚οΈ cmd | +πŸ–₯️ CLI | 🏰 Features
πŸ‘¨β€πŸ« Examples | @@ -15,7 +15,7 @@ πŸ“‹ Reports | πŸ—ΊοΈ Tours
-πŸ’» Console Scripts | +πŸ“œ Console Scripts | 🌐 Grid
♻️ Boilerplates | diff --git a/help_docs/customizing_test_runs.md b/help_docs/customizing_test_runs.md index be9ba756..bea2c5ae 100755 --- a/help_docs/customizing_test_runs.md +++ b/help_docs/customizing_test_runs.md @@ -1,8 +1,8 @@ [](https://github.com/seleniumbase/SeleniumBase/blob/master/README.md) -

Command-line options

+

CLI Options

-You can customize test runs from the command-line thanks to [SeleniumBase's pytest plugin](https://github.com/seleniumbase/SeleniumBase/blob/master/seleniumbase/plugins/pytest_plugin.py), which adds command-line options for setting/enabling the browser type, headless mode, mobile mode, multithreading mode, demo mode, proxy config, user agent config, browser extensions, and more. +You can customize test runs from the command-line interface thanks to [SeleniumBase's pytest plugin](https://github.com/seleniumbase/SeleniumBase/blob/master/seleniumbase/plugins/pytest_plugin.py), which adds CLI options for setting/enabling the browser type, headless mode, mobile mode, multithreading mode, demo mode, proxy config, user agent config, browser extensions, and more. Here are some examples of configuring tests, which can be run from the [examples/](https://github.com/seleniumbase/SeleniumBase/tree/master/examples) folder: diff --git a/seleniumbase/console_scripts/run.py b/seleniumbase/console_scripts/run.py index b0a85515..0987bb77 100644 --- a/seleniumbase/console_scripts/run.py +++ b/seleniumbase/console_scripts/run.py @@ -448,7 +448,7 @@ def show_options(): c2 = colorama.Fore.BLUE + colorama.Back.LIGHTGREEN_EX c3 = colorama.Fore.BLUE + colorama.Back.LIGHTYELLOW_EX cr = colorama.Style.RESET_ALL - sc = ("\n " + c2 + " ** " + c3 + " pytest CMD Options " + c2 + " ** " + cr) + sc = ("\n " + c2 + " ** " + c3 + " pytest CLI Options " + c2 + " ** " + cr) print(sc) print("") line = "Here are some common pytest options to use with SeleniumBase:"