seleniumbase 4.24.5__py3-none-any.whl → 4.24.7__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 +24 -19
- seleniumbase/core/browser_launcher.py +7 -5
- seleniumbase/core/detect_b_ver.py +4 -4
- seleniumbase/fixtures/base_case.py +5 -2
- {seleniumbase-4.24.5.dist-info → seleniumbase-4.24.7.dist-info}/METADATA +12 -10
- {seleniumbase-4.24.5.dist-info → seleniumbase-4.24.7.dist-info}/RECORD +11 -11
- {seleniumbase-4.24.5.dist-info → seleniumbase-4.24.7.dist-info}/WHEEL +1 -1
- {seleniumbase-4.24.5.dist-info → seleniumbase-4.24.7.dist-info}/LICENSE +0 -0
- {seleniumbase-4.24.5.dist-info → seleniumbase-4.24.7.dist-info}/entry_points.txt +0 -0
- {seleniumbase-4.24.5.dist-info → seleniumbase-4.24.7.dist-info}/top_level.txt +0 -0
seleniumbase/__version__.py
CHANGED
@@ -1,2 +1,2 @@
|
|
1
1
|
# seleniumbase package
|
2
|
-
__version__ = "4.24.
|
2
|
+
__version__ = "4.24.7"
|
@@ -710,8 +710,7 @@ def main(override=None, intel_for_uc=None, force_uc=None):
|
|
710
710
|
p_version = c3 + use_version + cr
|
711
711
|
log_d("\n*** %s = %s" % (msg, p_version))
|
712
712
|
elif name == "iedriver":
|
713
|
-
|
714
|
-
full_version = "3.14.0"
|
713
|
+
full_version = "4.14.0"
|
715
714
|
use_version = full_version
|
716
715
|
if IS_WINDOWS and "64" in ARCH:
|
717
716
|
file_name = "IEDriverServer_x64_%s.zip" % full_version
|
@@ -723,8 +722,9 @@ def main(override=None, intel_for_uc=None, force_uc=None):
|
|
723
722
|
"Windows-based systems!"
|
724
723
|
)
|
725
724
|
download_url = (
|
726
|
-
"https://
|
727
|
-
"
|
725
|
+
"https://github.com/SeleniumHQ/selenium/"
|
726
|
+
"releases/download/selenium-"
|
727
|
+
"%s/%s" % (full_version, file_name)
|
728
728
|
)
|
729
729
|
headless_ie_version = "v1.4"
|
730
730
|
headless_ie_file_name = "headless-selenium-for-win-v1-4.zip"
|
@@ -949,7 +949,11 @@ def main(override=None, intel_for_uc=None, force_uc=None):
|
|
949
949
|
make_executable(path_file)
|
950
950
|
log_d("Also copied to: %s%s%s" % (c3, path_file, cr))
|
951
951
|
log_d("")
|
952
|
-
elif
|
952
|
+
elif (
|
953
|
+
name == "edgedriver"
|
954
|
+
or name == "msedgedriver"
|
955
|
+
or name == "iedriver"
|
956
|
+
):
|
953
957
|
if IS_MAC or IS_LINUX:
|
954
958
|
# Mac / Linux
|
955
959
|
expected_contents = [
|
@@ -969,6 +973,8 @@ def main(override=None, intel_for_uc=None, force_uc=None):
|
|
969
973
|
"Driver_Notes/LICENSE",
|
970
974
|
"msedgedriver.exe",
|
971
975
|
]
|
976
|
+
if name == "iedriver":
|
977
|
+
expected_contents = ["IEDriverServer.exe"]
|
972
978
|
if len(contents) > 5:
|
973
979
|
raise Exception("Unexpected content in EdgeDriver Zip file!")
|
974
980
|
for content in contents:
|
@@ -984,21 +990,20 @@ def main(override=None, intel_for_uc=None, force_uc=None):
|
|
984
990
|
# Remove existing version if exists
|
985
991
|
str_name = str(f_name)
|
986
992
|
new_file = os.path.join(downloads_folder, str_name)
|
987
|
-
if
|
988
|
-
|
989
|
-
|
990
|
-
|
991
|
-
|
992
|
-
|
993
|
-
|
994
|
-
|
995
|
-
|
996
|
-
if
|
997
|
-
|
998
|
-
driver_path = new_file
|
999
|
-
if os.path.exists(new_file):
|
1000
|
-
os.remove(new_file)
|
993
|
+
if (
|
994
|
+
((IS_MAC or IS_LINUX) and str_name == "msedgedriver")
|
995
|
+
or (
|
996
|
+
str_name == "msedgedriver.exe"
|
997
|
+
or str_name == "IEDriverServer.exe"
|
998
|
+
)
|
999
|
+
):
|
1000
|
+
driver_file = str_name
|
1001
|
+
driver_path = new_file
|
1002
|
+
if os.path.exists(new_file):
|
1003
|
+
os.remove(new_file)
|
1001
1004
|
if not driver_file or not driver_path:
|
1005
|
+
if str_name == "IEDriverServer.exe":
|
1006
|
+
raise Exception("IEDriverServer missing from Zip file!")
|
1002
1007
|
raise Exception("msedgedriver missing from Zip file!")
|
1003
1008
|
log_d("Extracting %s from %s ..." % (contents, file_name))
|
1004
1009
|
zip_ref.extractall(downloads_folder)
|
@@ -2304,6 +2304,7 @@ def get_local_driver(
|
|
2304
2304
|
"IE Browser is for Windows-based systems only!"
|
2305
2305
|
)
|
2306
2306
|
from selenium.webdriver.ie.options import Options
|
2307
|
+
from selenium.webdriver.ie.service import Service
|
2307
2308
|
ie_options = Options()
|
2308
2309
|
ie_options.ignore_protected_mode_settings = True
|
2309
2310
|
ie_options.ignore_zoom_level = True
|
@@ -2311,7 +2312,6 @@ def get_local_driver(
|
|
2311
2312
|
ie_options.native_events = True
|
2312
2313
|
ie_options.full_page_screenshot = True
|
2313
2314
|
ie_options.persistent_hover = True
|
2314
|
-
ie_capabilities = ie_options.to_capabilities()
|
2315
2315
|
if LOCAL_IEDRIVER and os.path.exists(LOCAL_IEDRIVER):
|
2316
2316
|
try:
|
2317
2317
|
make_driver_executable_if_not(LOCAL_IEDRIVER)
|
@@ -2345,16 +2345,18 @@ def get_local_driver(
|
|
2345
2345
|
log_d("\nWarning: HeadlessIEDriver not found. Getting it now:")
|
2346
2346
|
sb_install.main(override="iedriver")
|
2347
2347
|
sys.argv = sys_args # Put back the original sys args
|
2348
|
+
d_b_c = "--disable-build-check"
|
2348
2349
|
if not headless:
|
2349
2350
|
warnings.simplefilter("ignore", category=DeprecationWarning)
|
2350
|
-
|
2351
|
+
service = Service(service_args=[d_b_c])
|
2352
|
+
driver = webdriver.Ie(service=service, options=ie_options)
|
2351
2353
|
return extend_driver(driver)
|
2352
2354
|
else:
|
2353
2355
|
warnings.simplefilter("ignore", category=DeprecationWarning)
|
2354
|
-
|
2355
|
-
executable_path=
|
2356
|
-
capabilities=ie_capabilities,
|
2356
|
+
service = Service(
|
2357
|
+
executable_path=LOCAL_IEDRIVER, service_args=[d_b_c],
|
2357
2358
|
)
|
2359
|
+
driver = webdriver.Ie(service=service, options=ie_options)
|
2358
2360
|
return extend_driver(driver)
|
2359
2361
|
elif browser_name == constants.Browser.EDGE:
|
2360
2362
|
prefs = {
|
@@ -97,7 +97,7 @@ def linux_browser_apps_to_cmd(*apps):
|
|
97
97
|
|
98
98
|
|
99
99
|
def chrome_on_linux_path(prefer_chromium=False):
|
100
|
-
if os_name() !=
|
100
|
+
if os_name() != OSType.LINUX:
|
101
101
|
return ""
|
102
102
|
if prefer_chromium:
|
103
103
|
paths = ["/bin/chromium", "/bin/chromium-browser"]
|
@@ -127,7 +127,7 @@ def chrome_on_linux_path(prefer_chromium=False):
|
|
127
127
|
|
128
128
|
|
129
129
|
def edge_on_linux_path():
|
130
|
-
if os_name() !=
|
130
|
+
if os_name() != OSType.LINUX:
|
131
131
|
return ""
|
132
132
|
paths = os.environ["PATH"].split(os.pathsep)
|
133
133
|
binaries = []
|
@@ -144,7 +144,7 @@ def edge_on_linux_path():
|
|
144
144
|
|
145
145
|
|
146
146
|
def chrome_on_windows_path():
|
147
|
-
if os_name() !=
|
147
|
+
if os_name() != OSType.WIN:
|
148
148
|
return ""
|
149
149
|
candidates = []
|
150
150
|
for item in map(
|
@@ -172,7 +172,7 @@ def chrome_on_windows_path():
|
|
172
172
|
|
173
173
|
|
174
174
|
def edge_on_windows_path():
|
175
|
-
if os_name() !=
|
175
|
+
if os_name() != OSType.WIN:
|
176
176
|
return ""
|
177
177
|
candidates = []
|
178
178
|
for item in map(
|
@@ -159,6 +159,7 @@ class BaseCase(unittest.TestCase):
|
|
159
159
|
self._language = "English"
|
160
160
|
self._presentation_slides = {}
|
161
161
|
self._presentation_transition = {}
|
162
|
+
self._output_file_saves = True # For Presenter / ChartMaker
|
162
163
|
self._rec_overrides_switch = True # Recorder-Mode uses set_c vs switch
|
163
164
|
self._sb_test_identifier = None
|
164
165
|
self._html_report_extra = [] # (Used by pytest_plugin.py)
|
@@ -11187,7 +11188,8 @@ class BaseCase(unittest.TestCase):
|
|
11187
11188
|
out_file = codecs.open(file_path, "w+", encoding="utf-8")
|
11188
11189
|
out_file.writelines(the_html)
|
11189
11190
|
out_file.close()
|
11190
|
-
|
11191
|
+
if self._output_file_saves:
|
11192
|
+
print("\n>>> [%s] was saved!\n" % file_path)
|
11191
11193
|
return file_path
|
11192
11194
|
|
11193
11195
|
def begin_presentation(
|
@@ -11885,7 +11887,8 @@ class BaseCase(unittest.TestCase):
|
|
11885
11887
|
out_file = codecs.open(file_path, "w+", encoding="utf-8")
|
11886
11888
|
out_file.writelines(the_html)
|
11887
11889
|
out_file.close()
|
11888
|
-
|
11890
|
+
if self._output_file_saves:
|
11891
|
+
print("\n>>> [%s] was saved!" % file_path)
|
11889
11892
|
return file_path
|
11890
11893
|
|
11891
11894
|
def display_chart(self, chart_name=None, filename=None, interval=0):
|
@@ -1,6 +1,6 @@
|
|
1
1
|
Metadata-Version: 2.1
|
2
2
|
Name: seleniumbase
|
3
|
-
Version: 4.24.
|
3
|
+
Version: 4.24.7
|
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
|
@@ -59,8 +59,7 @@ Requires-Python: >=3.7
|
|
59
59
|
Description-Content-Type: text/markdown
|
60
60
|
License-File: LICENSE
|
61
61
|
Requires-Dist: pip >=24.0
|
62
|
-
Requires-Dist: packaging >=
|
63
|
-
Requires-Dist: wheel >=0.42.0
|
62
|
+
Requires-Dist: packaging >=24.0
|
64
63
|
Requires-Dist: attrs >=23.2.0
|
65
64
|
Requires-Dist: certifi >=2024.2.2
|
66
65
|
Requires-Dist: parse >=1.20.1
|
@@ -85,7 +84,6 @@ Requires-Dist: iniconfig ==2.0.0
|
|
85
84
|
Requires-Dist: py ==1.11.0
|
86
85
|
Requires-Dist: pytest-html ==2.0.1
|
87
86
|
Requires-Dist: pytest-ordering ==0.6
|
88
|
-
Requires-Dist: pytest-rerunfailures ==13.0
|
89
87
|
Requires-Dist: pytest-xdist ==3.5.0
|
90
88
|
Requires-Dist: parameterized ==0.9.0
|
91
89
|
Requires-Dist: sbvirtualdisplay ==1.3.0
|
@@ -102,6 +100,7 @@ Requires-Dist: rich ==13.7.1
|
|
102
100
|
Requires-Dist: pyreadline3 ==3.4.1 ; platform_system == "Windows"
|
103
101
|
Requires-Dist: urllib3 <2,>=1.26.18 ; python_version < "3.10"
|
104
102
|
Requires-Dist: setuptools >=68.0.0 ; python_version < "3.8"
|
103
|
+
Requires-Dist: wheel >=0.42.0 ; python_version < "3.8"
|
105
104
|
Requires-Dist: filelock >=3.12.2 ; python_version < "3.8"
|
106
105
|
Requires-Dist: platformdirs >=4.0.0 ; python_version < "3.8"
|
107
106
|
Requires-Dist: trio ==0.22.2 ; python_version < "3.8"
|
@@ -109,10 +108,12 @@ Requires-Dist: selenium ==4.11.2 ; python_version < "3.8"
|
|
109
108
|
Requires-Dist: pluggy ==1.2.0 ; python_version < "3.8"
|
110
109
|
Requires-Dist: pytest ==7.4.4 ; python_version < "3.8"
|
111
110
|
Requires-Dist: pytest-metadata ==3.0.0 ; python_version < "3.8"
|
111
|
+
Requires-Dist: pytest-rerunfailures ==13.0 ; python_version < "3.8"
|
112
112
|
Requires-Dist: soupsieve ==2.4.1 ; python_version < "3.8"
|
113
113
|
Requires-Dist: markdown-it-py ==2.2.0 ; python_version < "3.8"
|
114
114
|
Requires-Dist: urllib3 <2.3.0,>=1.26.18 ; python_version >= "3.10"
|
115
|
-
Requires-Dist: setuptools >=69.
|
115
|
+
Requires-Dist: setuptools >=69.2.0 ; python_version >= "3.8"
|
116
|
+
Requires-Dist: wheel >=0.43.0 ; python_version >= "3.8"
|
116
117
|
Requires-Dist: filelock >=3.13.1 ; python_version >= "3.8"
|
117
118
|
Requires-Dist: platformdirs >=4.2.0 ; python_version >= "3.8"
|
118
119
|
Requires-Dist: typing-extensions >=4.10.0 ; python_version >= "3.8"
|
@@ -121,16 +122,17 @@ Requires-Dist: selenium ==4.18.1 ; python_version >= "3.8"
|
|
121
122
|
Requires-Dist: pluggy ==1.4.0 ; python_version >= "3.8"
|
122
123
|
Requires-Dist: pytest ==8.1.1 ; python_version >= "3.8"
|
123
124
|
Requires-Dist: pytest-metadata ==3.1.1 ; python_version >= "3.8"
|
125
|
+
Requires-Dist: pytest-rerunfailures ==14.0 ; python_version >= "3.8"
|
124
126
|
Requires-Dist: soupsieve ==2.5 ; python_version >= "3.8"
|
125
127
|
Requires-Dist: markdown-it-py ==3.0.0 ; python_version >= "3.8"
|
126
128
|
Provides-Extra: allure
|
127
|
-
Requires-Dist: allure-pytest ==2.13.
|
128
|
-
Requires-Dist: allure-python-commons ==2.13.
|
129
|
-
Requires-Dist: allure-behave ==2.13.
|
129
|
+
Requires-Dist: allure-pytest ==2.13.3 ; extra == 'allure'
|
130
|
+
Requires-Dist: allure-python-commons ==2.13.3 ; extra == 'allure'
|
131
|
+
Requires-Dist: allure-behave ==2.13.3 ; extra == 'allure'
|
130
132
|
Provides-Extra: coverage
|
131
133
|
Requires-Dist: pytest-cov ==4.1.0 ; extra == 'coverage'
|
132
134
|
Requires-Dist: coverage ==7.2.7 ; (python_version < "3.8") and extra == 'coverage'
|
133
|
-
Requires-Dist: coverage ==7.4.
|
135
|
+
Requires-Dist: coverage ==7.4.4 ; (python_version >= "3.8") and extra == 'coverage'
|
134
136
|
Provides-Extra: flake8
|
135
137
|
Requires-Dist: mccabe ==0.7.0 ; extra == 'flake8'
|
136
138
|
Requires-Dist: flake8 ==5.0.4 ; (python_version < "3.9") and extra == 'flake8'
|
@@ -221,7 +223,7 @@ Requires-Dist: zstandard ==0.22.0 ; extra == 'selenium-wire'
|
|
221
223
|
|
222
224
|
--------
|
223
225
|
|
224
|
-
📚 Learn from [**over
|
226
|
+
📚 Learn from [**over 200 examples** in the **SeleniumBase/examples/**](https://github.com/seleniumbase/SeleniumBase/tree/master/examples) folder.
|
225
227
|
|
226
228
|
<p align="left">📗 Here's <a href="https://github.com/seleniumbase/SeleniumBase/blob/master/examples/my_first_test.py">my_first_test.py</a>, which covers login, shopping, and checkout:</p>
|
227
229
|
|
@@ -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=
|
8
|
+
seleniumbase/__version__.py,sha256=cKOO81ZxLN6VOqstAXlP1Q6QBiGj55O6Loj1gFJxoUY,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
|
@@ -29,7 +29,7 @@ seleniumbase/console_scripts/run.py,sha256=3bZAxL0CjcVU-jSEa-8nsL7DVrcUvrP1H0qa5
|
|
29
29
|
seleniumbase/console_scripts/sb_behave_gui.py,sha256=8uFTnHU3lPsxAlPFbGe4tH4fVryEbQeVBydwJZw3e9c,15403
|
30
30
|
seleniumbase/console_scripts/sb_caseplans.py,sha256=HrML5SU6E_3gC8Ae5byo5tnBidrs0sY3feJ8ug4cR4o,18415
|
31
31
|
seleniumbase/console_scripts/sb_commander.py,sha256=FdRLcEe3xOnnbU1bZI4_1ZLu5eKdR4JuIh37j5M-J00,13585
|
32
|
-
seleniumbase/console_scripts/sb_install.py,sha256=
|
32
|
+
seleniumbase/console_scripts/sb_install.py,sha256=BCQqIUZrHpoRv7bXULzgrOnLCGEWmkZ45MrNIColOHI,45682
|
33
33
|
seleniumbase/console_scripts/sb_mkchart.py,sha256=QDDjA8N_Qy62Mgbe2fnSU8mhZbKTVyV9KJRKYz2Tf7Y,11232
|
34
34
|
seleniumbase/console_scripts/sb_mkdir.py,sha256=-OJrGM3upjdhCQb00zxSapS7eVtE49K3bR6KzsGvBbM,30049
|
35
35
|
seleniumbase/console_scripts/sb_mkfile.py,sha256=t2rxTZTz76RDeSbBdHLaHUDS6LT_p0ttm2H_uYdtBko,16480
|
@@ -40,11 +40,11 @@ seleniumbase/console_scripts/sb_print.py,sha256=yo641b_OdSE0GUauOyxk-QrNeIjYzbRY
|
|
40
40
|
seleniumbase/console_scripts/sb_recorder.py,sha256=2QQov64Erfnm1hnVleKX-c_llcsO6hhJKKxzcANcix0,10904
|
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=
|
43
|
+
seleniumbase/core/browser_launcher.py,sha256=CpZV5D4_DtuG4vyZjgYNmzEDrVYjbsKgNnakcHkgNzM,165175
|
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
|
47
|
-
seleniumbase/core/detect_b_ver.py,sha256=
|
47
|
+
seleniumbase/core/detect_b_ver.py,sha256=cb7y12I4JDLHAx9-YLJ6PXxOLs--T1KPQa3jOx0h6Gs,14428
|
48
48
|
seleniumbase/core/download_helper.py,sha256=qSR54kQISucF4RQaLCOuuerSu6DR41juGi_30HVvWYY,2943
|
49
49
|
seleniumbase/core/encoded_images.py,sha256=rDKJ4cNJSuKiRcFViYU7bjyTS9_moI57gUPRXVg3u2k,14209
|
50
50
|
seleniumbase/core/jqc_helper.py,sha256=2DDQr9Q2jSSZqFzX588jLlUM9oJvyrRWq2aORSIPUdI,10322
|
@@ -70,7 +70,7 @@ seleniumbase/extensions/disable_csp.zip,sha256=YMifIIgEBiLrEFrS1sfW4Exh4br1V4oK1
|
|
70
70
|
seleniumbase/extensions/recorder.zip,sha256=dE3-vt1lsIyMbz3MD0WboizA5KiR3SH2jxAMrC0T_cU,11908
|
71
71
|
seleniumbase/extensions/sbase_ext.zip,sha256=3s1N8zrVaMz8RQEOIoBzC3KDjtmHwVZRvVsX25Odr_s,8175
|
72
72
|
seleniumbase/fixtures/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
73
|
-
seleniumbase/fixtures/base_case.py,sha256=
|
73
|
+
seleniumbase/fixtures/base_case.py,sha256=BgKBG-ox6Pd-dwiiwZWBCuwd_yMnvUUJUWlEbJTDD74,688809
|
74
74
|
seleniumbase/fixtures/constants.py,sha256=g7CGrogZYY_LHbDE6ekFSQaqhdzegrfbe9q6skzmZYM,13349
|
75
75
|
seleniumbase/fixtures/css_to_xpath.py,sha256=9ouDB1xl4MJ2os6JOgTIAyHKOQfuxtxvXC3O5hSnEKA,1954
|
76
76
|
seleniumbase/fixtures/errors.py,sha256=KyxuEVx_e3MPhVrJfNIa_3ltMpbCFxfy_jxK8RFNTns,555
|
@@ -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.24.
|
141
|
-
seleniumbase-4.24.
|
142
|
-
seleniumbase-4.24.
|
143
|
-
seleniumbase-4.24.
|
144
|
-
seleniumbase-4.24.
|
145
|
-
seleniumbase-4.24.
|
140
|
+
seleniumbase-4.24.7.dist-info/LICENSE,sha256=odSYtWibXBnQ1gBg6CnDZ82n8kLF_if5-2nbqnEyD8k,1085
|
141
|
+
seleniumbase-4.24.7.dist-info/METADATA,sha256=bXuOShjhmqR-hlgqox6RZ6JHNhpVbPBYRHAcWYuAbsI,83871
|
142
|
+
seleniumbase-4.24.7.dist-info/WHEEL,sha256=GJ7t_kWBFywbagK5eo9IoUwLW6oyOeTKmQ-9iHFVNxQ,92
|
143
|
+
seleniumbase-4.24.7.dist-info/entry_points.txt,sha256=CNrh2EKNaHYEhO6pP1RJyVLB99LkDDYX7TnUK8xfjqk,623
|
144
|
+
seleniumbase-4.24.7.dist-info/top_level.txt,sha256=4N97aBOQ8ETCnDnokBsWb07lJfTaq3C1ZzYRxvLMxqU,19
|
145
|
+
seleniumbase-4.24.7.dist-info/RECORD,,
|
File without changes
|
File without changes
|
File without changes
|