seleniumbase 4.43.2__py3-none-any.whl → 4.44.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 +88 -4
 - seleniumbase/core/detect_b_ver.py +4 -1
 - seleniumbase/core/sb_cdp.py +100 -47
 - seleniumbase/drivers/atlas_drivers/__init__.py +0 -0
 - seleniumbase/drivers/brave_drivers/__init__.py +0 -0
 - seleniumbase/drivers/comet_drivers/__init__.py +0 -0
 - seleniumbase/drivers/opera_drivers/__init__.py +0 -0
 - seleniumbase/fixtures/base_case.py +53 -7
 - seleniumbase/fixtures/constants.py +24 -9
 - seleniumbase/fixtures/js_utils.py +2 -2
 - seleniumbase/fixtures/page_actions.py +1 -1
 - seleniumbase/plugins/driver_manager.py +116 -0
 - seleniumbase/plugins/pytest_plugin.py +173 -2
 - seleniumbase/plugins/sb_manager.py +120 -1
 - seleniumbase/plugins/selenium_plugin.py +125 -0
 - seleniumbase/undetected/cdp_driver/cdp_util.py +14 -0
 - {seleniumbase-4.43.2.dist-info → seleniumbase-4.44.0.dist-info}/METADATA +7 -3
 - {seleniumbase-4.43.2.dist-info → seleniumbase-4.44.0.dist-info}/RECORD +23 -19
 - {seleniumbase-4.43.2.dist-info → seleniumbase-4.44.0.dist-info}/WHEEL +0 -0
 - {seleniumbase-4.43.2.dist-info → seleniumbase-4.44.0.dist-info}/entry_points.txt +0 -0
 - {seleniumbase-4.43.2.dist-info → seleniumbase-4.44.0.dist-info}/licenses/LICENSE +0 -0
 - {seleniumbase-4.43.2.dist-info → seleniumbase-4.44.0.dist-info}/top_level.txt +0 -0
 
| 
         @@ -1,9 +1,11 @@ 
     | 
|
| 
       1 
1 
     | 
    
         
             
            """Selenium Plugin for SeleniumBase tests that run with pynose / nosetests"""
         
     | 
| 
      
 2 
     | 
    
         
            +
            import os
         
     | 
| 
       2 
3 
     | 
    
         
             
            import sys
         
     | 
| 
       3 
4 
     | 
    
         
             
            from contextlib import suppress
         
     | 
| 
       4 
5 
     | 
    
         
             
            from nose.plugins import Plugin
         
     | 
| 
       5 
6 
     | 
    
         
             
            from seleniumbase import config as sb_config
         
     | 
| 
       6 
7 
     | 
    
         
             
            from seleniumbase.config import settings
         
     | 
| 
      
 8 
     | 
    
         
            +
            from seleniumbase.core import detect_b_ver
         
     | 
| 
       7 
9 
     | 
    
         
             
            from seleniumbase.core import proxy_helper
         
     | 
| 
       8 
10 
     | 
    
         
             
            from seleniumbase.fixtures import constants
         
     | 
| 
       9 
11 
     | 
    
         
             
            from seleniumbase.fixtures import shared_utils
         
     | 
| 
         @@ -16,6 +18,10 @@ class SeleniumBrowser(Plugin): 
     | 
|
| 
       16 
18 
     | 
    
         
             
                --edge  (Shortcut for "--browser=edge".)
         
     | 
| 
       17 
19 
     | 
    
         
             
                --firefox  (Shortcut for "--browser=firefox".)
         
     | 
| 
       18 
20 
     | 
    
         
             
                --safari  (Shortcut for "--browser=safari".)
         
     | 
| 
      
 21 
     | 
    
         
            +
                --opera  (Shortcut for "--browser=opera".)
         
     | 
| 
      
 22 
     | 
    
         
            +
                --brave  (Shortcut for "--browser=brave".)
         
     | 
| 
      
 23 
     | 
    
         
            +
                --comet  (Shortcut for "--browser=comet".)
         
     | 
| 
      
 24 
     | 
    
         
            +
                --atlas  (Shortcut for "--browser=atlas".)
         
     | 
| 
       19 
25 
     | 
    
         
             
                --cft  (Shortcut for using `Chrome for Testing`)
         
     | 
| 
       20 
26 
     | 
    
         
             
                --chs  (Shortcut for using `Chrome-Headless-Shell`)
         
     | 
| 
       21 
27 
     | 
    
         
             
                --user-data-dir=DIR  (Set the Chrome user data directory to use.)
         
     | 
| 
         @@ -146,6 +152,34 @@ class SeleniumBrowser(Plugin): 
     | 
|
| 
       146 
152 
     | 
    
         
             
                        default=False,
         
     | 
| 
       147 
153 
     | 
    
         
             
                        help="""Shortcut for --browser=safari""",
         
     | 
| 
       148 
154 
     | 
    
         
             
                    )
         
     | 
| 
      
 155 
     | 
    
         
            +
                    parser.addoption(
         
     | 
| 
      
 156 
     | 
    
         
            +
                        "--opera",
         
     | 
| 
      
 157 
     | 
    
         
            +
                        action="store_true",
         
     | 
| 
      
 158 
     | 
    
         
            +
                        dest="use_opera",
         
     | 
| 
      
 159 
     | 
    
         
            +
                        default=False,
         
     | 
| 
      
 160 
     | 
    
         
            +
                        help="""Shortcut for --browser=opera""",
         
     | 
| 
      
 161 
     | 
    
         
            +
                    )
         
     | 
| 
      
 162 
     | 
    
         
            +
                    parser.addoption(
         
     | 
| 
      
 163 
     | 
    
         
            +
                        "--brave",
         
     | 
| 
      
 164 
     | 
    
         
            +
                        action="store_true",
         
     | 
| 
      
 165 
     | 
    
         
            +
                        dest="use_brave",
         
     | 
| 
      
 166 
     | 
    
         
            +
                        default=False,
         
     | 
| 
      
 167 
     | 
    
         
            +
                        help="""Shortcut for --browser=brave""",
         
     | 
| 
      
 168 
     | 
    
         
            +
                    )
         
     | 
| 
      
 169 
     | 
    
         
            +
                    parser.addoption(
         
     | 
| 
      
 170 
     | 
    
         
            +
                        "--comet",
         
     | 
| 
      
 171 
     | 
    
         
            +
                        action="store_true",
         
     | 
| 
      
 172 
     | 
    
         
            +
                        dest="use_comet",
         
     | 
| 
      
 173 
     | 
    
         
            +
                        default=False,
         
     | 
| 
      
 174 
     | 
    
         
            +
                        help="""Shortcut for --browser=comet""",
         
     | 
| 
      
 175 
     | 
    
         
            +
                    )
         
     | 
| 
      
 176 
     | 
    
         
            +
                    parser.addoption(
         
     | 
| 
      
 177 
     | 
    
         
            +
                        "--atlas",
         
     | 
| 
      
 178 
     | 
    
         
            +
                        action="store_true",
         
     | 
| 
      
 179 
     | 
    
         
            +
                        dest="use_atlas",
         
     | 
| 
      
 180 
     | 
    
         
            +
                        default=False,
         
     | 
| 
      
 181 
     | 
    
         
            +
                        help="""Shortcut for --browser=atlas""",
         
     | 
| 
      
 182 
     | 
    
         
            +
                    )
         
     | 
| 
       149 
183 
     | 
    
         
             
                    parser.addoption(
         
     | 
| 
       150 
184 
     | 
    
         
             
                        "--cft",
         
     | 
| 
       151 
185 
     | 
    
         
             
                        action="store_true",
         
     | 
| 
         @@ -1057,6 +1091,11 @@ class SeleniumBrowser(Plugin): 
     | 
|
| 
       1057 
1091 
     | 
    
         
             
                    browser_set = None
         
     | 
| 
       1058 
1092 
     | 
    
         
             
                    browser_text = None
         
     | 
| 
       1059 
1093 
     | 
    
         
             
                    browser_list = []
         
     | 
| 
      
 1094 
     | 
    
         
            +
                    # Check if binary-location in options
         
     | 
| 
      
 1095 
     | 
    
         
            +
                    bin_loc_in_options = False
         
     | 
| 
      
 1096 
     | 
    
         
            +
                    for arg in sys_argv:
         
     | 
| 
      
 1097 
     | 
    
         
            +
                        if arg in ["--binary-location", "--binary_location", "--bl"]:
         
     | 
| 
      
 1098 
     | 
    
         
            +
                            bin_loc_in_options = True
         
     | 
| 
       1060 
1099 
     | 
    
         
             
                    if "--browser=chrome" in sys_argv or "--browser chrome" in sys_argv:
         
     | 
| 
       1061 
1100 
     | 
    
         
             
                        browser_changes += 1
         
     | 
| 
       1062 
1101 
     | 
    
         
             
                        browser_set = "chrome"
         
     | 
| 
         @@ -1081,6 +1120,46 @@ class SeleniumBrowser(Plugin): 
     | 
|
| 
       1081 
1120 
     | 
    
         
             
                        browser_changes += 1
         
     | 
| 
       1082 
1121 
     | 
    
         
             
                        browser_set = "remote"
         
     | 
| 
       1083 
1122 
     | 
    
         
             
                        browser_list.append("--browser=remote")
         
     | 
| 
      
 1123 
     | 
    
         
            +
                    if "--browser=opera" in sys_argv or "--browser opera" in sys_argv:
         
     | 
| 
      
 1124 
     | 
    
         
            +
                        if not bin_loc_in_options:
         
     | 
| 
      
 1125 
     | 
    
         
            +
                            bin_loc = detect_b_ver.get_binary_location("opera")
         
     | 
| 
      
 1126 
     | 
    
         
            +
                            if os.path.exists(bin_loc):
         
     | 
| 
      
 1127 
     | 
    
         
            +
                                browser_changes += 1
         
     | 
| 
      
 1128 
     | 
    
         
            +
                                browser_set = "opera"
         
     | 
| 
      
 1129 
     | 
    
         
            +
                                sb_config._browser_shortcut = "opera"
         
     | 
| 
      
 1130 
     | 
    
         
            +
                                sb_config._cdp_browser = "opera"
         
     | 
| 
      
 1131 
     | 
    
         
            +
                                sb_config._cdp_bin_loc = bin_loc
         
     | 
| 
      
 1132 
     | 
    
         
            +
                                browser_list.append("--browser=opera")
         
     | 
| 
      
 1133 
     | 
    
         
            +
                    if "--browser=brave" in sys_argv or "--browser brave" in sys_argv:
         
     | 
| 
      
 1134 
     | 
    
         
            +
                        if not bin_loc_in_options:
         
     | 
| 
      
 1135 
     | 
    
         
            +
                            bin_loc = detect_b_ver.get_binary_location("brave")
         
     | 
| 
      
 1136 
     | 
    
         
            +
                            if os.path.exists(bin_loc):
         
     | 
| 
      
 1137 
     | 
    
         
            +
                                browser_changes += 1
         
     | 
| 
      
 1138 
     | 
    
         
            +
                                browser_set = "brave"
         
     | 
| 
      
 1139 
     | 
    
         
            +
                                sb_config._browser_shortcut = "brave"
         
     | 
| 
      
 1140 
     | 
    
         
            +
                                sb_config._cdp_browser = "brave"
         
     | 
| 
      
 1141 
     | 
    
         
            +
                                sb_config._cdp_bin_loc = bin_loc
         
     | 
| 
      
 1142 
     | 
    
         
            +
                                browser_list.append("--browser=brave")
         
     | 
| 
      
 1143 
     | 
    
         
            +
                    if "--browser=comet" in sys_argv or "--browser comet" in sys_argv:
         
     | 
| 
      
 1144 
     | 
    
         
            +
                        if not bin_loc_in_options:
         
     | 
| 
      
 1145 
     | 
    
         
            +
                            bin_loc = detect_b_ver.get_binary_location("comet")
         
     | 
| 
      
 1146 
     | 
    
         
            +
                            if os.path.exists(bin_loc):
         
     | 
| 
      
 1147 
     | 
    
         
            +
                                browser_changes += 1
         
     | 
| 
      
 1148 
     | 
    
         
            +
                                browser_set = "comet"
         
     | 
| 
      
 1149 
     | 
    
         
            +
                                sb_config._browser_shortcut = "comet"
         
     | 
| 
      
 1150 
     | 
    
         
            +
                                sb_config._cdp_browser = "comet"
         
     | 
| 
      
 1151 
     | 
    
         
            +
                                sb_config._cdp_bin_loc = bin_loc
         
     | 
| 
      
 1152 
     | 
    
         
            +
                                browser_list.append("--browser=comet")
         
     | 
| 
      
 1153 
     | 
    
         
            +
                    if "--browser=atlas" in sys_argv or "--browser atlas" in sys_argv:
         
     | 
| 
      
 1154 
     | 
    
         
            +
                        if not bin_loc_in_options:
         
     | 
| 
      
 1155 
     | 
    
         
            +
                            bin_loc = detect_b_ver.get_binary_location("atlas")
         
     | 
| 
      
 1156 
     | 
    
         
            +
                            if os.path.exists(bin_loc):
         
     | 
| 
      
 1157 
     | 
    
         
            +
                                browser_changes += 1
         
     | 
| 
      
 1158 
     | 
    
         
            +
                                browser_set = "atlas"
         
     | 
| 
      
 1159 
     | 
    
         
            +
                                sb_config._browser_shortcut = "atlas"
         
     | 
| 
      
 1160 
     | 
    
         
            +
                                sb_config._cdp_browser = "atlas"
         
     | 
| 
      
 1161 
     | 
    
         
            +
                                sb_config._cdp_bin_loc = bin_loc
         
     | 
| 
      
 1162 
     | 
    
         
            +
                                browser_list.append("--browser=atlas")
         
     | 
| 
       1084 
1163 
     | 
    
         
             
                    browser_text = browser_set
         
     | 
| 
       1085 
1164 
     | 
    
         
             
                    if "--chrome" in sys_argv and not browser_set == "chrome":
         
     | 
| 
       1086 
1165 
     | 
    
         
             
                        browser_changes += 1
         
     | 
| 
         @@ -1107,6 +1186,46 @@ class SeleniumBrowser(Plugin): 
     | 
|
| 
       1107 
1186 
     | 
    
         
             
                        browser_text = "safari"
         
     | 
| 
       1108 
1187 
     | 
    
         
             
                        sb_config._browser_shortcut = "safari"
         
     | 
| 
       1109 
1188 
     | 
    
         
             
                        browser_list.append("--safari")
         
     | 
| 
      
 1189 
     | 
    
         
            +
                    if "--opera" in sys_argv and not browser_set == "opera":
         
     | 
| 
      
 1190 
     | 
    
         
            +
                        if not bin_loc_in_options:
         
     | 
| 
      
 1191 
     | 
    
         
            +
                            bin_loc = detect_b_ver.get_binary_location("opera")
         
     | 
| 
      
 1192 
     | 
    
         
            +
                            if os.path.exists(bin_loc):
         
     | 
| 
      
 1193 
     | 
    
         
            +
                                browser_changes += 1
         
     | 
| 
      
 1194 
     | 
    
         
            +
                                browser_text = "opera"
         
     | 
| 
      
 1195 
     | 
    
         
            +
                                sb_config._browser_shortcut = "opera"
         
     | 
| 
      
 1196 
     | 
    
         
            +
                                sb_config._cdp_browser = "opera"
         
     | 
| 
      
 1197 
     | 
    
         
            +
                                sb_config._cdp_bin_loc = bin_loc
         
     | 
| 
      
 1198 
     | 
    
         
            +
                                browser_list.append("--opera")
         
     | 
| 
      
 1199 
     | 
    
         
            +
                    if "--brave" in sys_argv and not browser_set == "brave":
         
     | 
| 
      
 1200 
     | 
    
         
            +
                        if not bin_loc_in_options:
         
     | 
| 
      
 1201 
     | 
    
         
            +
                            bin_loc = detect_b_ver.get_binary_location("brave")
         
     | 
| 
      
 1202 
     | 
    
         
            +
                            if os.path.exists(bin_loc):
         
     | 
| 
      
 1203 
     | 
    
         
            +
                                browser_changes += 1
         
     | 
| 
      
 1204 
     | 
    
         
            +
                                browser_text = "brave"
         
     | 
| 
      
 1205 
     | 
    
         
            +
                                sb_config._browser_shortcut = "brave"
         
     | 
| 
      
 1206 
     | 
    
         
            +
                                sb_config._cdp_browser = "brave"
         
     | 
| 
      
 1207 
     | 
    
         
            +
                                sb_config._cdp_bin_loc = bin_loc
         
     | 
| 
      
 1208 
     | 
    
         
            +
                                browser_list.append("--brave")
         
     | 
| 
      
 1209 
     | 
    
         
            +
                    if "--comet" in sys_argv and not browser_set == "comet":
         
     | 
| 
      
 1210 
     | 
    
         
            +
                        if not bin_loc_in_options:
         
     | 
| 
      
 1211 
     | 
    
         
            +
                            bin_loc = detect_b_ver.get_binary_location("comet")
         
     | 
| 
      
 1212 
     | 
    
         
            +
                            if os.path.exists(bin_loc):
         
     | 
| 
      
 1213 
     | 
    
         
            +
                                browser_changes += 1
         
     | 
| 
      
 1214 
     | 
    
         
            +
                                browser_text = "comet"
         
     | 
| 
      
 1215 
     | 
    
         
            +
                                sb_config._browser_shortcut = "comet"
         
     | 
| 
      
 1216 
     | 
    
         
            +
                                sb_config._cdp_browser = "comet"
         
     | 
| 
      
 1217 
     | 
    
         
            +
                                sb_config._cdp_bin_loc = bin_loc
         
     | 
| 
      
 1218 
     | 
    
         
            +
                                browser_list.append("--comet")
         
     | 
| 
      
 1219 
     | 
    
         
            +
                    if "--atlas" in sys_argv and not browser_set == "atlas":
         
     | 
| 
      
 1220 
     | 
    
         
            +
                        if not bin_loc_in_options:
         
     | 
| 
      
 1221 
     | 
    
         
            +
                            bin_loc = detect_b_ver.get_binary_location("atlas")
         
     | 
| 
      
 1222 
     | 
    
         
            +
                            if os.path.exists(bin_loc):
         
     | 
| 
      
 1223 
     | 
    
         
            +
                                browser_changes += 1
         
     | 
| 
      
 1224 
     | 
    
         
            +
                                browser_text = "atlas"
         
     | 
| 
      
 1225 
     | 
    
         
            +
                                sb_config._browser_shortcut = "atlas"
         
     | 
| 
      
 1226 
     | 
    
         
            +
                                sb_config._cdp_browser = "atlas"
         
     | 
| 
      
 1227 
     | 
    
         
            +
                                sb_config._cdp_bin_loc = bin_loc
         
     | 
| 
      
 1228 
     | 
    
         
            +
                                browser_list.append("--atlas")
         
     | 
| 
       1110 
1229 
     | 
    
         
             
                    if browser_changes > 1:
         
     | 
| 
       1111 
1230 
     | 
    
         
             
                        message = "\n\n  TOO MANY browser types were entered!"
         
     | 
| 
       1112 
1231 
     | 
    
         
             
                        message += "\n  There were %s found:\n  >  %s" % (
         
     | 
| 
         @@ -1219,6 +1338,8 @@ class SeleniumBrowser(Plugin): 
     | 
|
| 
       1219 
1338 
     | 
    
         
             
                    test.test.extension_dir = self.options.extension_dir
         
     | 
| 
       1220 
1339 
     | 
    
         
             
                    test.test.disable_features = self.options.disable_features
         
     | 
| 
       1221 
1340 
     | 
    
         
             
                    test.test.binary_location = self.options.binary_location
         
     | 
| 
      
 1341 
     | 
    
         
            +
                    if hasattr(sb_config, "_cdp_bin_loc") and sb_config._cdp_bin_loc:
         
     | 
| 
      
 1342 
     | 
    
         
            +
                        test.test.binary_location = sb_config._cdp_bin_loc
         
     | 
| 
       1222 
1343 
     | 
    
         
             
                    if self.options.use_cft and not test.test.binary_location:
         
     | 
| 
       1223 
1344 
     | 
    
         
             
                        test.test.binary_location = "cft"
         
     | 
| 
       1224 
1345 
     | 
    
         
             
                    elif self.options.use_chs and not test.test.binary_location:
         
     | 
| 
         @@ -1232,6 +1353,10 @@ class SeleniumBrowser(Plugin): 
     | 
|
| 
       1232 
1353 
     | 
    
         
             
                        test.test.headless = True
         
     | 
| 
       1233 
1354 
     | 
    
         
             
                        test.test.headless1 = False
         
     | 
| 
       1234 
1355 
     | 
    
         
             
                        test.test.headless2 = False
         
     | 
| 
      
 1356 
     | 
    
         
            +
                    if test.test.browser in constants.ChromiumSubs.chromium_subs:
         
     | 
| 
      
 1357 
     | 
    
         
            +
                        if not sb_config.binary_location:
         
     | 
| 
      
 1358 
     | 
    
         
            +
                            test.test.browser = "chrome"  # Still uses chromedriver
         
     | 
| 
      
 1359 
     | 
    
         
            +
                            sb_config._browser_shortcut = test.test.browser
         
     | 
| 
       1235 
1360 
     | 
    
         
             
                    test.test.driver_version = self.options.driver_version
         
     | 
| 
       1236 
1361 
     | 
    
         
             
                    test.test.page_load_strategy = self.options.page_load_strategy
         
     | 
| 
       1237 
1362 
     | 
    
         
             
                    test.test.chromium_arg = self.options.chromium_arg
         
     | 
| 
         @@ -593,6 +593,20 @@ async def start( 
     | 
|
| 
       593 
593 
     | 
    
         
             
                        browser_binary = detect_b_ver.get_binary_location(browser)
         
     | 
| 
       594 
594 
     | 
    
         
             
                        if browser_binary and os.path.exists(browser_binary):
         
     | 
| 
       595 
595 
     | 
    
         
             
                            browser_executable_path = browser_binary
         
     | 
| 
      
 596 
     | 
    
         
            +
                else:
         
     | 
| 
      
 597 
     | 
    
         
            +
                    bin_loc = str(browser_executable_path).lower()
         
     | 
| 
      
 598 
     | 
    
         
            +
                    if bin_loc.endswith("opera") or bin_loc.endswith("opera.exe"):
         
     | 
| 
      
 599 
     | 
    
         
            +
                        sb_config._cdp_browser = "opera"
         
     | 
| 
      
 600 
     | 
    
         
            +
                    elif bin_loc.endswith("edge") or bin_loc.endswith("edge.exe"):
         
     | 
| 
      
 601 
     | 
    
         
            +
                        sb_config._cdp_browser = "edge"
         
     | 
| 
      
 602 
     | 
    
         
            +
                    elif bin_loc.endswith("brave") or bin_loc.endswith("brave.exe"):
         
     | 
| 
      
 603 
     | 
    
         
            +
                        sb_config._cdp_browser = "brave"
         
     | 
| 
      
 604 
     | 
    
         
            +
                    elif bin_loc.endswith("comet") or bin_loc.endswith("comet.exe"):
         
     | 
| 
      
 605 
     | 
    
         
            +
                        sb_config._cdp_browser = "comet"
         
     | 
| 
      
 606 
     | 
    
         
            +
                    elif bin_loc.endswith("atlas") or bin_loc.endswith("atlas.exe"):
         
     | 
| 
      
 607 
     | 
    
         
            +
                        sb_config._cdp_browser = "atlas"
         
     | 
| 
      
 608 
     | 
    
         
            +
                    else:
         
     | 
| 
      
 609 
     | 
    
         
            +
                        sb_config._cdp_browser = "chrome"
         
     | 
| 
       596 
610 
     | 
    
         
             
                if not config:
         
     | 
| 
       597 
611 
     | 
    
         
             
                    config = Config(
         
     | 
| 
       598 
612 
     | 
    
         
             
                        user_data_dir,
         
     | 
| 
         @@ -1,6 +1,6 @@ 
     | 
|
| 
       1 
1 
     | 
    
         
             
            Metadata-Version: 2.4
         
     | 
| 
       2 
2 
     | 
    
         
             
            Name: seleniumbase
         
     | 
| 
       3 
     | 
    
         
            -
            Version: 4. 
     | 
| 
      
 3 
     | 
    
         
            +
            Version: 4.44.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
         
     | 
| 
         @@ -60,7 +60,7 @@ Requires-Python: >=3.8 
     | 
|
| 
       60 
60 
     | 
    
         
             
            Description-Content-Type: text/markdown
         
     | 
| 
       61 
61 
     | 
    
         
             
            License-File: LICENSE
         
     | 
| 
       62 
62 
     | 
    
         
             
            Requires-Dist: pip>=25.0.1; python_version < "3.9"
         
     | 
| 
       63 
     | 
    
         
            -
            Requires-Dist: pip>=25. 
     | 
| 
      
 63 
     | 
    
         
            +
            Requires-Dist: pip>=25.3; python_version >= "3.9"
         
     | 
| 
       64 
64 
     | 
    
         
             
            Requires-Dist: packaging>=25.0
         
     | 
| 
       65 
65 
     | 
    
         
             
            Requires-Dist: setuptools~=70.2; python_version < "3.10"
         
     | 
| 
       66 
66 
     | 
    
         
             
            Requires-Dist: setuptools>=80.9.0; python_version >= "3.10"
         
     | 
| 
         @@ -113,7 +113,7 @@ Requires-Dist: websocket-client~=1.8.0; python_version < "3.9" 
     | 
|
| 
       113 
113 
     | 
    
         
             
            Requires-Dist: websocket-client~=1.9.0; python_version >= "3.9"
         
     | 
| 
       114 
114 
     | 
    
         
             
            Requires-Dist: selenium==4.27.1; python_version < "3.9"
         
     | 
| 
       115 
115 
     | 
    
         
             
            Requires-Dist: selenium==4.32.0; python_version >= "3.9" and python_version < "3.10"
         
     | 
| 
       116 
     | 
    
         
            -
            Requires-Dist: selenium==4. 
     | 
| 
      
 116 
     | 
    
         
            +
            Requires-Dist: selenium==4.38.0; python_version >= "3.10"
         
     | 
| 
       117 
117 
     | 
    
         
             
            Requires-Dist: cssselect==1.2.0; python_version < "3.9"
         
     | 
| 
       118 
118 
     | 
    
         
             
            Requires-Dist: cssselect==1.3.0; python_version >= "3.9"
         
     | 
| 
       119 
119 
     | 
    
         
             
            Requires-Dist: sortedcontainers==2.4.0
         
     | 
| 
         @@ -871,6 +871,10 @@ pytest test_coffee_cart.py --trace 
     | 
|
| 
       871 
871 
     | 
    
         
             
            --edge  # (Shortcut for "--browser=edge".)
         
     | 
| 
       872 
872 
     | 
    
         
             
            --firefox  # (Shortcut for "--browser=firefox".)
         
     | 
| 
       873 
873 
     | 
    
         
             
            --safari  # (Shortcut for "--browser=safari".)
         
     | 
| 
      
 874 
     | 
    
         
            +
            --opera  # (Shortcut for "--browser=opera".)
         
     | 
| 
      
 875 
     | 
    
         
            +
            --brave  # (Shortcut for "--browser=brave".)
         
     | 
| 
      
 876 
     | 
    
         
            +
            --comet  # (Shortcut for "--browser=comet".)
         
     | 
| 
      
 877 
     | 
    
         
            +
            --atlas  # (Shortcut for "--browser=atlas".)
         
     | 
| 
       874 
878 
     | 
    
         
             
            --settings-file=FILE  # (Override default SeleniumBase settings.)
         
     | 
| 
       875 
879 
     | 
    
         
             
            --env=ENV  # (Set the test env. Access with "self.env" in tests.)
         
     | 
| 
       876 
880 
     | 
    
         
             
            --account=STR  # (Set account. Access with "self.account" in tests.)
         
     | 
| 
         @@ -3,7 +3,7 @@ sbase/__main__.py,sha256=G0bVB1-DM4PGwQ1KyOupaWCs4ePbChZNNWuX2htim5U,647 
     | 
|
| 
       3 
3 
     | 
    
         
             
            sbase/steps.py,sha256=wiPSWZhFpBlWvkqXRJ18btpBu3nQaw9K5AzIJNAX5RM,43521
         
     | 
| 
       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=cycg5W9jgt4aWBhVgu1_HNoOZVDHvJGt5mqmujcE0Fg,46
         
     | 
| 
       7 
7 
     | 
    
         
             
            seleniumbase/behave/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
         
     | 
| 
       8 
8 
     | 
    
         
             
            seleniumbase/behave/behave_helper.py,sha256=lJtagtivSbEpbRj0EKV4l4PuPU6NANONJJAnYwgVCe0,24379
         
     | 
| 
       9 
9 
     | 
    
         
             
            seleniumbase/behave/behave_sb.py,sha256=dEj9UUHVz3ejzEX25frViPQfp7acjI-UssWJO_wpugg,59875
         
     | 
| 
         @@ -36,11 +36,11 @@ seleniumbase/console_scripts/sb_print.py,sha256=iUKR71Y82NhuKBKw31PJilDw-pPUr-vq 
     | 
|
| 
       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=pcAwr3DUyiQLORyltJ8CIPSx6NarPH--cyon5NsbfhU,255248
         
     | 
| 
       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
         
     | 
| 
       43 
     | 
    
         
            -
            seleniumbase/core/detect_b_ver.py,sha256= 
     | 
| 
      
 43 
     | 
    
         
            +
            seleniumbase/core/detect_b_ver.py,sha256=2vnZ4ROeNnGGuQgWfrcbTyVH8MN0Lh_mWDQ0Po0-1YM,21737
         
     | 
| 
       44 
44 
     | 
    
         
             
            seleniumbase/core/download_helper.py,sha256=qSR54kQISucF4RQaLCOuuerSu6DR41juGi_30HVvWYY,2943
         
     | 
| 
       45 
45 
     | 
    
         
             
            seleniumbase/core/encoded_images.py,sha256=rDKJ4cNJSuKiRcFViYU7bjyTS9_moI57gUPRXVg3u2k,14209
         
     | 
| 
       46 
46 
     | 
    
         
             
            seleniumbase/core/jqc_helper.py,sha256=2DDQr9Q2jSSZqFzX588jLlUM9oJvyrRWq2aORSIPUdI,10322
         
     | 
| 
         @@ -50,7 +50,7 @@ seleniumbase/core/proxy_helper.py,sha256=pZ1NboNfziHU3vWZLOZLX-qkfM3oKSnpc3omQf9 
     | 
|
| 
       50 
50 
     | 
    
         
             
            seleniumbase/core/recorder_helper.py,sha256=gDION28OK4NAYsE-7ohKZ9Z3sxQQ0FEjf859LDpqsg4,25320
         
     | 
| 
       51 
51 
     | 
    
         
             
            seleniumbase/core/report_helper.py,sha256=Obg5wHltEmM6uFCWFeR8_fjeT0GzHjGgoqQIr_HUxxk,12223
         
     | 
| 
       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=85E5QCLOI_8s7I40EoM7-U1GeOypQuw0aH5CB8oKtUE,110503
         
     | 
| 
       54 
54 
     | 
    
         
             
            seleniumbase/core/sb_driver.py,sha256=-IQsskc7HpXQbcBL04IPjmGpyYchyo7v9OPF2WcahDw,14159
         
     | 
| 
       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
         
     | 
| 
         @@ -59,20 +59,24 @@ seleniumbase/core/testcase_manager.py,sha256=TblCfo8Zfap1Bayip-qTu9gqT-KALSwXAX4 
     | 
|
| 
       59 
59 
     | 
    
         
             
            seleniumbase/core/tour_helper.py,sha256=GcNHetXiM8D2Z0-TLEF-LlBaPHADdT-n2HNlft9Sup0,42535
         
     | 
| 
       60 
60 
     | 
    
         
             
            seleniumbase/core/visual_helper.py,sha256=HxPOulfEebc9ZSwe7E-nSQJ12N2l4vhqUQubLvE2QQw,3227
         
     | 
| 
       61 
61 
     | 
    
         
             
            seleniumbase/drivers/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
         
     | 
| 
      
 62 
     | 
    
         
            +
            seleniumbase/drivers/atlas_drivers/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
         
     | 
| 
      
 63 
     | 
    
         
            +
            seleniumbase/drivers/brave_drivers/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
         
     | 
| 
       62 
64 
     | 
    
         
             
            seleniumbase/drivers/cft_drivers/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
         
     | 
| 
       63 
65 
     | 
    
         
             
            seleniumbase/drivers/chs_drivers/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
         
     | 
| 
      
 66 
     | 
    
         
            +
            seleniumbase/drivers/comet_drivers/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
         
     | 
| 
      
 67 
     | 
    
         
            +
            seleniumbase/drivers/opera_drivers/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
         
     | 
| 
       64 
68 
     | 
    
         
             
            seleniumbase/extensions/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
         
     | 
| 
       65 
69 
     | 
    
         
             
            seleniumbase/extensions/ad_block.zip,sha256=LTlaOYUs6a1Zu4op64pLoDEqYKJb8zHq_Y0PsBIIqCk,1454
         
     | 
| 
       66 
70 
     | 
    
         
             
            seleniumbase/extensions/disable_csp.zip,sha256=5RvomXnm2PdivUVcxTV6jfvD8WhTEsQYHaQZe7nk9Yc,20014
         
     | 
| 
       67 
71 
     | 
    
         
             
            seleniumbase/extensions/recorder.zip,sha256=JEE_FVEvlS63cFQbVLEroIyPSS91nWCDL0MhjVrmIpk,11813
         
     | 
| 
       68 
72 
     | 
    
         
             
            seleniumbase/extensions/sbase_ext.zip,sha256=3s1N8zrVaMz8RQEOIoBzC3KDjtmHwVZRvVsX25Odr_s,8175
         
     | 
| 
       69 
73 
     | 
    
         
             
            seleniumbase/fixtures/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
         
     | 
| 
       70 
     | 
    
         
            -
            seleniumbase/fixtures/base_case.py,sha256= 
     | 
| 
       71 
     | 
    
         
            -
            seleniumbase/fixtures/constants.py,sha256= 
     | 
| 
      
 74 
     | 
    
         
            +
            seleniumbase/fixtures/base_case.py,sha256=R-yNQjqDwAROf4vVR3J4u74BU0iKrJ2TyLL3fKdMW3s,742846
         
     | 
| 
      
 75 
     | 
    
         
            +
            seleniumbase/fixtures/constants.py,sha256=xDcfW_O7TCfiojm_oxhNGY11mSEfR-ckvbppfARPWQU,14281
         
     | 
| 
       72 
76 
     | 
    
         
             
            seleniumbase/fixtures/css_to_xpath.py,sha256=9ouDB1xl4MJ2os6JOgTIAyHKOQfuxtxvXC3O5hSnEKA,1954
         
     | 
| 
       73 
77 
     | 
    
         
             
            seleniumbase/fixtures/errors.py,sha256=KyxuEVx_e3MPhVrJfNIa_3ltMpbCFxfy_jxK8RFNTns,555
         
     | 
| 
       74 
     | 
    
         
            -
            seleniumbase/fixtures/js_utils.py,sha256= 
     | 
| 
       75 
     | 
    
         
            -
            seleniumbase/fixtures/page_actions.py,sha256= 
     | 
| 
      
 78 
     | 
    
         
            +
            seleniumbase/fixtures/js_utils.py,sha256=iNMn4soCRIuyjYG0vUHZX5zWEKSR8RgGDsl9Y74DFP8,52843
         
     | 
| 
      
 79 
     | 
    
         
            +
            seleniumbase/fixtures/page_actions.py,sha256=06tpHzyw7frpFfRWEqKWhn0_76BQFIqRK_xAwmr2bSk,73206
         
     | 
| 
       76 
80 
     | 
    
         
             
            seleniumbase/fixtures/page_utils.py,sha256=auaUAuV2ctRNPUnGWuHS22Il0Ml0PPHmxtikVZdM2tc,12277
         
     | 
| 
       77 
81 
     | 
    
         
             
            seleniumbase/fixtures/shared_utils.py,sha256=kn0rcF0tEkQkiT8RGVooNFsLnVWmdPeTH9PfIm86TOI,10527
         
     | 
| 
       78 
82 
     | 
    
         
             
            seleniumbase/fixtures/unittest_helper.py,sha256=sfZ92rZeBAn_sF_yQ3I6_I7h3lyU5-cV_UMegBNoEm8,1294
         
     | 
| 
         @@ -88,13 +92,13 @@ seleniumbase/plugins/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hS 
     | 
|
| 
       88 
92 
     | 
    
         
             
            seleniumbase/plugins/base_plugin.py,sha256=ItLgtaZmu_363iycy8BNX0Do5LyIWGiTMLW6krXM-WQ,14748
         
     | 
| 
       89 
93 
     | 
    
         
             
            seleniumbase/plugins/basic_test_info.py,sha256=nvQxLMxD4pgjY3dGHlMAxmHXP0LIhcOIfWjNue-49uk,2108
         
     | 
| 
       90 
94 
     | 
    
         
             
            seleniumbase/plugins/db_reporting_plugin.py,sha256=En09qUCoojrk9-vbcnsoHdSELoGmag2GDIyu3jTiJas,7331
         
     | 
| 
       91 
     | 
    
         
            -
            seleniumbase/plugins/driver_manager.py,sha256= 
     | 
| 
      
 95 
     | 
    
         
            +
            seleniumbase/plugins/driver_manager.py,sha256=CwKkvgtcHue8m6oJSrxYJvWIu2i5P41u05bOzoFMrYE,41861
         
     | 
| 
       92 
96 
     | 
    
         
             
            seleniumbase/plugins/page_source.py,sha256=mifv7Rkkb9qcrFY2H-9fctoR1CpHHiCgnFTOY2p7mBY,1889
         
     | 
| 
       93 
     | 
    
         
            -
            seleniumbase/plugins/pytest_plugin.py,sha256= 
     | 
| 
      
 97 
     | 
    
         
            +
            seleniumbase/plugins/pytest_plugin.py,sha256=A4UBkiLmSakFRUWnOCWF7KLM34yZpHEJPCpyS0P8ftA,116633
         
     | 
| 
       94 
98 
     | 
    
         
             
            seleniumbase/plugins/s3_logging_plugin.py,sha256=WDfertQgGOW_SRJpFMaekYD6vBVW9VO62POtXXy2HCM,2319
         
     | 
| 
       95 
     | 
    
         
            -
            seleniumbase/plugins/sb_manager.py,sha256= 
     | 
| 
      
 99 
     | 
    
         
            +
            seleniumbase/plugins/sb_manager.py,sha256=pXjjXqaO8NthZ-ZiRBnrsOQyDtsdASYQvfSoggnXHwU,63511
         
     | 
| 
       96 
100 
     | 
    
         
             
            seleniumbase/plugins/screen_shots.py,sha256=1hrXw-hzuZ1BR6Yh7AyWX2ABnvnP73-RCbwdz958gj4,1127
         
     | 
| 
       97 
     | 
    
         
            -
            seleniumbase/plugins/selenium_plugin.py,sha256= 
     | 
| 
      
 101 
     | 
    
         
            +
            seleniumbase/plugins/selenium_plugin.py,sha256=nFdKEHRLcAfoTJqhpd3Drl5F_-ZtP6nwgV69pqZcKGQ,66104
         
     | 
| 
       98 
102 
     | 
    
         
             
            seleniumbase/resources/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
         
     | 
| 
       99 
103 
     | 
    
         
             
            seleniumbase/translate/__init__.py,sha256=N2i5XntTwJZmwr9-qvdX5gC6Rdm5-ClIbnQ8yyPn4Oo,459
         
     | 
| 
       100 
104 
     | 
    
         
             
            seleniumbase/translate/chinese.py,sha256=0QhK2eadtsdN4KCvwki1J7jBCe8I4xxWbKzteJKJozY,24698
         
     | 
| 
         @@ -118,7 +122,7 @@ seleniumbase/undetected/webelement.py,sha256=OOpUYbEiOG52KsYYyuDW9tYLdA2SMnukvwQ 
     | 
|
| 
       118 
122 
     | 
    
         
             
            seleniumbase/undetected/cdp_driver/__init__.py,sha256=Ga9alwuaZZy4_XOShc0HjgFnNqpPdrcbjAicz5gE7a4,215
         
     | 
| 
       119 
123 
     | 
    
         
             
            seleniumbase/undetected/cdp_driver/_contradict.py,sha256=lP4b0h5quAy573ETn_TBbYV889cL1AuPLVInpJ0ZkiU,3183
         
     | 
| 
       120 
124 
     | 
    
         
             
            seleniumbase/undetected/cdp_driver/browser.py,sha256=AQI6uWVyhv7VEnx0CE3V9MeoUa-VDilFPytnQile31Y,35651
         
     | 
| 
       121 
     | 
    
         
            -
            seleniumbase/undetected/cdp_driver/cdp_util.py,sha256= 
     | 
| 
      
 125 
     | 
    
         
            +
            seleniumbase/undetected/cdp_driver/cdp_util.py,sha256=wSgXxukwP4_-kVai0z1s1uoXYDiDab0jdBLa1HyW0nQ,34939
         
     | 
| 
       122 
126 
     | 
    
         
             
            seleniumbase/undetected/cdp_driver/config.py,sha256=B5Wf0E5xvCmIuLO_Y06oyKYd04yM2auj--JyGKUKsls,13630
         
     | 
| 
       123 
127 
     | 
    
         
             
            seleniumbase/undetected/cdp_driver/connection.py,sha256=FfGFXDyf_-JzvE2RRmT6Fi91I7Fsv8rLv91rPuX-6VY,25718
         
     | 
| 
       124 
128 
     | 
    
         
             
            seleniumbase/undetected/cdp_driver/element.py,sha256=FIC6v7OmumLCT-_vIc3H4oju_oBbaLpWJUJIKm2c_q4,40467
         
     | 
| 
         @@ -137,9 +141,9 @@ seleniumbase/utilities/selenium_grid/start-grid-hub.bat,sha256=Ftq-GrAKRYH2ssDPr 
     | 
|
| 
       137 
141 
     | 
    
         
             
            seleniumbase/utilities/selenium_grid/start-grid-hub.sh,sha256=KADv0RUHONLL2_I443QFK8PryBpDmKn5Gy0s4o0vDSM,106
         
     | 
| 
       138 
142 
     | 
    
         
             
            seleniumbase/utilities/selenium_ide/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
         
     | 
| 
       139 
143 
     | 
    
         
             
            seleniumbase/utilities/selenium_ide/convert_ide.py,sha256=2tayFP_R9HGH0Xx6qYlPmArN0THntO6R0Wjo0qqgCZY,31680
         
     | 
| 
       140 
     | 
    
         
            -
            seleniumbase-4. 
     | 
| 
       141 
     | 
    
         
            -
            seleniumbase-4. 
     | 
| 
       142 
     | 
    
         
            -
            seleniumbase-4. 
     | 
| 
       143 
     | 
    
         
            -
            seleniumbase-4. 
     | 
| 
       144 
     | 
    
         
            -
            seleniumbase-4. 
     | 
| 
       145 
     | 
    
         
            -
            seleniumbase-4. 
     | 
| 
      
 144 
     | 
    
         
            +
            seleniumbase-4.44.0.dist-info/licenses/LICENSE,sha256=BRblZsX7HyPUjQmYTiyWr_e9tzWvmR3R4SFclM2R3W0,1085
         
     | 
| 
      
 145 
     | 
    
         
            +
            seleniumbase-4.44.0.dist-info/METADATA,sha256=F0MF6p_zPnyhtLWtTo2ztHEymQRNWG43Es1lq68ZVWE,90492
         
     | 
| 
      
 146 
     | 
    
         
            +
            seleniumbase-4.44.0.dist-info/WHEEL,sha256=_zCd3N1l69ArxyTb8rzEoP9TpbYXkqRFSNOD5OuxnTs,91
         
     | 
| 
      
 147 
     | 
    
         
            +
            seleniumbase-4.44.0.dist-info/entry_points.txt,sha256=CNrh2EKNaHYEhO6pP1RJyVLB99LkDDYX7TnUK8xfjqk,623
         
     | 
| 
      
 148 
     | 
    
         
            +
            seleniumbase-4.44.0.dist-info/top_level.txt,sha256=4N97aBOQ8ETCnDnokBsWb07lJfTaq3C1ZzYRxvLMxqU,19
         
     | 
| 
      
 149 
     | 
    
         
            +
            seleniumbase-4.44.0.dist-info/RECORD,,
         
     | 
| 
         
            File without changes
         
     | 
| 
         
            File without changes
         
     | 
| 
         
            File without changes
         
     | 
| 
         
            File without changes
         
     |