@@ -456,28 +456,28 @@ def show_options():
456
456
print ('--slow (Slow down the automation. Faster than using Demo Mode.)' )
457
457
print ('--reuse-session / --rs (Reuse the browser session between tests.)' )
458
458
print ('--crumbs (Delete all cookies between tests reusing a session.)' )
459
- print ("--guest (Enable Chrome's Guest mode.)" )
459
+ print ('--maximize (Start tests with the web browser window maximized.)' )
460
460
print ("--incognito (Enable Chrome's Incognito mode.)" )
461
- print ('-m MARKER (Only run tests with the specified pytest marker.)' )
461
+ print ("--guest (Enable Chrome's Guest mode.)" )
462
+ print ('-m MARKER (Run tests with the specified pytest marker.)' )
462
463
print ('-n NUM (Multithread the tests using that many threads.)' )
463
464
print ('-v (Verbose mode. Print the full name of each test run.)' )
465
+ print ('--check-js (Check for JavaScript errors after page loads.)' )
466
+ print ('--html=report.html (Create a detailed pytest-html report.)' )
464
467
print ("--agent=STRING (Modify the web browser's User-Agent string.)" )
465
468
print ('--mobile (Use the mobile device emulator while running tests.)' )
466
469
print ('--metrics=STRING (Set mobile "CSSWidth,CSSHeight,PixelRatio".)' )
467
- print ('--maximize (Start tests with the web browser window maximized.)' )
468
470
print ('--ad-block (Block some types of display ads after page loads.)' )
469
- print ('--check-js (Check for JavaScript errors after page loads.)' )
470
471
print ('--pdb (Enter Debug Mode if a test fails. h: Help. c: Continue.' )
471
472
print (' interact: Interactive Mode. CTRL-D: Exit Interactive Mode.)' )
472
- print ('--html=report.html (Create a detailed pytest-html report.)' )
473
473
print ('--archive-logs (Archive old log files instead of deleting them.)' )
474
474
print ('--disable-csp (Disable the Content Security Policy of websites.)' )
475
+ print ('--save-screenshot (Save a screenshot at the end of each test.)' )
475
476
print ('--proxy=SERVER:PORT (Set a proxy server:port combo for tests.)' )
476
477
print ("--settings-file=FILE (Override default SeleniumBase settings.)" )
477
478
print ('--env=ENV (Set the test env. Access with "self.env" in tests.)' )
478
479
print ('--data=DATA (Extra test data. Access with "self.data" in tests.)' )
479
480
print ('--collect-only -q (Show discovered tests without running them.)' )
480
- print ('--save-screenshot (Save a screenshot at the end of each test.)' )
481
481
print ('-x (Stop running tests after the first failure is reached.)' )
482
482
print ("" )
483
483
line = 'For the full list of ' + c1 + 'command-line options' + cr
0 commit comments