seleniumbase 4.26.4__py3-none-any.whl → 4.27.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.
@@ -1,2 +1,2 @@
1
1
  # seleniumbase package
2
- __version__ = "4.26.4"
2
+ __version__ = "4.27.0"
@@ -1772,14 +1772,28 @@ def get_remote_driver(
1772
1772
  pip_find_lock = fasteners.InterProcessLock(
1773
1773
  constants.PipInstall.FINDLOCK
1774
1774
  )
1775
- with pip_find_lock:
1775
+ with pip_find_lock: # Prevent issues with multiple processes
1776
1776
  try:
1777
1777
  from seleniumwire import webdriver
1778
+ import blinker
1779
+ try:
1780
+ use_blinker_ver = constants.SeleniumWire.BLINKER_VER
1781
+ if blinker.__version__ != use_blinker_ver:
1782
+ shared_utils.pip_install(
1783
+ "blinker", version=use_blinker_ver
1784
+ )
1785
+ except Exception:
1786
+ pass
1787
+ del blinker
1778
1788
  except Exception:
1789
+ shared_utils.pip_install(
1790
+ "blinker", version=constants.SeleniumWire.BLINKER_VER
1791
+ )
1779
1792
  shared_utils.pip_install(
1780
1793
  "selenium-wire", version=constants.SeleniumWire.VER
1781
1794
  )
1782
1795
  from seleniumwire import webdriver
1796
+ warnings.simplefilter("ignore", category=DeprecationWarning)
1783
1797
  else:
1784
1798
  from selenium import webdriver
1785
1799
 
@@ -2186,17 +2200,31 @@ def get_local_driver(
2186
2200
  downloads_path = DOWNLOADS_FOLDER
2187
2201
  b_path = binary_location
2188
2202
  if use_wire:
2189
- driver_fixing_lock = fasteners.InterProcessLock(
2190
- constants.MultiBrowser.DRIVER_FIXING_LOCK
2203
+ pip_find_lock = fasteners.InterProcessLock(
2204
+ constants.PipInstall.FINDLOCK
2191
2205
  )
2192
- with driver_fixing_lock: # Prevent multi-processes mode issues
2206
+ with pip_find_lock: # Prevent issues with multiple processes
2193
2207
  try:
2194
2208
  from seleniumwire import webdriver
2209
+ import blinker
2210
+ try:
2211
+ use_blinker_ver = constants.SeleniumWire.BLINKER_VER
2212
+ if blinker.__version__ != use_blinker_ver:
2213
+ shared_utils.pip_install(
2214
+ "blinker", version=use_blinker_ver
2215
+ )
2216
+ except Exception:
2217
+ pass
2218
+ del blinker
2195
2219
  except Exception:
2220
+ shared_utils.pip_install(
2221
+ "blinker", version=constants.SeleniumWire.BLINKER_VER
2222
+ )
2196
2223
  shared_utils.pip_install(
2197
2224
  "selenium-wire", version=constants.SeleniumWire.VER
2198
2225
  )
2199
2226
  from seleniumwire import webdriver
2227
+ warnings.simplefilter("ignore", category=DeprecationWarning)
2200
2228
  else:
2201
2229
  from selenium import webdriver
2202
2230
 
@@ -351,6 +351,7 @@ class ProxyPy:
351
351
  class SeleniumWire:
352
352
  # The version installed if selenium-wire is not installed
353
353
  VER = "5.1.0"
354
+ BLINKER_VER = "1.7.0" # The "blinker" dependency version
354
355
 
355
356
 
356
357
  class Mobile:
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.1
2
2
  Name: seleniumbase
3
- Version: 4.26.4
3
+ Version: 4.27.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
@@ -115,10 +115,10 @@ Requires-Dist: urllib3 <2.3.0,>=1.26.18 ; python_version >= "3.10"
115
115
  Requires-Dist: setuptools >=69.5.1 ; python_version >= "3.8"
116
116
  Requires-Dist: wheel >=0.43.0 ; python_version >= "3.8"
117
117
  Requires-Dist: filelock >=3.14.0 ; python_version >= "3.8"
118
- Requires-Dist: platformdirs >=4.2.1 ; python_version >= "3.8"
118
+ Requires-Dist: platformdirs >=4.2.2 ; python_version >= "3.8"
119
119
  Requires-Dist: typing-extensions >=4.11.0 ; python_version >= "3.8"
120
- Requires-Dist: trio ==0.25.0 ; python_version >= "3.8"
121
- Requires-Dist: selenium ==4.20.0 ; python_version >= "3.8"
120
+ Requires-Dist: trio ==0.25.1 ; python_version >= "3.8"
121
+ Requires-Dist: selenium ==4.21.0 ; python_version >= "3.8"
122
122
  Requires-Dist: execnet ==2.1.1 ; python_version >= "3.8"
123
123
  Requires-Dist: pluggy ==1.5.0 ; python_version >= "3.8"
124
124
  Requires-Dist: pytest ==8.2.0 ; python_version >= "3.8"
@@ -175,8 +175,9 @@ Requires-Dist: h2 ==4.1.0 ; extra == 'selenium-wire'
175
175
  Requires-Dist: hpack ==4.0.0 ; extra == 'selenium-wire'
176
176
  Requires-Dist: hyperframe ==6.0.1 ; extra == 'selenium-wire'
177
177
  Requires-Dist: kaitaistruct ==0.10 ; extra == 'selenium-wire'
178
- Requires-Dist: pyasn1 ==0.5.1 ; extra == 'selenium-wire'
179
178
  Requires-Dist: zstandard ==0.22.0 ; extra == 'selenium-wire'
179
+ Requires-Dist: pyasn1 ==0.5.1 ; (python_version < "3.8") and extra == 'selenium-wire'
180
+ Requires-Dist: pyasn1 ==0.6.0 ; (python_version >= "3.8") and extra == 'selenium-wire'
180
181
 
181
182
  <!-- SeleniumBase Docs -->
182
183
 
@@ -5,7 +5,7 @@ sbase/steps.py,sha256=bKT_u5bJkKzYWEuAXi9NVVRYYxQRCM1_YJUrNFFRVPY,42865
5
5
  seleniumbase/ReadMe.md,sha256=4nEdto4d0Ch0Zneg0yAC-RBBdqRqPUP0SCo-ze_XDPM,3612
6
6
  seleniumbase/__init__.py,sha256=Mw4ShIWUF2Efjx-JuwUQLWF9nIbxcX-vu9AOGBp32ec,2123
7
7
  seleniumbase/__main__.py,sha256=dn1p6dgCchmcH1zzTzzQvFwwdQQqnTGH6ULV9m4hv24,654
8
- seleniumbase/__version__.py,sha256=OUhvq8oKtVvzLYA6LcqBGQRyR9E9mRo5P6vyOiLX9QU,46
8
+ seleniumbase/__version__.py,sha256=gq-c9L8g2riz89KLUv51q7uL-IWfLjHq1GH96dLVBEQ,46
9
9
  seleniumbase/behave/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
10
10
  seleniumbase/behave/behave_helper.py,sha256=elkl8P9eLulRAioLstE9baYNM9N_PHBmAOcajX-pH_Y,24198
11
11
  seleniumbase/behave/behave_sb.py,sha256=rpSKGufjzKeoiTqsr1HChNu1fY68CMirr5mgff--LHs,56291
@@ -40,7 +40,7 @@ seleniumbase/console_scripts/sb_print.py,sha256=yo641b_OdSE0GUauOyxk-QrNeIjYzbRY
40
40
  seleniumbase/console_scripts/sb_recorder.py,sha256=UQQhnAR18dbcC7ToDvj6TM2PIG5qBrNaekaM6kSK_E8,10970
41
41
  seleniumbase/core/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
42
42
  seleniumbase/core/application_manager.py,sha256=e_0sjtI8cjY5BNyZj1QBR0j6_oCScxGmSXYEpcYwuZE,576
43
- seleniumbase/core/browser_launcher.py,sha256=QVVK9v1-_C-J79G2lqEUY5Fr2PD-dQhToNjFXwvflq8,167061
43
+ seleniumbase/core/browser_launcher.py,sha256=CUtHUY1lv1diGQESHy0MQn1wuQgW-M2LZ3N2MutHYWk,168326
44
44
  seleniumbase/core/capabilities_parser.py,sha256=meIS2uHapTCq2ldfNAToC7r0cKmZDRXuYNKExM1GHDY,6038
45
45
  seleniumbase/core/colored_traceback.py,sha256=DrRWfg7XEnKcgY59Xj7Jdk09H-XqHYBSUpB-DiZt6iY,2020
46
46
  seleniumbase/core/create_db_tables.sql,sha256=VWPtrdiW_HQ6yETHjqTu-VIrTwvd8I8o1NfBeaVSHpU,972
@@ -71,7 +71,7 @@ seleniumbase/extensions/recorder.zip,sha256=dE3-vt1lsIyMbz3MD0WboizA5KiR3SH2jxAM
71
71
  seleniumbase/extensions/sbase_ext.zip,sha256=3s1N8zrVaMz8RQEOIoBzC3KDjtmHwVZRvVsX25Odr_s,8175
72
72
  seleniumbase/fixtures/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
73
73
  seleniumbase/fixtures/base_case.py,sha256=gVAc8T9TlSJ9UySEldWZBiVm1GS3-mv_HK25XygHcdY,693568
74
- seleniumbase/fixtures/constants.py,sha256=Uvr5-Z8ZfiE2-lIqJS1CQ0tkmQ6qJYooCOTo_HMleo4,13348
74
+ seleniumbase/fixtures/constants.py,sha256=jOPy8CuR-QEK2hTv06cKZHaCNgGoFmtNHkvhR6mD7sg,13410
75
75
  seleniumbase/fixtures/css_to_xpath.py,sha256=9ouDB1xl4MJ2os6JOgTIAyHKOQfuxtxvXC3O5hSnEKA,1954
76
76
  seleniumbase/fixtures/errors.py,sha256=KyxuEVx_e3MPhVrJfNIa_3ltMpbCFxfy_jxK8RFNTns,555
77
77
  seleniumbase/fixtures/js_utils.py,sha256=y1FgWvrg7CjryqGnFhbmFIIVYMzQfYZhwppYae87UCo,51158
@@ -137,9 +137,9 @@ seleniumbase/utilities/selenium_grid/start-grid-hub.sh,sha256=KADv0RUHONLL2_I443
137
137
  seleniumbase/utilities/selenium_ide/ReadMe.md,sha256=hznGeuMpkIimqMiZBW-4goIy2ltW4l8X9kb0YSPUQfE,4483
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.26.4.dist-info/LICENSE,sha256=odSYtWibXBnQ1gBg6CnDZ82n8kLF_if5-2nbqnEyD8k,1085
141
- seleniumbase-4.26.4.dist-info/METADATA,sha256=k-o9G1Re3zS138cZQ4us3gHlOMQZlJeMsbNQL4H-Zu8,85056
142
- seleniumbase-4.26.4.dist-info/WHEEL,sha256=GJ7t_kWBFywbagK5eo9IoUwLW6oyOeTKmQ-9iHFVNxQ,92
143
- seleniumbase-4.26.4.dist-info/entry_points.txt,sha256=CNrh2EKNaHYEhO6pP1RJyVLB99LkDDYX7TnUK8xfjqk,623
144
- seleniumbase-4.26.4.dist-info/top_level.txt,sha256=4N97aBOQ8ETCnDnokBsWb07lJfTaq3C1ZzYRxvLMxqU,19
145
- seleniumbase-4.26.4.dist-info/RECORD,,
140
+ seleniumbase-4.27.0.dist-info/LICENSE,sha256=odSYtWibXBnQ1gBg6CnDZ82n8kLF_if5-2nbqnEyD8k,1085
141
+ seleniumbase-4.27.0.dist-info/METADATA,sha256=xW1f8Yg4uOmDdw1dZT_XcV2pZ64qV_m5DX3ApW7rQr8,85172
142
+ seleniumbase-4.27.0.dist-info/WHEEL,sha256=GJ7t_kWBFywbagK5eo9IoUwLW6oyOeTKmQ-9iHFVNxQ,92
143
+ seleniumbase-4.27.0.dist-info/entry_points.txt,sha256=CNrh2EKNaHYEhO6pP1RJyVLB99LkDDYX7TnUK8xfjqk,623
144
+ seleniumbase-4.27.0.dist-info/top_level.txt,sha256=4N97aBOQ8ETCnDnokBsWb07lJfTaq3C1ZzYRxvLMxqU,19
145
+ seleniumbase-4.27.0.dist-info/RECORD,,