seleniumbase 4.38.0__py3-none-any.whl → 4.38.2__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 +31 -3
- seleniumbase/core/proxy_helper.py +23 -4
- seleniumbase/undetected/cdp_driver/cdp_util.py +7 -0
- {seleniumbase-4.38.0.dist-info → seleniumbase-4.38.2.dist-info}/METADATA +6 -6
- {seleniumbase-4.38.0.dist-info → seleniumbase-4.38.2.dist-info}/RECORD +10 -10
- {seleniumbase-4.38.0.dist-info → seleniumbase-4.38.2.dist-info}/WHEEL +1 -1
- {seleniumbase-4.38.0.dist-info → seleniumbase-4.38.2.dist-info}/entry_points.txt +0 -0
- {seleniumbase-4.38.0.dist-info → seleniumbase-4.38.2.dist-info}/licenses/LICENSE +0 -0
- {seleniumbase-4.38.0.dist-info → seleniumbase-4.38.2.dist-info}/top_level.txt +0 -0
seleniumbase/__version__.py
CHANGED
@@ -1,2 +1,2 @@
|
|
1
1
|
# seleniumbase package
|
2
|
-
__version__ = "4.38.
|
2
|
+
__version__ = "4.38.2"
|
@@ -1921,6 +1921,7 @@ def _add_chrome_proxy_extension(
|
|
1921
1921
|
proxy_string,
|
1922
1922
|
proxy_user,
|
1923
1923
|
proxy_pass,
|
1924
|
+
proxy_scheme,
|
1924
1925
|
proxy_bypass_list=None,
|
1925
1926
|
zip_it=True,
|
1926
1927
|
multi_proxy=False,
|
@@ -1939,7 +1940,11 @@ def _add_chrome_proxy_extension(
|
|
1939
1940
|
proxy_zip_lock = fasteners.InterProcessLock(PROXY_ZIP_LOCK)
|
1940
1941
|
with proxy_zip_lock:
|
1941
1942
|
proxy_helper.create_proxy_ext(
|
1942
|
-
proxy_string,
|
1943
|
+
proxy_string,
|
1944
|
+
proxy_user,
|
1945
|
+
proxy_pass,
|
1946
|
+
proxy_scheme,
|
1947
|
+
bypass_list,
|
1943
1948
|
)
|
1944
1949
|
proxy_zip = proxy_helper.PROXY_ZIP_PATH
|
1945
1950
|
chrome_options.add_extension(proxy_zip)
|
@@ -1950,6 +1955,7 @@ def _add_chrome_proxy_extension(
|
|
1950
1955
|
proxy_string,
|
1951
1956
|
proxy_user,
|
1952
1957
|
proxy_pass,
|
1958
|
+
proxy_scheme,
|
1953
1959
|
bypass_list,
|
1954
1960
|
zip_it=False,
|
1955
1961
|
)
|
@@ -1968,7 +1974,11 @@ def _add_chrome_proxy_extension(
|
|
1968
1974
|
_set_proxy_filenames()
|
1969
1975
|
if not os.path.exists(proxy_helper.PROXY_ZIP_PATH):
|
1970
1976
|
proxy_helper.create_proxy_ext(
|
1971
|
-
proxy_string,
|
1977
|
+
proxy_string,
|
1978
|
+
proxy_user,
|
1979
|
+
proxy_pass,
|
1980
|
+
proxy_scheme,
|
1981
|
+
bypass_list,
|
1972
1982
|
)
|
1973
1983
|
proxy_zip = proxy_helper.PROXY_ZIP_PATH
|
1974
1984
|
chrome_options.add_extension(proxy_zip)
|
@@ -1984,6 +1994,7 @@ def _add_chrome_proxy_extension(
|
|
1984
1994
|
proxy_string,
|
1985
1995
|
proxy_user,
|
1986
1996
|
proxy_pass,
|
1997
|
+
proxy_scheme,
|
1987
1998
|
bypass_list,
|
1988
1999
|
zip_it=False,
|
1989
2000
|
)
|
@@ -2058,6 +2069,7 @@ def _set_chrome_options(
|
|
2058
2069
|
proxy_auth,
|
2059
2070
|
proxy_user,
|
2060
2071
|
proxy_pass,
|
2072
|
+
proxy_scheme,
|
2061
2073
|
proxy_bypass_list,
|
2062
2074
|
proxy_pac_url,
|
2063
2075
|
multi_proxy,
|
@@ -2362,6 +2374,7 @@ def _set_chrome_options(
|
|
2362
2374
|
proxy_string,
|
2363
2375
|
proxy_user,
|
2364
2376
|
proxy_pass,
|
2377
|
+
proxy_scheme,
|
2365
2378
|
proxy_bypass_list,
|
2366
2379
|
zip_it,
|
2367
2380
|
multi_proxy,
|
@@ -2381,6 +2394,7 @@ def _set_chrome_options(
|
|
2381
2394
|
None,
|
2382
2395
|
proxy_user,
|
2383
2396
|
proxy_pass,
|
2397
|
+
proxy_scheme,
|
2384
2398
|
proxy_bypass_list,
|
2385
2399
|
zip_it,
|
2386
2400
|
multi_proxy,
|
@@ -2992,6 +3006,7 @@ def get_driver(
|
|
2992
3006
|
proxy_auth = False
|
2993
3007
|
proxy_user = None
|
2994
3008
|
proxy_pass = None
|
3009
|
+
proxy_scheme = "http"
|
2995
3010
|
if proxy_string:
|
2996
3011
|
username_and_password = None
|
2997
3012
|
if "@" in proxy_string:
|
@@ -3015,7 +3030,9 @@ def get_driver(
|
|
3015
3030
|
"that has authentication! (If using a proxy server "
|
3016
3031
|
"without auth, Chrome, Edge, or Firefox may be used.)"
|
3017
3032
|
)
|
3018
|
-
proxy_string = proxy_helper.validate_proxy_string(
|
3033
|
+
proxy_string, proxy_scheme = proxy_helper.validate_proxy_string(
|
3034
|
+
proxy_string, keep_scheme=True
|
3035
|
+
)
|
3019
3036
|
if proxy_string and proxy_user and proxy_pass:
|
3020
3037
|
proxy_auth = True
|
3021
3038
|
elif proxy_pac_url:
|
@@ -3104,6 +3121,7 @@ def get_driver(
|
|
3104
3121
|
proxy_auth,
|
3105
3122
|
proxy_user,
|
3106
3123
|
proxy_pass,
|
3124
|
+
proxy_scheme,
|
3107
3125
|
proxy_bypass_list,
|
3108
3126
|
proxy_pac_url,
|
3109
3127
|
multi_proxy,
|
@@ -3164,6 +3182,7 @@ def get_driver(
|
|
3164
3182
|
proxy_auth,
|
3165
3183
|
proxy_user,
|
3166
3184
|
proxy_pass,
|
3185
|
+
proxy_scheme,
|
3167
3186
|
proxy_bypass_list,
|
3168
3187
|
proxy_pac_url,
|
3169
3188
|
multi_proxy,
|
@@ -3224,6 +3243,7 @@ def get_remote_driver(
|
|
3224
3243
|
proxy_auth,
|
3225
3244
|
proxy_user,
|
3226
3245
|
proxy_pass,
|
3246
|
+
proxy_scheme,
|
3227
3247
|
proxy_bypass_list,
|
3228
3248
|
proxy_pac_url,
|
3229
3249
|
multi_proxy,
|
@@ -3364,6 +3384,7 @@ def get_remote_driver(
|
|
3364
3384
|
proxy_auth,
|
3365
3385
|
proxy_user,
|
3366
3386
|
proxy_pass,
|
3387
|
+
proxy_scheme,
|
3367
3388
|
proxy_bypass_list,
|
3368
3389
|
proxy_pac_url,
|
3369
3390
|
multi_proxy,
|
@@ -3540,6 +3561,7 @@ def get_remote_driver(
|
|
3540
3561
|
proxy_auth,
|
3541
3562
|
proxy_user,
|
3542
3563
|
proxy_pass,
|
3564
|
+
proxy_scheme,
|
3543
3565
|
proxy_bypass_list,
|
3544
3566
|
proxy_pac_url,
|
3545
3567
|
multi_proxy,
|
@@ -3661,6 +3683,7 @@ def get_local_driver(
|
|
3661
3683
|
proxy_auth,
|
3662
3684
|
proxy_user,
|
3663
3685
|
proxy_pass,
|
3686
|
+
proxy_scheme,
|
3664
3687
|
proxy_bypass_list,
|
3665
3688
|
proxy_pac_url,
|
3666
3689
|
multi_proxy,
|
@@ -4325,6 +4348,7 @@ def get_local_driver(
|
|
4325
4348
|
proxy_string,
|
4326
4349
|
proxy_user,
|
4327
4350
|
proxy_pass,
|
4351
|
+
proxy_scheme,
|
4328
4352
|
proxy_bypass_list,
|
4329
4353
|
zip_it=True,
|
4330
4354
|
multi_proxy=multi_proxy,
|
@@ -4341,6 +4365,7 @@ def get_local_driver(
|
|
4341
4365
|
None,
|
4342
4366
|
proxy_user,
|
4343
4367
|
proxy_pass,
|
4368
|
+
proxy_scheme,
|
4344
4369
|
proxy_bypass_list,
|
4345
4370
|
zip_it=True,
|
4346
4371
|
multi_proxy=multi_proxy,
|
@@ -4531,6 +4556,7 @@ def get_local_driver(
|
|
4531
4556
|
proxy_auth,
|
4532
4557
|
proxy_user,
|
4533
4558
|
proxy_pass,
|
4559
|
+
proxy_scheme,
|
4534
4560
|
proxy_bypass_list,
|
4535
4561
|
proxy_pac_url,
|
4536
4562
|
multi_proxy,
|
@@ -5069,6 +5095,7 @@ def get_local_driver(
|
|
5069
5095
|
None, # proxy_auth
|
5070
5096
|
None, # proxy_user
|
5071
5097
|
None, # proxy_pass
|
5098
|
+
None, # proxy_scheme
|
5072
5099
|
None, # proxy_bypass_list
|
5073
5100
|
None, # proxy_pac_url
|
5074
5101
|
None, # multi_proxy
|
@@ -5322,6 +5349,7 @@ def get_local_driver(
|
|
5322
5349
|
None, # proxy_auth
|
5323
5350
|
None, # proxy_user
|
5324
5351
|
None, # proxy_pass
|
5352
|
+
None, # proxy_scheme
|
5325
5353
|
None, # proxy_bypass_list
|
5326
5354
|
None, # proxy_pac_url
|
5327
5355
|
None, # multi_proxy
|
@@ -17,7 +17,12 @@ PROXY_DIR_LOCK = os.path.join(DOWNLOADS_DIR, "proxy_dir.lock")
|
|
17
17
|
|
18
18
|
|
19
19
|
def create_proxy_ext(
|
20
|
-
proxy_string,
|
20
|
+
proxy_string,
|
21
|
+
proxy_user,
|
22
|
+
proxy_pass,
|
23
|
+
proxy_scheme="http",
|
24
|
+
bypass_list=None,
|
25
|
+
zip_it=True,
|
21
26
|
):
|
22
27
|
"""Implementation of https://stackoverflow.com/a/35293284 for
|
23
28
|
https://stackoverflow.com/questions/12848327/
|
@@ -40,7 +45,7 @@ def create_proxy_ext(
|
|
40
45
|
""" mode: "fixed_servers",\n"""
|
41
46
|
""" rules: {\n"""
|
42
47
|
""" singleProxy: {\n"""
|
43
|
-
""" scheme: "
|
48
|
+
""" scheme: "%s",\n"""
|
44
49
|
""" host: "%s",\n"""
|
45
50
|
""" port: parseInt("%s")\n"""
|
46
51
|
""" },\n"""
|
@@ -63,7 +68,12 @@ def create_proxy_ext(
|
|
63
68
|
""" {urls: ["<all_urls>"]},\n"""
|
64
69
|
""" ['blocking']\n"""
|
65
70
|
""");""" % (
|
66
|
-
|
71
|
+
proxy_scheme,
|
72
|
+
proxy_host,
|
73
|
+
proxy_port,
|
74
|
+
bypass_list,
|
75
|
+
proxy_user,
|
76
|
+
proxy_pass,
|
67
77
|
)
|
68
78
|
)
|
69
79
|
else:
|
@@ -157,11 +167,18 @@ def remove_proxy_zip_if_present():
|
|
157
167
|
os.remove(PROXY_ZIP_LOCK)
|
158
168
|
|
159
169
|
|
160
|
-
def validate_proxy_string(proxy_string):
|
170
|
+
def validate_proxy_string(proxy_string, keep_scheme=False):
|
161
171
|
if proxy_string in proxy_list.PROXY_LIST.keys():
|
162
172
|
proxy_string = proxy_list.PROXY_LIST[proxy_string]
|
163
173
|
if not proxy_string:
|
164
174
|
return None
|
175
|
+
proxy_scheme = "http"
|
176
|
+
if proxy_string.startswith("https://"):
|
177
|
+
proxy_scheme = "https"
|
178
|
+
elif proxy_string.startswith("socks4://"):
|
179
|
+
proxy_scheme = "socks4"
|
180
|
+
elif proxy_string.startswith("socks5://"):
|
181
|
+
proxy_scheme = "socks5"
|
165
182
|
valid = False
|
166
183
|
val_ip = re.match(
|
167
184
|
r"^\d{1,3}\.\d{1,3}\.\d{1,3}\.\d{1,3}:\d+$", proxy_string
|
@@ -198,6 +215,8 @@ def validate_proxy_string(proxy_string):
|
|
198
215
|
if not valid:
|
199
216
|
__display_proxy_warning(proxy_string)
|
200
217
|
proxy_string = None
|
218
|
+
if keep_scheme:
|
219
|
+
return (proxy_string, proxy_scheme)
|
201
220
|
return proxy_string
|
202
221
|
|
203
222
|
|
@@ -191,6 +191,7 @@ def __add_chrome_proxy_extension(
|
|
191
191
|
proxy_string,
|
192
192
|
proxy_user,
|
193
193
|
proxy_pass,
|
194
|
+
proxy_scheme="http",
|
194
195
|
proxy_bypass_list=None,
|
195
196
|
multi_proxy=False,
|
196
197
|
):
|
@@ -210,6 +211,7 @@ def __add_chrome_proxy_extension(
|
|
210
211
|
proxy_string,
|
211
212
|
proxy_user,
|
212
213
|
proxy_pass,
|
214
|
+
proxy_scheme,
|
213
215
|
bypass_list,
|
214
216
|
zip_it=False,
|
215
217
|
)
|
@@ -230,6 +232,7 @@ def __add_chrome_proxy_extension(
|
|
230
232
|
proxy_string,
|
231
233
|
proxy_user,
|
232
234
|
proxy_pass,
|
235
|
+
proxy_scheme,
|
233
236
|
bypass_list,
|
234
237
|
zip_it=False,
|
235
238
|
)
|
@@ -312,11 +315,15 @@ async def start(
|
|
312
315
|
proxy_user = user_with_pass.split(":")[0]
|
313
316
|
proxy_pass = user_with_pass.split(":")[1]
|
314
317
|
proxy_string = proxy.split("@")[1]
|
318
|
+
proxy_string, proxy_scheme = proxy_helper.validate_proxy_string(
|
319
|
+
proxy_string, keep_scheme=True
|
320
|
+
)
|
315
321
|
extension_dir = __add_chrome_proxy_extension(
|
316
322
|
extension_dir,
|
317
323
|
proxy_string,
|
318
324
|
proxy_user,
|
319
325
|
proxy_pass,
|
326
|
+
proxy_scheme,
|
320
327
|
)
|
321
328
|
if ad_block:
|
322
329
|
incognito = False
|
@@ -1,6 +1,6 @@
|
|
1
1
|
Metadata-Version: 2.4
|
2
2
|
Name: seleniumbase
|
3
|
-
Version: 4.38.
|
3
|
+
Version: 4.38.2
|
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
|
@@ -63,11 +63,11 @@ Requires-Dist: pip>=25.0.1; python_version < "3.9"
|
|
63
63
|
Requires-Dist: pip>=25.1.1; python_version >= "3.9"
|
64
64
|
Requires-Dist: packaging>=25.0
|
65
65
|
Requires-Dist: setuptools~=70.2; python_version < "3.10"
|
66
|
-
Requires-Dist: setuptools>=80.
|
66
|
+
Requires-Dist: setuptools>=80.4.0; python_version >= "3.10"
|
67
67
|
Requires-Dist: wheel>=0.45.1
|
68
68
|
Requires-Dist: attrs>=25.3.0
|
69
69
|
Requires-Dist: certifi>=2025.4.26
|
70
|
-
Requires-Dist: exceptiongroup>=1.
|
70
|
+
Requires-Dist: exceptiongroup>=1.3.0
|
71
71
|
Requires-Dist: websockets~=13.1; python_version < "3.9"
|
72
72
|
Requires-Dist: websockets>=15.0.1; python_version >= "3.9"
|
73
73
|
Requires-Dist: filelock~=3.16.1; python_version < "3.9"
|
@@ -76,7 +76,7 @@ Requires-Dist: fasteners>=0.19
|
|
76
76
|
Requires-Dist: mycdp>=1.2.0
|
77
77
|
Requires-Dist: pynose>=1.5.4
|
78
78
|
Requires-Dist: platformdirs>=4.3.6; python_version < "3.9"
|
79
|
-
Requires-Dist: platformdirs>=4.3.
|
79
|
+
Requires-Dist: platformdirs>=4.3.8; python_version >= "3.9"
|
80
80
|
Requires-Dist: typing-extensions>=4.13.2
|
81
81
|
Requires-Dist: sbvirtualdisplay>=1.4.0
|
82
82
|
Requires-Dist: MarkupSafe==2.1.5; python_version < "3.9"
|
@@ -118,7 +118,7 @@ Requires-Dist: pytest-html==4.0.2
|
|
118
118
|
Requires-Dist: pytest-metadata==3.1.1
|
119
119
|
Requires-Dist: pytest-ordering==0.6
|
120
120
|
Requires-Dist: pytest-rerunfailures==14.0; python_version < "3.9"
|
121
|
-
Requires-Dist: pytest-rerunfailures==15.
|
121
|
+
Requires-Dist: pytest-rerunfailures==15.1; python_version >= "3.9"
|
122
122
|
Requires-Dist: pytest-xdist==3.6.1
|
123
123
|
Requires-Dist: parameterized==0.9.0
|
124
124
|
Requires-Dist: behave==1.2.6
|
@@ -154,7 +154,7 @@ Requires-Dist: mss==9.0.2; python_version < "3.9" and extra == "mss"
|
|
154
154
|
Requires-Dist: mss==10.0.0; python_version >= "3.9" and extra == "mss"
|
155
155
|
Provides-Extra: pdfminer
|
156
156
|
Requires-Dist: pdfminer.six==20250324; python_version < "3.9" and extra == "pdfminer"
|
157
|
-
Requires-Dist: pdfminer.six==
|
157
|
+
Requires-Dist: pdfminer.six==20250506; python_version >= "3.9" and extra == "pdfminer"
|
158
158
|
Requires-Dist: cryptography==39.0.2; python_version < "3.9" and extra == "pdfminer"
|
159
159
|
Requires-Dist: cryptography==44.0.3; python_version >= "3.9" and extra == "pdfminer"
|
160
160
|
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=bsY8XDCU_mDHLAXxIoictwDOAzC19DD5eRtXO16imok,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=Q_4MHHnF_CnnYuO8_xcogC_idc_Vp3-WWODAYk-_Qjc,241317
|
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
|
@@ -46,7 +46,7 @@ seleniumbase/core/encoded_images.py,sha256=rDKJ4cNJSuKiRcFViYU7bjyTS9_moI57gUPRX
|
|
46
46
|
seleniumbase/core/jqc_helper.py,sha256=2DDQr9Q2jSSZqFzX588jLlUM9oJvyrRWq2aORSIPUdI,10322
|
47
47
|
seleniumbase/core/log_helper.py,sha256=SW8wx2f2HfU3ERbANjxEC-jDbjy_IzaNYRKPlayfRRI,23442
|
48
48
|
seleniumbase/core/mysql.py,sha256=8Fzj3p5dhtDWfMpFqFYxpSwa9s1UltiHsWJ56_aPOqk,3993
|
49
|
-
seleniumbase/core/proxy_helper.py,sha256=
|
49
|
+
seleniumbase/core/proxy_helper.py,sha256=pZ1NboNfziHU3vWZLOZLX-qkfM3oKSnpc3omQf9EUQQ,8809
|
50
50
|
seleniumbase/core/recorder_helper.py,sha256=fNGjbapXmEsht54x1o6Igk198QdnPxDDnjUOzQxNhNQ,25055
|
51
51
|
seleniumbase/core/report_helper.py,sha256=AIl6Qava2yW1uSzbLpJBlPlYDz0KE-rVhogh8hsGWBo,12201
|
52
52
|
seleniumbase/core/s3_manager.py,sha256=z_4qx2jI_gtK5r3niGXgEOBpfMUicUCOciowai50MP4,3529
|
@@ -116,7 +116,7 @@ seleniumbase/undetected/webelement.py,sha256=OOpUYbEiOG52KsYYyuDW9tYLdA2SMnukvwQ
|
|
116
116
|
seleniumbase/undetected/cdp_driver/__init__.py,sha256=Ga9alwuaZZy4_XOShc0HjgFnNqpPdrcbjAicz5gE7a4,215
|
117
117
|
seleniumbase/undetected/cdp_driver/_contradict.py,sha256=lP4b0h5quAy573ETn_TBbYV889cL1AuPLVInpJ0ZkiU,3183
|
118
118
|
seleniumbase/undetected/cdp_driver/browser.py,sha256=9JGyDIQftCY-u3ega6gO5PTSxkHs7x9ykJszCdyugLo,32814
|
119
|
-
seleniumbase/undetected/cdp_driver/cdp_util.py,sha256=
|
119
|
+
seleniumbase/undetected/cdp_driver/cdp_util.py,sha256=c4z2ltGeAKoLE8eyviJUxEM1GWK22qKPRDalVZcTuXQ,24357
|
120
120
|
seleniumbase/undetected/cdp_driver/config.py,sha256=t8KV1Vqa5SQRBq3-gjkHHmj9h85AplAM01asO3AWufs,12507
|
121
121
|
seleniumbase/undetected/cdp_driver/connection.py,sha256=d5G4MkCaDCv8ErtOCPB5hnr18kIZMuaGx8o0DKS0HNY,24559
|
122
122
|
seleniumbase/undetected/cdp_driver/element.py,sha256=FIC6v7OmumLCT-_vIc3H4oju_oBbaLpWJUJIKm2c_q4,40467
|
@@ -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.38.
|
139
|
-
seleniumbase-4.38.
|
140
|
-
seleniumbase-4.38.
|
141
|
-
seleniumbase-4.38.
|
142
|
-
seleniumbase-4.38.
|
143
|
-
seleniumbase-4.38.
|
138
|
+
seleniumbase-4.38.2.dist-info/licenses/LICENSE,sha256=BRblZsX7HyPUjQmYTiyWr_e9tzWvmR3R4SFclM2R3W0,1085
|
139
|
+
seleniumbase-4.38.2.dist-info/METADATA,sha256=WEO2jkAdfKevEDcIfx6BsB5e1_sN9L0lWEEr8jAiB7w,86958
|
140
|
+
seleniumbase-4.38.2.dist-info/WHEEL,sha256=DnLRTWE75wApRYVsjgc6wsVswC54sMSJhAEd4xhDpBk,91
|
141
|
+
seleniumbase-4.38.2.dist-info/entry_points.txt,sha256=CNrh2EKNaHYEhO6pP1RJyVLB99LkDDYX7TnUK8xfjqk,623
|
142
|
+
seleniumbase-4.38.2.dist-info/top_level.txt,sha256=4N97aBOQ8ETCnDnokBsWb07lJfTaq3C1ZzYRxvLMxqU,19
|
143
|
+
seleniumbase-4.38.2.dist-info/RECORD,,
|
File without changes
|
File without changes
|
File without changes
|