Skip to content

Commit eb9473f

Browse files
committed
Update the docs
1 parent 807362d commit eb9473f

File tree

4 files changed

+6
-6
lines changed

4 files changed

+6
-6
lines changed

README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -378,8 +378,8 @@ The code above will leave your browser window open in case there's a failure. (i
378378
--devtools # (Open Chrome's DevTools when the browser opens.)
379379
--reuse-session | --rs # (Reuse the browser session between tests.)
380380
--crumbs # (Delete all cookies between tests reusing a session.)
381-
--maximize-window # (Start tests with the web browser window maximized.)
382-
--save-screenshot # (Save a screenshot at the end of each test.)
381+
--maximize # (Start tests with the web browser window maximized.)
382+
--screenshot # (Save a screenshot at the end of each test.)
383383
--visual-baseline # (Set the visual baseline for Visual/Layout tests.)
384384
--external-pdf # (Set Chrome "plugins.always_open_pdf_externally": True.)
385385
--timeout-multiplier=MULTIPLIER # (Multiplies the default timeout values.)

help_docs/customizing_test_runs.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -162,8 +162,8 @@ SeleniumBase provides additional ``pytest`` command-line options for tests:
162162
--devtools # (Open Chrome's DevTools when the browser opens.)
163163
--reuse-session | --rs # (Reuse the browser session between tests.)
164164
--crumbs # (Delete all cookies between tests reusing a session.)
165-
--maximize-window # (Start tests with the web browser window maximized.)
166-
--save-screenshot # (Save a screenshot at the end of each test.)
165+
--maximize # (Start tests with the web browser window maximized.)
166+
--screenshot # (Save a screenshot at the end of each test.)
167167
--visual-baseline # (Set the visual baseline for Visual/Layout tests.)
168168
--external-pdf # (Set Chrome "plugins.always_open_pdf_externally": True.)
169169
--timeout-multiplier=MULTIPLIER # (Multiplies the default timeout values.)

seleniumbase/plugins/pytest_plugin.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -80,7 +80,7 @@ def pytest_addoption(parser):
8080
--reuse-session | --rs (Reuse browser session between tests.)
8181
--crumbs (Delete all cookies between tests reusing a session.)
8282
--maximize (Start tests with the web browser window maximized.)
83-
--save-screenshot (Save a screenshot at the end of each test.)
83+
--screenshot (Save a screenshot at the end of each test.)
8484
--visual-baseline (Set the visual baseline for Visual/Layout tests.)
8585
--external-pdf (Set Chromium "plugins.always_open_pdf_externally": True.)
8686
--timeout-multiplier=MULTIPLIER (Multiplies the default timeout values.)

seleniumbase/plugins/selenium_plugin.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -58,7 +58,7 @@ class SeleniumBrowser(Plugin):
5858
--guest (Enable Chrome's Guest mode.)
5959
--devtools (Open Chrome's DevTools when the browser opens.)
6060
--maximize (Start tests with the web browser window maximized.)
61-
--save-screenshot (Save a screenshot at the end of each test.)
61+
--screenshot (Save a screenshot at the end of each test.)
6262
--visual-baseline (Set the visual baseline for Visual/Layout tests.)
6363
--external-pdf (Set Chromium "plugins.always_open_pdf_externally": True.)
6464
--timeout-multiplier=MULTIPLIER (Multiplies the default timeout values.)

0 commit comments

Comments
 (0)