Skip to content

Commit 1e3bb4d

Browse files
authored
Merge pull request #463 from seleniumbase/requirements-update
Update a few Python package dependencies
2 parents af1ca96 + 854f8e5 commit 1e3bb4d

File tree

4 files changed

+12
-10
lines changed

4 files changed

+12
-10
lines changed

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11

2-
[<img src="https://cdn2.hubspot.net/hubfs/100006/images/super_logo_sb10.png" title="SeleniumBase" height="48">](https://github.com/seleniumbase/SeleniumBase/blob/master/README.md)
2+
[<img src="https://cdn2.hubspot.net/hubfs/100006/images/super_logo_r.png" title="SeleniumBase" height="48">](https://github.com/seleniumbase/SeleniumBase/blob/master/README.md)
33

44
[<img src="https://img.shields.io/github/release/seleniumbase/SeleniumBase.svg" alt=" " />](https://github.com/seleniumbase/SeleniumBase/releases) [<img src="https://img.shields.io/pypi/v/seleniumbase.svg" alt=" " />](https://pypi.python.org/pypi/seleniumbase) [<img src="https://badges.gitter.im/seleniumbase/SeleniumBase.svg" alt=" " />](https://gitter.im/seleniumbase/SeleniumBase) [<img src="https://img.shields.io/travis/seleniumbase/SeleniumBase/master.svg?logo=travis" alt=" " />](https://travis-ci.org/seleniumbase/SeleniumBase) [<img src="https://dev.azure.com/seleniumbase/seleniumbase/_apis/build/status/seleniumbase.SeleniumBase?branchName=master" alt=" " />](https://dev.azure.com/seleniumbase/seleniumbase/_build/latest?definitionId=1&branchName=master) [<img src="https://github.com/seleniumbase/SeleniumBase/workflows/CI%20build/badge.svg">](https://github.com/seleniumbase/SeleniumBase/actions) [<img src="https://img.shields.io/badge/license-MIT-22BBCC.svg" alt=" " />](https://github.com/seleniumbase/SeleniumBase/blob/master/LICENSE) [<img src="https://img.shields.io/github/stars/seleniumbase/seleniumbase.svg" alt=" " />](https://github.com/seleniumbase/SeleniumBase/stargazers)
55

examples/test_double_click.py

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,17 +1,17 @@
11
from seleniumbase import BaseCase
22

33

4-
class MyTestClass(BaseCase):
4+
class DoubleClickTestClass(BaseCase):
55

6-
def test_double_click_and_switch_to_frame(self):
6+
def test_switch_to_frame_and_double_click(self):
77
self.open("https://www.w3schools.com/jsref"
88
"/tryit.asp?filename=tryjsref_ondblclick")
99
self.ad_block()
10-
self.switch_to_frame("#iframeResult")
10+
self.switch_to_frame("iframe#iframeResult")
1111
self.double_click('[ondblclick="myFunction()"]')
1212
self.assert_text("Hello World", "#demo")
1313

14-
def test_double_click_and_switch_to_frame_of_element(self):
14+
def test_switch_to_frame_of_element_and_double_click(self):
1515
self.open("https://www.w3schools.com/jsref"
1616
"/tryit.asp?filename=tryjsref_ondblclick")
1717
self.ad_block()

requirements.txt

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@ pytest-html==2.0.1;python_version>="3.6"
2121
pytest-metadata>=1.8.0
2222
pytest-ordering>=0.6
2323
pytest-rerunfailures>=8.0
24-
pytest-timeout>=1.3.3
24+
pytest-timeout>=1.3.4
2525
pytest-xdist>=1.31.0
2626
parameterized>=0.7.1
2727
soupsieve==1.9.5
@@ -31,9 +31,10 @@ portalocker==1.5.2
3131
cryptography==2.8
3232
asn1crypto==1.3.0
3333
pyopenssl==19.1.0
34+
packaging>=20.0
3435
pygments==2.5.2
3536
colorama==0.4.3
36-
coverage>=5.0.1
37+
coverage>=5.0.2
3738
pymysql==0.9.3
3839
pyotp==2.3.0
3940
boto==2.49.0

setup.py

Lines changed: 4 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -45,7 +45,7 @@
4545

4646
setup(
4747
name='seleniumbase',
48-
version='1.34.12',
48+
version='1.34.13',
4949
description='Fast, Easy, and Reliable Browser Automation & Testing.',
5050
long_description=long_description,
5151
long_description_content_type='text/markdown',
@@ -104,7 +104,7 @@
104104
'pytest-metadata>=1.8.0',
105105
'pytest-ordering>=0.6',
106106
'pytest-rerunfailures>=8.0',
107-
'pytest-timeout>=1.3.3',
107+
'pytest-timeout>=1.3.4',
108108
'pytest-xdist>=1.31.0',
109109
'parameterized>=0.7.1',
110110
'soupsieve==1.9.5',
@@ -114,9 +114,10 @@
114114
'cryptography==2.8',
115115
'asn1crypto==1.3.0',
116116
'pyopenssl==19.1.0',
117+
'packaging>=20.0',
117118
'pygments>=2.5.2',
118119
'colorama==0.4.3',
119-
'coverage>=5.0.1',
120+
'coverage>=5.0.2',
120121
'pymysql==0.9.3',
121122
'pyotp==2.3.0',
122123
'boto==2.49.0',

0 commit comments

Comments
 (0)