seleniumbase 4.35.7__py3-none-any.whl → 4.36.0__py3-none-any.whl
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.
- seleniumbase/__version__.py +1 -1
- seleniumbase/core/browser_launcher.py +6 -0
- {seleniumbase-4.35.7.dist-info → seleniumbase-4.36.0.dist-info}/METADATA +12 -12
- {seleniumbase-4.35.7.dist-info → seleniumbase-4.36.0.dist-info}/RECORD +8 -8
- {seleniumbase-4.35.7.dist-info → seleniumbase-4.36.0.dist-info}/WHEEL +1 -1
- {seleniumbase-4.35.7.dist-info → seleniumbase-4.36.0.dist-info}/entry_points.txt +0 -0
- {seleniumbase-4.35.7.dist-info → seleniumbase-4.36.0.dist-info/licenses}/LICENSE +0 -0
- {seleniumbase-4.35.7.dist-info → seleniumbase-4.36.0.dist-info}/top_level.txt +0 -0
seleniumbase/__version__.py
CHANGED
@@ -1,2 +1,2 @@
|
|
1
1
|
# seleniumbase package
|
2
|
-
__version__ = "4.
|
2
|
+
__version__ = "4.36.0"
|
@@ -1302,6 +1302,8 @@ def _uc_gui_click_captcha(
|
|
1302
1302
|
frame = "body > div#check > div:not([class])"
|
1303
1303
|
elif driver.is_element_present(".cf-turnstile-wrapper"):
|
1304
1304
|
frame = ".cf-turnstile-wrapper"
|
1305
|
+
elif driver.is_element_present('[class="cf-turnstile"]'):
|
1306
|
+
frame = '[class="cf-turnstile"]'
|
1305
1307
|
elif driver.is_element_present(
|
1306
1308
|
'[data-callback="onCaptchaSuccess"]'
|
1307
1309
|
):
|
@@ -1617,6 +1619,10 @@ def _uc_gui_handle_captcha_(driver, frame="iframe", ctype=None):
|
|
1617
1619
|
)
|
1618
1620
|
):
|
1619
1621
|
frame = "body > div#check > div:not([class])"
|
1622
|
+
elif driver.is_element_present(".cf-turnstile-wrapper"):
|
1623
|
+
frame = ".cf-turnstile-wrapper"
|
1624
|
+
elif driver.is_element_present('[class="cf-turnstile"]'):
|
1625
|
+
frame = '[class="cf-turnstile"]'
|
1620
1626
|
else:
|
1621
1627
|
return
|
1622
1628
|
else:
|
@@ -1,6 +1,6 @@
|
|
1
|
-
Metadata-Version: 2.
|
1
|
+
Metadata-Version: 2.4
|
2
2
|
Name: seleniumbase
|
3
|
-
Version: 4.
|
3
|
+
Version: 4.36.0
|
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
|
@@ -62,19 +62,20 @@ License-File: LICENSE
|
|
62
62
|
Requires-Dist: pip>=25.0.1
|
63
63
|
Requires-Dist: packaging>=24.2
|
64
64
|
Requires-Dist: setuptools~=70.2; python_version < "3.10"
|
65
|
-
Requires-Dist: setuptools>=
|
65
|
+
Requires-Dist: setuptools>=77.0.3; python_version >= "3.10"
|
66
66
|
Requires-Dist: wheel>=0.45.1
|
67
|
-
Requires-Dist: attrs>=25.
|
67
|
+
Requires-Dist: attrs>=25.3.0
|
68
68
|
Requires-Dist: certifi>=2025.1.31
|
69
69
|
Requires-Dist: exceptiongroup>=1.2.2
|
70
70
|
Requires-Dist: websockets~=13.1; python_version < "3.9"
|
71
71
|
Requires-Dist: websockets>=15.0.1; python_version >= "3.9"
|
72
72
|
Requires-Dist: filelock~=3.16.1; python_version < "3.9"
|
73
|
-
Requires-Dist: filelock>=3.
|
73
|
+
Requires-Dist: filelock>=3.18.0; python_version >= "3.9"
|
74
74
|
Requires-Dist: fasteners>=0.19
|
75
75
|
Requires-Dist: mycdp>=1.1.1
|
76
76
|
Requires-Dist: pynose>=1.5.4
|
77
|
-
Requires-Dist: platformdirs>=4.3.6
|
77
|
+
Requires-Dist: platformdirs>=4.3.6; python_version < "3.9"
|
78
|
+
Requires-Dist: platformdirs>=4.3.7; python_version >= "3.9"
|
78
79
|
Requires-Dist: typing-extensions>=4.12.2
|
79
80
|
Requires-Dist: sbvirtualdisplay>=1.4.0
|
80
81
|
Requires-Dist: MarkupSafe==2.1.5; python_version < "3.9"
|
@@ -104,12 +105,12 @@ Requires-Dist: trio-websocket==0.12.2
|
|
104
105
|
Requires-Dist: wsproto==1.2.0
|
105
106
|
Requires-Dist: websocket-client==1.8.0
|
106
107
|
Requires-Dist: selenium==4.27.1; python_version < "3.9"
|
107
|
-
Requires-Dist: selenium==4.
|
108
|
+
Requires-Dist: selenium==4.30.0; python_version >= "3.9"
|
108
109
|
Requires-Dist: cssselect==1.2.0; python_version < "3.9"
|
109
110
|
Requires-Dist: cssselect==1.3.0; python_version >= "3.9"
|
110
111
|
Requires-Dist: sortedcontainers==2.4.0
|
111
112
|
Requires-Dist: execnet==2.1.1
|
112
|
-
Requires-Dist: iniconfig==2.
|
113
|
+
Requires-Dist: iniconfig==2.1.0
|
113
114
|
Requires-Dist: pluggy==1.5.0
|
114
115
|
Requires-Dist: pytest==8.3.5
|
115
116
|
Requires-Dist: pytest-html==4.0.2
|
@@ -133,7 +134,7 @@ Requires-Dist: allure-python-commons>=2.13.5; extra == "allure"
|
|
133
134
|
Requires-Dist: allure-behave>=2.13.5; extra == "allure"
|
134
135
|
Provides-Extra: coverage
|
135
136
|
Requires-Dist: coverage>=7.6.1; python_version < "3.9" and extra == "coverage"
|
136
|
-
Requires-Dist: coverage>=7.
|
137
|
+
Requires-Dist: coverage>=7.7.1; python_version >= "3.9" and extra == "coverage"
|
137
138
|
Requires-Dist: pytest-cov>=5.0.0; python_version < "3.9" and extra == "coverage"
|
138
139
|
Requires-Dist: pytest-cov>=6.0.0; python_version >= "3.9" and extra == "coverage"
|
139
140
|
Provides-Extra: flake8
|
@@ -186,6 +187,7 @@ Dynamic: classifier
|
|
186
187
|
Dynamic: home-page
|
187
188
|
Dynamic: keywords
|
188
189
|
Dynamic: license
|
190
|
+
Dynamic: license-file
|
189
191
|
Dynamic: maintainer
|
190
192
|
Dynamic: platform
|
191
193
|
Dynamic: provides-extra
|
@@ -248,9 +250,7 @@ Dynamic: summary
|
|
248
250
|
<br />
|
249
251
|
</p>
|
250
252
|
|
251
|
-
<p
|
252
|
-
|
253
|
-
<p>SeleniumBase is the professional toolkit for web automation. Built for testing websites, bypassing CAPTCHAs, completing tasks, and scaling your business.</p>
|
253
|
+
<p>SeleniumBase is the professional toolkit for web automation activities. Built for testing websites, bypassing CAPTCHAs, enhancing productivity, completing tasks, and scaling your business.</p>
|
254
254
|
|
255
255
|
--------
|
256
256
|
|
@@ -3,7 +3,7 @@ sbase/__main__.py,sha256=G0bVB1-DM4PGwQ1KyOupaWCs4ePbChZNNWuX2htim5U,647
|
|
3
3
|
sbase/steps.py,sha256=_WvAjydKqZfTdnZW9LPKkRty-g-lfdUPmLqnZj6ulcs,43013
|
4
4
|
seleniumbase/__init__.py,sha256=JFEY9P5QJqsa1M6ghzLMH2eIPQyh85iglCaQwg8Y8z4,2498
|
5
5
|
seleniumbase/__main__.py,sha256=dn1p6dgCchmcH1zzTzzQvFwwdQQqnTGH6ULV9m4hv24,654
|
6
|
-
seleniumbase/__version__.py,sha256=
|
6
|
+
seleniumbase/__version__.py,sha256=eMdsjFTB05ssr4Pkh3od3DDG8HpV78wwYGuHZj2v5RE,46
|
7
7
|
seleniumbase/behave/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
8
8
|
seleniumbase/behave/behave_helper.py,sha256=elkl8P9eLulRAioLstE9baYNM9N_PHBmAOcajX-pH_Y,24198
|
9
9
|
seleniumbase/behave/behave_sb.py,sha256=qQF85LoohJBfrPK5ZcPi50v-pWtOrC9qcN1B3Ki_3tY,59401
|
@@ -36,7 +36,7 @@ seleniumbase/console_scripts/sb_print.py,sha256=tNy-bMDgwHJO3bZxMpmo9weSE8uhbH0C
|
|
36
36
|
seleniumbase/console_scripts/sb_recorder.py,sha256=fnHb5-kh11Hit-E9Ha-e4QXzqLcZvtij6mb5qNd4B1Q,11032
|
37
37
|
seleniumbase/core/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
38
38
|
seleniumbase/core/application_manager.py,sha256=e_0sjtI8cjY5BNyZj1QBR0j6_oCScxGmSXYEpcYwuZE,576
|
39
|
-
seleniumbase/core/browser_launcher.py,sha256=
|
39
|
+
seleniumbase/core/browser_launcher.py,sha256=D_cjv2404-kd9M88L-n871iyMmdeLDtMW3R1xDgb5EE,239343
|
40
40
|
seleniumbase/core/capabilities_parser.py,sha256=meIS2uHapTCq2ldfNAToC7r0cKmZDRXuYNKExM1GHDY,6038
|
41
41
|
seleniumbase/core/colored_traceback.py,sha256=DrRWfg7XEnKcgY59Xj7Jdk09H-XqHYBSUpB-DiZt6iY,2020
|
42
42
|
seleniumbase/core/create_db_tables.sql,sha256=VWPtrdiW_HQ6yETHjqTu-VIrTwvd8I8o1NfBeaVSHpU,972
|
@@ -135,9 +135,9 @@ seleniumbase/utilities/selenium_grid/start-grid-hub.bat,sha256=Ftq-GrAKRYH2ssDPr
|
|
135
135
|
seleniumbase/utilities/selenium_grid/start-grid-hub.sh,sha256=KADv0RUHONLL2_I443QFK8PryBpDmKn5Gy0s4o0vDSM,106
|
136
136
|
seleniumbase/utilities/selenium_ide/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
137
137
|
seleniumbase/utilities/selenium_ide/convert_ide.py,sha256=pZFnqEJQEKZPyNFjkLD29s2HPQgCrWW9XJWpCPhWOoM,31691
|
138
|
-
seleniumbase-4.
|
139
|
-
seleniumbase-4.
|
140
|
-
seleniumbase-4.
|
141
|
-
seleniumbase-4.
|
142
|
-
seleniumbase-4.
|
143
|
-
seleniumbase-4.
|
138
|
+
seleniumbase-4.36.0.dist-info/licenses/LICENSE,sha256=BRblZsX7HyPUjQmYTiyWr_e9tzWvmR3R4SFclM2R3W0,1085
|
139
|
+
seleniumbase-4.36.0.dist-info/METADATA,sha256=4oXtw0v6MqYiU2Msmdhs9Eb7CWbZPkdwjEZ4Kjif3D0,86819
|
140
|
+
seleniumbase-4.36.0.dist-info/WHEEL,sha256=1tXe9gY0PYatrMPMDd6jXqjfpz_B-Wqm32CPfRC58XU,91
|
141
|
+
seleniumbase-4.36.0.dist-info/entry_points.txt,sha256=CNrh2EKNaHYEhO6pP1RJyVLB99LkDDYX7TnUK8xfjqk,623
|
142
|
+
seleniumbase-4.36.0.dist-info/top_level.txt,sha256=4N97aBOQ8ETCnDnokBsWb07lJfTaq3C1ZzYRxvLMxqU,19
|
143
|
+
seleniumbase-4.36.0.dist-info/RECORD,,
|
File without changes
|
File without changes
|
File without changes
|