Skip to content

Commit bfd5921

Browse files
committed
Update the docs
1 parent 0a6ac85 commit bfd5921

File tree

2 files changed

+3
-4
lines changed

2 files changed

+3
-4
lines changed

help_docs/how_it_works.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44

55
<a id="how_seleniumbase_works"></a>
66

7-
👁️🔎 The primary [SeleniumBase syntax format](https://github.com/seleniumbase/SeleniumBase/blob/master/help_docs/syntax_formats.md) works by extending [pytest](https://docs.pytest.org/en/latest/) as a direct plugin. SeleniumBase automatically spins up web browsers for tests (using [Selenium WebDriver](https://www.selenium.dev/documentation/webdriver/)), and then gives those tests access to the SeleniumBase libraries through the [BaseCase class](https://github.com/seleniumbase/SeleniumBase/blob/master/seleniumbase/fixtures/base_case.py). Tests are also given access to [SeleniumBase command-line options](https://github.com/seleniumbase/SeleniumBase/blob/master/help_docs/customizing_test_runs.md) and [SeleniumBase methods](https://github.com/seleniumbase/SeleniumBase/blob/master/help_docs/method_summary.md), which provide additional functionality.
7+
👁️🔎 The primary [SeleniumBase syntax format](https://github.com/seleniumbase/SeleniumBase/blob/master/help_docs/syntax_formats.md) works by extending [pytest](https://docs.pytest.org/en/latest/) as a direct plugin. SeleniumBase automatically spins up web browsers for tests, and then gives those tests access to the SeleniumBase libraries through the [BaseCase class](https://github.com/seleniumbase/SeleniumBase/blob/master/seleniumbase/fixtures/base_case.py). Tests are also given access to [SeleniumBase command-line options](https://github.com/seleniumbase/SeleniumBase/blob/master/help_docs/customizing_test_runs.md) and [SeleniumBase methods](https://github.com/seleniumbase/SeleniumBase/blob/master/help_docs/method_summary.md).
88

99
👁️🔎 ``pytest`` uses a feature called test discovery to automatically find and run Python methods that start with ``test_`` when those methods are located in Python files that start with ``test_`` or end with ``_test.py``.
1010

@@ -50,7 +50,7 @@ BaseCase.main(__name__, __file__)
5050

5151
class TestSimpleLogin(BaseCase):
5252
def test_simple_login(self):
53-
self.open("https://seleniumbase.io/simple/login")
53+
self.open("seleniumbase.io/simple/login")
5454
self.type("#username", "demo_user")
5555
self.type("#password", "secret_pass")
5656
self.click('a:contains("Sign in")')
@@ -80,7 +80,7 @@ from seleniumbase import Driver
8080

8181
driver = Driver()
8282
try:
83-
driver.get("https://seleniumbase.io/simple/login")
83+
driver.open("seleniumbase.io/simple/login")
8484
driver.type("#username", "demo_user")
8585
driver.type("#password", "secret_pass")
8686
driver.click('a:contains("Sign in")')

help_docs/install.md

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -47,7 +47,6 @@ pip install git+https://github.com/seleniumbase/SeleniumBase.git@master#egg=sele
4747

4848
* (Add ``--upgrade`` OR ``-U`` to upgrade SeleniumBase.)
4949
* (Add ``--force-reinstall`` to upgrade indirect libraries.)
50-
* (Use ``pip3`` if multiple versions of Python are present.)
5150

5251
(If you're not using a virtual environment, you may need to add ``--user`` to your ``pip`` command if you're seeing errors during installation.)
5352

0 commit comments

Comments
 (0)