Skip to content

Commit 360412c

Browse files
committed
Update comments.
1 parent 4ab846e commit 360412c

File tree

4 files changed

+4
-4
lines changed

4 files changed

+4
-4
lines changed

README.md

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

help_docs/customizing_test_runs.md

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

seleniumbase/plugins/pytest_plugin.py

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

seleniumbase/plugins/selenium_plugin.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,7 @@ class SeleniumBrowser(Plugin):
2525
--headless (The option to run tests headlessly. The default on Linux OS.)
2626
--headed (The option to run tests with a GUI on Linux OS.)
2727
--start-page=URL (The starting URL for the web browser when tests begin.)
28-
--time-limit (The option to set a time limit per test before failing it.)
28+
--time-limit=SECONDS (Safely fail any test that exceeds the limit limit.)
2929
--slow (The option to slow down the automation.)
3030
--demo (The option to visually see test actions as they occur.)
3131
--demo-sleep=SECONDS (The option to wait longer after Demo Mode actions.)

0 commit comments

Comments
 (0)