Skip to content

Commit 047f5a6

Browse files
committed
Update the docs
1 parent b632efd commit 047f5a6

File tree

4 files changed

+4
-4
lines changed

4 files changed

+4
-4
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/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)