Skip to content

Commit 0d029f3

Browse files
committed
Make updates to the ASCII art SeleniumBase Logo
1 parent 6279e89 commit 0d029f3

File tree

3 files changed

+47
-36
lines changed

3 files changed

+47
-36
lines changed

README.md

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -175,12 +175,12 @@ pip install -U seleniumbase
175175
🔵 Type ``seleniumbase`` or ``sbase`` to verify that SeleniumBase was installed successfully:
176176

177177
```bash
178-
______ __ _ ____
179-
/ ____/__ / /__ ____ (_)_ ______ ___ / _ \____ ________
180-
\__ \/ _ \/ / _ \/ __ \/ / / / / __ `__ \/ /_) / __ \/ ___/ _ \
181-
___/ / __/ / __/ / / / / /_/ / / / / / / /_) / (_/ /__ / __/
182-
/____/\___/_/\___/_/ /_/_/\__,_/_/ /_/ /_/_____/\__,_/____/\___/
183-
-----------------------------------------------------------------
178+
______ __ _ ____
179+
/ ____/__ / /__ ____ (_)_ ______ ___ / _ \____ ________
180+
\__ \/ _ \/ / _ \/ __ \/ / / / / __ `__ \ / /_) / __ \/ ___/ _ \
181+
___/ / __/ / __/ / / / / /_/ / / / / / // /_) / (_/ /__ / __/
182+
/____/\___/_/\___/_/ /_/_/\__,_/_/ /_/ /_//_____/\__,_/____/\___/
183+
------------------------------------------------------------------
184184
185185
* USAGE: "seleniumbase [COMMAND] [PARAMETERS]"
186186
* OR: "sbase [COMMAND] [PARAMETERS]"

seleniumbase/console_scripts/logo_helper.py

Lines changed: 11 additions & 11 deletions
Original file line numberDiff line numberDiff line change
@@ -5,11 +5,11 @@
55
import colorama
66

77
r"""
8-
______ __ _ ____
9-
/ ____/__ / /__ ____ (_)_ ______ ___ / _ \____ ________
10-
\__ \/ _ \/ / _ \/ __ \/ / / / / __ `__ \/ /_) / __ \/ ___/ _ \
11-
___/ / __/ / __/ / / / / /_/ / / / / / / /_) / (_/ /__ / __/
12-
/____/\___/_/\___/_/ /_/_/\__,_/_/ /_/ /_/_____/\__,_/____/\___/
8+
______ __ _ ____
9+
/ ____/__ / /__ ____ (_)_ ______ ___ / _ \____ ________
10+
\__ \/ _ \/ / _ \/ __ \/ / / / / __ `__ \ / /_) / __ \/ ___/ _ \
11+
___/ / __/ / __/ / / / / /_/ / / / / / // /_) / (_/ /__ / __/
12+
/____/\___/_/\___/_/ /_/_/\__,_/_/ /_/ /_//_____/\__,_/____/\___/
1313
"""
1414

1515

@@ -24,37 +24,37 @@ def get_seleniumbase_logo():
2424
sb += cr
2525
sb += "\n"
2626
sb += c1
27-
sb += " ______ __ _ "
27+
sb += " ______ __ _ "
2828
sb += c2
2929
sb += "____ "
3030
sb += cr
3131
sb += "\n"
3232
sb += c1
33-
sb += " / ____/__ / /__ ____ (_)_ ______ ___ "
33+
sb += " / ____/__ / /__ ____ (_)_ ______ ___ "
3434
sb += c2
3535
sb += "/ _ \\____ ________ "
3636
sb += cr
3737
sb += "\n"
3838
sb += c1
39-
sb += " \\__ \\/ _ \\/ / _ \\/ __ \\/ / / / / __ `__ \\"
39+
sb += " \\__ \\/ _ \\/ / _ \\/ __ \\/ / / / / __ `__ \\ "
4040
sb += c2
4141
sb += "/ /_) / __ \\/ ___/ _ \\"
4242
sb += cr
4343
sb += "\n"
4444
sb += c1
45-
sb += " ___/ / __/ / __/ / / / / /_/ / / / / / "
45+
sb += " ___/ / __/ / __/ / / / / /_/ / / / / / /"
4646
sb += c2
4747
sb += "/ /_) / (_/ /__ / __/"
4848
sb += cr
4949
sb += "\n"
5050
sb += c1
51-
sb += "/____/\\___/_/\\___/_/ /_/_/\\__,_/_/ /_/ /_"
51+
sb += "/____/\\___/_/\\___/_/ /_/_/\\__,_/_/ /_/ /_/"
5252
sb += c2
5353
sb += "/_____/\\__,_/____/\\___/ "
5454
sb += cr
5555
sb += "\n"
5656
sb += c3
57-
sb += " "
57+
sb += " "
5858
sb += c4
5959
sb += " "
6060
sb += cr

seleniumbase/fixtures/base_case.py

Lines changed: 30 additions & 19 deletions
Original file line numberDiff line numberDiff line change
@@ -1,28 +1,29 @@
11
# -*- coding: utf-8 -*-
2-
r""" ------------> ------------> ------------> ------------>
3-
______ __ _ ____
4-
/ ____/__ / /__ ____ (_)_ ______ ___ / _ \____ ________
5-
\__ \/ _ \/ / _ \/ __ \/ / / / / __ `__ \/ /_) / __ \/ ___/ _ \
6-
___/ / __/ / __/ / / / / /_/ / / / / / / /_) / (_/ /__ / __/
7-
/____/\___/_/\___/_/ /_/_/\__,_/_/ /_/ /_/_____/\__,_/____/\___/
8-
9-
------------> ------------> ------------> ------------>
2+
r"""----------------------------------------------------------------->
3+
| ______ __ _ ____ |
4+
| / ____/__ / /__ ____ (_)_ ______ ___ / _ \____ ________ |
5+
| \__ \/ _ \/ / _ \/ __ \/ / / / / __ `__ \ / /_) / __ \/ ___/ _ \ |
6+
| ___/ / __/ / __/ / / / / /_/ / / / / / // /_) / (_/ /__ / __/ |
7+
| /____/\___/_/\___/_/ /_/_/\__,_/_/ /_/ /_//_____/\__,_/____/\___/ |
8+
| |
9+
--------------------------------------------------------------------->
1010

1111
The BaseCase class is the main gateway for using The SeleniumBase Framework.
12-
It inherits Python's unittest.TestCase class, and runs with Pytest or Nose.
12+
It inherits Python's unittest.TestCase class and runs with pytest or nosetests.
1313
All tests using BaseCase automatically launch WebDriver browsers for tests.
1414

15-
Usage:
15+
Example Test:
1616

17-
from seleniumbase import BaseCase
18-
class MyTestClass(BaseCase):
19-
def test_anything(self):
20-
# Write your code here. Example:
21-
self.open("https://github.com/")
22-
self.type("input.header-search-input", "SeleniumBase\n")
23-
self.click('a[href="/seleniumbase/SeleniumBase"]')
24-
self.assert_element("div.repository-content")
25-
....
17+
# --------------------------------------------------------------
18+
from seleniumbase import BaseCase
19+
class MyTestClass(BaseCase):
20+
def test_anything(self):
21+
# Write your code here. Example:
22+
self.open("https://github.com/")
23+
self.type("input.header-search-input", "SeleniumBase\n")
24+
self.click('a[href="/seleniumbase/SeleniumBase"]')
25+
self.assert_element("div.repository-content")
26+
# --------------------------------------------------------------
2627

2728
SeleniumBase methods expand and improve on existing WebDriver commands.
2829
Improvements include making WebDriver more robust, reliable, and flexible.
@@ -13573,3 +13574,13 @@ def tearDown(self):
1357313574
if deferred_exception:
1357413575
# User forgot to call "self.process_deferred_asserts()" in test
1357513576
raise deferred_exception
13577+
13578+
13579+
r"""----------------------------------------------------------------->
13580+
| ______ __ _ ____ |
13581+
| / ____/__ / /__ ____ (_)_ ______ ___ / _ \____ ________ |
13582+
| \__ \/ _ \/ / _ \/ __ \/ / / / / __ `__ \ / /_) / __ \/ ___/ _ \ |
13583+
| ___/ / __/ / __/ / / / / /_/ / / / / / // /_) / (_/ /__ / __/ |
13584+
| /____/\___/_/\___/_/ /_/_/\__,_/_/ /_/ /_//_____/\__,_/____/\___/ |
13585+
| |
13586+
------------------------------------------------------------------>"""

0 commit comments

Comments
 (0)