Skip to content

Update a success message and a Python dependency #608

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
merged 4 commits into from
Jul 3, 2020
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@
</p>

<p>
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.
</p>

Expand Down
2 changes: 1 addition & 1 deletion requirements.txt
Original file line number Diff line number Diff line change
Expand Up @@ -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"
Expand Down
7 changes: 5 additions & 2 deletions seleniumbase/console_scripts/sb_mkdir.py
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down Expand Up @@ -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__":
Expand Down
4 changes: 2 additions & 2 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -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',
Expand Down Expand Up @@ -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"',
Expand Down