Skip to content

Commit 8ce761e

Browse files
committed
Update the docs
1 parent fed4f40 commit 8ce761e

File tree

2 files changed

+8
-9
lines changed

2 files changed

+8
-9
lines changed

README.md

Lines changed: 4 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -6,12 +6,12 @@
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/sb_logo_g.png" alt="SeleniumBase" title="SeleniumBase" width="460" /></a></p>
9+
<img src="https://seleniumbase.io/cdn/img/long_logo.png" alt="SeleniumBase" title="SeleniumBase" width="690" /></a></p>
1010
<p align="center"><a href="https://github.com/seleniumbase/SeleniumBase/releases">
1111
<img src="https://img.shields.io/github/v/release/seleniumbase/SeleniumBase.svg?color=0090c0" alt="Latest Release on GitHub" /></a> <a href="https://pypi.org/project/seleniumbase/">
1212
<img src="https://img.shields.io/pypi/v/seleniumbase.svg?color=00a0e0" alt="Latest Release on PyPI" /></a></p>
1313
<p align="center">
14-
<b>A complete end-to-end testing experience.</b>
14+
<b>Python Web UI Testing Made Easy.</b>
1515
</p>
1616

1717
<!-- View on GitHub -->
@@ -20,9 +20,8 @@
2020
<img src="https://badges.gitter.im/seleniumbase/SeleniumBase.svg" alt="SeleniumBase" /></a> <a href="https://github.com/seleniumbase/SeleniumBase/stargazers"><img src="https://img.shields.io/github/stars/seleniumbase/seleniumbase.svg?color=19A57B" title="Stargazers" /></a> <a href="https://seleniumbase.io">
2121
<img src="https://img.shields.io/badge/docs-%20seleniumbase.io-22BBAA.svg" alt="SeleniumBase.io Docs" /></a></p>
2222

23-
<p>
24-
SeleniumBase is an all-in-one Python framework for automated browser testing.
25-
Tests are run with "pytest", and use WebDriver APIs for web-page interaction.
23+
<p align="center">
24+
SeleniumBase is a complete framework for automated browser testing with pytest.
2625
</p>
2726

2827
<p align="center">
@@ -54,7 +53,6 @@ Tests are run with "pytest", and use WebDriver APIs for web-page interaction.
5453
<a href="https://github.com/seleniumbase/SeleniumBase/blob/master/examples/master_qa/ReadMe.md">🛂 MasterQA</a>
5554
</p>
5655

57-
✅ Simple setup steps with [Python](https://www.python.org/downloads/) and [Git](https://git-scm.com/).<br />
5856
✅ Chrome/Edge/Firefox/IE/Opera/Safari.<br />
5957
✅ Includes [reporting and dashboard tools](https://github.com/seleniumbase/SeleniumBase/blob/master/examples/example_logs/ReadMe.md).
6058

examples/my_first_test.py

Lines changed: 4 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -66,7 +66,7 @@ def test_basics(self):
6666
# (This makes it easier to switch over from other test frameworks.)
6767
# Example:
6868
# self.open() = self.visit() = self.open_url() = self.goto()
69-
# self.type() = self.update_text() = self.input()
69+
# self.type() = self.update_text() = self.input() = self.fill()
7070
# self.send_keys() = self.add_text()
7171
# self.get_element() = self.wait_for_element_present()
7272
# self.find_element() = self.wait_for_element_visible()
@@ -75,8 +75,9 @@ def test_basics(self):
7575
# self.assert_text() = self.assert_text_visible()
7676
# self.find_text() = self.wait_for_text_visible()
7777
# = self.wait_for_text()
78-
# self.click_link(text) = self.click(link=text)
79-
# = self.click_link_text(text)
78+
# self.click_link("LinkText") = self.click("link=LinkText")
79+
# = self.click_link_text("LinkText")
80+
# = self.click('a:contains("LinkText")')
8081
# * self.get(url) is SPECIAL: *
8182
# If {url} is a valid URL, self.get() works just like self.open()
8283
# Otherwise {url} becomes a selector for calling self.get_element()

0 commit comments

Comments
 (0)