@@ -618,9 +618,6 @@ def cmdLineParser(argv=None):
618618 general = OptionGroup (parser , "General" , "These options can be used "
619619 "to set some general working parameters" )
620620
621- #general.add_option("-x", dest="xmlFile",
622- # help="Dump the data into an XML file")
623-
624621 general .add_option ("-s" , dest = "sessionFile" ,
625622 help = "Load session from a stored (.sqlite) file" )
626623
@@ -632,10 +629,6 @@ def cmdLineParser(argv=None):
632629 action = "store_true" ,
633630 help = "Never ask for user input, use the default behaviour" )
634631
635- general .add_option ("--collect-requests" , dest = "collectRequests" ,
636- action = "store_true" ,
637- help = "Collect requests in HAR format" )
638-
639632 general .add_option ("--binary-fields" , dest = "binaryFields" ,
640633 help = "Result fields having binary values (e.g. \" digest\" )" )
641634
@@ -661,8 +654,7 @@ def cmdLineParser(argv=None):
661654
662655 general .add_option ("--eta" , dest = "eta" ,
663656 action = "store_true" ,
664- help = "Display for each output the "
665- "estimated time of arrival" )
657+ help = "Display for each output the estimated time of arrival" )
666658
667659 general .add_option ("--flush-session" , dest = "flushSession" ,
668660 action = "store_true" ,
@@ -676,6 +668,9 @@ def cmdLineParser(argv=None):
676668 action = "store_true" ,
677669 help = "Ignore query results stored in session file" )
678670
671+ general .add_option ("--har" , dest = "harFile" ,
672+ help = "Log all HTTP traffic into a HAR file" )
673+
679674 general .add_option ("--hex" , dest = "hexConvert" ,
680675 action = "store_true" ,
681676 help = "Use DBMS hex function(s) for data retrieval" )
0 commit comments