()
| 237 | |
| 238 | |
| 239 | def show_mkdir_usage(): |
| 240 | c2 = colorama.Fore.BLUE + colorama.Back.LIGHTGREEN_EX |
| 241 | c3 = colorama.Fore.BLUE + colorama.Back.LIGHTYELLOW_EX |
| 242 | cr = colorama.Style.RESET_ALL |
| 243 | sc = " " + c2 + "** " + c3 + "mkdir" + c2 + " **" + cr |
| 244 | print(sc) |
| 245 | print("") |
| 246 | print(" Usage:") |
| 247 | print(" seleniumbase mkdir [DIRECTORY] [OPTIONS]") |
| 248 | print(" OR: sbase mkdir [DIRECTORY] [OPTIONS]") |
| 249 | print(" Example:") |
| 250 | print(" sbase mkdir ui_tests") |
| 251 | print(" Options:") |
| 252 | print(" -b / --basic (Only config files. No tests added.)") |
| 253 | print(" --gha (Include GitHub Actions YML with defaults.)") |
| 254 | print(" Output:") |
| 255 | print(" Creates a new folder for running SBase scripts.") |
| 256 | print(" The new folder contains default config files,") |
| 257 | print(" sample tests for helping new users get started,") |
| 258 | print(" and Python boilerplates for setting up customized") |
| 259 | print(" test frameworks.") |
| 260 | print("") |
| 261 | |
| 262 | |
| 263 | def show_mkfile_usage(): |
no outgoing calls
no test coverage detected
searching dependent graphs…