Skip to content

Commit e7d5b36

Browse files
authored
Merge pull request #608 from seleniumbase/update-a-success-message
Update a success message and a Python dependency
2 parents 907737d + 2d40920 commit e7d5b36

File tree

4 files changed

+9
-6
lines changed

4 files changed

+9
-6
lines changed

README.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@
2222
</p>
2323

2424
<p>
25-
SeleniumBase is an all-in-one framework for web automation, end-to-end testing, and website tours.
25+
SeleniumBase is an all-in-one framework for web automation, end-to-end testing, web presentations, and website tours.
2626
Tests are run with "pytest". Browsers are controlled by WebDriver.
2727
</p>
2828

requirements.txt

+1-1
Original file line numberDiff line numberDiff line change
@@ -42,7 +42,7 @@ coverage==5.1
4242
pyotp==2.3.0
4343
boto==2.49.0
4444
cffi==1.14.0
45-
rich==3.0.1;python_version>="3.6" and python_version<"4.0"
45+
rich==3.0.2;python_version>="3.6" and python_version<"4.0"
4646
flake8==3.7.9;python_version<"3.5"
4747
flake8==3.8.3;python_version>="3.5"
4848
pyflakes==2.1.1;python_version<"3.5"

seleniumbase/console_scripts/sb_mkdir.py

+5-2
Original file line numberDiff line numberDiff line change
@@ -43,6 +43,7 @@ def invalid_run_command(msg=None):
4343

4444
def main():
4545
colorama.init(autoreset=True)
46+
c1 = colorama.Fore.BLUE + colorama.Back.LIGHTCYAN_EX
4647
c5 = colorama.Fore.RED + colorama.Back.LIGHTYELLOW_EX
4748
cr = colorama.Style.RESET_ALL
4849
error_msg = None
@@ -355,8 +356,10 @@ def main():
355356
file = codecs.open(file_path, "w+", "utf-8")
356357
file.writelines("\r\n".join(data))
357358
file.close()
358-
print('''\n* Directory "%s" was created with config files '''
359-
'''and sample tests! *\n''' % dir_name)
359+
success = (
360+
'\n' + c1 + '* Directory "' + dir_name + '" was created '
361+
'with config files and sample tests! *' + cr + '\n')
362+
print(success)
360363

361364

362365
if __name__ == "__main__":

setup.py

+2-2
Original file line numberDiff line numberDiff line change
@@ -54,7 +54,7 @@
5454

5555
setup(
5656
name='seleniumbase',
57-
version='1.42.3',
57+
version='1.42.4',
5858
description='Fast, Easy, and Reliable Browser Automation & Testing.',
5959
long_description=long_description,
6060
long_description_content_type='text/markdown',
@@ -134,7 +134,7 @@
134134
'pyotp==2.3.0',
135135
'boto==2.49.0',
136136
'cffi==1.14.0',
137-
'rich==3.0.1;python_version>="3.6" and python_version<"4.0"',
137+
'rich==3.0.2;python_version>="3.6" and python_version<"4.0"',
138138
'flake8==3.7.9;python_version<"3.5"',
139139
'flake8==3.8.3;python_version>="3.5"',
140140
'pyflakes==2.1.1;python_version<"3.5"',

0 commit comments

Comments
 (0)