selenium-base 4.34.17__tar.gz → 4.44.6__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.
- {selenium_base-4.34.17 → selenium_base-4.44.6}/PKG-INFO +6 -6
- {selenium_base-4.34.17 → selenium_base-4.44.6}/README.md +2 -2
- {selenium_base-4.34.17 → selenium_base-4.44.6}/selenium_base.egg-info/PKG-INFO +6 -6
- selenium_base-4.44.6/selenium_base.egg-info/requires.txt +1 -0
- {selenium_base-4.34.17 → selenium_base-4.44.6}/setup.py +4 -4
- selenium_base-4.34.17/selenium_base.egg-info/requires.txt +0 -1
- {selenium_base-4.34.17 → selenium_base-4.44.6}/pyproject.toml +0 -0
- {selenium_base-4.34.17 → selenium_base-4.44.6}/selenium_base.egg-info/SOURCES.txt +0 -0
- {selenium_base-4.34.17 → selenium_base-4.44.6}/selenium_base.egg-info/dependency_links.txt +0 -0
- {selenium_base-4.34.17 → selenium_base-4.44.6}/selenium_base.egg-info/top_level.txt +0 -0
- {selenium_base-4.34.17 → selenium_base-4.44.6}/setup.cfg +0 -0
|
@@ -1,6 +1,6 @@
|
|
|
1
|
-
Metadata-Version: 2.
|
|
1
|
+
Metadata-Version: 2.4
|
|
2
2
|
Name: selenium-base
|
|
3
|
-
Version: 4.
|
|
3
|
+
Version: 4.44.6
|
|
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
|
|
@@ -27,7 +27,6 @@ Classifier: Environment :: Web Environment
|
|
|
27
27
|
Classifier: Framework :: Pytest
|
|
28
28
|
Classifier: Intended Audience :: Developers
|
|
29
29
|
Classifier: Intended Audience :: Information Technology
|
|
30
|
-
Classifier: License :: OSI Approved :: MIT License
|
|
31
30
|
Classifier: Operating System :: MacOS :: MacOS X
|
|
32
31
|
Classifier: Operating System :: Microsoft :: Windows
|
|
33
32
|
Classifier: Operating System :: POSIX :: Linux
|
|
@@ -39,6 +38,7 @@ Classifier: Programming Language :: Python :: 3.10
|
|
|
39
38
|
Classifier: Programming Language :: Python :: 3.11
|
|
40
39
|
Classifier: Programming Language :: Python :: 3.12
|
|
41
40
|
Classifier: Programming Language :: Python :: 3.13
|
|
41
|
+
Classifier: Programming Language :: Python :: 3.14
|
|
42
42
|
Classifier: Topic :: Internet
|
|
43
43
|
Classifier: Topic :: Scientific/Engineering
|
|
44
44
|
Classifier: Topic :: Software Development
|
|
@@ -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.
|
|
55
|
+
Requires-Dist: seleniumbase>=4.44.6
|
|
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/"]')
|
|
@@ -159,7 +159,7 @@ with SB(test=True) as sb:
|
|
|
159
159
|
```python
|
|
160
160
|
from seleniumbase import SB
|
|
161
161
|
|
|
162
|
-
with SB(uc=True, test=True,
|
|
162
|
+
with SB(uc=True, test=True, locale="en") as sb:
|
|
163
163
|
url = "https://gitlab.com/users/sign_in"
|
|
164
164
|
sb.activate_cdp_mode(url)
|
|
165
165
|
sb.uc_gui_click_captcha()
|
|
@@ -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/"]')
|
|
@@ -93,7 +93,7 @@ with SB(test=True) as sb:
|
|
|
93
93
|
```python
|
|
94
94
|
from seleniumbase import SB
|
|
95
95
|
|
|
96
|
-
with SB(uc=True, test=True,
|
|
96
|
+
with SB(uc=True, test=True, locale="en") as sb:
|
|
97
97
|
url = "https://gitlab.com/users/sign_in"
|
|
98
98
|
sb.activate_cdp_mode(url)
|
|
99
99
|
sb.uc_gui_click_captcha()
|
|
@@ -1,6 +1,6 @@
|
|
|
1
|
-
Metadata-Version: 2.
|
|
1
|
+
Metadata-Version: 2.4
|
|
2
2
|
Name: selenium-base
|
|
3
|
-
Version: 4.
|
|
3
|
+
Version: 4.44.6
|
|
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
|
|
@@ -27,7 +27,6 @@ Classifier: Environment :: Web Environment
|
|
|
27
27
|
Classifier: Framework :: Pytest
|
|
28
28
|
Classifier: Intended Audience :: Developers
|
|
29
29
|
Classifier: Intended Audience :: Information Technology
|
|
30
|
-
Classifier: License :: OSI Approved :: MIT License
|
|
31
30
|
Classifier: Operating System :: MacOS :: MacOS X
|
|
32
31
|
Classifier: Operating System :: Microsoft :: Windows
|
|
33
32
|
Classifier: Operating System :: POSIX :: Linux
|
|
@@ -39,6 +38,7 @@ Classifier: Programming Language :: Python :: 3.10
|
|
|
39
38
|
Classifier: Programming Language :: Python :: 3.11
|
|
40
39
|
Classifier: Programming Language :: Python :: 3.12
|
|
41
40
|
Classifier: Programming Language :: Python :: 3.13
|
|
41
|
+
Classifier: Programming Language :: Python :: 3.14
|
|
42
42
|
Classifier: Topic :: Internet
|
|
43
43
|
Classifier: Topic :: Scientific/Engineering
|
|
44
44
|
Classifier: Topic :: Software Development
|
|
@@ -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.
|
|
55
|
+
Requires-Dist: seleniumbase>=4.44.6
|
|
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/"]')
|
|
@@ -159,7 +159,7 @@ with SB(test=True) as sb:
|
|
|
159
159
|
```python
|
|
160
160
|
from seleniumbase import SB
|
|
161
161
|
|
|
162
|
-
with SB(uc=True, test=True,
|
|
162
|
+
with SB(uc=True, test=True, locale="en") as sb:
|
|
163
163
|
url = "https://gitlab.com/users/sign_in"
|
|
164
164
|
sb.activate_cdp_mode(url)
|
|
165
165
|
sb.uc_gui_click_captcha()
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
seleniumbase>=4.44.6
|
|
@@ -29,7 +29,7 @@ if sys.argv[-1] == "publish":
|
|
|
29
29
|
print("\nERROR! Publishing to PyPI requires Python>=3.9")
|
|
30
30
|
sys.exit()
|
|
31
31
|
print("\n*** Checking code health with flake8:\n")
|
|
32
|
-
os.system("python -m pip install 'flake8==7.
|
|
32
|
+
os.system("python -m pip install 'flake8==7.3.0'")
|
|
33
33
|
flake8_status = os.system("flake8 --exclude=recordings,temp")
|
|
34
34
|
if flake8_status != 0:
|
|
35
35
|
print("\nERROR! Fix flake8 issues before publishing to PyPI!\n")
|
|
@@ -68,7 +68,7 @@ if sys.argv[-1] == "publish":
|
|
|
68
68
|
|
|
69
69
|
setup(
|
|
70
70
|
name='selenium-base',
|
|
71
|
-
version='4.
|
|
71
|
+
version='4.44.6',
|
|
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',
|
|
@@ -96,7 +96,6 @@ setup(
|
|
|
96
96
|
"Framework :: Pytest",
|
|
97
97
|
"Intended Audience :: Developers",
|
|
98
98
|
"Intended Audience :: Information Technology",
|
|
99
|
-
"License :: OSI Approved :: MIT License",
|
|
100
99
|
"Operating System :: MacOS :: MacOS X",
|
|
101
100
|
"Operating System :: Microsoft :: Windows",
|
|
102
101
|
"Operating System :: POSIX :: Linux",
|
|
@@ -108,6 +107,7 @@ setup(
|
|
|
108
107
|
"Programming Language :: Python :: 3.11",
|
|
109
108
|
"Programming Language :: Python :: 3.12",
|
|
110
109
|
"Programming Language :: Python :: 3.13",
|
|
110
|
+
"Programming Language :: Python :: 3.14",
|
|
111
111
|
"Topic :: Internet",
|
|
112
112
|
"Topic :: Scientific/Engineering",
|
|
113
113
|
"Topic :: Software Development",
|
|
@@ -122,7 +122,7 @@ setup(
|
|
|
122
122
|
],
|
|
123
123
|
python_requires=">=3.8",
|
|
124
124
|
install_requires=[
|
|
125
|
-
'seleniumbase>=4.
|
|
125
|
+
'seleniumbase>=4.44.6',
|
|
126
126
|
],
|
|
127
127
|
packages=[
|
|
128
128
|
],
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
seleniumbase>=4.34.17
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|