Skip to content

Commit c14c699

Browse files
committed
Update the docs
1 parent 0c515b8 commit c14c699

File tree

4 files changed

+15
-11
lines changed

4 files changed

+15
-11
lines changed

README.md

Lines changed: 1 addition & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -64,10 +64,8 @@ python -m pip install -U pip
6464
```bash
6565
git clone https://github.com/seleniumbase/SeleniumBase.git
6666
cd SeleniumBase/
67-
pip install -r requirements.txt
68-
python setup.py install
67+
pip install .
6968
```
70-
If multiple versions of Python are installed, be specific (E.g. use ``python3`` instead of ``python``).
7169

7270
* You can also install ``seleniumbase`` from [pypi](https://pypi.python.org/pypi/seleniumbase).
7371
```bash

help_docs/chart_maker.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -10,14 +10,14 @@ SeleniumBase Chart Maker allows you to create HTML charts with Python. (HighChar
1010

1111
([Click to see a presentation with multiple charts](https://seleniumbase.io/other/chart_presentation.html))
1212

13-
Here's how to run the example presentation with a pie chart from [github.com/seleniumbase/SeleniumBase/tree/master/examples/chart_maker](https://github.com/seleniumbase/SeleniumBase/tree/master/examples/chart_maker):
13+
Here's how to run the example presentation with a pie chart from [GitHub => seleniumbase/SeleniumBase/examples/chart_maker](https://github.com/seleniumbase/SeleniumBase/tree/master/examples/chart_maker):
1414

1515
```bash
1616
cd examples/chart_maker
1717
pytest my_chart.py
1818
```
1919

20-
Here's the code for that pie chart presentation ([github.com/seleniumbase/SeleniumBase/blob/master/examples/chart_maker/my_chart.py](https://github.com/seleniumbase/SeleniumBase/blob/master/examples/chart_maker/my_chart.py)):
20+
Here's the code for that pie chart presentation ([GitHub => seleniumbase/SeleniumBase/examples/chart_maker/my_chart.py](https://github.com/seleniumbase/SeleniumBase/blob/master/examples/chart_maker/my_chart.py)):
2121

2222
```python
2323
from seleniumbase import BaseCase

help_docs/install.md

Lines changed: 10 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -2,17 +2,23 @@
22

33
## <img src="https://seleniumbase.io/img/sb_icon.png" title="SeleniumBase" width="30" /> Installation
44

5+
If installing SeleniumBase directly [from PyPI (the Python Package Index)](https://pypi.python.org/pypi/seleniumbase), use:
6+
```bash
7+
pip install seleniumbase
8+
```
9+
510
If installing SeleniumBase from a Git clone, use:
611
```bash
712
git clone https://github.com/seleniumbase/SeleniumBase.git
813
cd SeleniumBase/
9-
pip install -r requirements.txt
10-
python setup.py install
14+
pip install .
1115
```
1216

13-
If installing SeleniumBase directly [from PyPI (the Python Package Index)](https://pypi.python.org/pypi/seleniumbase), use:
17+
For a development mode install in editable mode, use:
1418
```bash
15-
pip install seleniumbase
19+
git clone https://github.com/seleniumbase/SeleniumBase.git
20+
cd SeleniumBase/
21+
pip install -e .
1622
```
1723

1824
If installing SeleniumBase [from a GitHub branch](https://github.com/seleniumbase/SeleniumBase), use:

help_docs/method_summary.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -360,10 +360,10 @@ self.add_meta_tag(http_equiv=None, content=None)
360360

361361
############
362362

363-
self.create_presentation(name=None, theme="default")
363+
self.create_presentation(name=None, theme="default", transition="default")
364364

365365
self.add_slide(content=None, image=None, code=None, iframe=None,
366-
content2=None, notes=None, name=None)
366+
content2=None, notes=None, transition=None, name=None)
367367

368368
self.save_presentation(name=None, filename=None, show_notes=False, interval=0)
369369

0 commit comments

Comments
 (0)