diff --git a/README.md b/README.md index 8a0feeb3..82cce40e 100755 --- a/README.md +++ b/README.md @@ -411,6 +411,7 @@ SeleniumBase provides additional ``pytest`` command-line options for tests: --enable-sync # (Enable "Chrome Sync".) --use-auto-ext # (Use Chrome's automation extension.) --remote-debug # (Enable Chrome's Remote Debugger on http://localhost:9222) +--dashboard # (Enable the SeleniumBase Dashboard. Saved at: dashboard.html) --swiftshader # (Use Chrome's "--use-gl=swiftshader" feature.) --incognito # (Enable Chrome's Incognito mode.) --guest # (Enable Chrome's Guest mode.) diff --git a/help_docs/customizing_test_runs.md b/help_docs/customizing_test_runs.md index 9af08203..57aa36c7 100755 --- a/help_docs/customizing_test_runs.md +++ b/help_docs/customizing_test_runs.md @@ -129,6 +129,7 @@ SeleniumBase provides additional ``pytest`` command-line options for tests: --enable-sync # (Enable "Chrome Sync".) --use-auto-ext # (Use Chrome's automation extension.) --remote-debug # (Enable Chrome's Remote Debugger on http://localhost:9222) +--dashboard # (Enable the SeleniumBase Dashboard. Saved at: dashboard.html) --swiftshader # (Use Chrome's "--use-gl=swiftshader" feature.) --incognito # (Enable Chrome's Incognito mode.) --guest # (Enable Chrome's Guest mode.) diff --git a/seleniumbase/plugins/pytest_plugin.py b/seleniumbase/plugins/pytest_plugin.py index 3825c404..7ff0ec0a 100644 --- a/seleniumbase/plugins/pytest_plugin.py +++ b/seleniumbase/plugins/pytest_plugin.py @@ -57,6 +57,7 @@ def pytest_addoption(parser): --enable-sync (Enable "Chrome Sync".) --use-auto-ext (Use Chrome's automation extension.) --remote-debug (Enable Chrome's Remote Debugger on http://localhost:9222) + --dashboard (Enable the SeleniumBase Dashboard. Saved at: dashboard.html) --swiftshader (Use Chrome's "--use-gl=swiftshader" feature.) --incognito (Enable Chrome's Incognito mode.) --guest (Enable Chrome's Guest mode.) @@ -430,7 +431,10 @@ def pytest_addoption(parser): action="store_true", dest='dashboard', default=False, - help="""...""") + help="""Using this enables the SeleniumBase Dashboard. + To access the SeleniumBase Dashboard interface, + open the dashboard.html file located in the same + folder that the pytest command was run from.""") parser.addoption('--swiftshader', action="store_true", dest='swiftshader',