Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
9 changes: 7 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -30,14 +30,19 @@ pip install seleniumbase
* Add ``--upgrade`` to upgrade an existing installation.
* Add ``--force-reinstall`` for a clean install.

You can also install SeleniumBase from a ``git clone``:
You can also install seleniumbase from a ``git clone``:
```bash
git clone https://github.com/seleniumbase/SeleniumBase.git
cd SeleniumBase
pip install -e .
```

To install dependancies separately from seleniumbase:
(From the ``SeleniumBase`` folder:)
```bash
pip install -r requirements.txt
python setup.py develop
```
* "``pip install -e .``" also works from the top-level SeleniumBase folder.

You can also install a specific GitHub branch of SeleniumBase:
```bash
Expand Down
4 changes: 2 additions & 2 deletions requirements.txt
Original file line number Diff line number Diff line change
Expand Up @@ -6,12 +6,12 @@ nose>=1.3.7
ipdb>=0.12.2
idna==2.8
chardet==3.0.4
urllib3==1.25.3
urllib3==1.25.6
requests>=2.22.0
selenium==3.141.0
pluggy>=0.12.0
pytest>=4.6.5;python_version<"3"
pytest>=5.1.3;python_version>="3"
pytest>=5.2.0;python_version>="3"
pytest-cov>=2.7.1
pytest-forked>=1.0.2
pytest-html==1.22.0
Expand Down
2 changes: 1 addition & 1 deletion seleniumbase/config/proxy_list.py
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@

PROXY_LIST = {
"example1": "66.7.113.39:3128", # (Example) - set your own proxy here
"example2": "35.224.31.171:8080", # (Example) - set your own proxy here
"example2": "198.143.179.130:3128", # (Example) - set your own proxy here
"example3": "104.236.248.219:3128", # (Example) - set your own proxy here
"proxy1": None,
"proxy2": None,
Expand Down
6 changes: 3 additions & 3 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -45,7 +45,7 @@

setup(
name='seleniumbase',
version='1.32.4',
version='1.32.5',
description='Fast, Easy, and Reliable Browser Automation & Testing.',
long_description=long_description,
long_description_content_type='text/markdown',
Expand Down Expand Up @@ -88,12 +88,12 @@
'ipdb',
'idna==2.8', # Must stay in sync with "requests"
'chardet==3.0.4', # Must stay in sync with "requests"
'urllib3==1.25.3', # Must stay in sync with "requests"
'urllib3==1.25.6', # Must stay in sync with "requests"
'requests>=2.22.0',
'selenium==3.141.0',
'pluggy>=0.12.0',
'pytest>=4.6.5;python_version<"3"', # For Python 2 compatibility
'pytest>=5.1.3;python_version>="3"',
'pytest>=5.2.0;python_version>="3"',
'pytest-cov>=2.7.1',
'pytest-forked>=1.0.2',
'pytest-html==1.22.0', # Keep at 1.22.0 unless tested on Windows
Expand Down