File tree Expand file tree Collapse file tree 2 files changed +8
-9
lines changed Expand file tree Collapse file tree 2 files changed +8
-9
lines changed Original file line number Diff line number Diff line change 6
6
<link rel =" icon " href =" https://seleniumbase.io/img/logo6.png " />
7
7
8
8
<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 >
10
10
<p align =" center " ><a href =" https://github.com/seleniumbase/SeleniumBase/releases " >
11
11
<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/ " >
12
12
<img src =" https://img.shields.io/pypi/v/seleniumbase.svg?color=00a0e0 " alt =" Latest Release on PyPI " /></a ></p >
13
13
<p align =" center " >
14
- <b >A complete end-to-end testing experience .</b >
14
+ <b >Python Web UI Testing Made Easy .</b >
15
15
</p >
16
16
17
17
<!-- View on GitHub -->
20
20
<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 " >
21
21
<img src =" https://img.shields.io/badge/docs-%20seleniumbase.io-22BBAA.svg " alt =" SeleniumBase.io Docs " /></a ></p >
22
22
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.
26
25
</p >
27
26
28
27
<p align =" center " >
@@ -54,7 +53,6 @@ Tests are run with "pytest", and use WebDriver APIs for web-page interaction.
54
53
<a href =" https://github.com/seleniumbase/SeleniumBase/blob/master/examples/master_qa/ReadMe.md " >🛂 MasterQA</a >
55
54
</p >
56
55
57
- ✅ Simple setup steps with [ Python] ( https://www.python.org/downloads/ ) and [ Git] ( https://git-scm.com/ ) .<br />
58
56
✅ Chrome/Edge/Firefox/IE/Opera/Safari.<br />
59
57
✅ Includes [ reporting and dashboard tools] ( https://github.com/seleniumbase/SeleniumBase/blob/master/examples/example_logs/ReadMe.md ) .
60
58
Original file line number Diff line number Diff line change @@ -66,7 +66,7 @@ def test_basics(self):
66
66
# (This makes it easier to switch over from other test frameworks.)
67
67
# Example:
68
68
# 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()
70
70
# self.send_keys() = self.add_text()
71
71
# self.get_element() = self.wait_for_element_present()
72
72
# self.find_element() = self.wait_for_element_visible()
@@ -75,8 +75,9 @@ def test_basics(self):
75
75
# self.assert_text() = self.assert_text_visible()
76
76
# self.find_text() = self.wait_for_text_visible()
77
77
# = 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")')
80
81
# * self.get(url) is SPECIAL: *
81
82
# If {url} is a valid URL, self.get() works just like self.open()
82
83
# Otherwise {url} becomes a selector for calling self.get_element()
You can’t perform that action at this time.
0 commit comments