File tree Expand file tree Collapse file tree 3 files changed +7
-1
lines changed Expand file tree Collapse file tree 3 files changed +7
-1
lines changed Original file line number Diff line number Diff line change @@ -411,6 +411,7 @@ SeleniumBase provides additional ``pytest`` command-line options for tests:
411
411
--enable-sync # (Enable "Chrome Sync".)
412
412
--use-auto-ext # (Use Chrome's automation extension.)
413
413
--remote-debug # (Enable Chrome's Remote Debugger on http://localhost:9222)
414
+ --dashboard # (Enable the SeleniumBase Dashboard. Saved at: dashboard.html)
414
415
--swiftshader # (Use Chrome's "--use-gl=swiftshader" feature.)
415
416
--incognito # (Enable Chrome's Incognito mode.)
416
417
--guest # (Enable Chrome's Guest mode.)
Original file line number Diff line number Diff line change @@ -129,6 +129,7 @@ SeleniumBase provides additional ``pytest`` command-line options for tests:
129
129
--enable-sync # (Enable "Chrome Sync".)
130
130
--use-auto-ext # (Use Chrome's automation extension.)
131
131
--remote-debug # (Enable Chrome's Remote Debugger on http://localhost:9222)
132
+ --dashboard # (Enable the SeleniumBase Dashboard. Saved at: dashboard.html)
132
133
--swiftshader # (Use Chrome's "--use-gl=swiftshader" feature.)
133
134
--incognito # (Enable Chrome's Incognito mode.)
134
135
--guest # (Enable Chrome's Guest mode.)
Original file line number Diff line number Diff line change @@ -57,6 +57,7 @@ def pytest_addoption(parser):
57
57
--enable-sync (Enable "Chrome Sync".)
58
58
--use-auto-ext (Use Chrome's automation extension.)
59
59
--remote-debug (Enable Chrome's Remote Debugger on http://localhost:9222)
60
+ --dashboard (Enable the SeleniumBase Dashboard. Saved at: dashboard.html)
60
61
--swiftshader (Use Chrome's "--use-gl=swiftshader" feature.)
61
62
--incognito (Enable Chrome's Incognito mode.)
62
63
--guest (Enable Chrome's Guest mode.)
@@ -430,7 +431,10 @@ def pytest_addoption(parser):
430
431
action = "store_true" ,
431
432
dest = 'dashboard' ,
432
433
default = False ,
433
- help = """...""" )
434
+ help = """Using this enables the SeleniumBase Dashboard.
435
+ To access the SeleniumBase Dashboard interface,
436
+ open the dashboard.html file located in the same
437
+ folder that the pytest command was run from.""" )
434
438
parser .addoption ('--swiftshader' ,
435
439
action = "store_true" ,
436
440
dest = 'swiftshader' ,
You can’t perform that action at this time.
0 commit comments