diff --git a/README.md b/README.md index 88fb87710f9..ee24e29623d 100755 --- a/README.md +++ b/README.md @@ -22,7 +22,7 @@

-SeleniumBase is an all-in-one framework for web automation, end-to-end testing, and website tours. +SeleniumBase is an all-in-one framework for web automation, end-to-end testing, web presentations, and website tours. Tests are run with "pytest". Browsers are controlled by WebDriver.

diff --git a/requirements.txt b/requirements.txt index 90c9a261313..64e670c1921 100755 --- a/requirements.txt +++ b/requirements.txt @@ -42,7 +42,7 @@ coverage==5.1 pyotp==2.3.0 boto==2.49.0 cffi==1.14.0 -rich==3.0.1;python_version>="3.6" and python_version<"4.0" +rich==3.0.2;python_version>="3.6" and python_version<"4.0" flake8==3.7.9;python_version<"3.5" flake8==3.8.3;python_version>="3.5" pyflakes==2.1.1;python_version<"3.5" diff --git a/seleniumbase/console_scripts/sb_mkdir.py b/seleniumbase/console_scripts/sb_mkdir.py index 88287deb658..68a71862976 100755 --- a/seleniumbase/console_scripts/sb_mkdir.py +++ b/seleniumbase/console_scripts/sb_mkdir.py @@ -43,6 +43,7 @@ def invalid_run_command(msg=None): def main(): colorama.init(autoreset=True) + c1 = colorama.Fore.BLUE + colorama.Back.LIGHTCYAN_EX c5 = colorama.Fore.RED + colorama.Back.LIGHTYELLOW_EX cr = colorama.Style.RESET_ALL error_msg = None @@ -355,8 +356,10 @@ def main(): file = codecs.open(file_path, "w+", "utf-8") file.writelines("\r\n".join(data)) file.close() - print('''\n* Directory "%s" was created with config files ''' - '''and sample tests! *\n''' % dir_name) + success = ( + '\n' + c1 + '* Directory "' + dir_name + '" was created ' + 'with config files and sample tests! *' + cr + '\n') + print(success) if __name__ == "__main__": diff --git a/setup.py b/setup.py index b0e77d4d032..51ca722e5e4 100755 --- a/setup.py +++ b/setup.py @@ -54,7 +54,7 @@ setup( name='seleniumbase', - version='1.42.3', + version='1.42.4', description='Fast, Easy, and Reliable Browser Automation & Testing.', long_description=long_description, long_description_content_type='text/markdown', @@ -134,7 +134,7 @@ 'pyotp==2.3.0', 'boto==2.49.0', 'cffi==1.14.0', - 'rich==3.0.1;python_version>="3.6" and python_version<"4.0"', + 'rich==3.0.2;python_version>="3.6" and python_version<"4.0"', 'flake8==3.7.9;python_version<"3.5"', 'flake8==3.8.3;python_version>="3.5"', 'pyflakes==2.1.1;python_version<"3.5"',