File tree Expand file tree Collapse file tree 4 files changed +4
-4
lines changed Expand file tree Collapse file tree 4 files changed +4
-4
lines changed Original file line number Diff line number Diff line change @@ -231,7 +231,7 @@ SeleniumBase provides additional Pytest command-line options for tests:
231
231
--headed # (The option to run tests with a GUI on Linux OS.)
232
232
--start-page=URL # (The starting URL for the web browser when tests begin.)
233
233
--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 .)
235
235
--slow # (The option to slow down the automation.)
236
236
--demo # (The option to visually see test actions as they occur.)
237
237
--demo-sleep=SECONDS # (The option to wait longer after Demo Mode actions.)
Original file line number Diff line number Diff line change @@ -104,7 +104,7 @@ SeleniumBase provides additional Pytest command-line options for tests:
104
104
--headed # (The option to run tests with a GUI on Linux OS.)
105
105
--start-page=URL # (The starting URL for the web browser when tests begin.)
106
106
--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 .)
108
108
--slow # (The option to slow down the automation.)
109
109
--demo # (The option to visually see test actions as they occur.)
110
110
--demo-sleep=SECONDS # (The option to wait longer after Demo Mode actions.)
Original file line number Diff line number Diff line change @@ -34,7 +34,7 @@ def pytest_addoption(parser):
34
34
--headed (The option to run tests with a GUI on Linux OS.)
35
35
--start-page=URL (The starting URL for the web browser when tests begin.)
36
36
--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 .)
38
38
--slow (The option to slow down the automation.)
39
39
--demo (The option to visually see test actions as they occur.)
40
40
--demo-sleep=SECONDS (The option to wait longer after Demo Mode actions.)
Original file line number Diff line number Diff line change @@ -25,7 +25,7 @@ class SeleniumBrowser(Plugin):
25
25
--headless (The option to run tests headlessly. The default on Linux OS.)
26
26
--headed (The option to run tests with a GUI on Linux OS.)
27
27
--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 .)
29
29
--slow (The option to slow down the automation.)
30
30
--demo (The option to visually see test actions as they occur.)
31
31
--demo-sleep=SECONDS (The option to wait longer after Demo Mode actions.)
You can’t perform that action at this time.
0 commit comments