|
36 | 36 | TEST_MULTIPLE_PLATFORMS = os.environ.get('TEST_MULTIPLE_PLATFORMS', 'false').lower() == 'true' |
37 | 37 | TEST_MULTIPLE_PLATFORMS_RELAY = os.environ.get('TEST_MULTIPLE_PLATFORMS_RELAY', 'false').lower() == 'true' |
38 | 38 | TEST_MULTIPLE_VERSIONS_EXPLICIT = os.environ.get('TEST_MULTIPLE_VERSIONS_EXPLICIT', 'true').lower() == 'true' |
39 | | -LIST_CHROMIUM_VERSIONS = ['137.0', '136.0', '135.0', '134.0', '133.0', '132.0', '131.0'] |
40 | | -LIST_FIREFOX_VERSIONS = ['139.0', '138.0', '137.0', '136.0', '135.0', '134.0', '133.0'] |
| 39 | +LIST_CHROMIUM_VERSIONS = ['140.0', '139.0', '138.0', '137.0', '136.0', '135.0', '134.0'] |
| 40 | +LIST_FIREFOX_VERSIONS = ['142.0', '141.0', '140.0', '139.0', '138.0', '137.0', '136.0'] |
41 | 41 | LIST_PLATFORMS = ['Linux', None, 'Windows 11'] |
42 | 42 |
|
43 | 43 | if not TEST_MULTIPLE_VERSIONS_EXPLICIT: |
@@ -194,7 +194,7 @@ def setUp(self): |
194 | 194 | ) |
195 | 195 | end_time = time.time() |
196 | 196 | print( |
197 | | - f"Begin: {self._testMethodName} ({self.__class__.__name__}) WebDriver initialization completed in {end_time - start_time} (s)" |
| 197 | + f"Begin: {self._testMethodName} ({self.__class__.__name__}) WebDriver initialization completed in {end_time - start_time} (s) - SessionID: {self.driver.session_id}" |
198 | 198 | ) |
199 | 199 | except Exception as e: |
200 | 200 | print(f"::error::Exception: {str(e)}") |
@@ -243,7 +243,7 @@ def setUp(self): |
243 | 243 | ) |
244 | 244 | end_time = time.time() |
245 | 245 | print( |
246 | | - f"Begin: {self._testMethodName} ({self.__class__.__name__}) WebDriver initialization completed in {end_time - start_time} (s)" |
| 246 | + f"Begin: {self._testMethodName} ({self.__class__.__name__}) WebDriver initialization completed in {end_time - start_time} (s) - SessionID: {self.driver.session_id}" |
247 | 247 | ) |
248 | 248 | except Exception as e: |
249 | 249 | print(f"::error::Exception: {str(e)}") |
@@ -297,7 +297,7 @@ def setUp(self): |
297 | 297 | ) |
298 | 298 | end_time = time.time() |
299 | 299 | print( |
300 | | - f"Begin: {self._testMethodName} ({self.__class__.__name__}) WebDriver initialization completed in {end_time - start_time} (s)" |
| 300 | + f"Begin: {self._testMethodName} ({self.__class__.__name__}) WebDriver initialization completed in {end_time - start_time} (s) - SessionID: {self.driver.session_id}" |
301 | 301 | ) |
302 | 302 | except Exception as e: |
303 | 303 | print(f"::error::Exception: {str(e)}") |
|
0 commit comments