seleniumbase 4.40.7__py3-none-any.whl → 4.41.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 +2 -2
- seleniumbase/core/sb_cdp.py +2 -2
- seleniumbase/undetected/cdp_driver/browser.py +2 -2
- {seleniumbase-4.40.7.dist-info → seleniumbase-4.41.0.dist-info}/METADATA +10 -9
- {seleniumbase-4.40.7.dist-info → seleniumbase-4.41.0.dist-info}/RECORD +10 -10
- {seleniumbase-4.40.7.dist-info → seleniumbase-4.41.0.dist-info}/WHEEL +0 -0
- {seleniumbase-4.40.7.dist-info → seleniumbase-4.41.0.dist-info}/entry_points.txt +0 -0
- {seleniumbase-4.40.7.dist-info → seleniumbase-4.41.0.dist-info}/licenses/LICENSE +0 -0
- {seleniumbase-4.40.7.dist-info → seleniumbase-4.41.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.41.0"
|
seleniumbase/core/sb_cdp.py
CHANGED
@@ -1695,9 +1695,9 @@ class CDPMethods():
|
|
1695
1695
|
self.set_window_rect(win_x, win_y, width, height)
|
1696
1696
|
self.__add_light_pause()
|
1697
1697
|
x1 = x1 * width_ratio
|
1698
|
-
y1 = y1 * width_ratio
|
1698
|
+
y1 = y1 * (width_ratio - 0.02)
|
1699
1699
|
x2 = x2 * width_ratio
|
1700
|
-
y2 = y2 * width_ratio
|
1700
|
+
y2 = y2 * (width_ratio - 0.02)
|
1701
1701
|
self.bring_active_window_to_front()
|
1702
1702
|
self.__gui_drag_drop(
|
1703
1703
|
x1, y1, x2, y2, timeframe=timeframe, uc_lock=False
|
@@ -935,12 +935,12 @@ class HTTPApi:
|
|
935
935
|
async def post(self, endpoint, data):
|
936
936
|
return await self._request(endpoint, data)
|
937
937
|
|
938
|
-
async def _request(self, endpoint, method: str = "
|
938
|
+
async def _request(self, endpoint, method: str = "GET", data: dict = None):
|
939
939
|
url = urllib.parse.urljoin(
|
940
940
|
self.api, f"json/{endpoint}" if endpoint else "/json"
|
941
941
|
)
|
942
942
|
if data and method.lower() == "get":
|
943
|
-
raise ValueError("
|
943
|
+
raise ValueError("GET requests cannot contain data")
|
944
944
|
if not url:
|
945
945
|
url = self.api + endpoint
|
946
946
|
request = urllib.request.Request(url)
|
@@ -1,6 +1,6 @@
|
|
1
1
|
Metadata-Version: 2.4
|
2
2
|
Name: seleniumbase
|
3
|
-
Version: 4.
|
3
|
+
Version: 4.41.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
|
@@ -67,13 +67,13 @@ Requires-Dist: setuptools~=70.2; python_version < "3.10"
|
|
67
67
|
Requires-Dist: setuptools>=80.9.0; python_version >= "3.10"
|
68
68
|
Requires-Dist: wheel>=0.45.1
|
69
69
|
Requires-Dist: attrs>=25.3.0
|
70
|
-
Requires-Dist: certifi>=2025.
|
70
|
+
Requires-Dist: certifi>=2025.8.3
|
71
71
|
Requires-Dist: exceptiongroup>=1.3.0
|
72
72
|
Requires-Dist: websockets~=13.1; python_version < "3.9"
|
73
73
|
Requires-Dist: websockets>=15.0.1; python_version >= "3.9"
|
74
74
|
Requires-Dist: filelock~=3.16.1; python_version < "3.9"
|
75
75
|
Requires-Dist: filelock>=3.18.0; python_version >= "3.9"
|
76
|
-
Requires-Dist: fasteners>=0.
|
76
|
+
Requires-Dist: fasteners>=0.20
|
77
77
|
Requires-Dist: mycdp>=1.2.0
|
78
78
|
Requires-Dist: pynose>=1.5.4
|
79
79
|
Requires-Dist: platformdirs>=4.3.6; python_version < "3.9"
|
@@ -85,7 +85,7 @@ Requires-Dist: MarkupSafe>=3.0.2; python_version >= "3.9"
|
|
85
85
|
Requires-Dist: Jinja2>=3.1.6
|
86
86
|
Requires-Dist: six>=1.17.0
|
87
87
|
Requires-Dist: parse>=1.20.2
|
88
|
-
Requires-Dist: parse-type>=0.6.
|
88
|
+
Requires-Dist: parse-type>=0.6.6
|
89
89
|
Requires-Dist: colorama>=0.4.6
|
90
90
|
Requires-Dist: pyyaml>=6.0.2
|
91
91
|
Requires-Dist: pygments>=2.19.2
|
@@ -94,7 +94,7 @@ Requires-Dist: tabcompleter>=1.4.0
|
|
94
94
|
Requires-Dist: pdbp>=1.7.1
|
95
95
|
Requires-Dist: idna==3.10
|
96
96
|
Requires-Dist: chardet==5.2.0
|
97
|
-
Requires-Dist: charset-normalizer<4,>=3.4.
|
97
|
+
Requires-Dist: charset-normalizer<4,>=3.4.3
|
98
98
|
Requires-Dist: urllib3<2,>=1.26.20; python_version < "3.10"
|
99
99
|
Requires-Dist: urllib3<2.6.0,>=1.26.20; python_version >= "3.10"
|
100
100
|
Requires-Dist: requests==2.32.4
|
@@ -108,7 +108,7 @@ Requires-Dist: wsproto==1.2.0
|
|
108
108
|
Requires-Dist: websocket-client==1.8.0
|
109
109
|
Requires-Dist: selenium==4.27.1; python_version < "3.9"
|
110
110
|
Requires-Dist: selenium==4.32.0; python_version >= "3.9" and python_version < "3.10"
|
111
|
-
Requires-Dist: selenium==4.
|
111
|
+
Requires-Dist: selenium==4.35.0; python_version >= "3.10"
|
112
112
|
Requires-Dist: cssselect==1.2.0; python_version < "3.9"
|
113
113
|
Requires-Dist: cssselect==1.3.0; python_version >= "3.9"
|
114
114
|
Requires-Dist: sortedcontainers==2.4.0
|
@@ -131,7 +131,8 @@ Requires-Dist: soupsieve==2.7
|
|
131
131
|
Requires-Dist: beautifulsoup4==4.13.4
|
132
132
|
Requires-Dist: pyotp==2.9.0
|
133
133
|
Requires-Dist: python-xlib==0.33; platform_system == "Linux"
|
134
|
-
Requires-Dist: markdown-it-py==3.0.0
|
134
|
+
Requires-Dist: markdown-it-py==3.0.0; python_version < "3.10"
|
135
|
+
Requires-Dist: markdown-it-py==4.0.0; python_version >= "3.10"
|
135
136
|
Requires-Dist: mdurl==0.1.2
|
136
137
|
Requires-Dist: rich<15,>=14.1.0
|
137
138
|
Provides-Extra: allure
|
@@ -140,7 +141,7 @@ Requires-Dist: allure-python-commons>=2.13.5; extra == "allure"
|
|
140
141
|
Requires-Dist: allure-behave>=2.13.5; extra == "allure"
|
141
142
|
Provides-Extra: coverage
|
142
143
|
Requires-Dist: coverage>=7.6.1; python_version < "3.9" and extra == "coverage"
|
143
|
-
Requires-Dist: coverage>=7.10.
|
144
|
+
Requires-Dist: coverage>=7.10.3; python_version >= "3.9" and extra == "coverage"
|
144
145
|
Requires-Dist: pytest-cov>=5.0.0; python_version < "3.9" and extra == "coverage"
|
145
146
|
Requires-Dist: pytest-cov>=6.2.1; python_version >= "3.9" and extra == "coverage"
|
146
147
|
Provides-Extra: flake8
|
@@ -161,7 +162,7 @@ Provides-Extra: pdfminer
|
|
161
162
|
Requires-Dist: pdfminer.six==20250324; python_version < "3.9" and extra == "pdfminer"
|
162
163
|
Requires-Dist: pdfminer.six==20250506; python_version >= "3.9" and extra == "pdfminer"
|
163
164
|
Requires-Dist: cryptography==39.0.2; python_version < "3.9" and extra == "pdfminer"
|
164
|
-
Requires-Dist: cryptography==45.0.
|
165
|
+
Requires-Dist: cryptography==45.0.6; python_version >= "3.9" and extra == "pdfminer"
|
165
166
|
Requires-Dist: cffi==1.17.1; extra == "pdfminer"
|
166
167
|
Requires-Dist: pycparser==2.22; extra == "pdfminer"
|
167
168
|
Provides-Extra: pillow
|
@@ -3,7 +3,7 @@ sbase/__main__.py,sha256=G0bVB1-DM4PGwQ1KyOupaWCs4ePbChZNNWuX2htim5U,647
|
|
3
3
|
sbase/steps.py,sha256=EdJyNVJ1yxoHsc7qp8kzx0EESIkOh_033yLCvmaPcs4,43281
|
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=RIkvgRen8s5bQ68HUzygAmT-XNl6i62badURgLN206Y,46
|
7
7
|
seleniumbase/behave/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
8
8
|
seleniumbase/behave/behave_helper.py,sha256=f4CdiSSYM3gMAicSKWJInkVGFwpGXtHMD8fikTehopQ,24291
|
9
9
|
seleniumbase/behave/behave_sb.py,sha256=guLihFsr1uJ4v2AR3r3Vy_BTeHrHwy2JEJxhp-MVnZA,59872
|
@@ -36,7 +36,7 @@ seleniumbase/console_scripts/sb_print.py,sha256=tNy-bMDgwHJO3bZxMpmo9weSE8uhbH0C
|
|
36
36
|
seleniumbase/console_scripts/sb_recorder.py,sha256=DH-n2fN7N9qyHMl7wjtn8MiliBgfw-1kwgmfg1GUuhk,10772
|
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=sHrn_vHS_mEl-gkcPHoylMymf_gHrXDQQuq1ng1Ihg0,247571
|
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
|
@@ -50,7 +50,7 @@ seleniumbase/core/proxy_helper.py,sha256=pZ1NboNfziHU3vWZLOZLX-qkfM3oKSnpc3omQf9
|
|
50
50
|
seleniumbase/core/recorder_helper.py,sha256=OBqNiCC_11ctpsD72KV4YUaKovmSpvs14HP1gwFesBA,25190
|
51
51
|
seleniumbase/core/report_helper.py,sha256=AIl6Qava2yW1uSzbLpJBlPlYDz0KE-rVhogh8hsGWBo,12201
|
52
52
|
seleniumbase/core/s3_manager.py,sha256=z_4qx2jI_gtK5r3niGXgEOBpfMUicUCOciowai50MP4,3529
|
53
|
-
seleniumbase/core/sb_cdp.py,sha256=
|
53
|
+
seleniumbase/core/sb_cdp.py,sha256=bzYQwt23YAssxeW8oy8kmkg6SE2rJ29lFvXfsOnwPuc,94506
|
54
54
|
seleniumbase/core/sb_driver.py,sha256=yUdS9_9OXTVaWzp1qY7msvnsvCK8X3FIcxMixb0BuBE,13827
|
55
55
|
seleniumbase/core/session_helper.py,sha256=s9zD3PVZEWVzG2h81cCUskbNWLfdjC_LwwQjKptHCak,558
|
56
56
|
seleniumbase/core/settings_parser.py,sha256=gqVohHVlE_5L5Cqe2L24uYrRzvoK-saX8E_Df7_-_3I,7609
|
@@ -117,7 +117,7 @@ seleniumbase/undetected/reactor.py,sha256=NropaXcO54pzmDq6quR27qPJxab6636H7LRAaq
|
|
117
117
|
seleniumbase/undetected/webelement.py,sha256=OOpUYbEiOG52KsYYyuDW9tYLdA2SMnukvwQHUdPVn9E,1389
|
118
118
|
seleniumbase/undetected/cdp_driver/__init__.py,sha256=Ga9alwuaZZy4_XOShc0HjgFnNqpPdrcbjAicz5gE7a4,215
|
119
119
|
seleniumbase/undetected/cdp_driver/_contradict.py,sha256=lP4b0h5quAy573ETn_TBbYV889cL1AuPLVInpJ0ZkiU,3183
|
120
|
-
seleniumbase/undetected/cdp_driver/browser.py,sha256=
|
120
|
+
seleniumbase/undetected/cdp_driver/browser.py,sha256=mVM36mFqA4ZnxBDQ5ily3dpIcZ33O5coG1boEcX4aLc,35640
|
121
121
|
seleniumbase/undetected/cdp_driver/cdp_util.py,sha256=ku3Nq8yjC6kbvVV2PB149E-TxQIIvjHDFQI2wyi0HVs,25221
|
122
122
|
seleniumbase/undetected/cdp_driver/config.py,sha256=4-nUkEf7JSuOdFMNd6XmJnFucZrA59-kH1FUMxDcgFU,12561
|
123
123
|
seleniumbase/undetected/cdp_driver/connection.py,sha256=WgZ4QamXSdTzP4Xfgkn8mxv-JFivMG6hqbyHy2_LQlg,25717
|
@@ -137,9 +137,9 @@ seleniumbase/utilities/selenium_grid/start-grid-hub.bat,sha256=Ftq-GrAKRYH2ssDPr
|
|
137
137
|
seleniumbase/utilities/selenium_grid/start-grid-hub.sh,sha256=KADv0RUHONLL2_I443QFK8PryBpDmKn5Gy0s4o0vDSM,106
|
138
138
|
seleniumbase/utilities/selenium_ide/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
139
139
|
seleniumbase/utilities/selenium_ide/convert_ide.py,sha256=pZFnqEJQEKZPyNFjkLD29s2HPQgCrWW9XJWpCPhWOoM,31691
|
140
|
-
seleniumbase-4.
|
141
|
-
seleniumbase-4.
|
142
|
-
seleniumbase-4.
|
143
|
-
seleniumbase-4.
|
144
|
-
seleniumbase-4.
|
145
|
-
seleniumbase-4.
|
140
|
+
seleniumbase-4.41.0.dist-info/licenses/LICENSE,sha256=BRblZsX7HyPUjQmYTiyWr_e9tzWvmR3R4SFclM2R3W0,1085
|
141
|
+
seleniumbase-4.41.0.dist-info/METADATA,sha256=5Z7U29ylTeltlkO7uwt2rHkFp_drtcp1kkXZPctw_sA,87397
|
142
|
+
seleniumbase-4.41.0.dist-info/WHEEL,sha256=_zCd3N1l69ArxyTb8rzEoP9TpbYXkqRFSNOD5OuxnTs,91
|
143
|
+
seleniumbase-4.41.0.dist-info/entry_points.txt,sha256=CNrh2EKNaHYEhO6pP1RJyVLB99LkDDYX7TnUK8xfjqk,623
|
144
|
+
seleniumbase-4.41.0.dist-info/top_level.txt,sha256=4N97aBOQ8ETCnDnokBsWb07lJfTaq3C1ZzYRxvLMxqU,19
|
145
|
+
seleniumbase-4.41.0.dist-info/RECORD,,
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|