seleniumbase 4.36.2__py3-none-any.whl → 4.36.3__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/console_scripts/sb_install.py +5 -2
- {seleniumbase-4.36.2.dist-info → seleniumbase-4.36.3.dist-info}/METADATA +7 -5
- {seleniumbase-4.36.2.dist-info → seleniumbase-4.36.3.dist-info}/RECORD +8 -8
- {seleniumbase-4.36.2.dist-info → seleniumbase-4.36.3.dist-info}/WHEEL +1 -1
- {seleniumbase-4.36.2.dist-info → seleniumbase-4.36.3.dist-info}/entry_points.txt +0 -0
- {seleniumbase-4.36.2.dist-info → seleniumbase-4.36.3.dist-info}/licenses/LICENSE +0 -0
- {seleniumbase-4.36.2.dist-info → seleniumbase-4.36.3.dist-info}/top_level.txt +0 -0
seleniumbase/__version__.py
CHANGED
@@ -1,2 +1,2 @@
|
|
1
1
|
# seleniumbase package
|
2
|
-
__version__ = "4.36.
|
2
|
+
__version__ = "4.36.3"
|
@@ -54,7 +54,7 @@ IS_WINDOWS = shared_utils.is_windows()
|
|
54
54
|
DRIVER_DIR = os.path.dirname(os.path.realpath(drivers.__file__))
|
55
55
|
LOCAL_PATH = "/usr/local/bin/" # On Mac and Linux systems
|
56
56
|
DEFAULT_CHROMEDRIVER_VERSION = "114.0.5735.90" # (If can't find LATEST_STABLE)
|
57
|
-
DEFAULT_GECKODRIVER_VERSION = "v0.
|
57
|
+
DEFAULT_GECKODRIVER_VERSION = "v0.36.0"
|
58
58
|
DEFAULT_EDGEDRIVER_VERSION = "115.0.1901.183" # (If can't find LATEST_STABLE)
|
59
59
|
|
60
60
|
|
@@ -1296,7 +1296,10 @@ def main(override=None, intel_for_uc=None, force_uc=None):
|
|
1296
1296
|
if os.path.exists(new_file):
|
1297
1297
|
os.remove(new_file) # Technically the old file now
|
1298
1298
|
log_d("Extracting %s from %s ..." % (contents, file_name))
|
1299
|
-
|
1299
|
+
if sys.version_info < (3, 12):
|
1300
|
+
tar.extractall(downloads_folder)
|
1301
|
+
else:
|
1302
|
+
tar.extractall(downloads_folder, filter="fully_trusted")
|
1300
1303
|
tar.close()
|
1301
1304
|
os.remove(tar_file_path)
|
1302
1305
|
log_d("%sUnzip Complete!%s\n" % (c2, cr))
|
@@ -1,6 +1,6 @@
|
|
1
1
|
Metadata-Version: 2.4
|
2
2
|
Name: seleniumbase
|
3
|
-
Version: 4.36.
|
3
|
+
Version: 4.36.3
|
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,7 +62,7 @@ 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>=78.0
|
65
|
+
Requires-Dist: setuptools>=78.1.0; python_version >= "3.10"
|
66
66
|
Requires-Dist: wheel>=0.45.1
|
67
67
|
Requires-Dist: attrs>=25.3.0
|
68
68
|
Requires-Dist: certifi>=2025.1.31
|
@@ -76,7 +76,7 @@ Requires-Dist: mycdp>=1.1.1
|
|
76
76
|
Requires-Dist: pynose>=1.5.4
|
77
77
|
Requires-Dist: platformdirs>=4.3.6; python_version < "3.9"
|
78
78
|
Requires-Dist: platformdirs>=4.3.7; python_version >= "3.9"
|
79
|
-
Requires-Dist: typing-extensions>=4.
|
79
|
+
Requires-Dist: typing-extensions>=4.13.0
|
80
80
|
Requires-Dist: sbvirtualdisplay>=1.4.0
|
81
81
|
Requires-Dist: MarkupSafe==2.1.5; python_version < "3.9"
|
82
82
|
Requires-Dist: MarkupSafe>=3.0.2; python_version >= "3.9"
|
@@ -149,9 +149,11 @@ Provides-Extra: ipdb
|
|
149
149
|
Requires-Dist: ipdb==0.13.13; extra == "ipdb"
|
150
150
|
Requires-Dist: ipython==7.34.0; extra == "ipdb"
|
151
151
|
Provides-Extra: mss
|
152
|
-
Requires-Dist: mss==9.0.2; extra == "mss"
|
152
|
+
Requires-Dist: mss==9.0.2; python_version < "3.9" and extra == "mss"
|
153
|
+
Requires-Dist: mss==10.0.0; python_version >= "3.9" and extra == "mss"
|
153
154
|
Provides-Extra: pdfminer
|
154
|
-
Requires-Dist: pdfminer.six==20250324; extra == "pdfminer"
|
155
|
+
Requires-Dist: pdfminer.six==20250324; python_version < "3.9" and extra == "pdfminer"
|
156
|
+
Requires-Dist: pdfminer.six==20250327; python_version >= "3.9" and extra == "pdfminer"
|
155
157
|
Requires-Dist: cryptography==39.0.2; python_version < "3.9" and extra == "pdfminer"
|
156
158
|
Requires-Dist: cryptography==44.0.2; python_version >= "3.9" and extra == "pdfminer"
|
157
159
|
Requires-Dist: cffi==1.17.1; extra == "pdfminer"
|
@@ -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=xvPsqGZKQAQXiz8z1Hm_3s3iQwLaLW08OI7QGKYtkgw,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
|
@@ -25,7 +25,7 @@ seleniumbase/console_scripts/run.py,sha256=6Q9kbpOY40kTczcQVrD-x6thb3QO9-2wfse7D
|
|
25
25
|
seleniumbase/console_scripts/sb_behave_gui.py,sha256=3Zl7_QQczvkkQW_UuaqYEUlEjiZ6AJzHR9GeNyVVXkc,15147
|
26
26
|
seleniumbase/console_scripts/sb_caseplans.py,sha256=qlmvjQ49bOBE1Q29fVmabimkVibCVr25GNtJhFPTMrc,18145
|
27
27
|
seleniumbase/console_scripts/sb_commander.py,sha256=exQGKzqRAoGqRmQtDmlmoHnSG9eSy9eh8HVy-tXw6s4,13343
|
28
|
-
seleniumbase/console_scripts/sb_install.py,sha256=
|
28
|
+
seleniumbase/console_scripts/sb_install.py,sha256=PUVOlajP43t0tf7fDLntYdOMGN4Ez7K5aDgXyyIZYYk,55662
|
29
29
|
seleniumbase/console_scripts/sb_mkchart.py,sha256=ep9g-9CSIwaOJKVxhB3xjRQpfsuApyN8-Dr129cNXwQ,10941
|
30
30
|
seleniumbase/console_scripts/sb_mkdir.py,sha256=iFN6ZMOgmH_GAvEuvzYltWuYiS3PRFQcL5fJIj1yX_Y,30897
|
31
31
|
seleniumbase/console_scripts/sb_mkfile.py,sha256=OWYd4yFccmjrd-gNn1t1una-HDRU2_N2-r4Tg3nHsj0,17744
|
@@ -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.36.
|
139
|
-
seleniumbase-4.36.
|
140
|
-
seleniumbase-4.36.
|
141
|
-
seleniumbase-4.36.
|
142
|
-
seleniumbase-4.36.
|
143
|
-
seleniumbase-4.36.
|
138
|
+
seleniumbase-4.36.3.dist-info/licenses/LICENSE,sha256=BRblZsX7HyPUjQmYTiyWr_e9tzWvmR3R4SFclM2R3W0,1085
|
139
|
+
seleniumbase-4.36.3.dist-info/METADATA,sha256=bIcCu21s1A6KiIisckC7gbuDkaTV4gXSTCU8yNdCY6M,87031
|
140
|
+
seleniumbase-4.36.3.dist-info/WHEEL,sha256=CmyFI0kx5cdEMTLiONQRbGQwjIoR1aIYB7eCAQ4KPJ0,91
|
141
|
+
seleniumbase-4.36.3.dist-info/entry_points.txt,sha256=CNrh2EKNaHYEhO6pP1RJyVLB99LkDDYX7TnUK8xfjqk,623
|
142
|
+
seleniumbase-4.36.3.dist-info/top_level.txt,sha256=4N97aBOQ8ETCnDnokBsWb07lJfTaq3C1ZzYRxvLMxqU,19
|
143
|
+
seleniumbase-4.36.3.dist-info/RECORD,,
|
File without changes
|
File without changes
|
File without changes
|