Skip to content

Performance improvements #330

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
merged 5 commits into from
May 30, 2019
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
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ pytest my_first_test.py --demo_mode

## <img src="https://cdn2.hubspot.net/hubfs/100006/images/super_square_logo_3a.png" title="SeleniumBase" height="32"> Quick Start:

(<i>Requires **[Python/Pip](https://github.com/seleniumbase/SeleniumBase/blob/master/help_docs/install_python_pip_git.md)** [<img src="https://img.shields.io/badge/python-2.7,_3.x-22AADD.svg" alt="Python versions" />](https://www.python.org/downloads/). Optionally, you may want to use a [Python virtual environment](https://github.com/seleniumbase/SeleniumBase/blob/master/help_docs/virtualenv_instructions.md) to isolate Python dependencies between projects.</i>)
(<i>Requires **[Python/Pip](https://github.com/seleniumbase/SeleniumBase/blob/master/help_docs/install_python_pip_git.md)** [<img src="https://img.shields.io/badge/python-2.7,_3.5,_3.6,_3.7-22AADD.svg" alt="Python versions" />](https://www.python.org/downloads/). Optionally, you may want to use a [Python virtual environment](https://github.com/seleniumbase/SeleniumBase/blob/master/help_docs/virtualenv_instructions.md) to isolate Python dependencies between projects.</i>)

### <img src="https://cdn2.hubspot.net/hubfs/100006/images/super_square_logo_3a.png" title="SeleniumBase" height="32"> Git clone and install SeleniumBase:
```
Expand Down
2 changes: 2 additions & 0 deletions azure-pipelines.yml
Original file line number Diff line number Diff line change
Expand Up @@ -13,6 +13,8 @@ jobs:
matrix:
Python27:
python.version: '2.7'
Python35:
python.version: '3.5'
Python36:
python.version: '3.6'
Python37:
Expand Down
2 changes: 1 addition & 1 deletion examples/master_qa/ReadMe.md
Original file line number Diff line number Diff line change
Expand Up @@ -4,4 +4,4 @@ MasterQA combines web automation with manual verification to create a flexible t

### More info on MasterQA can be found [here](https://github.com/seleniumbase/SeleniumBase/blob/master/seleniumbase/masterqa/ReadMe.md).

![](http://cdn2.hubspot.net/hubfs/100006/images/masterqa_gif.gif "MasterQA")<br />
![](https://cdn2.hubspot.net/hubfs/100006/images/masterqa6.gif "MasterQA")<br />
4 changes: 2 additions & 2 deletions help_docs/happy_customers.md
Original file line number Diff line number Diff line change
@@ -1,13 +1,13 @@
#### Some organizations that've grown their automation with SeleniumBase include:
* [HubSpot](http://www.hubspot.com/)
* [Jana](http://jana.com/)
* [Veracode](http://www.veracode.com/)
* [CA Technologies](https://www.ca.com/)
* [Broadcom](https://www.broadcom.com/)
* [MIT](http://web.mit.edu/)
* [iboss](https://www.iboss.com/)
* [MIT](http://web.mit.edu/)
* [Akamai](https://www.akamai.com/)
* [VMware](http://www.vmware.com/)
* [Jana](http://jana.com/)
* [Raid The Room](http://raidtheroom.com/)
* [Harvard Medical School](http://hms.harvard.edu/)
* And more...
Expand Down
6 changes: 3 additions & 3 deletions requirements.txt
Original file line number Diff line number Diff line change
Expand Up @@ -6,10 +6,10 @@ ipdb
unittest2
idna==2.8
chardet==3.0.4
urllib3==1.24.3
requests>=2.21.0
urllib3==1.25.3
requests>=2.22.0
selenium==3.141.0
pluggy>=0.11.0
pluggy>=0.12.0
pytest>=4.5.0
pytest-cov>=2.7.1
pytest-forked>=1.0.2
Expand Down
5 changes: 3 additions & 2 deletions seleniumbase/fixtures/constants.py
Original file line number Diff line number Diff line change
Expand Up @@ -25,8 +25,9 @@ class VisualBaseline:

class JQuery:
VER = "3.4.1"
# MIN_JS = "//cdnjs.cloudflare.com/ajax/libs/jquery/%s/jquery.min.js" % VER
MIN_JS = "//ajax.googleapis.com/ajax/libs/jquery/%s/jquery.min.js" % VER
MIN_JS = "//cdnjs.cloudflare.com/ajax/libs/jquery/%s/jquery.min.js" % VER
# MIN_JS = "//ajax.aspnetcdn.com/ajax/jQuery/jquery-%s.min.js" % VER
# MIN_JS = "//ajax.googleapis.com/ajax/libs/jquery/%s/jquery.min.js" % VER


class Messenger:
Expand Down
8 changes: 4 additions & 4 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@

setup(
name='seleniumbase',
version='1.23.11',
version='1.23.12',
description='Reliable Browser Automation & Testing Framework',
long_description=long_description,
long_description_content_type='text/markdown',
Expand Down Expand Up @@ -59,10 +59,10 @@
'unittest2',
'idna==2.8', # Must stay in sync with "requests"
'chardet==3.0.4', # Must stay in sync with "requests"
'urllib3==1.24.3', # Must stay in sync with "requests"
'requests>=2.21.0',
'urllib3==1.25.3', # Must stay in sync with "requests"
'requests>=2.22.0',
'selenium==3.141.0',
'pluggy>=0.11.0',
'pluggy>=0.12.0',
'pytest>=4.5.0',
'pytest-cov>=2.7.1',
'pytest-forked>=1.0.2',
Expand Down