Update comments.

This commit is contained in:
Michael Mintz 2020-05-01 23:58:53 -04:00
parent 4ab846ead1
commit 360412c736
4 changed files with 4 additions and 4 deletions

View File

@ -231,7 +231,7 @@ SeleniumBase provides additional Pytest command-line options for tests:
--headed # (The option to run tests with a GUI on Linux OS.)
--start-page=URL # (The starting URL for the web browser when tests begin.)
--archive-logs # (Archive old log files instead of deleting them.)
--time-limit # (The option to set a time limit per test before failing it.)
--time-limit=SECONDS # (Safely fail any test that exceeds the limit limit.)
--slow # (The option to slow down the automation.)
--demo # (The option to visually see test actions as they occur.)
--demo-sleep=SECONDS # (The option to wait longer after Demo Mode actions.)

View File

@ -104,7 +104,7 @@ SeleniumBase provides additional Pytest command-line options for tests:
--headed # (The option to run tests with a GUI on Linux OS.)
--start-page=URL # (The starting URL for the web browser when tests begin.)
--archive-logs # (Archive old log files instead of deleting them.)
--time-limit # (The option to set a time limit per test before failing it.)
--time-limit=SECONDS # (Safely fail any test that exceeds the limit limit.)
--slow # (The option to slow down the automation.)
--demo # (The option to visually see test actions as they occur.)
--demo-sleep=SECONDS # (The option to wait longer after Demo Mode actions.)

View File

@ -34,7 +34,7 @@ def pytest_addoption(parser):
--headed (The option to run tests with a GUI on Linux OS.)
--start-page=URL (The starting URL for the web browser when tests begin.)
--archive-logs (Archive old log files instead of deleting them.)
--time-limit (The option to set a time limit per test before failing it.)
--time-limit=SECONDS (Safely fail any test that exceeds the limit limit.)
--slow (The option to slow down the automation.)
--demo (The option to visually see test actions as they occur.)
--demo-sleep=SECONDS (The option to wait longer after Demo Mode actions.)

View File

@ -25,7 +25,7 @@ class SeleniumBrowser(Plugin):
--headless (The option to run tests headlessly. The default on Linux OS.)
--headed (The option to run tests with a GUI on Linux OS.)
--start-page=URL (The starting URL for the web browser when tests begin.)
--time-limit (The option to set a time limit per test before failing it.)
--time-limit=SECONDS (Safely fail any test that exceeds the limit limit.)
--slow (The option to slow down the automation.)
--demo (The option to visually see test actions as they occur.)
--demo-sleep=SECONDS (The option to wait longer after Demo Mode actions.)