Skip to content

Commit bd99c2b

Browse files
authored
Merge pull request #757 from seleniumbase/a-few-updates
A few updates
2 parents 14f2d82 + 2f253fc commit bd99c2b

File tree

12 files changed

+22
-10
lines changed

12 files changed

+22
-10
lines changed

README.md

Lines changed: 4 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@
66
<link rel="icon" href="https://seleniumbase.io/img/logo6.png" />
77

88
<p align="center"><a href="https://github.com/seleniumbase/SeleniumBase/">
9-
<img src="https://seleniumbase.io/cdn/img/mac_sb_logo_3.png" alt="SeleniumBase" title="SeleniumBase" width="420" /></a></p>
9+
<img src="https://seleniumbase.io/cdn/img/mac_sb_logo_4.png" alt="SeleniumBase" title="SeleniumBase" width="420" /></a></p>
1010

1111
<!-- View on GitHub -->
1212
<p align="center"><a href="https://github.com/seleniumbase/SeleniumBase/releases">
@@ -16,8 +16,8 @@
1616
<img src="https://badges.gitter.im/seleniumbase/SeleniumBase.svg" alt="SeleniumBase" /></a> <a href="https://seleniumbase.io">
1717
<img src="https://img.shields.io/badge/docs-%20seleniumbase.io-22BBAA.svg" alt="SeleniumBase.io Docs" /></a></p>
1818

19-
<p><b>SeleniumBase</b> is a complete browser automation solution for end-to-end testing, reports, charts, presentations, website tours, and visual testing.
20-
Tests are run with <a href="https://docs.pytest.org/en/latest/index.html">pytest</a>. Browsers are controlled by <a href="https://www.w3.org/TR/webdriver2/#endpoints">WebDriver</a>.</p>
19+
<p><b>SeleniumBase</b> is the leading automation framework for browser end-to-end testing, reports, charts, presentations, product tours, and visual testing.
20+
Integrates with <a href="https://docs.pytest.org/en/latest/index.html">pytest</a> and <a href="https://www.w3.org/TR/webdriver2/#endpoints">WebDriver</a>.</p>
2121

2222
<p align="center">
2323
<a href="#python_installation">🚀 Start</a> |
@@ -411,6 +411,7 @@ SeleniumBase provides additional ``pytest`` command-line options for tests:
411411
--enable-sync # (Enable "Chrome Sync".)
412412
--use-auto-ext # (Use Chrome's automation extension.)
413413
--remote-debug # (Enable Chrome's Remote Debugger on http://localhost:9222)
414+
--dashboard # (Enable the SeleniumBase Dashboard. Saved at: dashboard.html)
414415
--swiftshader # (Use Chrome's "--use-gl=swiftshader" feature.)
415416
--incognito # (Enable Chrome's Incognito mode.)
416417
--guest # (Enable Chrome's Guest mode.)

docs/img/grad_logo.png

-6.98 KB
Loading

docs/img/green_logo.png

1.42 KB
Loading

examples/tour_examples/ReadMe.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
<h3 align="left"><img src="https://seleniumbase.io/cdn/img/sb_logo_b.png" alt="SeleniumBase" width="360" /></h3>
22

3-
## Website Tours
3+
## Interactive Product Tours
44

55
SeleniumBase Tours utilize 5 JavaScript libraries for creating interactive walkthroughs on any website:<br>**[Shepherd](https://shepherdjs.dev/)**, **[Bootstrap Tour](http://bootstraptour.com/)**, **[IntroJS](https://introjs.com/)**, **[DriverJS](https://kamranahmed.info/driver.js/)**, and **[Hopscotch](https://linkedinattic.github.io/hopscotch/)**.
66

help_docs/customizing_test_runs.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -129,6 +129,7 @@ SeleniumBase provides additional ``pytest`` command-line options for tests:
129129
--enable-sync # (Enable "Chrome Sync".)
130130
--use-auto-ext # (Use Chrome's automation extension.)
131131
--remote-debug # (Enable Chrome's Remote Debugger on http://localhost:9222)
132+
--dashboard # (Enable the SeleniumBase Dashboard. Saved at: dashboard.html)
132133
--swiftshader # (Use Chrome's "--use-gl=swiftshader" feature.)
133134
--incognito # (Enable Chrome's Incognito mode.)
134135
--guest # (Enable Chrome's Guest mode.)

mkdocs.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,7 @@ markdown_extensions:
2525
theme:
2626
name: material
2727
logo: img/grad_logo.png
28-
favicon: img/logo4.png
28+
favicon: img/grad_logo.png
2929
include_homepage_in_sidebar: true
3030
sticky_navigation: true
3131
language: en

requirements.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -63,7 +63,7 @@ pathlib2==2.3.5;python_version<"3.5"
6363
importlib-metadata==2.0.0;python_version<"3.6"
6464
virtualenv>=20.2.2
6565
pymysql==0.10.1
66-
coverage==5.3
66+
coverage==5.3.1
6767
brython==3.9.0
6868
pyotp==2.4.1
6969
boto==2.49.0

seleniumbase/__version__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,2 +1,2 @@
11
# seleniumbase package
2-
__version__ = "1.51.2"
2+
__version__ = "1.51.3"

seleniumbase/config/proxy_list.py

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,6 @@
2424
PROXY_LIST = {
2525
"example1": "152.26.66.140:3128", # (Example) - set your own proxy here
2626
"example2": "64.235.204.107:8080", # (Example) - set your own proxy here
27-
"example3": "82.200.233.4:3128", # (Example) - set your own proxy here
2827
"proxy1": None,
2928
"proxy2": None,
3029
"proxy3": None,

seleniumbase/console_scripts/run.py

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -489,6 +489,7 @@ def show_options():
489489
print('--reuse-session / --rs (Reuse the browser session between tests.)')
490490
print('--crumbs (Delete all cookies between tests reusing a session.)')
491491
print('--maximize (Start tests with the web browser window maximized.)')
492+
print('--dashboard (Enable the SeleniumBase Dashboard at dashboard.html)')
492493
print("--incognito (Enable Chrome's Incognito mode.)")
493494
print("--guest (Enable Chrome's Guest mode.)")
494495
print('-m MARKER (Run tests with the specified pytest marker.)')

0 commit comments

Comments
 (0)