()
| 430 | |
| 431 | |
| 432 | def show_convert_usage(): |
| 433 | c2 = colorama.Fore.BLUE + colorama.Back.LIGHTGREEN_EX |
| 434 | c3 = colorama.Fore.BLUE + colorama.Back.LIGHTYELLOW_EX |
| 435 | cr = colorama.Style.RESET_ALL |
| 436 | sc = " " + c2 + "** " + c3 + "convert" + c2 + " **" + cr |
| 437 | print(sc) |
| 438 | print("") |
| 439 | print(" Usage:") |
| 440 | print(" seleniumbase convert [WEBDRIVER_UNITTEST_FILE.py]") |
| 441 | print(" OR: sbase convert [WEBDRIVER_UNITTEST_FILE.py]") |
| 442 | print(" Output:") |
| 443 | print(" Converts a Selenium IDE exported WebDriver unittest") |
| 444 | print(" file into a SeleniumBase file. Adds _SB to the new") |
| 445 | print(" file name while keeping the original file intact.") |
| 446 | print(" (Works with Katalon Recorder Selenium scripts.)") |
| 447 | print("") |
| 448 | |
| 449 | |
| 450 | def show_print_usage(): |
no outgoing calls
no test coverage detected
searching dependent graphs…