()
| 501 | |
| 502 | |
| 503 | def show_extract_objects_usage(): |
| 504 | c2 = colorama.Fore.BLUE + colorama.Back.LIGHTGREEN_EX |
| 505 | c3 = colorama.Fore.BLUE + colorama.Back.LIGHTYELLOW_EX |
| 506 | cr = colorama.Style.RESET_ALL |
| 507 | sc = " " + c2 + "** " + c3 + "extract-objects" + c2 + " **" + cr |
| 508 | print(sc) |
| 509 | print("") |
| 510 | print(" Usage:") |
| 511 | print(" seleniumbase extract-objects [SB_FILE.py]") |
| 512 | print(" OR: sbase extract-objects [SB_FILE.py]") |
| 513 | print(" Output:") |
| 514 | print(" Creates page objects based on selectors found in a") |
| 515 | print(" seleniumbase Python file and saves those objects to the") |
| 516 | print(' "page_objects.py" file in the same folder as the tests.') |
| 517 | print("") |
| 518 | |
| 519 | |
| 520 | def show_inject_objects_usage(): |
no outgoing calls
no test coverage detected
searching dependent graphs…