pytest-seleniumbase 4.35.0__tar.gz → 4.35.1__tar.gz
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Potentially problematic release.
This version of pytest-seleniumbase might be problematic. Click here for more details.
- {pytest_seleniumbase-4.35.0 → pytest_seleniumbase-4.35.1}/PKG-INFO +3 -3
- {pytest_seleniumbase-4.35.0 → pytest_seleniumbase-4.35.1}/README.md +1 -1
- {pytest_seleniumbase-4.35.0 → pytest_seleniumbase-4.35.1}/pytest_seleniumbase.egg-info/PKG-INFO +3 -3
- pytest_seleniumbase-4.35.1/pytest_seleniumbase.egg-info/requires.txt +1 -0
- {pytest_seleniumbase-4.35.0 → pytest_seleniumbase-4.35.1}/setup.py +2 -2
- pytest_seleniumbase-4.35.0/pytest_seleniumbase.egg-info/requires.txt +0 -1
- {pytest_seleniumbase-4.35.0 → pytest_seleniumbase-4.35.1}/pyproject.toml +0 -0
- {pytest_seleniumbase-4.35.0 → pytest_seleniumbase-4.35.1}/pytest_seleniumbase.egg-info/SOURCES.txt +0 -0
- {pytest_seleniumbase-4.35.0 → pytest_seleniumbase-4.35.1}/pytest_seleniumbase.egg-info/dependency_links.txt +0 -0
- {pytest_seleniumbase-4.35.0 → pytest_seleniumbase-4.35.1}/pytest_seleniumbase.egg-info/top_level.txt +0 -0
- {pytest_seleniumbase-4.35.0 → pytest_seleniumbase-4.35.1}/setup.cfg +0 -0
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
Metadata-Version: 2.2
|
|
2
2
|
Name: pytest-seleniumbase
|
|
3
|
-
Version: 4.35.
|
|
3
|
+
Version: 4.35.1
|
|
4
4
|
Summary: A complete web automation framework for end-to-end testing.
|
|
5
5
|
Home-page: https://github.com/seleniumbase/SeleniumBase
|
|
6
6
|
Author: Michael Mintz
|
|
@@ -52,7 +52,7 @@ Classifier: Topic :: Software Development :: Testing :: Traffic Generation
|
|
|
52
52
|
Classifier: Topic :: Utilities
|
|
53
53
|
Requires-Python: >=3.8
|
|
54
54
|
Description-Content-Type: text/markdown
|
|
55
|
-
Requires-Dist: seleniumbase>=4.35.
|
|
55
|
+
Requires-Dist: seleniumbase>=4.35.1
|
|
56
56
|
Dynamic: author
|
|
57
57
|
Dynamic: author-email
|
|
58
58
|
Dynamic: classifier
|
|
@@ -140,7 +140,7 @@ Dynamic: summary
|
|
|
140
140
|
```python
|
|
141
141
|
from seleniumbase import SB
|
|
142
142
|
|
|
143
|
-
with SB(test=True) as sb:
|
|
143
|
+
with SB(test=True, uc=True) as sb:
|
|
144
144
|
sb.open("https://google.com/ncr")
|
|
145
145
|
sb.type('[title="Search"]', "SeleniumBase GitHub page\n")
|
|
146
146
|
sb.click('[href*="github.com/seleniumbase/"]')
|
|
@@ -74,7 +74,7 @@
|
|
|
74
74
|
```python
|
|
75
75
|
from seleniumbase import SB
|
|
76
76
|
|
|
77
|
-
with SB(test=True) as sb:
|
|
77
|
+
with SB(test=True, uc=True) as sb:
|
|
78
78
|
sb.open("https://google.com/ncr")
|
|
79
79
|
sb.type('[title="Search"]', "SeleniumBase GitHub page\n")
|
|
80
80
|
sb.click('[href*="github.com/seleniumbase/"]')
|
{pytest_seleniumbase-4.35.0 → pytest_seleniumbase-4.35.1}/pytest_seleniumbase.egg-info/PKG-INFO
RENAMED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
Metadata-Version: 2.2
|
|
2
2
|
Name: pytest-seleniumbase
|
|
3
|
-
Version: 4.35.
|
|
3
|
+
Version: 4.35.1
|
|
4
4
|
Summary: A complete web automation framework for end-to-end testing.
|
|
5
5
|
Home-page: https://github.com/seleniumbase/SeleniumBase
|
|
6
6
|
Author: Michael Mintz
|
|
@@ -52,7 +52,7 @@ Classifier: Topic :: Software Development :: Testing :: Traffic Generation
|
|
|
52
52
|
Classifier: Topic :: Utilities
|
|
53
53
|
Requires-Python: >=3.8
|
|
54
54
|
Description-Content-Type: text/markdown
|
|
55
|
-
Requires-Dist: seleniumbase>=4.35.
|
|
55
|
+
Requires-Dist: seleniumbase>=4.35.1
|
|
56
56
|
Dynamic: author
|
|
57
57
|
Dynamic: author-email
|
|
58
58
|
Dynamic: classifier
|
|
@@ -140,7 +140,7 @@ Dynamic: summary
|
|
|
140
140
|
```python
|
|
141
141
|
from seleniumbase import SB
|
|
142
142
|
|
|
143
|
-
with SB(test=True) as sb:
|
|
143
|
+
with SB(test=True, uc=True) as sb:
|
|
144
144
|
sb.open("https://google.com/ncr")
|
|
145
145
|
sb.type('[title="Search"]', "SeleniumBase GitHub page\n")
|
|
146
146
|
sb.click('[href*="github.com/seleniumbase/"]')
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
seleniumbase>=4.35.1
|
|
@@ -68,7 +68,7 @@ if sys.argv[-1] == "publish":
|
|
|
68
68
|
|
|
69
69
|
setup(
|
|
70
70
|
name='pytest-seleniumbase',
|
|
71
|
-
version='4.35.
|
|
71
|
+
version='4.35.1',
|
|
72
72
|
description='A complete web automation framework for end-to-end testing.',
|
|
73
73
|
long_description=long_description,
|
|
74
74
|
long_description_content_type='text/markdown',
|
|
@@ -122,7 +122,7 @@ setup(
|
|
|
122
122
|
],
|
|
123
123
|
python_requires=">=3.8",
|
|
124
124
|
install_requires=[
|
|
125
|
-
'seleniumbase>=4.35.
|
|
125
|
+
'seleniumbase>=4.35.1',
|
|
126
126
|
],
|
|
127
127
|
packages=[
|
|
128
128
|
],
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
seleniumbase>=4.35.0
|
|
File without changes
|
{pytest_seleniumbase-4.35.0 → pytest_seleniumbase-4.35.1}/pytest_seleniumbase.egg-info/SOURCES.txt
RENAMED
|
File without changes
|
|
File without changes
|
{pytest_seleniumbase-4.35.0 → pytest_seleniumbase-4.35.1}/pytest_seleniumbase.egg-info/top_level.txt
RENAMED
|
File without changes
|
|
File without changes
|