Skip to content

Commit 4582f0a

Browse files
authored
Merge pull request #229 from seleniumbase/docs-update
Update the docs
2 parents 0f6f2ee + 047f5a6 commit 4582f0a

File tree

5 files changed

+5
-5
lines changed

5 files changed

+5
-5
lines changed

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,7 @@ cd SeleniumBase
2626
pip install -U -r requirements.txt
2727
python setup.py install
2828
```
29-
* (<i>If you'll be customizing seleniumbase, use:</i><br> ``python setup.py develop``<br><i>See https://stackoverflow.com/a/19048754</i>)
29+
* Use ``python setup.py develop`` if configuring seleniumbase in a virtual environment.
3030

3131
#### Install a web driver to the [seleniumbase/drivers](https://github.com/seleniumbase/SeleniumBase/tree/master/seleniumbase/drivers) folder:
3232
```

examples/ReadMe.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
## Running SeleniumBase Scripts
22

3-
To run tests, make sure you've already installed SeleniumBase using ``pip install seleniumbase`` OR ``pip install -r requirements.txt`` + ``python setup.py develop`` from the top-level directory.
3+
To run tests, make sure you've already installed SeleniumBase using ``pip install seleniumbase`` OR ``pip install -r requirements.txt`` + ``python setup.py install`` from the top-level directory.
44

55
You can interchange **pytest** with **nosetests**, but using pytest is strongly recommended because developers stopped supporting nosetests. Chrome is the default browser if not specified.
66

help_docs/install.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ If you're installing SeleniumBase from a cloned copy on your machine, use:
44
```
55
pip install -U -r requirements.txt
66
7-
python setup.py develop
7+
python setup.py install
88
```
99

1010
If you're installing SeleniumBase directly [from PyPI (the Python Package Index)](https://pypi.python.org/pypi/seleniumbase), use:

seleniumbase/fixtures/base_case.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2585,7 +2585,7 @@ def setUp(self):
25852585
if not hasattr(self, "browser"):
25862586
raise Exception("""SeleniumBase plugins did not load! """
25872587
"""Please reinstall using:\n"""
2588-
""" >>> "python setup.py develop" <<< """)
2588+
""" >>> "python setup.py install" <<< """)
25892589
self.driver = self.get_new_driver(browser=self.browser,
25902590
headless=self.headless,
25912591
servername=self.servername,

seleniumbase/masterqa/ReadMe.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -31,7 +31,7 @@ You may have noticed the ``Incomplete Test Runs`` row on the results page. If th
3131
git clone https://github.com/seleniumbase/SeleniumBase.git
3232
cd SeleniumBase
3333
pip install -r requirements.txt --upgrade
34-
python setup.py develop
34+
python setup.py install
3535
cd examples
3636
pytest basic_masterqa_test.py
3737
pytest masterqa_test.py

0 commit comments

Comments
 (0)