File tree Expand file tree Collapse file tree 5 files changed +6
-4
lines changed Expand file tree Collapse file tree 5 files changed +6
-4
lines changed Original file line number Diff line number Diff line change @@ -497,6 +497,7 @@ The code above will leave your browser window open in case there's a failure. (i
497
497
--firefox-pref=SET # (Set a Firefox preference:value set, comma-separated.)
498
498
--extension-zip=ZIP # (Load a Chrome Extension .zip|.crx, comma-separated.)
499
499
--extension-dir=DIR # (Load a Chrome Extension directory, comma-separated.)
500
+ --sjw # (Skip JS Waits for readyState to be "complete" or Angular to load.)
500
501
--pls=PLS # (Set pageLoadStrategy on Chrome: "normal", "eager", or "none".)
501
502
--headless # (Run tests in headless mode. The default arg on Linux OS.)
502
503
--headless2 # (Use the new headless mode, which supports extensions.)
@@ -507,7 +508,6 @@ The code above will leave your browser window open in case there's a failure. (i
507
508
--start-page=URL # (The starting URL for the web browser when tests begin.)
508
509
--archive-logs # (Archive existing log files instead of deleting them.)
509
510
--archive-downloads # (Archive old downloads instead of deleting them.)
510
- --skip-js-waits # (Skip waiting for readyState to be complete or Angular.)
511
511
--time-limit=SECONDS # (Safely fail any test that exceeds the time limit.)
512
512
--slow # (Slow down the automation. Faster than using Demo Mode.)
513
513
--demo # (Slow down and visually see test actions as they occur.)
Original file line number Diff line number Diff line change @@ -130,6 +130,7 @@ pytest my_first_test.py --settings-file=custom_settings.py
130
130
--firefox-pref=SET # (Set a Firefox preference:value set, comma-separated.)
131
131
--extension-zip=ZIP # (Load a Chrome Extension .zip|.crx, comma-separated.)
132
132
--extension-dir=DIR # (Load a Chrome Extension directory, comma-separated.)
133
+ --sjw # (Skip JS Waits for readyState to be "complete" or Angular to load.)
133
134
--pls=PLS # (Set pageLoadStrategy on Chrome: "normal", "eager", or "none".)
134
135
--headless # (Run tests in headless mode. The default arg on Linux OS.)
135
136
--headless2 # (Use the new headless mode, which supports extensions.)
@@ -140,7 +141,6 @@ pytest my_first_test.py --settings-file=custom_settings.py
140
141
--start-page=URL # (The starting URL for the web browser when tests begin.)
141
142
--archive-logs # (Archive existing log files instead of deleting them.)
142
143
--archive-downloads # (Archive old downloads instead of deleting them.)
143
- --skip-js-waits # (Skip waiting for readyState to be complete or Angular.)
144
144
--time-limit=SECONDS # (Safely fail any test that exceeds the time limit.)
145
145
--slow # (Slow down the automation. Faster than using Demo Mode.)
146
146
--demo # (Slow down and visually see test actions as they occur.)
Original file line number Diff line number Diff line change 39
39
-D firefox-pref=SET (Set a Firefox preference:value set, comma-separated.)
40
40
-D extension-zip=ZIP (Load a Chrome Extension .zip|.crx, comma-separated.)
41
41
-D extension-dir=DIR (Load a Chrome Extension directory, comma-separated.)
42
+ -D sjw (Skip JS Waits for readyState to be "complete" or Angular to load.)
42
43
-D pls=PLS (Set pageLoadStrategy on Chrome: "normal", "eager", or "none".)
43
44
-D headless (Run tests in headless mode. The default arg on Linux OS.)
44
45
-D headless2 (Use the new headless mode, which supports extensions.)
Original file line number Diff line number Diff line change @@ -54,6 +54,7 @@ def pytest_addoption(parser):
54
54
--firefox-pref=SET (Set a Firefox preference:value set, comma-separated.)
55
55
--extension-zip=ZIP (Load a Chrome Extension .zip|.crx, comma-separated.)
56
56
--extension-dir=DIR (Load a Chrome Extension directory, comma-separated.)
57
+ --sjw (Skip JS Waits for readyState to be "complete" or Angular to load.)
57
58
--pls=PLS (Set pageLoadStrategy on Chrome: "normal", "eager", or "none".)
58
59
--headless (Run tests in headless mode. The default arg on Linux OS.)
59
60
--headless2 (Use the new headless mode, which supports extensions.)
@@ -64,7 +65,7 @@ def pytest_addoption(parser):
64
65
--start-page=URL (The starting URL for the web browser when tests begin.)
65
66
--archive-logs (Archive existing log files instead of deleting them.)
66
67
--archive-downloads (Archive old downloads instead of deleting them.)
67
- --skip-js-waits (Skip waiting for readyState to be complete or Angular.)
68
+ --sjw (Skip JavaScript Waits such as readyState==" complete" or Angular.)
68
69
--time-limit=SECONDS (Safely fail any test that exceeds the time limit.)
69
70
--slow (Slow down the automation. Faster than using Demo Mode.)
70
71
--demo (Slow down and visually see test actions as they occur.)
Original file line number Diff line number Diff line change @@ -38,6 +38,7 @@ class SeleniumBrowser(Plugin):
38
38
--firefox-pref=SET (Set a Firefox preference:value set, comma-separated.)
39
39
--extension-zip=ZIP (Load a Chrome Extension .zip|.crx, comma-separated.)
40
40
--extension-dir=DIR (Load a Chrome Extension directory, comma-separated.)
41
+ --sjw (Skip JS Waits for readyState to be "complete" or Angular to load.)
41
42
--pls=PLS (Set pageLoadStrategy on Chrome: "normal", "eager", or "none".)
42
43
--headless (Run tests in headless mode. The default arg on Linux OS.)
43
44
--headless2 (Use the new headless mode, which supports extensions.)
@@ -46,7 +47,6 @@ class SeleniumBrowser(Plugin):
46
47
--locale=LOCALE_CODE (Set the Language Locale Code for the web browser.)
47
48
--interval=SECONDS (The autoplay interval for presentations & tour steps)
48
49
--start-page=URL (The starting URL for the web browser when tests begin.)
49
- --skip-js-waits (Skip waiting for readyState to be complete or Angular.)
50
50
--time-limit=SECONDS (Safely fail any test that exceeds the time limit.)
51
51
--slow (Slow down the automation. Faster than using Demo Mode.)
52
52
--demo (Slow down and visually see test actions as they occur.)
You can’t perform that action at this time.
0 commit comments