()
| 172 | |
| 173 | |
| 174 | def show_commander_usage(): |
| 175 | c2 = colorama.Fore.BLUE + colorama.Back.LIGHTGREEN_EX |
| 176 | c3 = colorama.Fore.BLUE + colorama.Back.LIGHTYELLOW_EX |
| 177 | cr = colorama.Style.RESET_ALL |
| 178 | sc = " " + c2 + "** " + c3 + "commander" + c2 + " **" + cr |
| 179 | print(sc) |
| 180 | print("") |
| 181 | print(" Usage:") |
| 182 | print(" seleniumbase commander [OPTIONAL PATH or TEST FILE]") |
| 183 | print(" OR: sbase commander [OPTIONAL PATH or TEST FILE]") |
| 184 | print(" OR: seleniumbase gui [OPTIONAL PATH or TEST FILE]") |
| 185 | print(" OR: sbase gui [OPTIONAL PATH or TEST FILE]") |
| 186 | print(" Examples:") |
| 187 | print(" sbase gui") |
| 188 | print(" sbase gui -k agent") |
| 189 | print(" sbase gui -m marker2") |
| 190 | print(" sbase gui test_suite.py") |
| 191 | print(" sbase gui offline_examples/") |
| 192 | print(" Output:") |
| 193 | print(" Launches SeleniumBase Commander | GUI for pytest.") |
| 194 | print("") |
| 195 | |
| 196 | |
| 197 | def show_behave_gui_usage(): |
no outgoing calls
no test coverage detected
searching dependent graphs…