SeleniumHQ / selenium

A browser automation framework and ecosystem.
https://selenium.dev
Apache License 2.0
29.78k stars 8.02k forks source link

[dotnet][rb][java][js][py] Automated Browser Version Update #14053

Closed selenium-ci closed 3 weeks ago

selenium-ci commented 1 month ago

This is an automated pull request to update pinned browsers and drivers

Merge after verify the new browser versions properly passing the tests and no bugs need to be filed

codiumai-pr-agent-pro[bot] commented 1 month ago

PR Review 🔍

⏱️ Estimated effort to review [1-5] 2, because the changes are straightforward and involve only updating URLs and checksums for browser versions. The scope is limited and the modifications are clear, making it relatively easy to review.
🧪 Relevant tests No
⚡ Possible issues Possible Dependency Issue: If the new browser versions (127.0b8) have compatibility issues with existing tests or dependencies, it could lead to failures in automated testing environments. This should be verified by running all relevant tests.
🔒 Security concerns No
codiumai-pr-agent-pro[bot] commented 1 month ago

PR Code Suggestions ✨

CategorySuggestion                                                                                                                                    Score
Enhancement
Use a variable for the version number to avoid hardcoding it in multiple places ___ **Consider using a variable for the version number to avoid hardcoding it in multiple
places. This will make future updates easier and reduce the risk of inconsistencies.** [common/repositories.bzl [53-54]](https://github.com/SeleniumHQ/selenium/pull/14053/files#diff-25d82cd18102fed27d3202000e1f1b3a56a85ad2848236d91989cd30a3952401R53-R54) ```diff -url = "https://ftp.mozilla.org/pub/firefox/releases/127.0b8/linux-x86_64/en-US/firefox-127.0b8.tar.bz2", +version = "127.0b8" +url = f"https://ftp.mozilla.org/pub/firefox/releases/{version}/linux-x86_64/en-US/firefox-{version}.tar.bz2", sha256 = "240e4da514f8052a5d61a1a2c217c813e55831b8b05bbabdc4494df8979c0ee6", ```
Suggestion importance[1-10]: 8 Why: Using a variable for the version number is a significant improvement for maintainability and reduces the risk of errors during updates. This suggestion directly impacts the ease of future modifications.
8
Maintainability
Add comments to explain the purpose of specific URLs and SHA256 hashes ___ **Consider adding a comment above the http_archive and dmg_archive definitions to indicate
the purpose of these specific URLs and SHA256 hashes. This will help future maintainers
understand why these specific versions are being used.** [common/repositories.bzl [51-55]](https://github.com/SeleniumHQ/selenium/pull/14053/files#diff-25d82cd18102fed27d3202000e1f1b3a56a85ad2848236d91989cd30a3952401R51-R55) ```diff +# Firefox Beta version 127.0b8 for Linux http_archive( name = "linux_beta_firefox", url = "https://ftp.mozilla.org/pub/firefox/releases/127.0b8/linux-x86_64/en-US/firefox-127.0b8.tar.bz2", sha256 = "240e4da514f8052a5d61a1a2c217c813e55831b8b05bbabdc4494df8979c0ee6", build_file_content = """ ```
Suggestion importance[1-10]: 7 Why: Adding comments for clarity and maintainability is a good practice, especially for version-specific URLs and hashes that might change or be updated frequently.
7
Possible issue
Verify that the build_file_content is correctly formatted and complete ___ **Ensure that the build_file_content is correctly formatted and contains all necessary
information for building the js_library. This will prevent build errors and ensure the
library is correctly configured.** [common/repositories.bzl [55]](https://github.com/SeleniumHQ/selenium/pull/14053/files#diff-25d82cd18102fed27d3202000e1f1b3a56a85ad2848236d91989cd30a3952401R55-R55) ```diff build_file_content = """ + # Ensure this content is correct and complete ```
Suggestion importance[1-10]: 6 Why: Ensuring complete and correct `build_file_content` is important for the functionality of the build process, but the suggestion lacks specific details on what might be missing or incorrect in the existing content.
6
Best practice
Ensure the URLs and SHA256 hashes are correct and correspond to the intended files ___ **Verify that the new URLs and SHA256 hashes are correct and correspond to the intended
files. This ensures that the correct versions are being downloaded and used.** [common/repositories.bzl [53-54]](https://github.com/SeleniumHQ/selenium/pull/14053/files#diff-25d82cd18102fed27d3202000e1f1b3a56a85ad2848236d91989cd30a3952401R53-R54) ```diff url = "https://ftp.mozilla.org/pub/firefox/releases/127.0b8/linux-x86_64/en-US/firefox-127.0b8.tar.bz2", -sha256 = "240e4da514f8052a5d61a1a2c217c813e55831b8b05bbabdc4494df8979c0ee6", +sha256 = "240e4da514f8052a5d61a1a2c217c813e55831b8b05bbabdc4494df8979c0ee6", # Verify this hash ```
Suggestion importance[1-10]: 5 Why: While the suggestion to verify URLs and hashes is valid, it is more of a procedural check rather than a code improvement. It doesn't directly impact the code's functionality or maintainability.
5
codiumai-pr-agent-pro[bot] commented 1 month ago

CI Failure Feedback 🧐

(Checks updated until commit https://github.com/SeleniumHQ/selenium/commit/a44cb329903bf3408bff36faae911d4c8fc566f7)

**Action:** Test / All RBE tests
**Failed stage:** [Run Bazel](https://github.com/SeleniumHQ/selenium/actions/runs/9508744447/job/26210593729) [❌]
**Failure summary:** The action failed due to multiple test failures. The specific reasons for the failures are:
  • test_pen_pointer_properties in py/test/selenium/webdriver/common/w3c_interaction_tests.py failed
    because the expected event type was pointermove, but pointerenter was received.
  • one element raises if invalid locator in rb/spec/integration/selenium/webdriver/driver_spec.rb
    failed because the expected InvalidSelectorError was not raised; instead, a JavascriptError was
    encountered.
  • can set single permissions in rb/spec/integration/selenium/webdriver/chrome/driver_spec.rb failed
    due to an UnknownError related to a bad inspector message.
  • install and uninstall xpi file and other related tests in
    rb/spec/integration/selenium/webdriver/firefox/driver_spec.rb failed due to ERROR_CORRUPT_FILE,
    indicating the file appears to be corrupt.
  • testSelectionSelectBySymbol and testSelectionSelectByWord in
    java/test/org/openqa/selenium/bidi/input/DefaultKeyboardTest.java failed due to assertion errors
    where the expected text did not match the actual text.
  • shouldAllowRemoteWebDriverBuilderToUseHasExtensions in
    java/test/org/openqa/selenium/firefox/RemoteFirefoxDriverTest.java failed due to ERROR_CORRUPT_FILE
    when attempting to install an add-on.
  • canSetViewportWithDevicePixelRatio in
    java/test/org/openqa/selenium/bidi/browsingcontext/BrowsingContextTest.java failed due to an
    exception indicating the test is marked as not yet implemented but already works.
  • Relevant error logs: ```yaml 1: ##[group]Operating System 2: Ubuntu ... 975: Package 'php-symfony-debug-bundle' is not installed, so not removed 976: Package 'php-symfony-dependency-injection' is not installed, so not removed 977: Package 'php-symfony-deprecation-contracts' is not installed, so not removed 978: Package 'php-symfony-discord-notifier' is not installed, so not removed 979: Package 'php-symfony-doctrine-bridge' is not installed, so not removed 980: Package 'php-symfony-doctrine-messenger' is not installed, so not removed 981: Package 'php-symfony-dom-crawler' is not installed, so not removed 982: Package 'php-symfony-dotenv' is not installed, so not removed 983: Package 'php-symfony-error-handler' is not installed, so not removed ... 1726: warning: [options] To suppress warnings about obsolete options, use -Xlint:-options. 1727: (00:44:31) INFO: From Building external/protobuf~/java/core/liblite_runtime_only.jar (91 source files) [for tool]: 1728: external/protobuf~/java/core/src/main/java/com/google/protobuf/UnsafeUtil.java:293: warning: [removal] AccessController in java.security has been deprecated and marked for removal 1729: AccessController.doPrivileged( 1730: ^ 1731: (00:44:32) Analyzing: 1692 targets (1268 packages loaded, 50963 targets configured) 1732: [2,965 / 3,987] 35 / 195 tests; Copying files; 0s local ... (39 actions, 15 running) 1733: (00:44:33) INFO: From Building java/src/org/openqa/selenium/remote/libapi-class.jar (66 source files): 1734: java/src/org/openqa/selenium/remote/ErrorHandler.java:46: warning: [removal] ErrorCodes in org.openqa.selenium.remote has been deprecated and marked for removal 1735: private final ErrorCodes errorCodes; 1736: ^ 1737: java/src/org/openqa/selenium/remote/ErrorHandler.java:60: warning: [removal] ErrorCodes in org.openqa.selenium.remote has been deprecated and marked for removal 1738: this.errorCodes = new ErrorCodes(); 1739: ^ 1740: java/src/org/openqa/selenium/remote/ErrorHandler.java:68: warning: [removal] ErrorCodes in org.openqa.selenium.remote has been deprecated and marked for removal 1741: public ErrorHandler(ErrorCodes codes, boolean includeServerErrors) { 1742: ^ 1743: java/src/org/openqa/selenium/remote/Response.java:97: warning: [removal] ErrorCodes in org.openqa.selenium.remote has been deprecated and marked for removal 1744: ErrorCodes errorCodes = new ErrorCodes(); 1745: ^ 1746: java/src/org/openqa/selenium/remote/Response.java:97: warning: [removal] ErrorCodes in org.openqa.selenium.remote has been deprecated and marked for removal 1747: ErrorCodes errorCodes = new ErrorCodes(); 1748: ^ 1749: java/src/org/openqa/selenium/remote/ProtocolHandshake.java:181: warning: [removal] ErrorCodes in org.openqa.selenium.remote has been deprecated and marked for removal 1750: response.setStatus(ErrorCodes.SUCCESS); 1751: ^ 1752: java/src/org/openqa/selenium/remote/ProtocolHandshake.java:182: warning: [removal] ErrorCodes in org.openqa.selenium.remote has been deprecated and marked for removal 1753: response.setState(ErrorCodes.SUCCESS_STRING); 1754: ^ 1755: java/src/org/openqa/selenium/remote/W3CHandshakeResponse.java:53: warning: [removal] ErrorCodes in org.openqa.selenium.remote has been deprecated and marked for removal 1756: new ErrorCodes().toStatus((String) rawError, Optional.of(tuple.getStatusCode()))); 1757: ^ 1758: java/src/org/openqa/selenium/remote/W3CHandshakeResponse.java:56: warning: [removal] ErrorCodes in org.openqa.selenium.remote has been deprecated and marked for removal 1759: new ErrorCodes().getExceptionType((String) rawError); 1760: ^ 1761: java/src/org/openqa/selenium/remote/codec/AbstractHttpResponseCodec.java:44: warning: [removal] ErrorCodes in org.openqa.selenium.remote has been deprecated and marked for removal 1762: private final ErrorCodes errorCodes = new ErrorCodes(); 1763: ^ 1764: java/src/org/openqa/selenium/remote/codec/AbstractHttpResponseCodec.java:44: warning: [removal] ErrorCodes in org.openqa.selenium.remote has been deprecated and marked for removal 1765: private final ErrorCodes errorCodes = new ErrorCodes(); 1766: ^ 1767: java/src/org/openqa/selenium/remote/codec/AbstractHttpResponseCodec.java:55: warning: [removal] ErrorCodes in org.openqa.selenium.remote has been deprecated and marked for removal 1768: int status = response.getStatus() == ErrorCodes.SUCCESS ? HTTP_OK : HTTP_INTERNAL_ERROR; 1769: ^ 1770: java/src/org/openqa/selenium/remote/codec/AbstractHttpResponseCodec.java:101: warning: [removal] ErrorCodes in org.openqa.selenium.remote has been deprecated and marked for removal 1771: response.setStatus(ErrorCodes.UNKNOWN_COMMAND); 1772: ^ 1773: java/src/org/openqa/selenium/remote/codec/AbstractHttpResponseCodec.java:103: warning: [removal] ErrorCodes in org.openqa.selenium.remote has been deprecated and marked for removal 1774: response.setStatus(ErrorCodes.UNHANDLED_ERROR); 1775: ^ 1776: java/src/org/openqa/selenium/remote/codec/AbstractHttpResponseCodec.java:124: warning: [removal] ErrorCodes in org.openqa.selenium.remote has been deprecated and marked for removal 1777: response.setStatus(ErrorCodes.SUCCESS); 1778: ^ 1779: java/src/org/openqa/selenium/remote/codec/AbstractHttpResponseCodec.java:125: warning: [removal] ErrorCodes in org.openqa.selenium.remote has been deprecated and marked for removal 1780: response.setState(errorCodes.toState(ErrorCodes.SUCCESS)); 1781: ^ 1782: java/src/org/openqa/selenium/remote/codec/AbstractHttpResponseCodec.java:131: warning: [removal] ErrorCodes in org.openqa.selenium.remote has been deprecated and marked for removal 1783: response.setState(errorCodes.toState(ErrorCodes.SUCCESS)); 1784: ^ 1785: java/src/org/openqa/selenium/remote/codec/w3c/W3CHttpResponseCodec.java:70: warning: [removal] ErrorCodes in org.openqa.selenium.remote has been deprecated and marked for removal 1786: private final ErrorCodes errorCodes = new ErrorCodes(); 1787: ^ 1788: java/src/org/openqa/selenium/remote/codec/w3c/W3CHttpResponseCodec.java:70: warning: [removal] ErrorCodes in org.openqa.selenium.remote has been deprecated and marked for removal 1789: private final ErrorCodes errorCodes = new ErrorCodes(); 1790: ^ 1791: java/src/org/openqa/selenium/remote/codec/w3c/W3CHttpResponseCodec.java:93: warning: [removal] ErrorCodes in org.openqa.selenium.remote has been deprecated and marked for removal 1792: response.setStatus(ErrorCodes.UNKNOWN_COMMAND); 1793: ^ 1794: java/src/org/openqa/selenium/remote/codec/w3c/W3CHttpResponseCodec.java:98: warning: [removal] ErrorCodes in org.openqa.selenium.remote has been deprecated and marked for removal 1795: response.setStatus(ErrorCodes.UNHANDLED_ERROR); 1796: ^ 1797: java/src/org/openqa/selenium/remote/codec/w3c/W3CHttpResponseCodec.java:145: warning: [removal] ErrorCodes in org.openqa.selenium.remote has been deprecated and marked for removal 1798: response.setStatus(ErrorCodes.SUCCESS); ... 1804: (00:44:33) WARNING: /home/runner/work/selenium/selenium/javascript/atoms/BUILD.bazel:351:19: runfiles symlink javascript/atoms/test/click_submit_test.html -> javascript/atoms/test/click_submit_test.html obscured by javascript/atoms/test -> bazel-out/k8-fastbuild/bin/javascript/atoms/test 1805: (00:44:33) WARNING: /home/runner/work/selenium/selenium/javascript/atoms/BUILD.bazel:351:19: runfiles symlink javascript/atoms/test/click_test.html -> javascript/atoms/test/click_test.html obscured by javascript/atoms/test -> bazel-out/k8-fastbuild/bin/javascript/atoms/test 1806: (00:44:33) WARNING: /home/runner/work/selenium/selenium/javascript/atoms/BUILD.bazel:351:19: runfiles symlink javascript/atoms/test/clientrect_test.html -> javascript/atoms/test/clientrect_test.html obscured by javascript/atoms/test -> bazel-out/k8-fastbuild/bin/javascript/atoms/test 1807: (00:44:33) WARNING: /home/runner/work/selenium/selenium/javascript/atoms/BUILD.bazel:351:19: runfiles symlink javascript/atoms/test/color_test.html -> javascript/atoms/test/color_test.html obscured by javascript/atoms/test -> bazel-out/k8-fastbuild/bin/javascript/atoms/test 1808: (00:44:33) WARNING: /home/runner/work/selenium/selenium/javascript/atoms/BUILD.bazel:351:19: runfiles symlink javascript/atoms/test/dom_test.html -> javascript/atoms/test/dom_test.html obscured by javascript/atoms/test -> bazel-out/k8-fastbuild/bin/javascript/atoms/test 1809: (00:44:33) WARNING: /home/runner/work/selenium/selenium/javascript/atoms/BUILD.bazel:351:19: runfiles symlink javascript/atoms/test/drag_test.html -> javascript/atoms/test/drag_test.html obscured by javascript/atoms/test -> bazel-out/k8-fastbuild/bin/javascript/atoms/test 1810: (00:44:33) WARNING: /home/runner/work/selenium/selenium/javascript/atoms/BUILD.bazel:351:19: runfiles symlink javascript/atoms/test/enabled_test.html -> javascript/atoms/test/enabled_test.html obscured by javascript/atoms/test -> bazel-out/k8-fastbuild/bin/javascript/atoms/test 1811: (00:44:33) WARNING: /home/runner/work/selenium/selenium/javascript/atoms/BUILD.bazel:351:19: runfiles symlink javascript/atoms/test/enter_submit_test.html -> javascript/atoms/test/enter_submit_test.html obscured by javascript/atoms/test -> bazel-out/k8-fastbuild/bin/javascript/atoms/test 1812: (00:44:33) WARNING: /home/runner/work/selenium/selenium/javascript/atoms/BUILD.bazel:351:19: runfiles symlink javascript/atoms/test/error_test.html -> javascript/atoms/test/error_test.html obscured by javascript/atoms/test -> bazel-out/k8-fastbuild/bin/javascript/atoms/test ... 1978: See https://github.com/rubyzip/rubyzip for details. The Changelog also 1979: lists other enhancements and bugfixes that have been implemented since 1980: version 2.3.0. 1981: (00:44:37) Analyzing: 1692 targets (1268 packages loaded, 51450 targets configured) 1982: [5,349 / 6,298] 74 / 602 tests; Extracting npm package @graphql-typed-document-node/core@3.1.1_graphql_16.8.1; 0s remote, remote-cache ... (50 actions, 3 running) 1983: (00:44:42) Analyzing: 1692 targets (1268 packages loaded, 51836 targets configured) 1984: [7,227 / 8,001] 75 / 913 tests; Extracting npm package @mui/icons-material@5.15.18_-796748879; 5s remote, remote-cache ... (36 actions, 4 running) 1985: (00:44:48) Analyzing: 1692 targets (1268 packages loaded, 52015 targets configured) 1986: [7,399 / 8,169] 75 / 939 tests; Testing //rb/spec/integration/selenium/webdriver:error-chrome-bidi; 4s remote, remote-cache ... (49 actions, 0 running) 1987: (00:44:54) Analyzing: 1692 targets (1268 packages loaded, 52292 targets configured) 1988: [7,401 / 8,456] 75 / 1045 tests; Testing //rb/spec/integration/selenium/webdriver:error-chrome-bidi; 10s remote, remote-cache ... (50 actions, 0 running) 1989: (00:44:59) Analyzing: 1692 targets (1268 packages loaded, 52463 targets configured) 1990: [7,401 / 9,032] 75 / 1347 tests; Testing //rb/spec/integration/selenium/webdriver:error-chrome-bidi; 15s remote, remote-cache ... (50 actions, 0 running) 1991: (00:45:08) INFO: Analyzed 1692 targets (1268 packages loaded, 52704 targets configured). 1992: (00:45:09) [7,401 / 9,497] 75 / 1692 tests; Testing //rb/spec/integration/selenium/webdriver:error-chrome-bidi; 25s remote, remote-cache ... (50 actions, 0 running) ... 2003: (00:46:12) [7,792 / 9,634] 76 / 1692 tests; Testing //rb/spec/integration/selenium/webdriver:select-chrome-bidi; 59s remote, remote-cache ... (50 actions, 8 running) 2004: (00:46:17) [7,818 / 9,642] 76 / 1692 tests; Testing //rb/spec/integration/selenium/webdriver:select-chrome-bidi; 64s remote, remote-cache ... (50 actions, 8 running) 2005: (00:46:23) [7,844 / 9,648] 76 / 1692 tests; Testing //rb/spec/integration/selenium/webdriver:select-chrome-bidi; 69s remote, remote-cache ... (50 actions, 8 running) 2006: (00:46:28) [7,869 / 9,648] 76 / 1692 tests; Testing //rb/spec/integration/selenium/webdriver:select-chrome-bidi; 74s remote, remote-cache ... (50 actions, 10 running) 2007: (00:46:33) [7,895 / 9,648] 76 / 1692 tests; Testing //rb/spec/integration/selenium/webdriver:select-chrome-bidi; 79s remote, remote-cache ... (50 actions, 11 running) 2008: (00:46:38) [7,921 / 9,648] 76 / 1692 tests; Testing //rb/spec/integration/selenium/webdriver:select-chrome-bidi; 84s remote, remote-cache ... (50 actions, 11 running) 2009: (00:46:43) [7,948 / 9,654] 76 / 1692 tests; Testing //rb/spec/integration/selenium/webdriver:select-chrome-bidi; 89s remote, remote-cache ... (50 actions, 11 running) 2010: (00:46:48) [7,967 / 9,680] 76 / 1692 tests; Testing //rb/spec/integration/selenium/webdriver:select-chrome-bidi; 94s remote, remote-cache ... (50 actions, 15 running) 2011: (00:46:52) INFO: From Building java/test/org/openqa/selenium/remote/ErrorHandlerTest.jar (1 source file) and running annotation processors (AutoServiceProcessor): 2012: java/test/org/openqa/selenium/remote/ErrorHandlerTest.java:79: warning: [removal] ErrorCodes in org.openqa.selenium.remote has been deprecated and marked for removal 2013: handler.throwIfResponseFailed(createResponse(ErrorCodes.SUCCESS), 100); 2014: ^ 2015: java/test/org/openqa/selenium/remote/ErrorHandlerTest.java:85: warning: [removal] ErrorCodes in org.openqa.selenium.remote has been deprecated and marked for removal 2016: assertThrowsCorrectExceptionType(ErrorCodes.NO_SUCH_WINDOW, NoSuchWindowException.class); 2017: ^ 2018: java/test/org/openqa/selenium/remote/ErrorHandlerTest.java:86: warning: [removal] ErrorCodes in org.openqa.selenium.remote has been deprecated and marked for removal 2019: assertThrowsCorrectExceptionType(ErrorCodes.NO_SUCH_FRAME, NoSuchFrameException.class); 2020: ^ 2021: java/test/org/openqa/selenium/remote/ErrorHandlerTest.java:87: warning: [removal] ErrorCodes in org.openqa.selenium.remote has been deprecated and marked for removal 2022: assertThrowsCorrectExceptionType(ErrorCodes.NO_SUCH_ELEMENT, NoSuchElementException.class); 2023: ^ 2024: java/test/org/openqa/selenium/remote/ErrorHandlerTest.java:88: warning: [removal] ErrorCodes in org.openqa.selenium.remote has been deprecated and marked for removal 2025: assertThrowsCorrectExceptionType(ErrorCodes.UNKNOWN_COMMAND, UnsupportedCommandException.class); 2026: ^ 2027: java/test/org/openqa/selenium/remote/ErrorHandlerTest.java:90: warning: [removal] ErrorCodes in org.openqa.selenium.remote has been deprecated and marked for removal 2028: ErrorCodes.METHOD_NOT_ALLOWED, UnsupportedCommandException.class); 2029: ^ 2030: java/test/org/openqa/selenium/remote/ErrorHandlerTest.java:92: warning: [removal] ErrorCodes in org.openqa.selenium.remote has been deprecated and marked for removal 2031: ErrorCodes.STALE_ELEMENT_REFERENCE, StaleElementReferenceException.class); 2032: ^ 2033: java/test/org/openqa/selenium/remote/ErrorHandlerTest.java:94: warning: [removal] ErrorCodes in org.openqa.selenium.remote has been deprecated and marked for removal 2034: ErrorCodes.INVALID_ELEMENT_STATE, InvalidElementStateException.class); 2035: ^ 2036: java/test/org/openqa/selenium/remote/ErrorHandlerTest.java:95: warning: [removal] ErrorCodes in org.openqa.selenium.remote has been deprecated and marked for removal 2037: assertThrowsCorrectExceptionType(ErrorCodes.XPATH_LOOKUP_ERROR, InvalidSelectorException.class); 2038: ^ 2039: java/test/org/openqa/selenium/remote/ErrorHandlerTest.java:107: warning: [removal] ErrorCodes in org.openqa.selenium.remote has been deprecated and marked for removal 2040: Response response = createResponse(ErrorCodes.UNHANDLED_ERROR); 2041: ^ 2042: java/test/org/openqa/selenium/remote/ErrorHandlerTest.java:120: warning: [removal] ErrorCodes in org.openqa.selenium.remote has been deprecated and marked for removal 2043: createResponse(ErrorCodes.UNHANDLED_ERROR, "boom"), 123)) 2044: ^ 2045: java/test/org/openqa/selenium/remote/ErrorHandlerTest.java:133: warning: [removal] ErrorCodes in org.openqa.selenium.remote has been deprecated and marked for removal 2046: createResponse(ErrorCodes.UNHANDLED_ERROR, ImmutableMap.of("message", "boom")), 2047: ^ 2048: java/test/org/openqa/selenium/remote/ErrorHandlerTest.java:147: warning: [removal] ErrorCodes in org.openqa.selenium.remote has been deprecated and marked for removal 2049: ErrorCodes.UNHANDLED_ERROR, 2050: ^ 2051: java/test/org/openqa/selenium/remote/ErrorHandlerTest.java:167: warning: [removal] ErrorCodes in org.openqa.selenium.remote has been deprecated and marked for removal 2052: ErrorCodes.UNHANDLED_ERROR, 2053: ^ 2054: java/test/org/openqa/selenium/remote/ErrorHandlerTest.java:193: warning: [removal] ErrorCodes in org.openqa.selenium.remote has been deprecated and marked for removal 2055: createResponse(ErrorCodes.UNHANDLED_ERROR, toMap(serverError)), 123)) 2056: ^ 2057: java/test/org/openqa/selenium/remote/ErrorHandlerTest.java:214: warning: [removal] ErrorCodes in org.openqa.selenium.remote has been deprecated and marked for removal 2058: createResponse(ErrorCodes.UNHANDLED_ERROR, data), 123)) 2059: ^ 2060: java/test/org/openqa/selenium/remote/ErrorHandlerTest.java:248: warning: [removal] ErrorCodes in org.openqa.selenium.remote has been deprecated and marked for removal 2061: createResponse(ErrorCodes.UNHANDLED_ERROR, data), 123)) 2062: ^ 2063: java/test/org/openqa/selenium/remote/ErrorHandlerTest.java:280: warning: [removal] ErrorCodes in org.openqa.selenium.remote has been deprecated and marked for removal 2064: createResponse(ErrorCodes.UNHANDLED_ERROR, data), 123)) 2065: ^ 2066: java/test/org/openqa/selenium/remote/ErrorHandlerTest.java:308: warning: [removal] ErrorCodes in org.openqa.selenium.remote has been deprecated and marked for removal 2067: createResponse(ErrorCodes.UNHANDLED_ERROR, data), 123)) 2068: ^ 2069: java/test/org/openqa/selenium/remote/ErrorHandlerTest.java:327: warning: [removal] ErrorCodes in org.openqa.selenium.remote has been deprecated and marked for removal 2070: createResponse(ErrorCodes.UNHANDLED_ERROR, data), 123)) 2071: ^ 2072: java/test/org/openqa/selenium/remote/ErrorHandlerTest.java:355: warning: [removal] ErrorCodes in org.openqa.selenium.remote has been deprecated and marked for removal 2073: createResponse(ErrorCodes.UNHANDLED_ERROR, data), 123)) 2074: ^ 2075: java/test/org/openqa/selenium/remote/ErrorHandlerTest.java:394: warning: [removal] ErrorCodes in org.openqa.selenium.remote has been deprecated and marked for removal 2076: createResponse(ErrorCodes.UNHANDLED_ERROR, data), 123)) 2077: ^ 2078: java/test/org/openqa/selenium/remote/ErrorHandlerTest.java:426: warning: [removal] ErrorCodes in org.openqa.selenium.remote has been deprecated and marked for removal 2079: createResponse(ErrorCodes.UNHANDLED_ERROR, toMap(serverError)), 123)) 2080: ^ 2081: java/test/org/openqa/selenium/remote/ErrorHandlerTest.java:435: warning: [removal] ErrorCodes in org.openqa.selenium.remote has been deprecated and marked for removal 2082: exceptions.put(ErrorCodes.NO_SUCH_SESSION, NoSuchSessionException.class); 2083: ^ 2084: java/test/org/openqa/selenium/remote/ErrorHandlerTest.java:436: warning: [removal] ErrorCodes in org.openqa.selenium.remote has been deprecated and marked for removal 2085: exceptions.put(ErrorCodes.NO_SUCH_ELEMENT, NoSuchElementException.class); 2086: ^ 2087: java/test/org/openqa/selenium/remote/ErrorHandlerTest.java:437: warning: [removal] ErrorCodes in org.openqa.selenium.remote has been deprecated and marked for removal 2088: exceptions.put(ErrorCodes.NO_SUCH_FRAME, NoSuchFrameException.class); 2089: ^ 2090: java/test/org/openqa/selenium/remote/ErrorHandlerTest.java:438: warning: [removal] ErrorCodes in org.openqa.selenium.remote has been deprecated and marked for removal 2091: exceptions.put(ErrorCodes.UNKNOWN_COMMAND, UnsupportedCommandException.class); 2092: ^ 2093: java/test/org/openqa/selenium/remote/ErrorHandlerTest.java:439: warning: [removal] ErrorCodes in org.openqa.selenium.remote has been deprecated and marked for removal 2094: exceptions.put(ErrorCodes.STALE_ELEMENT_REFERENCE, StaleElementReferenceException.class); 2095: ^ 2096: java/test/org/openqa/selenium/remote/ErrorHandlerTest.java:440: warning: [removal] ErrorCodes in org.openqa.selenium.remote has been deprecated and marked for removal 2097: exceptions.put(ErrorCodes.INVALID_ELEMENT_STATE, InvalidElementStateException.class); 2098: ^ 2099: java/test/org/openqa/selenium/remote/ErrorHandlerTest.java:441: warning: [removal] ErrorCodes in org.openqa.selenium.remote has been deprecated and marked for removal 2100: exceptions.put(ErrorCodes.UNHANDLED_ERROR, WebDriverException.class); 2101: ^ 2102: java/test/org/openqa/selenium/remote/ErrorHandlerTest.java:442: warning: [removal] ErrorCodes in org.openqa.selenium.remote has been deprecated and marked for removal 2103: exceptions.put(ErrorCodes.JAVASCRIPT_ERROR, JavascriptException.class); 2104: ^ 2105: java/test/org/openqa/selenium/remote/ErrorHandlerTest.java:443: warning: [removal] ErrorCodes in org.openqa.selenium.remote has been deprecated and marked for removal 2106: exceptions.put(ErrorCodes.XPATH_LOOKUP_ERROR, InvalidSelectorException.class); 2107: ^ 2108: java/test/org/openqa/selenium/remote/ErrorHandlerTest.java:444: warning: [removal] ErrorCodes in org.openqa.selenium.remote has been deprecated and marked for removal 2109: exceptions.put(ErrorCodes.TIMEOUT, TimeoutException.class); 2110: ^ 2111: java/test/org/openqa/selenium/remote/ErrorHandlerTest.java:445: warning: [removal] ErrorCodes in org.openqa.selenium.remote has been deprecated and marked for removal 2112: exceptions.put(ErrorCodes.NO_SUCH_WINDOW, NoSuchWindowException.class); 2113: ^ 2114: java/test/org/openqa/selenium/remote/ErrorHandlerTest.java:446: warning: [removal] ErrorCodes in org.openqa.selenium.remote has been deprecated and marked for removal 2115: exceptions.put(ErrorCodes.INVALID_COOKIE_DOMAIN, InvalidCookieDomainException.class); 2116: ^ 2117: java/test/org/openqa/selenium/remote/ErrorHandlerTest.java:447: warning: [removal] ErrorCodes in org.openqa.selenium.remote has been deprecated and marked for removal 2118: exceptions.put(ErrorCodes.UNABLE_TO_SET_COOKIE, UnableToSetCookieException.class); 2119: ^ 2120: java/test/org/openqa/selenium/remote/ErrorHandlerTest.java:448: warning: [removal] ErrorCodes in org.openqa.selenium.remote has been deprecated and marked for removal 2121: exceptions.put(ErrorCodes.UNEXPECTED_ALERT_PRESENT, UnhandledAlertException.class); 2122: ^ 2123: java/test/org/openqa/selenium/remote/ErrorHandlerTest.java:449: warning: [removal] ErrorCodes in org.openqa.selenium.remote has been deprecated and marked for removal 2124: exceptions.put(ErrorCodes.NO_ALERT_PRESENT, NoAlertPresentException.class); 2125: ^ 2126: java/test/org/openqa/selenium/remote/ErrorHandlerTest.java:450: warning: [removal] ErrorCodes in org.openqa.selenium.remote has been deprecated and marked for removal 2127: exceptions.put(ErrorCodes.ASYNC_SCRIPT_TIMEOUT, ScriptTimeoutException.class); 2128: ^ 2129: java/test/org/openqa/selenium/remote/ErrorHandlerTest.java:451: warning: [removal] ErrorCodes in org.openqa.selenium.remote has been deprecated and marked for removal 2130: exceptions.put(ErrorCodes.INVALID_SELECTOR_ERROR, InvalidSelectorException.class); 2131: ^ 2132: java/test/org/openqa/selenium/remote/ErrorHandlerTest.java:452: warning: [removal] ErrorCodes in org.openqa.selenium.remote has been deprecated and marked for removal 2133: exceptions.put(ErrorCodes.SESSION_NOT_CREATED, SessionNotCreatedException.class); 2134: ^ 2135: java/test/org/openqa/selenium/remote/ErrorHandlerTest.java:453: warning: [removal] ErrorCodes in org.openqa.selenium.remote has been deprecated and marked for removal 2136: exceptions.put(ErrorCodes.MOVE_TARGET_OUT_OF_BOUNDS, MoveTargetOutOfBoundsException.class); 2137: ^ 2138: java/test/org/openqa/selenium/remote/ErrorHandlerTest.java:454: warning: [removal] ErrorCodes in org.openqa.selenium.remote has been deprecated and marked for removal 2139: exceptions.put(ErrorCodes.INVALID_XPATH_SELECTOR, InvalidSelectorException.class); 2140: ^ 2141: java/test/org/openqa/selenium/remote/ErrorHandlerTest.java:455: warning: [removal] ErrorCodes in org.openqa.selenium.remote has been deprecated and marked for removal 2142: exceptions.put(ErrorCodes.INVALID_XPATH_SELECTOR_RETURN_TYPER, InvalidSelectorException.class); 2143: ^ 2144: java/test/org/openqa/selenium/remote/ErrorHandlerTest.java:469: warning: [removal] ErrorCodes in org.openqa.selenium.remote has been deprecated and marked for removal 2145: ? ErrorCodes.INVALID_SELECTOR_ERROR 2146: ^ 2147: java/test/org/openqa/selenium/remote/ErrorHandlerTest.java:471: warning: [removal] ErrorCodes in org.openqa.selenium.remote has been deprecated and marked for removal 2148: assertThat(new ErrorCodes().toStatusCode(e)).isEqualTo(expected); 2149: ^ 2150: java/test/org/openqa/selenium/remote/ErrorHandlerTest.java:483: warning: [removal] ErrorCodes in org.openqa.selenium.remote has been deprecated and marked for removal 2151: response.setState(new ErrorCodes().toState(status)); 2152: ^ 2153: (00:46:53) INFO: From Building java/test/org/openqa/selenium/remote/RemotableByTest.jar (1 source file) and running annotation processors (AutoServiceProcessor): 2154: java/test/org/openqa/selenium/remote/RemotableByTest.java:23: warning: [removal] ErrorCodes in org.openqa.selenium.remote has been deprecated and marked for removal 2155: import static org.openqa.selenium.remote.ErrorCodes.SUCCESS_STRING; 2156: ^ 2157: java/test/org/openqa/selenium/remote/RemotableByTest.java:23: warning: [removal] ErrorCodes in org.openqa.selenium.remote has been deprecated and marked for removal 2158: import static org.openqa.selenium.remote.ErrorCodes.SUCCESS_STRING; 2159: ^ 2160: java/test/org/openqa/selenium/remote/RemotableByTest.java:23: warning: [removal] ErrorCodes in org.openqa.selenium.remote has been deprecated and marked for removal 2161: import static org.openqa.selenium.remote.ErrorCodes.SUCCESS_STRING; 2162: ^ 2163: java/test/org/openqa/selenium/remote/RemotableByTest.java:45: warning: [removal] ErrorCodes in org.openqa.selenium.remote has been deprecated and marked for removal 2164: private final ErrorCodes errorCodes = new ErrorCodes(); 2165: ^ 2166: java/test/org/openqa/selenium/remote/RemotableByTest.java:45: warning: [removal] ErrorCodes in org.openqa.selenium.remote has been deprecated and marked for removal 2167: private final ErrorCodes errorCodes = new ErrorCodes(); 2168: ^ 2169: java/test/org/openqa/selenium/remote/RemotableByTest.java:45: warning: [removal] ErrorCodes in org.openqa.selenium.remote has been deprecated and marked for removal 2170: private final ErrorCodes errorCodes = new ErrorCodes(); 2171: ^ 2172: java/test/org/openqa/selenium/remote/RemotableByTest.java:45: warning: [removal] ErrorCodes in org.openqa.selenium.remote has been deprecated and marked for removal 2173: private final ErrorCodes errorCodes = new ErrorCodes(); 2174: ^ 2175: (00:46:53) [7,986 / 9,708] 76 / 1692 tests; Testing //rb/spec/integration/selenium/webdriver:select-chrome-bidi; 99s remote, remote-cache ... (50 actions, 17 running) 2176: (00:46:58) INFO: From Building java/test/org/openqa/selenium/remote/libsmall-tests-test-lib.jar (5 source files) and running annotation processors (AutoServiceProcessor): 2177: java/test/org/openqa/selenium/remote/WebDriverFixture.java:170: warning: [removal] ErrorCodes in org.openqa.selenium.remote has been deprecated and marked for removal 2178: response.setStatus(new ErrorCodes().toStatus(state, Optional.of(400))); 2179: ^ 2180: (00:46:58) [8,005 / 9,752] 76 / 1692 tests; Testing //rb/spec/integration/selenium/webdriver:select-chrome-bidi; 104s remote, remote-cache ... (50 actions, 24 running) 2181: (00:47:00) INFO: From Building java/test/org/openqa/selenium/remote/codec/w3c/W3CHttpResponseCodecTest.jar (1 source file): 2182: java/test/org/openqa/selenium/remote/codec/w3c/W3CHttpResponseCodecTest.java:26: warning: [removal] ErrorCodes in org.openqa.selenium.remote has been deprecated and marked for removal 2183: import static org.openqa.selenium.remote.ErrorCodes.METHOD_NOT_ALLOWED; 2184: ^ 2185: java/test/org/openqa/selenium/remote/codec/w3c/W3CHttpResponseCodecTest.java:55: warning: [removal] ErrorCodes in org.openqa.selenium.remote has been deprecated and marked for removal 2186: assertThat(decoded.getStatus().intValue()).isEqualTo(ErrorCodes.SUCCESS); 2187: ^ 2188: java/test/org/openqa/selenium/remote/codec/w3c/W3CHttpResponseCodecTest.java:81: warning: [removal] ErrorCodes in org.openqa.selenium.remote has been deprecated and marked for removal 2189: assertThat(decoded.getStatus()).isEqualTo(ErrorCodes.UNHANDLED_ERROR); 2190: ^ 2191: java/test/org/openqa/selenium/remote/codec/w3c/W3CHttpResponseCodecTest.java:107: warning: [removal] ErrorCodes in org.openqa.selenium.remote has been deprecated and marked for removal 2192: assertThat(decoded.getStatus()).isEqualTo(ErrorCodes.UNHANDLED_ERROR); 2193: ^ 2194: (00:47:03) [8,021 / 9,997] 79 / 1692 tests; Testing //rb/spec/integration/selenium/webdriver:select-chrome-bidi; 109s remote, remote-cache ... (50 actions, 36 running) 2195: (00:47:08) [8,039 / 10,031] 80 / 1692 tests; Testing //rb/spec/integration/selenium/webdriver:error-chrome-bidi; 114s remote, remote-cache ... (50 actions, 40 running) ... 2214: ^ 2215: java/test/org/openqa/selenium/remote/http/FormEncodedDataTest.java:102: warning: [removal] FormEncodedData in org.openqa.selenium.remote.http has been deprecated and marked for removal 2216: Optional>> data = FormEncodedData.getData(request); 2217: ^ 2218: java/test/org/openqa/selenium/remote/http/FormEncodedDataTest.java:114: warning: [removal] FormEncodedData in org.openqa.selenium.remote.http has been deprecated and marked for removal 2219: Optional>> data = FormEncodedData.getData(request); 2220: ^ 2221: (00:47:12) INFO: From Building java/test/org/openqa/selenium/json/JsonTest.jar (1 source file): 2222: java/test/org/openqa/selenium/json/JsonTest.java:430: warning: [removal] ErrorCodes in org.openqa.selenium.remote has been deprecated and marked for removal 2223: assertThat(response.getState()).isEqualTo(new ErrorCodes().toState(0)); 2224: ^ 2225: java/test/org/openqa/selenium/json/JsonTest.java:441: warning: [removal] ErrorCodes in org.openqa.selenium.remote has been deprecated and marked for removal 2226: assertThat(response.getState()).isEqualTo(new ErrorCodes().toState(0)); 2227: ^ 2228: java/test/org/openqa/selenium/json/JsonTest.java:454: warning: [removal] ErrorCodes in org.openqa.selenium.remote has been deprecated and marked for removal 2229: assertThat(response.getState()).isEqualTo(new ErrorCodes().toState(32)); 2230: ^ 2231: (00:47:14) [8,055 / 10,063] 80 / 1692 tests; Testing //rb/spec/integration/selenium/webdriver:error-chrome-bidi; 120s remote, remote-cache ... (50 actions, 44 running) 2232: (00:47:19) [8,056 / 10,063] 81 / 1692 tests; Testing //rb/spec/integration/selenium/webdriver:error-chrome-bidi; 125s remote, remote-cache ... (50 actions, 44 running) 2233: (00:47:26) [8,056 / 10,063] 81 / 1692 tests; Testing //rb/spec/integration/selenium/webdriver:error-chrome-bidi; 132s remote, remote-cache ... (50 actions, 44 running) 2234: (00:47:33) [8,056 / 10,063] 81 / 1692 tests; Testing //rb/spec/integration/selenium/webdriver:error-chrome-bidi; 139s remote, remote-cache ... (50 actions, 45 running) ... 2263: AccessController.doPrivileged( 2264: ^ 2265: (00:49:44) [10,341 / 12,048] 338 / 1692 tests; Testing //py:common-edge-test/selenium/webdriver/common/frame_switching_tests.py; 72s remote, remote-cache ... (49 actions, 45 running) 2266: (00:49:49) [11,206 / 12,870] 401 / 1692 tests; Testing //py:common-edge-test/selenium/webdriver/common/frame_switching_tests.py; 77s remote, remote-cache ... (49 actions, 41 running) 2267: (00:49:54) [11,496 / 13,026] 541 / 1692 tests; Testing //py:common-edge-test/selenium/webdriver/common/frame_switching_tests.py; 82s remote, remote-cache ... (50 actions, 42 running) 2268: (00:49:59) [11,638 / 13,111] 573 / 1692 tests; Testing //py:common-edge-test/selenium/webdriver/common/frame_switching_tests.py; 87s remote, remote-cache ... (50 actions, 45 running) 2269: (00:50:04) [11,794 / 13,184] 618 / 1692 tests; Testing //py:common-edge-test/selenium/webdriver/common/frame_switching_tests.py; 92s remote, remote-cache ... (50 actions, 45 running) 2270: (00:50:06) INFO: From Building java/src/org/openqa/selenium/remote/libapi-class.jar (66 source files): 2271: java/src/org/openqa/selenium/remote/ErrorHandler.java:46: warning: [removal] ErrorCodes in org.openqa.selenium.remote has been deprecated and marked for removal 2272: private final ErrorCodes errorCodes; 2273: ^ 2274: java/src/org/openqa/selenium/remote/ErrorHandler.java:60: warning: [removal] ErrorCodes in org.openqa.selenium.remote has been deprecated and marked for removal 2275: this.errorCodes = new ErrorCodes(); 2276: ^ 2277: java/src/org/openqa/selenium/remote/ErrorHandler.java:68: warning: [removal] ErrorCodes in org.openqa.selenium.remote has been deprecated and marked for removal 2278: public ErrorHandler(ErrorCodes codes, boolean includeServerErrors) { 2279: ^ 2280: java/src/org/openqa/selenium/remote/Response.java:97: warning: [removal] ErrorCodes in org.openqa.selenium.remote has been deprecated and marked for removal 2281: ErrorCodes errorCodes = new ErrorCodes(); 2282: ^ 2283: java/src/org/openqa/selenium/remote/Response.java:97: warning: [removal] ErrorCodes in org.openqa.selenium.remote has been deprecated and marked for removal 2284: ErrorCodes errorCodes = new ErrorCodes(); 2285: ^ 2286: java/src/org/openqa/selenium/remote/ProtocolHandshake.java:181: warning: [removal] ErrorCodes in org.openqa.selenium.remote has been deprecated and marked for removal 2287: response.setStatus(ErrorCodes.SUCCESS); 2288: ^ 2289: java/src/org/openqa/selenium/remote/ProtocolHandshake.java:182: warning: [removal] ErrorCodes in org.openqa.selenium.remote has been deprecated and marked for removal 2290: response.setState(ErrorCodes.SUCCESS_STRING); 2291: ^ 2292: java/src/org/openqa/selenium/remote/W3CHandshakeResponse.java:53: warning: [removal] ErrorCodes in org.openqa.selenium.remote has been deprecated and marked for removal 2293: new ErrorCodes().toStatus((String) rawError, Optional.of(tuple.getStatusCode()))); 2294: ^ 2295: java/src/org/openqa/selenium/remote/W3CHandshakeResponse.java:56: warning: [removal] ErrorCodes in org.openqa.selenium.remote has been deprecated and marked for removal 2296: new ErrorCodes().getExceptionType((String) rawError); 2297: ^ 2298: java/src/org/openqa/selenium/remote/codec/AbstractHttpResponseCodec.java:44: warning: [removal] ErrorCodes in org.openqa.selenium.remote has been deprecated and marked for removal 2299: private final ErrorCodes errorCodes = new ErrorCodes(); 2300: ^ 2301: java/src/org/openqa/selenium/remote/codec/AbstractHttpResponseCodec.java:44: warning: [removal] ErrorCodes in org.openqa.selenium.remote has been deprecated and marked for removal 2302: private final ErrorCodes errorCodes = new ErrorCodes(); 2303: ^ 2304: java/src/org/openqa/selenium/remote/codec/AbstractHttpResponseCodec.java:55: warning: [removal] ErrorCodes in org.openqa.selenium.remote has been deprecated and marked for removal 2305: int status = response.getStatus() == ErrorCodes.SUCCESS ? HTTP_OK : HTTP_INTERNAL_ERROR; 2306: ^ 2307: java/src/org/openqa/selenium/remote/codec/AbstractHttpResponseCodec.java:101: warning: [removal] ErrorCodes in org.openqa.selenium.remote has been deprecated and marked for removal 2308: response.setStatus(ErrorCodes.UNKNOWN_COMMAND); 2309: ^ 2310: java/src/org/openqa/selenium/remote/codec/AbstractHttpResponseCodec.java:103: warning: [removal] ErrorCodes in org.openqa.selenium.remote has been deprecated and marked for removal 2311: response.setStatus(ErrorCodes.UNHANDLED_ERROR); 2312: ^ 2313: java/src/org/openqa/selenium/remote/codec/AbstractHttpResponseCodec.java:124: warning: [removal] ErrorCodes in org.openqa.selenium.remote has been deprecated and marked for removal 2314: response.setStatus(ErrorCodes.SUCCESS); 2315: ^ 2316: java/src/org/openqa/selenium/remote/codec/AbstractHttpResponseCodec.java:125: warning: [removal] ErrorCodes in org.openqa.selenium.remote has been deprecated and marked for removal 2317: response.setState(errorCodes.toState(ErrorCodes.SUCCESS)); 2318: ^ 2319: java/src/org/openqa/selenium/remote/codec/AbstractHttpResponseCodec.java:131: warning: [removal] ErrorCodes in org.openqa.selenium.remote has been deprecated and marked for removal 2320: response.setState(errorCodes.toState(ErrorCodes.SUCCESS)); 2321: ^ 2322: java/src/org/openqa/selenium/remote/codec/w3c/W3CHttpResponseCodec.java:70: warning: [removal] ErrorCodes in org.openqa.selenium.remote has been deprecated and marked for removal 2323: private final ErrorCodes errorCodes = new ErrorCodes(); 2324: ^ 2325: java/src/org/openqa/selenium/remote/codec/w3c/W3CHttpResponseCodec.java:70: warning: [removal] ErrorCodes in org.openqa.selenium.remote has been deprecated and marked for removal 2326: private final ErrorCodes errorCodes = new ErrorCodes(); 2327: ^ 2328: java/src/org/openqa/selenium/remote/codec/w3c/W3CHttpResponseCodec.java:93: warning: [removal] ErrorCodes in org.openqa.selenium.remote has been deprecated and marked for removal 2329: response.setStatus(ErrorCodes.UNKNOWN_COMMAND); 2330: ^ 2331: java/src/org/openqa/selenium/remote/codec/w3c/W3CHttpResponseCodec.java:98: warning: [removal] ErrorCodes in org.openqa.selenium.remote has been deprecated and marked for removal 2332: response.setStatus(ErrorCodes.UNHANDLED_ERROR); 2333: ^ 2334: java/src/org/openqa/selenium/remote/codec/w3c/W3CHttpResponseCodec.java:145: warning: [removal] ErrorCodes in org.openqa.selenium.remote has been deprecated and marked for removal 2335: response.setStatus(ErrorCodes.SUCCESS); 2336: ^ 2337: (00:50:09) [12,667 / 14,779] 632 / 1692 tests; Testing //py:common-edge-test/selenium/webdriver/common/frame_switching_tests.py; 97s remote, remote-cache ... (50 actions, 48 running) 2338: (00:50:15) [12,723 / 14,822] 632 / 1692 tests; Testing //py:common-edge-test/selenium/webdriver/common/frame_switching_tests.py; 103s remote, remote-cache ... (50 actions, 48 running) 2339: (00:50:20) [12,777 / 14,827] 640 / 1692 tests; Testing //py:common-edge-test/selenium/webdriver/common/frame_switching_tests.py; 108s remote, remote-cache ... (50 actions, 49 running) 2340: (00:50:20) FAIL: //rb/spec/integration/selenium/webdriver/chrome:driver-chrome (see /home/runner/.bazel/execroot/_main/bazel-out/k8-fastbuild/testlogs/rb/spec/integration/selenium/webdriver/chrome/driver-chrome/test_attempts/attempt_1.log) 2341: (00:50:20) FAIL: //rb/spec/integration/selenium/webdriver:driver-edge (see /home/runner/.bazel/execroot/_main/bazel-out/k8-fastbuild/testlogs/rb/spec/integration/selenium/webdriver/driver-edge/test.log) 2342: ==================== Test output for //rb/spec/integration/selenium/webdriver:driver-edge: 2343: Running Ruby specs: 2344: FAILED: //rb/spec/integration/selenium/webdriver:driver-edge (Summary) ... 2367: finds by xpath 2368: finds by css selector 2369: finds by tag name 2370: finds above another 2371: finds child element 2372: finds child element by tag name 2373: finds elements with the shortcut syntax 2374: raises if element not found 2375: raises if invalid locator (FAILED - 1) ... 2405: is able to pass element arguments 2406: is able to pass in multiple arguments 2407: execute async script 2408: is able to return arrays of primitives from async scripts 2409: is able to pass multiple arguments to async scripts 2410: times out if the callback is not invoked 2411: Failures: 2412: 1) Selenium::WebDriver::Driver one element raises if invalid locator 2413: Failure/Error: 2414: expect { 2415: driver.find_element(xpath: '*?//-') 2416: }.to raise_error(Error::InvalidSelectorError, /errors#invalid-selector-exception/) 2417: expected Selenium::WebDriver::Error::InvalidSelectorError with message matching /errors#invalid-selector-exception/, got # assert events[6]["type"] == "pointermove" 2643: E AssertionError: assert 'pointerenter' == 'pointermove' 2644: E - pointermove 2645: E + pointerenter 2646: py/test/selenium/webdriver/common/w3c_interaction_tests.py:212: AssertionError 2647: py/test/selenium/webdriver/common/w3c_interaction_tests.py::test_touch_pointer_properties[chrome] PASSED [ 92%] 2648: py/test/selenium/webdriver/common/w3c_interaction_tests.py::test_can_scroll_mouse_wheel[chrome] PASSED [100%] 2649: =========================== short test summary info ============================ 2650: XFAIL py/test/selenium/webdriver/common/w3c_interaction_tests.py::test_double_click[chrome] - reason: Fails on Travis 2651: FAILED py/test/selenium/webdriver/common/w3c_interaction_tests.py::test_pen_pointer_properties[chrome] - AssertionError: assert 'pointerenter' == 'pointermove' 2652: - pointermove 2653: + pointerenter 2654: =================== 1 failed, 12 passed, 1 xfailed in 12.42s =================== ... 2667: py/test/selenium/webdriver/common/w3c_interaction_tests.py::test_can_create_pause_action_on_pointer[chrome] PASSED [ 28%] 2668: py/test/selenium/webdriver/common/w3c_interaction_tests.py::test_can_clear_actions[chrome] PASSED [ 35%] 2669: py/test/selenium/webdriver/common/w3c_interaction_tests.py::test_move_and_click[chrome] PASSED [ 42%] 2670: py/test/selenium/webdriver/common/w3c_interaction_tests.py::test_drag_and_drop[chrome] PASSED [ 50%] 2671: py/test/selenium/webdriver/common/w3c_interaction_tests.py::test_context_click[chrome] PASSED [ 57%] 2672: py/test/selenium/webdriver/common/w3c_interaction_tests.py::test_double_click[chrome] XFAIL [ 64%] 2673: py/test/selenium/webdriver/common/w3c_interaction_tests.py::test_dragging_element_with_mouse_moves_it_to_another_list[chrome] PASSED [ 71%] 2674: py/test/selenium/webdriver/common/w3c_interaction_tests.py::test_dragging_element_with_mouse_fires_events[chrome] PASSED [ 78%] 2675: py/test/selenium/webdriver/common/w3c_interaction_tests.py::test_pen_pointer_properties[chrome] FAILED [ 85%] ... 2703: # The default value of width and height for mouse and pen inputs is 1 2704: assert round(events[3]["width"], 2) == 1 2705: assert round(events[3]["height"], 2) == 1 2706: assert round(events[3]["pressure"], 2) == 0.36 2707: assert events[3]["tiltX"] == -72 2708: assert events[3]["tiltY"] == 9 2709: assert events[3]["twist"] == 86 2710: > assert events[6]["type"] == "pointermove" 2711: E AssertionError: assert 'pointerenter' == 'pointermove' 2712: E - pointermove 2713: E + pointerenter 2714: py/test/selenium/webdriver/common/w3c_interaction_tests.py:212: AssertionError 2715: py/test/selenium/webdriver/common/w3c_interaction_tests.py::test_touch_pointer_properties[chrome] PASSED [ 92%] 2716: py/test/selenium/webdriver/common/w3c_interaction_tests.py::test_can_scroll_mouse_wheel[chrome] PASSED [100%] 2717: =========================== short test summary info ============================ 2718: XFAIL py/test/selenium/webdriver/common/w3c_interaction_tests.py::test_double_click[chrome] - reason: Fails on Travis 2719: FAILED py/test/selenium/webdriver/common/w3c_interaction_tests.py::test_pen_pointer_properties[chrome] - AssertionError: assert 'pointerenter' == 'pointermove' 2720: - pointermove 2721: + pointerenter 2722: =================== 1 failed, 12 passed, 1 xfailed in 12.53s =================== 2723: Execution result: https://gypsum.cluster.engflow.com/actions/executions/ChCH8NdxOLlAv4MANmft6OEEEgdkZWZhdWx0GiUKIK2-nSAloo26EDoxZn2EJCUUFuPEHYlC_UJuhg3LPYE4EJ8D 2724: ================================================================================ 2725: /home/runner/.bazel/execroot/_main/bazel-out/k8-fastbuild/testlogs/py/common-chrome-test/selenium/webdriver/common/w3c_interaction_tests.py/test_attempts/attempt_1.log 2726: (00:50:54) INFO: From Testing //py:common-chrome-test/selenium/webdriver/common/w3c_interaction_tests.py: 2727: (00:50:55) [13,275 / 14,837] 678 / 1692 tests, 2 failed; Testing //py:common-edge-test/selenium/webdriver/common/frame_switching_tests.py; 143s remote, remote-cache ... (50 actions, 49 running) 2728: (00:51:00) [13,350 / 14,837] 685 / 1692 tests, 2 failed; Testing //py:common-edge-test/selenium/webdriver/common/frame_switching_tests.py; 148s remote, remote-cache ... (50 actions, 48 running) 2729: (00:51:04) FAIL: //rb/spec/integration/selenium/webdriver/chrome:driver-chrome (see /home/runner/.bazel/execroot/_main/bazel-out/k8-fastbuild/testlogs/rb/spec/integration/selenium/webdriver/chrome/driver-chrome/test.log) 2730: FAILED: //rb/spec/integration/selenium/webdriver/chrome:driver-chrome (Summary) ... 2740: ci: github 2741: ruby: jruby 9.4.5.0 (3.1.4) 2023-11-02 1abae2700f OpenJDK 64-Bit Server VM 17.0.11+9-LTS on 17.0.11+9-LTS [x86_64-linux] 2742: Selenium::WebDriver::Chrome::Driver 2743: gets and sets network conditions 2744: sets download path 2745: can execute CDP commands 2746: manages network features 2747: casts 2748: can set single permissions (FAILED - 1) ... 2753: saves pdf 2754: #logs 2755: can fetch available log types 2756: can get the browser log 2757: can get the driver log 2758: can get the performance log 2759: Failures: 2760: 1) Selenium::WebDriver::Chrome::Driver can set single permissions 2761: Failure/Error: driver.navigate.to url_for('xhtmlTest.html') 2762: Selenium::WebDriver::Error::UnknownError: 2763: unknown error: cannot determine loading status 2764: from unknown error: bad inspector message: {"error":{"code":-32700,"message":"JSON: comma or map end expected at position 152"}} ... 2804: # ./rb/lib/selenium/webdriver/remote/http/common.rb:101:in `create_response' 2805: # ./rb/lib/selenium/webdriver/remote/http/default.rb:103:in `request' 2806: # ./rb/lib/selenium/webdriver/remote/http/common.rb:67:in `call' 2807: # ./rb/lib/selenium/webdriver/remote/bridge.rb:635:in `execute' 2808: # ./rb/lib/selenium/webdriver/remote/bridge.rb:119:in `get' 2809: # ./rb/lib/selenium/webdriver/common/navigation.rb:32:in `to' 2810: # ./rb/spec/integration/selenium/webdriver/chrome/driver_spec.rb:158:in `block in Chrome' 2811: Finished in 27.81 seconds (files took 2.19 seconds to load) 2812: 14 examples, 1 failure 2813: Failed examples: ... 2823: ci: github 2824: ruby: jruby 9.4.5.0 (3.1.4) 2023-11-02 1abae2700f OpenJDK 64-Bit Server VM 17.0.11+9-LTS on 17.0.11+9-LTS [x86_64-linux] 2825: Selenium::WebDriver::Chrome::Driver 2826: gets and sets network conditions 2827: sets download path 2828: can execute CDP commands 2829: manages network features 2830: casts 2831: can set single permissions (FAILED - 1) ... 2836: saves pdf 2837: #logs 2838: can fetch available log types 2839: can get the browser log 2840: can get the driver log 2841: can get the performance log 2842: Failures: 2843: 1) Selenium::WebDriver::Chrome::Driver can set single permissions 2844: Failure/Error: driver.navigate.to url_for('xhtmlTest.html') 2845: Selenium::WebDriver::Error::UnknownError: 2846: unknown error: cannot determine loading status 2847: from unknown error: bad inspector message: {"error":{"code":-32700,"message":"JSON: comma or map end expected at position 152"}} ... 2887: # ./rb/lib/selenium/webdriver/remote/http/common.rb:101:in `create_response' 2888: # ./rb/lib/selenium/webdriver/remote/http/default.rb:103:in `request' 2889: # ./rb/lib/selenium/webdriver/remote/http/common.rb:67:in `call' 2890: # ./rb/lib/selenium/webdriver/remote/bridge.rb:635:in `execute' 2891: # ./rb/lib/selenium/webdriver/remote/bridge.rb:119:in `get' 2892: # ./rb/lib/selenium/webdriver/common/navigation.rb:32:in `to' 2893: # ./rb/spec/integration/selenium/webdriver/chrome/driver_spec.rb:158:in `block in Chrome' 2894: Finished in 27.26 seconds (files took 2.19 seconds to load) 2895: 14 examples, 1 failure 2896: Failed examples: 2897: rspec ./rb/spec/integration/selenium/webdriver/chrome/driver_spec.rb:157 # Selenium::WebDriver::Chrome::Driver can set single permissions 2898: Execution result: https://gypsum.cluster.engflow.com/actions/executions/ChAMJxwQzdZHioaklhtxOVT1EgdkZWZhdWx0GiUKIH7Qt-fpkm33q1qHkwaFckA_RwfmNTxPertDi2sImQsKEJ8D 2899: ================================================================================ 2900: (00:51:05) [13,426 / 14,837] 693 / 1692 tests, 3 failed; Testing //py:common-edge-test/selenium/webdriver/common/frame_switching_tests.py; 153s remote, remote-cache ... (50 actions, 48 running) 2901: (00:51:10) [13,500 / 14,840] 696 / 1692 tests, 3 failed; Testing //py:common-edge-test/selenium/webdriver/common/frame_switching_tests.py; 158s remote, remote-cache ... (50 actions, 48 running) 2902: (00:51:15) [13,573 / 14,840] 701 / 1692 tests, 3 failed; Testing //py:common-edge-test/selenium/webdriver/common/frame_switching_tests.py; 163s remote, remote-cache ... (50 actions, 48 running) 2903: (00:51:20) [13,635 / 14,840] 708 / 1692 tests, 3 failed; Testing //py:common-edge-test/selenium/webdriver/common/frame_switching_tests.py; 168s remote, remote-cache ... (50 actions, 49 running) 2904: (00:51:26) [13,642 / 14,840] 712 / 1692 tests, 3 failed; Testing //py:common-edge-test/selenium/webdriver/common/frame_switching_tests.py; 174s remote, remote-cache ... (50 actions running) 2905: (00:51:30) FAIL: //rb/spec/integration/selenium/webdriver/firefox:driver-firefox (see /home/runner/.bazel/execroot/_main/bazel-out/k8-fastbuild/testlogs/rb/spec/integration/selenium/webdriver/firefox/driver-firefox/test.log) 2906: FAILED: //rb/spec/integration/selenium/webdriver/firefox:driver-firefox (Summary) ... 2918: Selenium::WebDriver::Firefox::Driver 2919: can get and set context 2920: #print_options 2921: returns base64 for print command 2922: prints with orientation 2923: prints with valid params 2924: prints full page 2925: #install_addon 2926: install and uninstall xpi file (FAILED - 1) 2927: install and uninstall signed zip file (FAILED - 2) 2928: install and uninstall unsigned zip file (FAILED - 3) 2929: install and uninstall signed directory (FAILED - 4) 2930: install and uninstall unsigned directory (FAILED - 5) 2931: Failures: 2932: 1) Selenium::WebDriver::Firefox::Driver#install_addon install and uninstall xpi file 2933: Failure/Error: id = driver.install_addon(ext) 2934: Selenium::WebDriver::Error::UnknownError: 2935: Could not install add-on: /tmp/addon-0b54a3b0-ead2-4ba4-b25a-7daedb6fddba.xpi: ERROR_CORRUPT_FILE: The file appears to be corrupt. 2936: # RemoteError@chrome://remote/content/shared/RemoteError.sys.mjs:8:8 2937: # WebDriverError@chrome://remote/content/shared/webdriver/Errors.sys.mjs:193:5 2938: # UnknownError@chrome://remote/content/shared/webdriver/Errors.sys.mjs:832:5 ... 2943: # ./rb/lib/selenium/webdriver/remote/http/common.rb:101:in `create_response' 2944: # ./rb/lib/selenium/webdriver/remote/http/default.rb:103:in `request' 2945: # ./rb/lib/selenium/webdriver/remote/http/common.rb:67:in `call' 2946: # ./rb/lib/selenium/webdriver/remote/bridge.rb:635:in `execute' 2947: # ./rb/lib/selenium/webdriver/firefox/features.rb:49:in `install_addon' 2948: # ./rb/lib/selenium/webdriver/common/driver_extensions/has_addons.rb:33:in `install_addon' 2949: # ./rb/spec/integration/selenium/webdriver/firefox/driver_spec.rb:68:in `block in Firefox' 2950: 2) Selenium::WebDriver::Firefox::Driver#install_addon install and uninstall signed zip file 2951: Failure/Error: id = driver.install_addon(ext) 2952: Selenium::WebDriver::Error::UnknownError: 2953: Could not install add-on: /tmp/addon-c3cc49e3-8519-4eac-901a-52177af3b061.xpi: ERROR_CORRUPT_FILE: The file appears to be corrupt. 2954: # RemoteError@chrome://remote/content/shared/RemoteError.sys.mjs:8:8 2955: # WebDriverError@chrome://remote/content/shared/webdriver/Errors.sys.mjs:193:5 2956: # UnknownError@chrome://remote/content/shared/webdriver/Errors.sys.mjs:832:5 ... 2961: # ./rb/lib/selenium/webdriver/remote/http/common.rb:101:in `create_response' 2962: # ./rb/lib/selenium/webdriver/remote/http/default.rb:103:in `request' 2963: # ./rb/lib/selenium/webdriver/remote/http/common.rb:67:in `call' 2964: # ./rb/lib/selenium/webdriver/remote/bridge.rb:635:in `execute' 2965: # ./rb/lib/selenium/webdriver/firefox/features.rb:49:in `install_addon' 2966: # ./rb/lib/selenium/webdriver/common/driver_extensions/has_addons.rb:33:in `install_addon' 2967: # ./rb/spec/integration/selenium/webdriver/firefox/driver_spec.rb:83:in `block in Firefox' 2968: 3) Selenium::WebDriver::Firefox::Driver#install_addon install and uninstall unsigned zip file 2969: Failure/Error: injected = driver.find_element(id: 'webextensions-selenium-example') 2970: Selenium::WebDriver::Error::NoSuchElementError: 2971: Unable to locate element: #webextensions\-selenium\-example; For documentation on this error, please visit: https://www.selenium.dev/documentation/webdriver/troubleshooting/errors#no-such-element-exception 2972: # RemoteError@chrome://remote/content/shared/RemoteError.sys.mjs:8:8 2973: # WebDriverError@chrome://remote/content/shared/webdriver/Errors.sys.mjs:193:5 2974: # NoSuchElementError@chrome://remote/content/shared/webdriver/Errors.sys.mjs:511:5 ... 2979: # ./rb/lib/selenium/webdriver/remote/http/common.rb:101:in `create_response' 2980: # ./rb/lib/selenium/webdriver/remote/http/default.rb:103:in `request' 2981: # ./rb/lib/selenium/webdriver/remote/http/common.rb:67:in `call' 2982: # ./rb/lib/selenium/webdriver/remote/bridge.rb:635:in `execute' 2983: # ./rb/lib/selenium/webdriver/remote/bridge.rb:543:in `find_element_by' 2984: # ./rb/lib/selenium/webdriver/common/search_context.rb:71:in `find_element' 2985: # ./rb/spec/integration/selenium/webdriver/firefox/driver_spec.rb:103:in `block in Firefox' 2986: 4) Selenium::WebDriver::Firefox::Driver#install_addon install and uninstall signed directory 2987: Failure/Error: id = driver.install_addon(ext) 2988: Selenium::WebDriver::Error::UnknownError: 2989: Could not install add-on: /tmp/addon-5d78d5bf-c3ce-409f-a500-6cc053773015.xpi: ERROR_CORRUPT_FILE: The file appears to be corrupt. 2990: # RemoteError@chrome://remote/content/shared/RemoteError.sys.mjs:8:8 2991: # WebDriverError@chrome://remote/content/shared/webdriver/Errors.sys.mjs:193:5 2992: # UnknownError@chrome://remote/content/shared/webdriver/Errors.sys.mjs:832:5 ... 2997: # ./rb/lib/selenium/webdriver/remote/http/common.rb:101:in `create_response' 2998: # ./rb/lib/selenium/webdriver/remote/http/default.rb:103:in `request' 2999: # ./rb/lib/selenium/webdriver/remote/http/common.rb:67:in `call' 3000: # ./rb/lib/selenium/webdriver/remote/bridge.rb:635:in `execute' 3001: # ./rb/lib/selenium/webdriver/firefox/features.rb:49:in `install_addon' 3002: # ./rb/lib/selenium/webdriver/common/driver_extensions/has_addons.rb:33:in `install_addon' 3003: # ./rb/spec/integration/selenium/webdriver/firefox/driver_spec.rb:114:in `block in Firefox' 3004: 5) Selenium::WebDriver::Firefox::Driver#install_addon install and uninstall unsigned directory 3005: Failure/Error: injected = driver.find_element(id: 'webextensions-selenium-example') 3006: Selenium::WebDriver::Error::NoSuchElementError: 3007: Unable to locate element: #webextensions\-selenium\-example; For documentation on this error, please visit: https://www.selenium.dev/documentation/webdriver/troubleshooting/errors#no-such-element-exception 3008: # RemoteError@chrome://remote/content/shared/RemoteError.sys.mjs:8:8 3009: # WebDriverError@chrome://remote/content/shared/webdriver/Errors.sys.mjs:193:5 3010: # NoSuchElementError@chrome://remote/content/shared/webdriver/Errors.sys.mjs:511:5 ... 3015: # ./rb/lib/selenium/webdriver/remote/http/common.rb:101:in `create_response' 3016: # ./rb/lib/selenium/webdriver/remote/http/default.rb:103:in `request' 3017: # ./rb/lib/selenium/webdriver/remote/http/common.rb:67:in `call' 3018: # ./rb/lib/selenium/webdriver/remote/bridge.rb:635:in `execute' 3019: # ./rb/lib/selenium/webdriver/remote/bridge.rb:543:in `find_element_by' 3020: # ./rb/lib/selenium/webdriver/common/search_context.rb:71:in `find_element' 3021: # ./rb/spec/integration/selenium/webdriver/firefox/driver_spec.rb:134:in `block in Firefox' 3022: Finished in 55.19 seconds (files took 2.43 seconds to load) 3023: 10 examples, 5 failures 3024: Failed examples: ... 3040: Selenium::WebDriver::Firefox::Driver 3041: can get and set context 3042: #print_options 3043: returns base64 for print command 3044: prints with orientation 3045: prints with valid params 3046: prints full page 3047: #install_addon 3048: install and uninstall xpi file (FAILED - 1) 3049: install and uninstall signed zip file (FAILED - 2) 3050: install and uninstall unsigned zip file 3051: install and uninstall signed directory (FAILED - 3) 3052: install and uninstall unsigned directory 3053: Failures: 3054: 1) Selenium::WebDriver::Firefox::Driver#install_addon install and uninstall xpi file 3055: Failure/Error: id = driver.install_addon(ext) 3056: Selenium::WebDriver::Error::UnknownError: 3057: Could not install add-on: /tmp/addon-99a5b9b0-88c1-4e02-8f3a-d862d3de08dc.xpi: ERROR_CORRUPT_FILE: The file appears to be corrupt. 3058: # RemoteError@chrome://remote/content/shared/RemoteError.sys.mjs:8:8 3059: # WebDriverError@chrome://remote/content/shared/webdriver/Errors.sys.mjs:193:5 3060: # UnknownError@chrome://remote/content/shared/webdriver/Errors.sys.mjs:832:5 ... 3065: # ./rb/lib/selenium/webdriver/remote/http/common.rb:101:in `create_response' 3066: # ./rb/lib/selenium/webdriver/remote/http/default.rb:103:in `request' 3067: # ./rb/lib/selenium/webdriver/remote/http/common.rb:67:in `call' 3068: # ./rb/lib/selenium/webdriver/remote/bridge.rb:635:in `execute' 3069: # ./rb/lib/selenium/webdriver/firefox/features.rb:49:in `install_addon' 3070: # ./rb/lib/selenium/webdriver/common/driver_extensions/has_addons.rb:33:in `install_addon' 3071: # ./rb/spec/integration/selenium/webdriver/firefox/driver_spec.rb:68:in `block in Firefox' 3072: 2) Selenium::WebDriver::Firefox::Driver#install_addon install and uninstall signed zip file 3073: Failure/Error: id = driver.install_addon(ext) 3074: Selenium::WebDriver::Error::UnknownError: 3075: Could not install add-on: /tmp/addon-150375a1-c257-4bae-910c-1713b2de370e.xpi: ERROR_CORRUPT_FILE: The file appears to be corrupt. 3076: # RemoteError@chrome://remote/content/shared/RemoteError.sys.mjs:8:8 3077: # WebDriverError@chrome://remote/content/shared/webdriver/Errors.sys.mjs:193:5 3078: # UnknownError@chrome://remote/content/shared/webdriver/Errors.sys.mjs:832:5 ... 3083: # ./rb/lib/selenium/webdriver/remote/http/common.rb:101:in `create_response' 3084: # ./rb/lib/selenium/webdriver/remote/http/default.rb:103:in `request' 3085: # ./rb/lib/selenium/webdriver/remote/http/common.rb:67:in `call' 3086: # ./rb/lib/selenium/webdriver/remote/bridge.rb:635:in `execute' 3087: # ./rb/lib/selenium/webdriver/firefox/features.rb:49:in `install_addon' 3088: # ./rb/lib/selenium/webdriver/common/driver_extensions/has_addons.rb:33:in `install_addon' 3089: # ./rb/spec/integration/selenium/webdriver/firefox/driver_spec.rb:83:in `block in Firefox' 3090: 3) Selenium::WebDriver::Firefox::Driver#install_addon install and uninstall signed directory 3091: Failure/Error: id = driver.install_addon(ext) 3092: Selenium::WebDriver::Error::UnknownError: 3093: Could not install add-on: /tmp/addon-0e01229b-e408-4c07-8064-1d7829d87638.xpi: ERROR_CORRUPT_FILE: The file appears to be corrupt. 3094: # RemoteError@chrome://remote/content/shared/RemoteError.sys.mjs:8:8 3095: # WebDriverError@chrome://remote/content/shared/webdriver/Errors.sys.mjs:193:5 3096: # UnknownError@chrome://remote/content/shared/webdriver/Errors.sys.mjs:832:5 ... 3101: # ./rb/lib/selenium/webdriver/remote/http/common.rb:101:in `create_response' 3102: # ./rb/lib/selenium/webdriver/remote/http/default.rb:103:in `request' 3103: # ./rb/lib/selenium/webdriver/remote/http/common.rb:67:in `call' 3104: # ./rb/lib/selenium/webdriver/remote/bridge.rb:635:in `execute' 3105: # ./rb/lib/selenium/webdriver/firefox/features.rb:49:in `install_addon' 3106: # ./rb/lib/selenium/webdriver/common/driver_extensions/has_addons.rb:33:in `install_addon' 3107: # ./rb/spec/integration/selenium/webdriver/firefox/driver_spec.rb:114:in `block in Firefox' 3108: Finished in 48.71 seconds (files took 2.24 seconds to load) 3109: 10 examples, 3 failures 3110: Failed examples: 3111: rspec ./rb/spec/integration/selenium/webdriver/firefox/driver_spec.rb:66 # Selenium::WebDriver::Firefox::Driver#install_addon install and uninstall xpi file 3112: rspec ./rb/spec/integration/selenium/webdriver/firefox/driver_spec.rb:81 # Selenium::WebDriver::Firefox::Driver#install_addon install and uninstall signed zip file 3113: rspec ./rb/spec/integration/selenium/webdriver/firefox/driver_spec.rb:111 # Selenium::WebDriver::Firefox::Driver#install_addon install and uninstall signed directory 3114: Execution result: https://gypsum.cluster.engflow.com/actions/executions/ChB8fvClE91FYb8YgaY9j9FIEgdkZWZhdWx0GiUKIDT_I1ZmrE24mxhCPgholNJU2IjphDXBOcaaVZMlICnEEJ8D 3115: ================================================================================ 3116: (00:51:31) [13,650 / 14,840] 719 / 1692 tests, 4 failed; Testing //py:common-edge-test/selenium/webdriver/common/frame_switching_tests.py; 179s remote, remote-cache ... (50 actions, 49 running) 3117: (00:51:39) [13,656 / 14,840] 725 / 1692 tests, 4 failed; Testing //py:common-edge-test/selenium/webdriver/common/frame_switching_tests.py; 187s remote, remote-cache ... (50 actions running) 3118: (00:51:44) [13,670 / 14,848] 733 / 1692 tests, 4 failed; Testing //py:common-edge-test/selenium/webdriver/common/frame_switching_tests.py; 192s remote, remote-cache ... (50 actions, 48 running) 3119: (00:51:52) [13,675 / 14,848] 739 / 1692 tests, 4 failed; Testing //py:common-edge-test/selenium/webdriver/common/frame_switching_tests.py; 200s remote, remote-cache ... (50 actions running) 3120: (00:51:58) [13,680 / 14,848] 744 / 1692 tests, 4 failed; Testing //py:common-edge-test/selenium/webdriver/common/frame_switching_tests.py; 206s remote, remote-cache ... (50 actions running) 3121: (00:52:03) [13,684 / 14,848] 747 / 1692 tests, 4 failed; Testing //py:common-edge-test/selenium/webdriver/common/frame_switching_tests.py; 211s remote, remote-cache ... (50 actions, 48 running) 3122: (00:52:09) [13,699 / 14,850] 753 / 1692 tests, 4 failed; Testing //py:common-edge-test/selenium/webdriver/common/frame_switching_tests.py; 217s remote, remote-cache ... (50 actions running) 3123: (00:52:15) [13,707 / 14,850] 762 / 1692 tests, 4 failed; Testing //py:common-edge-test/selenium/webdriver/common/frame_switching_tests.py; 223s remote, remote-cache ... (50 actions running) 3124: (00:52:20) [13,711 / 14,850] 766 / 1692 tests, 4 failed; Testing //py:common-edge-test/selenium/webdriver/common/frame_switching_tests.py; 228s remote, remote-cache ... (50 actions, 49 running) 3125: (00:52:26) [13,714 / 14,850] 769 / 1692 tests, 4 failed; Testing //py:common-edge-test/selenium/webdriver/common/frame_switching_tests.py; 234s remote, remote-cache ... (50 actions running) 3126: (00:52:31) [13,726 / 14,850] 781 / 1692 tests, 4 failed; Testing //py:common-edge-test/selenium/webdriver/common/frame_switching_tests.py; 239s remote, remote-cache ... (50 actions, 49 running) 3127: (00:52:36) [13,731 / 14,850] 786 / 1692 tests, 4 failed; Testing //py:common-edge-test/selenium/webdriver/common/frame_switching_tests.py; 244s remote, remote-cache ... (50 actions running) 3128: (00:52:41) [13,746 / 14,850] 800 / 1692 tests, 4 failed; Testing //py:common-edge-test/selenium/webdriver/common/frame_switching_tests.py; 249s remote, remote-cache ... (50 actions running) 3129: (00:52:47) [13,750 / 14,850] 805 / 1692 tests, 4 failed; Testing //py:common-edge-test/selenium/webdriver/common/frame_switching_tests.py; 255s remote, remote-cache ... (50 actions running) 3130: (00:52:52) [13,760 / 14,852] 813 / 1692 tests, 4 failed; Testing //py:common-edge-test/selenium/webdriver/common/frame_switching_tests.py; 260s remote, remote-cache ... (50 actions, 49 running) 3131: (00:52:55) FAIL: //java/test/org/openqa/selenium/bidi/input:DefaultKeyboardTest-chrome (see /home/runner/.bazel/execroot/_main/bazel-out/k8-fastbuild/testlogs/java/test/org/openqa/selenium/bidi/input/DefaultKeyboardTest-chrome/test_attempts/attempt_1.log) 3132: (00:52:57) [13,801 / 14,870] 842 / 1692 tests, 4 failed; Testing //py:common-edge-test/selenium/webdriver/common/frame_switching_tests.py; 265s remote, remote-cache ... (50 actions, 49 running) 3133: (00:53:03) [13,807 / 14,873] 846 / 1692 tests, 4 failed; Testing //py:common-edge-test/selenium/webdriver/common/frame_switching_tests.py; 271s remote, remote-cache ... (50 actions running) 3134: (00:53:08) FAIL: //java/test/org/openqa/selenium/bidi/input:DefaultKeyboardTest-chrome-remote (see /home/runner/.bazel/execroot/_main/bazel-out/k8-fastbuild/testlogs/java/test/org/openqa/selenium/bidi/input/DefaultKeyboardTest-chrome-remote/test_attempts/attempt_1.log) 3135: (00:53:09) [13,818 / 14,875] 856 / 1692 tests, 4 failed; Testing //py:common-edge-test/selenium/webdriver/common/frame_switching_tests.py; 277s remote, remote-cache ... (50 actions, 47 running) 3136: (00:53:14) [13,826 / 14,875] 864 / 1692 tests, 4 failed; Testing //py:common-edge-test/selenium/webdriver/common/frame_switching_tests.py; 282s remote, remote-cache ... (50 actions, 49 running) 3137: (00:53:19) [13,830 / 14,875] 869 / 1692 tests, 4 failed; Testing //py:common-edge-test/selenium/webdriver/common/frame_switching_tests.py; 287s remote, remote-cache ... (50 actions running) 3138: (00:53:23) FAIL: //java/test/org/openqa/selenium/bidi/input:DefaultKeyboardTest-chrome (see /home/runner/.bazel/execroot/_main/bazel-out/k8-fastbuild/testlogs/java/test/org/openqa/selenium/bidi/input/DefaultKeyboardTest-chrome/test.log) 3139: ==================== Test output for //java/test/org/openqa/selenium/bidi/input:DefaultKeyboardTest-chrome: 3140: FAILED: //java/test/org/openqa/selenium/bidi/input:DefaultKeyboardTest-chrome (Summary) 3141: /home/runner/.bazel/execroot/_main/bazel-out/k8-fastbuild/testlogs/java/test/org/openqa/selenium/bidi/input/DefaultKeyboardTest-chrome/test.log 3142: Failures: 2 3143: /home/runner/.bazel/execroot/_main/bazel-out/k8-fastbuild/testlogs/java/test/org/openqa/selenium/bidi/input/DefaultKeyboardTest-chrome/test_attempts/attempt_1.log 3144: 1) testSelectionSelectBySymbol() (org.openqa.selenium.bidi.input.DefaultKeyboardTest) 3145: (00:53:23) INFO: From Testing //java/test/org/openqa/selenium/bidi/input:DefaultKeyboardTest-chrome: 3146: org.opentest4j.AssertionFailedError: 3147: expected: "abc d" 3148: but was: "abc ef" 3149: at java.base/jdk.internal.reflect.NativeConstructorAccessorImpl.newInstance0(Native Method) 3150: at java.base/jdk.internal.reflect.NativeConstructorAccessorImpl.newInstance(NativeConstructorAccessorImpl.java:77) 3151: at java.base/jdk.internal.reflect.DelegatingConstructorAccessorImpl.newInstance(DelegatingConstructorAccessorImpl.java:45) 3152: at java.base/java.lang.reflect.Constructor.newInstanceWithCaller(Constructor.java:499) 3153: at org.openqa.selenium.bidi.input.DefaultKeyboardTest.testSelectionSelectBySymbol(DefaultKeyboardTest.java:220) 3154: 2) testSelectionSelectByWord() (org.openqa.selenium.bidi.input.DefaultKeyboardTest) 3155: org.openqa.selenium.TimeoutException: Expected condition failed: waiting for Attribute or property 'value' to be 'abc '. Current value: 'abc ef' (tried for 10 second(s) with 500 milliseconds interval) ... 3162: at org.openqa.selenium.support.ui.FluentWait.until(FluentWait.java:228) 3163: at org.openqa.selenium.testing.SeleniumExtension.waitUntil(SeleniumExtension.java:240) 3164: at org.openqa.selenium.bidi.input.DefaultKeyboardTest.testSelectionSelectByWord(DefaultKeyboardTest.java:248) 3165: Execution result: https://gypsum.cluster.engflow.com/actions/executions/ChBzcTdCNTVE6oXtV7gOOfLhEgdkZWZhdWx0GiUKIGjVX2GHsuEafQSDXdZdDjy0zmqroIy9fglkrtI46lX6EJ8D 3166: ================================================================================ 3167: ==================== Test output for //java/test/org/openqa/selenium/bidi/input:DefaultKeyboardTest-chrome: 3168: Failures: 2 3169: 1) testSelectionSelectBySymbol() (org.openqa.selenium.bidi.input.DefaultKeyboardTest) 3170: org.opentest4j.AssertionFailedError: 3171: expected: "abc d" 3172: but was: "abc ef" 3173: at java.base/jdk.internal.reflect.NativeConstructorAccessorImpl.newInstance0(Native Method) 3174: at java.base/jdk.internal.reflect.NativeConstructorAccessorImpl.newInstance(NativeConstructorAccessorImpl.java:77) 3175: at java.base/jdk.internal.reflect.DelegatingConstructorAccessorImpl.newInstance(DelegatingConstructorAccessorImpl.java:45) 3176: at java.base/java.lang.reflect.Constructor.newInstanceWithCaller(Constructor.java:499) 3177: at org.openqa.selenium.bidi.input.DefaultKeyboardTest.testSelectionSelectBySymbol(DefaultKeyboardTest.java:220) 3178: 2) testSelectionSelectByWord() (org.openqa.selenium.bidi.input.DefaultKeyboardTest) 3179: org.openqa.selenium.TimeoutException: Expected condition failed: waiting for Attribute or property 'value' to be 'abc '. Current value: 'abc ef' (tried for 10 second(s) with 500 milliseconds interval) ... 3183: Capabilities {acceptInsecureCerts: false, browserName: chrome, browserVersion: 126.0.6478.61, chrome: {chromedriverVersion: 126.0.6478.61 (8dc092df54ce..., userDataDir: /tmp/.org.chromium.Chromium...}, fedcm:accounts: true, goog:chromeOptions: {debuggerAddress: localhost:34389}, networkConnectionEnabled: false, pageLoadStrategy: normal, platformName: linux, proxy: Proxy(), se:cdp: ws://localhost:34389/devtoo..., se:cdpVersion: 126.0.6478.61, setWindowRect: true, strictFileInteractability: false, timeouts: {implicit: 0, pageLoad: 300000, script: 30000}, unhandledPromptBehavior: dismiss and notify, webSocketUrl: ws://localhost:18975/sessio..., webauthn:extension:credBlob: true, webauthn:extension:largeBlob: true, webauthn:extension:minPinLength: true, webauthn:extension:prf: true, webauthn:virtualAuthenticators: true} 3184: Session ID: 0ad2b0a8e7728f274d49299197b4dc4f 3185: at org.openqa.selenium.support.ui.WebDriverWait.timeoutException(WebDriverWait.java:84) 3186: at org.openqa.selenium.support.ui.FluentWait.until(FluentWait.java:228) 3187: at org.openqa.selenium.testing.SeleniumExtension.waitUntil(SeleniumExtension.java:240) 3188: at org.openqa.selenium.bidi.input.DefaultKeyboardTest.testSelectionSelectByWord(DefaultKeyboardTest.java:248) 3189: Execution result: https://gypsum.cluster.engflow.com/actions/executions/ChCyUkfBRWJO0aQGW4Sggsz1EgdkZWZhdWx0GiUKIGjVX2GHsuEafQSDXdZdDjy0zmqroIy9fglkrtI46lX6EJ8D 3190: ================================================================================ 3191: (00:53:24) [13,836 / 14,875] 874 / 1692 tests, 5 failed; Testing //py:common-edge-test/selenium/webdriver/common/frame_switching_tests.py; 293s remote, remote-cache ... (50 actions running) 3192: (00:53:31) [13,844 / 14,875] 883 / 1692 tests, 5 failed; Testing //py:common-edge-test/selenium/webdriver/common/frame_switching_tests.py; 299s remote, remote-cache ... (50 actions running) 3193: (00:53:38) [13,854 / 14,875] 892 / 1692 tests, 5 failed; Testing //py:common-edge-test/selenium/webdriver/common/frame_switching_tests.py; 306s remote, remote-cache ... (50 actions running) 3194: (00:53:41) FAIL: //java/test/org/openqa/selenium/bidi/input:DefaultKeyboardTest-chrome-remote (see /home/runner/.bazel/execroot/_main/bazel-out/k8-fastbuild/testlogs/java/test/org/openqa/selenium/bidi/input/DefaultKeyboardTest-chrome-remote/test.log) 3195: FAILED: //java/test/org/openqa/selenium/bidi/input:DefaultKeyboardTest-chrome-remote (Summary) ... 3214: [Capabilities {browserName: chrome, goog:chromeOptions: {args: [disable-infobars, disable-breakpad, disable-dev-shm-usage, no-sandbox], binary: external/_main~pin_browsers..., extensions: [], prefs: {exit_type: None, exited_cleanly: true}}, webSocketUrl: true}] 3215: 00:52:49.060 INFO [LocalNode.newSession] - Session created by the Node. Id: 19c7331582800784c8160a1c705f6f3f, Caps: Capabilities {acceptInsecureCerts: false, browserName: chrome, browserVersion: 126.0.6478.61, chrome: {chromedriverVersion: 126.0.6478.61 (8dc092df54ce..., userDataDir: /tmp/.org.chromium.Chromium...}, fedcm:accounts: true, goog:chromeOptions: {debuggerAddress: localhost:39417}, networkConnectionEnabled: false, pageLoadStrategy: normal, platformName: linux, proxy: Proxy(), se:cdp: ws://127.0.0.1:29405/sessio..., se:cdpVersion: 126.0.6478.61, se:gridWebSocketUrl: ws://localhost:12319/sessio..., setWindowRect: true, strictFileInteractability: false, timeouts: {implicit: 0, pageLoad: 300000, script: 30000}, unhandledPromptBehavior: dismiss and notify, webSocketUrl: ws://127.0.0.1:29405/sessio..., webauthn:extension:credBlob: true, webauthn:extension:largeBlob: true, webauthn:extension:minPinLength: true, webauthn:extension:prf: true, webauthn:virtualAuthenticators: true} 3216: 00:52:49.088 INFO [LocalDistributor.newSession] - Session created by the Distributor. Id: 19c7331582800784c8160a1c705f6f3f 3217: Caps: Capabilities {acceptInsecureCerts: false, browserName: chrome, browserVersion: 126.0.6478.61, chrome: {chromedriverVersion: 126.0.6478.61 (8dc092df54ce..., userDataDir: /tmp/.org.chromium.Chromium...}, fedcm:accounts: true, goog:chromeOptions: {debuggerAddress: localhost:39417}, networkConnectionEnabled: false, pageLoadStrategy: normal, platformName: linux, proxy: Proxy(), se:cdp: ws://127.0.0.1:29405/sessio..., se:cdpVersion: 126.0.6478.61, se:gridWebSocketUrl: ws://localhost:12319/sessio..., setWindowRect: true, strictFileInteractability: false, timeouts: {implicit: 0, pageLoad: 300000, script: 30000}, unhandledPromptBehavior: dismiss and notify, webSocketUrl: ws://127.0.0.1:29405/sessio..., webauthn:extension:credBlob: true, webauthn:extension:largeBlob: true, webauthn:extension:minPinLength: true, webauthn:extension:prf: true, webauthn:virtualAuthenticators: true} 3218: 00:52:49.319 INFO [ProxyNodeWebsockets.createWsEndPoint] - Establishing connection to ws://localhost:12319/session/19c7331582800784c8160a1c705f6f3f 3219: 00:52:49.639 INFO [ProxyNodeWebsockets.createWsEndPoint] - Establishing connection to ws://localhost:39417/devtools/browser/83101864-a8f4-4057-b84b-1d664b1424d1 3220: Failures: 2 3221: 1) testSelectionSelectBySymbol() (org.openqa.selenium.bidi.input.DefaultKeyboardTest) 3222: org.opentest4j.AssertionFailedError: 3223: expected: "abc d" 3224: but was: "abc ef" 3225: at java.base/jdk.internal.reflect.NativeConstructorAccessorImpl.newInstance0(Native Method) 3226: at java.base/jdk.internal.reflect.NativeConstructorAccessorImpl.newInstance(NativeConstructorAccessorImpl.java:77) 3227: at java.base/jdk.internal.reflect.DelegatingConstructorAccessorImpl.newInstance(DelegatingConstructorAccessorImpl.java:45) 3228: at java.base/java.lang.reflect.Constructor.newInstanceWithCaller(Constructor.java:499) 3229: at org.openqa.selenium.bidi.input.DefaultKeyboardTest.testSelectionSelectBySymbol(DefaultKeyboardTest.java:220) 3230: 2) testSelectionSelectByWord() (org.openqa.selenium.bidi.input.DefaultKeyboardTest) 3231: org.openqa.selenium.TimeoutException: Expected condition failed: waiting for Attribute or property 'value' to be 'abc '. Current value: 'abc ef' (tried for 10 second(s) with 500 milliseconds interval) ... 3261: [Capabilities {browserName: chrome, goog:chromeOptions: {args: [disable-infobars, disable-breakpad, disable-dev-shm-usage, no-sandbox], binary: external/_main~pin_browsers..., extensions: [], prefs: {exit_type: None, exited_cleanly: true}}, webSocketUrl: true}] 3262: 00:53:22.580 INFO [LocalNode.newSession] - Session created by the Node. Id: 2b568b419cd5d461471dd6288e17b660, Caps: Capabilities {acceptInsecureCerts: false, browserName: chrome, browserVersion: 126.0.6478.61, chrome: {chromedriverVersion: 126.0.6478.61 (8dc092df54ce..., userDataDir: /tmp/.org.chromium.Chromium...}, fedcm:accounts: true, goog:chromeOptions: {debuggerAddress: localhost:46499}, networkConnectionEnabled: false, pageLoadStrategy: normal, platformName: linux, proxy: Proxy(), se:cdp: ws://127.0.0.1:18448/sessio..., se:cdpVersion: 126.0.6478.61, se:gridWebSocketUrl: ws://localhost:28174/sessio..., setWindowRect: true, strictFileInteractability: false, timeouts: {implicit: 0, pageLoad: 300000, script: 30000}, unhandledPromptBehavior: dismiss and notify, webSocketUrl: ws://127.0.0.1:18448/sessio..., webauthn:extension:credBlob: true, webauthn:extension:largeBlob: true, webauthn:extension:minPinLength: true, webauthn:extension:prf: true, webauthn:virtualAuthenticators: true} 3263: 00:53:22.601 INFO [LocalDistributor.newSession] - Session created by the Distributor. Id: 2b568b419cd5d461471dd6288e17b660 3264: Caps: Capabilities {acceptInsecureCerts: false, browserName: chrome, browserVersion: 126.0.6478.61, chrome: {chromedriverVersion: 126.0.6478.61 (8dc092df54ce..., userDataDir: /tmp/.org.chromium.Chromium...}, fedcm:accounts: true, goog:chromeOptions: {debuggerAddress: localhost:46499}, networkConnectionEnabled: false, pageLoadStrategy: normal, platformName: linux, proxy: Proxy(), se:cdp: ws://127.0.0.1:18448/sessio..., se:cdpVersion: 126.0.6478.61, se:gridWebSocketUrl: ws://localhost:28174/sessio..., setWindowRect: true, strictFileInteractability: false, timeouts: {implicit: 0, pageLoad: 300000, script: 30000}, unhandledPromptBehavior: dismiss and notify, webSocketUrl: ws://127.0.0.1:18448/sessio..., webauthn:extension:credBlob: true, webauthn:extension:largeBlob: true, webauthn:extension:minPinLength: true, webauthn:extension:prf: true, webauthn:virtualAuthenticators: true} 3265: 00:53:22.762 INFO [ProxyNodeWebsockets.createWsEndPoint] - Establishing connection to ws://localhost:28174/session/2b568b419cd5d461471dd6288e17b660 3266: 00:53:22.999 INFO [ProxyNodeWebsockets.createWsEndPoint] - Establishing connection to ws://localhost:46499/devtools/browser/2c65b229-a530-43be-a4b2-8d86a0113a53 3267: Failures: 2 3268: 1) testSelectionSelectBySymbol() (org.openqa.selenium.bidi.input.DefaultKeyboardTest) 3269: org.opentest4j.AssertionFailedError: 3270: expected: "abc d" 3271: but was: "abc ef" 3272: at java.base/jdk.internal.reflect.NativeConstructorAccessorImpl.newInstance0(Native Method) 3273: at java.base/jdk.internal.reflect.NativeConstructorAccessorImpl.newInstance(NativeConstructorAccessorImpl.java:77) 3274: at java.base/jdk.internal.reflect.DelegatingConstructorAccessorImpl.newInstance(DelegatingConstructorAccessorImpl.java:45) 3275: at java.base/java.lang.reflect.Constructor.newInstanceWithCaller(Constructor.java:499) 3276: at org.openqa.selenium.bidi.input.DefaultKeyboardTest.testSelectionSelectBySymbol(DefaultKeyboardTest.java:220) 3277: 2) testSelectionSelectByWord() (org.openqa.selenium.bidi.input.DefaultKeyboardTest) 3278: org.openqa.selenium.TimeoutException: Expected condition failed: waiting for Attribute or property 'value' to be 'abc '. Current value: 'abc ef' (tried for 10 second(s) with 500 milliseconds interval) ... 3285: at org.openqa.selenium.support.ui.FluentWait.until(FluentWait.java:228) 3286: at org.openqa.selenium.testing.SeleniumExtension.waitUntil(SeleniumExtension.java:240) 3287: at org.openqa.selenium.bidi.input.DefaultKeyboardTest.testSelectionSelectByWord(DefaultKeyboardTest.java:248) 3288: 00:53:40.136 INFO [LocalSessionMap.lambda$new$0] - Deleted session from local Session Map, Id: 2b568b419cd5d461471dd6288e17b660 3289: 00:53:40.137 INFO [GridModel.release] - Releasing slot for session id 2b568b419cd5d461471dd6288e17b660 3290: 00:53:40.139 INFO [SessionSlot.stop] - Stopping session 2b568b419cd5d461471dd6288e17b660 3291: Execution result: https://gypsum.cluster.engflow.com/actions/executions/ChDufiiU9MZNf49-FT4YnhldEgdkZWZhdWx0GiUKIC2gI7WuX43w2iDR5p74oIYGwTi5h-tWKWaJCSdaD1qQEJ8D 3292: ================================================================================ 3293: (00:53:43) [13,860 / 14,875] 899 / 1692 tests, 6 failed; Testing //py:common-edge-test/selenium/webdriver/common/frame_switching_tests.py; 311s remote, remote-cache ... (50 actions running) 3294: (00:53:48) [13,875 / 14,875] 913 / 1692 tests, 6 failed; Testing //py:common-edge-test/selenium/webdriver/common/frame_switching_tests.py; 316s remote, remote-cache ... (50 actions, 47 running) 3295: (00:53:54) [13,884 / 14,875] 922 / 1692 tests, 6 failed; Testing //py:common-edge-test/selenium/webdriver/common/frame_switching_tests.py; 322s remote, remote-cache ... (50 actions running) 3296: (00:53:59) [13,889 / 14,875] 927 / 1692 tests, 6 failed; Testing //py:common-edge-test/selenium/webdriver/common/frame_switching_tests.py; 327s remote, remote-cache ... (50 actions running) 3297: (00:54:04) [13,901 / 14,890] 940 / 1692 tests, 6 failed; Testing //java/test/org/openqa/selenium/bidi/browsingcontext:BrowsingContextTest-edge-remote; 247s remote, remote-cache ... (50 actions running) 3298: (00:54:10) [13,918 / 14,890] 957 / 1692 tests, 6 failed; Testing //java/test/org/openqa/selenium/bidi/browsingcontext:BrowsingContextTest-edge-remote; 252s remote, remote-cache ... (50 actions running) 3299: (00:54:15) [13,928 / 14,890] 966 / 1692 tests, 6 failed; Testing //java/test/org/openqa/selenium/bidi/browsingcontext:BrowsingContextTest-edge-remote; 258s remote, remote-cache ... (50 actions, 49 running) 3300: (00:54:20) [13,932 / 14,890] 971 / 1692 tests, 6 failed; Testing //java/test/org/openqa/selenium/bidi/browsingcontext:BrowsingContextTest-edge-remote; 263s remote, remote-cache ... (50 actions, 49 running) 3301: (00:54:25) [13,941 / 14,890] 980 / 1692 tests, 6 failed; Testing //java/test/org/openqa/selenium/bidi/browsingcontext:BrowsingContextTest-edge-remote; 268s remote, remote-cache ... (50 actions running) 3302: (00:54:31) [13,953 / 14,890] 987 / 1692 tests, 6 failed; Testing //java/test/org/openqa/selenium/bidi/browsingcontext:BrowsingContextTest-edge-remote; 273s remote, remote-cache ... (50 actions, 49 running) 3303: (00:54:36) [13,961 / 14,890] 995 / 1692 tests, 6 failed; Testing //java/test/org/openqa/selenium/bidi/browsingcontext:BrowsingContextTest-edge-remote; 278s remote, remote-cache ... (50 actions, 49 running) 3304: (00:54:41) [13,970 / 14,890] 1004 / 1692 tests, 6 failed; Testing //java/test/org/openqa/selenium/bidi/browsingcontext:BrowsingContextTest-edge-remote; 283s remote, remote-cache ... (50 actions, 49 running) 3305: (00:54:46) [13,974 / 14,890] 1009 / 1692 tests, 6 failed; Testing //java/test/org/openqa/selenium/bidi/browsingcontext:BrowsingContextTest-edge-remote; 288s remote, remote-cache ... (50 actions running) 3306: (00:54:51) [13,981 / 14,890] 1016 / 1692 tests, 6 failed; Testing //java/test/org/openqa/selenium/bidi/browsingcontext:BrowsingContextTest-edge-remote; 294s remote, remote-cache ... (50 actions, 49 running) 3307: (00:54:56) [13,993 / 14,890] 1027 / 1692 tests, 6 failed; Testing //java/test/org/openqa/selenium/bidi/browsingcontext:BrowsingContextTest-edge-remote; 299s remote, remote-cache ... (50 actions, 47 running) 3308: (00:55:01) [14,010 / 14,890] 1044 / 1692 tests, 6 failed; Testing //java/test/org/openqa/selenium/bidi/browsingcontext:BrowsingContextTest-edge-remote; 304s remote, remote-cache ... (50 actions, 48 running) 3309: (00:55:06) [14,028 / 14,890] 1062 / 1692 tests, 6 failed; Testing //java/test/org/openqa/selenium/bidi/browsingcontext:BrowsingContextTest-edge-remote; 309s remote, remote-cache ... (50 actions, 49 running) 3310: (00:55:11) [14,036 / 14,890] 1070 / 1692 tests, 6 failed; Testing //java/test/org/openqa/selenium/bidi/browsingcontext:BrowsingContextTest-edge-remote; 314s remote, remote-cache ... (50 actions, 49 running) 3311: (00:55:19) [14,043 / 14,890] 1077 / 1692 tests, 6 failed; Testing //java/test/org/openqa/selenium/bidi/browsingcontext:BrowsingContextTest-edge-remote; 321s remote, remote-cache ... (50 actions running) 3312: (00:55:24) [14,052 / 14,890] 1086 / 1692 tests, 6 failed; Testing //java/test/org/openqa/selenium/bidi/browsingcontext:BrowsingContextTest-edge-remote; 326s remote, remote-cache ... (50 actions, 49 running) 3313: (00:55:29) [14,062 / 14,890] 1096 / 1692 tests, 6 failed; Testing //java/test/org/openqa/selenium/bidi/browsingcontext:BrowsingContextTest-edge-remote; 331s remote, remote-cache ... (50 actions, 48 running) 3314: (00:55:34) [14,076 / 14,890] 1110 / 1692 tests, 6 failed; Testing //java/test/org/openqa/selenium/bidi/browsingcontext:BrowsingContextTest-edge-remote; 337s remote, remote-cache ... (50 actions, 48 running) 3315: (00:55:39) [14,082 / 14,890] 1116 / 1692 tests, 6 failed; Testing //java/test/org/openqa/selenium/bidi/browsingcontext:BrowsingContextTest-edge-remote; 342s remote, remote-cache ... (50 actions running) 3316: (00:55:44) [14,326 / 14,891] 1126 / 1692 tests, 6 failed; Testing //java/test/org/openqa/selenium/bidi/browsingcontext:BrowsingContextTest-edge-remote; 347s remote, remote-cache ... (50 actions, 49 running) 3317: (00:55:49) [14,377 / 14,903] 1159 / 1692 tests, 6 failed; Testing //java/test/org/openqa/selenium/bidi/browsingcontext:BrowsingContextTest-edge-remote; 352s remote, remote-cache ... (50 actions, 46 running) 3318: (00:55:54) [14,417 / 14,940] 1172 / 1692 tests, 6 failed; Testing //java/test/org/openqa/selenium/bidi/browsingcontext:BrowsingContextTest-edge-remote; 357s remote, remote-cache ... (50 actions running) 3319: (00:55:59) [14,444 / 14,954] 1186 / 1692 tests, 6 failed; Testing //java/test/org/openqa/selenium/bidi/browsingcontext:BrowsingContextTest-edge-remote; 362s remote, remote-cache ... (50 actions, 44 running) 3320: (00:56:05) [14,475 / 14,977] 1194 / 1692 tests, 6 failed; Testing //java/test/org/openqa/selenium/bidi/browsingcontext:BrowsingContextTest-edge-remote; 367s remote, remote-cache ... (50 actions running) 3321: (00:56:10) [14,484 / 14,980] 1200 / 1692 tests, 6 failed; Testing //java/test/org/openqa/selenium/bidi/browsingcontext:BrowsingContextTest-edge-remote; 372s remote, remote-cache ... (50 actions, 49 running) 3322: (00:56:15) [14,494 / 14,980] 1210 / 1692 tests, 6 failed; Testing //java/test/org/openqa/selenium/bidi/browsingcontext:BrowsingContextTest-edge-remote; 378s remote, remote-cache ... (50 actions, 48 running) 3323: (00:56:20) [14,528 / 14,984] 1239 / 1692 tests, 6 failed; Testing //java/test/org/openqa/selenium/bidi/browsingcontext:BrowsingContextTest-edge-remote; 383s remote, remote-cache ... (50 actions, 45 running) 3324: (00:56:26) [14,541 / 14,986] 1250 / 1692 tests, 6 failed; Testing //java/test/org/openqa/selenium/bidi/browsingcontext:BrowsingContextTest-edge-remote; 389s remote, remote-cache ... (50 actions running) 3325: (00:56:32) [14,549 / 14,986] 1258 / 1692 tests, 6 failed; Testing //java/test/org/openqa/selenium/bidi/browsingcontext:BrowsingContextTest-edge-remote; 394s remote, remote-cache ... (50 actions running) 3326: (00:56:37) [14,577 / 14,999] 1277 / 1692 tests, 6 failed; Testing //java/test/org/openqa/selenium/bidi/browsingcontext:BrowsingContextTest-edge-remote; 399s remote, remote-cache ... (50 actions, 45 running) 3327: (00:56:42) [14,596 / 15,007] 1290 / 1692 tests, 6 failed; Testing //java/test/org/openqa/selenium/bidi/browsingcontext:BrowsingContextTest-edge; 346s remote, remote-cache ... (50 actions running) 3328: (00:56:47) [14,609 / 15,007] 1302 / 1692 tests, 6 failed; Testing //java/test/org/openqa/selenium/bidi/browsingcontext:BrowsingContextTest-edge; 352s remote, remote-cache ... (50 actions running) 3329: (00:56:48) FAIL: //py:common-chrome-test/selenium/webdriver/common/bidi_tests.py (see /home/runner/.bazel/execroot/_main/bazel-out/k8-fastbuild/testlogs/py/common-chrome-test/selenium/webdriver/common/bidi_tests.py/test_attempts/attempt_1.log) 3330: (00:56:52) [14,637 / 15,014] 1324 / 1692 tests, 6 failed; Testing //java/test/org/openqa/selenium/bidi/browsingcontext:BrowsingContextTest-edge; 357s remote, remote-cache ... (50 actions, 47 running) ... 3334: ==================== Test output for //py:common-chrome-test/selenium/webdriver/common/bidi_tests.py: 3335: ============================= test session starts ============================== 3336: platform linux -- Python 3.8.19, pytest-7.4.2, pluggy-1.3.0 3337: rootdir: /mnt/engflow/worker/work/0/exec/bazel-out/k8-fastbuild/bin/py/common-chrome-test/selenium/webdriver/common/bidi_tests.py.runfiles/_main/py 3338: configfile: pytest.ini 3339: plugins: instafail-0.5.0, trio-0.8.0, mock-3.12.0 3340: collected 4 items 3341: py/test/selenium/webdriver/common/bidi_tests.py::test_check_console_messages[chrome] PASSED [ 25%] 3342: py/test/selenium/webdriver/common/bidi_tests.py::test_check_error_console_messages[chrome] PASSED [ 50%] 3343: py/test/selenium/webdriver/common/bidi_tests.py::test_collect_js_exceptions[chrome] PASSED [ 75%] 3344: py/test/selenium/webdriver/common/bidi_tests.py::test_collect_log_mutations[chrome] FAILED [100%] ... 3359: _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ 3360: ../rules_python~~python~python_3_8_x86_64-unknown-linux-gnu/lib/python3.8/contextlib.py:178: in __aexit__ 3361: await self.gen.__anext__() 3362: py/selenium/webdriver/common/log.py:84: in mutation_events 3363: elements: list = self.driver.find_elements(By.CSS_SELECTOR, f"*[data-__webdriver_id={payload['target']}") 3364: py/selenium/webdriver/remote/webdriver.py:775: in find_elements 3365: return self.execute(Command.FIND_ELEMENTS, {"using": by, "value": value})["value"] or [] 3366: py/selenium/webdriver/remote/webdriver.py:351: in execute 3367: self.error_handler.check_response(response) 3368: _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ 3369: self = 3370: response = {'status': 400, 'value': '{"value":{"error":"invalid selector","message":"invalid selector\\nfrom javascript error: {\...wn>\\n#19 0x559e43d1e280 \\u003Cunknown>\\n#20 0x559e43d2d7dc \\u003Cunknown>\\n#21 0x7fcfe58a2609 start_thread\\n"}}'} 3371: def check_response(self, response: Dict[str, Any]) -> None: 3372: """Checks that a JSON response from the WebDriver does not have an 3373: error. 3374: :Args: 3375: - response - The JSON response from the WebDriver server as a dictionary 3376: object. 3377: :Raises: If the response contains an error message. 3378: """ 3379: status = response.get("status", None) 3380: if not status or status == ErrorCode.SUCCESS: ... 3386: if isinstance(status, int): 3387: value_json = response.get("value", None) 3388: if value_json and isinstance(value_json, str): 3389: import json 3390: try: 3391: value = json.loads(value_json) 3392: if len(value) == 1: 3393: value = value["value"] 3394: status = value.get("error", None) 3395: if not status: 3396: status = value.get("status", ErrorCode.UNKNOWN_ERROR) 3397: message = value.get("value") or value.get("message") 3398: if not isinstance(message, str): 3399: value = message 3400: message = message.get("message") 3401: else: 3402: message = value.get("message", None) 3403: except ValueError: 3404: pass 3405: exception_class: Type[WebDriverException] 3406: e = ErrorCode() 3407: error_codes = [item for item in dir(e) if not item.startswith("__")] 3408: for error_code in error_codes: 3409: error_info = getattr(ErrorCode, error_code) 3410: if isinstance(error_info, list) and status in error_info: 3411: exception_class = getattr(ExceptionMapping, error_code, WebDriverException) ... 3435: if line: 3436: file = f"{file}:{line}" 3437: meth = frame.get("methodName", "") 3438: if "className" in frame: 3439: meth = f"{frame['className']}.{meth}" 3440: msg = " at %s (%s)" 3441: msg = msg % (meth, file) 3442: stacktrace.append(msg) 3443: except TypeError: ... 3446: alert_text = None 3447: if "data" in value: 3448: alert_text = value["data"].get("text") 3449: elif "alert" in value: 3450: alert_text = value["alert"].get("text") 3451: raise exception_class(message, screen, stacktrace, alert_text) # type: ignore[call-arg] # mypy is not smart enough here 3452: > raise exception_class(message, screen, stacktrace) 3453: E selenium.common.exceptions.InvalidSelectorException: Message: invalid selector 3454: E from javascript error: {"status":32,"value":"An invalid or illegal selector was specified"} 3455: E (Session info: chrome=126.0.6478.61); For documentation on this error, please visit: https://www.selenium.dev/documentation/webdriver/troubleshooting/errors#invalid-selector-exception ... 3471: E #14 0x559e43cf8921 3472: E #15 0x559e43ce036e 3473: E #16 0x559e43cf9482 3474: E #17 0x559e43cc4ccf 3475: E #18 0x559e43d1e0a8 3476: E #19 0x559e43d1e280 3477: E #20 0x559e43d2d7dc 3478: E #21 0x7fcfe58a2609 start_thread 3479: py/selenium/webdriver/remote/errorhandler.py:229: InvalidSelectorException 3480: =========================== short test summary info ============================ 3481: FAILED py/test/selenium/webdriver/common/bidi_tests.py::test_collect_log_mutations[chrome] - selenium.common.exceptions.InvalidSelectorException: Message: invalid selector 3482: from javascript error: {"status":32,"value":"An invalid or illegal selector was specified"} 3483: (Session info: chrome=126.0.6478.61); For documentation on this error, please visit: https://www.selenium.dev/documentation/webdriver/troubleshooting/errors#invalid-selector-exception ... 3499: #14 0x559e43cf8921 3500: #15 0x559e43ce036e 3501: #16 0x559e43cf9482 3502: #17 0x559e43cc4ccf 3503: #18 0x559e43d1e0a8 3504: #19 0x559e43d1e280 3505: #20 0x559e43d2d7dc 3506: #21 0x7fcfe58a2609 start_thread 3507: ========================= 1 failed, 3 passed in 4.57s ========================== 3508: Execution result: https://gypsum.cluster.engflow.com/actions/executions/ChDpECPcLrlFdL1eTdR8GS0cEgdkZWZhdWx0GiUKIBX7giiaMXEcqRPZPdJxSVy0lAaQ7u-x7ckQccIwJNiHEJ8D 3509: ================================================================================ 3510: (00:56:57) [14,645 / 15,014] 1332 / 1692 tests, 6 failed; Testing //java/test/org/openqa/selenium/bidi/browsingcontext:BrowsingContextTest-edge; 362s remote, remote-cache ... (50 actions running) 3511: (00:57:02) [14,675 / 15,014] 1347 / 1692 tests, 6 failed; Testing //java/test/org/openqa/selenium/bidi/browsingcontext:BrowsingContextTest-edge; 367s remote, remote-cache ... (50 actions, 48 running) 3512: (00:57:03) INFO: From Compiling webdriver: 3513: bazel-out/k8-fastbuild-ST-63230e73852e/bin/dotnet/src/webdriver/cdp/v125/Target/TargetInfo.cs(21,149): warning CS1570: XML comment has badly formed XML -- 'Reference to undefined entity 'q'.' 3514: bazel-out/k8-fastbuild-ST-63230e73852e/bin/dotnet/src/webdriver/cdp/v123/Target/TargetInfo.cs(30,149): warning CS1570: XML comment has badly formed XML -- 'Reference to undefined entity 'q'.' 3515: bazel-out/k8-fastbuild-ST-63230e73852e/bin/dotnet/src/webdriver/cdp/v124/Target/TargetInfo.cs(21,149): warning CS1570: XML comment has badly formed XML -- 'Reference to undefined entity 'q'.' 3516: (00:57:07) [14,731 / 15,014] 1352 / 1692 tests, 6 failed; Testing //java/test/org/openqa/selenium/bidi/browsingcontext:BrowsingContextTest; 364s remote, remote-cache ... (50 actions, 49 running) 3517: (00:57:12) [14,808 / 15,142] 1357 / 1692 tests, 6 failed; Testing //java/test/org/openqa/selenium/bidi/browsingcontext:BrowsingContextTest; 369s remote, remote-cache ... (50 actions, 48 running) 3518: (00:57:18) [14,919 / 15,247] 1365 / 1692 tests, 6 failed; Testing //java/test/org/openqa/selenium/bidi/browsingcontext:BrowsingContextTest; 375s remote, remote-cache ... (50 actions running) 3519: (00:57:23) [14,937 / 15,247] 1382 / 1692 tests, 6 failed; Testing //java/test/org/openqa/selenium/bidi/browsingcontext:BrowsingContextTest; 380s remote, remote-cache ... (50 actions, 47 running) 3520: (00:57:28) [14,952 / 15,247] 1397 / 1692 tests, 6 failed; Testing //java/test/org/openqa/selenium/bidi/browsingcontext:BrowsingContextTest; 385s remote, remote-cache ... (50 actions, 49 running) 3521: (00:57:30) FAIL: //java/test/org/openqa/selenium/firefox:RemoteFirefoxDriverTest (see /home/runner/.bazel/execroot/_main/bazel-out/k8-fastbuild/testlogs/java/test/org/openqa/selenium/firefox/RemoteFirefoxDriverTest/test_attempts/attempt_1.log) 3522: (00:57:30) FAIL: //java/test/org/openqa/selenium/firefox:RemoteFirefoxDriverTest-remote (see /home/runner/.bazel/execroot/_main/bazel-out/k8-fastbuild/testlogs/java/test/org/openqa/selenium/firefox/RemoteFirefoxDriverTest-remote/test_attempts/attempt_1.log) 3523: (00:57:33) [14,963 / 15,247] 1408 / 1692 tests, 6 failed; Testing //java/test/org/openqa/selenium/bidi/browsingcontext:BrowsingContextTest; 390s remote, remote-cache ... (50 actions, 48 running) 3524: (00:57:39) [14,967 / 15,247] 1412 / 1692 tests, 6 failed; Testing //java/test/org/openqa/selenium/bidi/browsingcontext:BrowsingContextTest; 396s remote, remote-cache ... (50 actions running) 3525: (00:57:44) [14,972 / 15,247] 1417 / 1692 tests, 6 failed; Testing //java/test/org/openqa/selenium/bidi/browsingcontext:BrowsingContextTest; 401s remote, remote-cache ... (50 actions running) 3526: (00:57:49) [14,980 / 15,247] 1425 / 1692 tests, 6 failed; Testing //java/test/org/openqa/selenium/bidi/browsingcontext:BrowsingContextTest; 406s remote, remote-cache ... (50 actions running) 3527: (00:57:53) FAIL: //java/test/org/openqa/selenium/firefox:RemoteFirefoxDriverTest (see /home/runner/.bazel/execroot/_main/bazel-out/k8-fastbuild/testlogs/java/test/org/openqa/selenium/firefox/RemoteFirefoxDriverTest/test.log) 3528: FAILED: //java/test/org/openqa/selenium/firefox:RemoteFirefoxDriverTest (Summary) 3529: /home/runner/.bazel/execroot/_main/bazel-out/k8-fastbuild/testlogs/java/test/org/openqa/selenium/firefox/RemoteFirefoxDriverTest/test.log 3530: /home/runner/.bazel/execroot/_main/bazel-out/k8-fastbuild/testlogs/java/test/org/openqa/selenium/firefox/RemoteFirefoxDriverTest/test_attempts/attempt_1.log 3531: (00:57:53) INFO: From Testing //java/test/org/openqa/selenium/firefox:RemoteFirefoxDriverTest: 3532: ==================== Test output for //java/test/org/openqa/selenium/firefox:RemoteFirefoxDriverTest: 3533: Restarting driver after failed test shouldAllowRemoteWebDriverBuilderToUseHasExtensions() 3534: Failures: 1 3535: 1) shouldAllowRemoteWebDriverBuilderToUseHasExtensions() (org.openqa.selenium.firefox.RemoteFirefoxDriverTest) 3536: org.openqa.selenium.WebDriverException: Could not install add-on: /tmp/addon-c840f7bf-f7ad-4d9e-b6be-b37f88a68ad9.xpi: ERROR_CORRUPT_FILE: The file appears to be corrupt. ... 3540: Command: [1b1f286e-5c80-46ab-930b-902386b40f8a, installExtension {temporary=false, addon=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}] 3541: Capabilities {acceptInsecureCerts: true, browserName: firefox, browserVersion: 127.0, moz:accessibilityChecks: false, moz:buildID: 20240606181944, moz:debuggerAddress: 127.0.0.1:23085, moz:geckodriverVersion: 0.34.0, moz:headless: false, moz:platformVersion: 6.1.0-21-cloud-amd64, moz:processID: 8206, moz:profile: /tmp/rust_mozprofile9qvk1K, moz:shutdownTimeout: 60000, moz:webdriverClick: true, moz:windowless: false, pageLoadStrategy: normal, platformName: linux, proxy: Proxy(), se:cdp: ws://127.0.0.1:23085/devtoo..., se:cdpVersion: 85.0, setWindowRect: true, strictFileInteractability: false, timeouts: {implicit: 0, pageLoad: 300000, script: 30000}, unhandledPromptBehavior: dismiss and notify, userAgent: Mozilla/5.0 (X11; Linux x86..., webSocketUrl: ws://127.0.0.1:23085/sessio...} 3542: Session ID: 1b1f286e-5c80-46ab-930b-902386b40f8a 3543: at java.base/jdk.internal.reflect.NativeConstructorAccessorImpl.newInstance0(Native Method) 3544: at java.base/jdk.internal.reflect.NativeConstructorAccessorImpl.newInstance(NativeConstructorAccessorImpl.java:77) 3545: at java.base/jdk.internal.reflect.DelegatingConstructorAccessorImpl.newInstance(DelegatingConstructorAccessorImpl.java:45) 3546: at java.base/java.lang.reflect.Constructor.newInstanceWithCaller(Constructor.java:499) 3547: at java.base/java.lang.reflect.Constructor.newInstance(Constructor.java:480) 3548: at org.openqa.selenium.remote.ErrorCodec.decode(ErrorCodec.java:167) ... 3556: at org.openqa.selenium.remote.RemoteExecuteMethod.execute(RemoteExecuteMethod.java:39) 3557: at org.openqa.selenium.firefox.AddHasExtensions$1.installExtension(AddHasExtensions.java:99) 3558: at org.openqa.selenium.firefox.AddHasExtensions$1.installExtension(AddHasExtensions.java:79) 3559: at org.openqa.selenium.firefox.FirefoxDriver.installExtension(FirefoxDriver.java:269) 3560: at org.openqa.selenium.firefox.RemoteFirefoxDriverTest.shouldAllowRemoteWebDriverBuilderToUseHasExtensions(RemoteFirefoxDriverTest.java:42) 3561: Execution result: https://gypsum.cluster.engflow.com/actions/executions/ChAwgrAVp8NKbL7-_9SWKCfHEgdkZWZhdWx0GiUKICC9s2Gz6yc99DP_slYMNKGbQ9DBYDp-2g_83TSGNkp1EJ8D 3562: ================================================================================ 3563: ==================== Test output for //java/test/org/openqa/selenium/firefox:RemoteFirefoxDriverTest: 3564: Restarting driver after failed test shouldAllowRemoteWebDriverBuilderToUseHasExtensions() 3565: Failures: 1 3566: 1) shouldAllowRemoteWebDriverBuilderToUseHasExtensions() (org.openqa.selenium.firefox.RemoteFirefoxDriverTest) 3567: org.openqa.selenium.WebDriverException: Could not install add-on: /tmp/addon-74167b25-072e-4265-91ef-b1a69f49f454.xpi: ERROR_CORRUPT_FILE: The file appears to be corrupt. ... 3571: Command: [69a07b92-ea16-41b8-b6d8-af95e1947f9b, installExtension {addon=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, temporary=false}] 3572: Capabilities {acceptInsecureCerts: true, browserName: firefox, browserVersion: 127.0, moz:accessibilityChecks: false, moz:buildID: 20240606181944, moz:debuggerAddress: 127.0.0.1:4980, moz:geckodriverVersion: 0.34.0, moz:headless: false, moz:platformVersion: 6.1.0-21-cloud-amd64, moz:processID: 8953, moz:profile: /tmp/rust_mozprofileh2RuGV, moz:shutdownTimeout: 60000, moz:webdriverClick: true, moz:windowless: false, pageLoadStrategy: normal, platformName: linux, proxy: Proxy(), se:cdp: ws://127.0.0.1:4980/devtool..., se:cdpVersion: 85.0, setWindowRect: true, strictFileInteractability: false, timeouts: {implicit: 0, pageLoad: 300000, script: 30000}, unhandledPromptBehavior: dismiss and notify, userAgent: Mozilla/5.0 (X11; Linux x86..., webSocketUrl: ws://127.0.0.1:4980/session...} 3573: Session ID: 69a07b92-ea16-41b8-b6d8-af95e1947f9b 3574: at java.base/jdk.internal.reflect.NativeConstructorAccessorImpl.newInstance0(Native Method) 3575: at java.base/jdk.internal.reflect.NativeConstructorAccessorImpl.newInstance(NativeConstructorAccessorImpl.java:77) 3576: at java.base/jdk.internal.reflect.DelegatingConstructorAccessorImpl.newInstance(DelegatingConstructorAccessorImpl.java:45) 3577: at java.base/java.lang.reflect.Constructor.newInstanceWithCaller(Constructor.java:499) 3578: at java.base/java.lang.reflect.Constructor.newInstance(Constructor.java:480) 3579: at org.openqa.selenium.remote.ErrorCodec.decode(ErrorCodec.java:167) ... 3586: at org.openqa.selenium.remote.RemoteWebDriver.execute(RemoteWebDriver.java:591) 3587: at org.openqa.selenium.remote.RemoteExecuteMethod.execute(RemoteExecuteMethod.java:39) 3588: at org.openqa.selenium.firefox.AddHasExtensions$1.installExtension(AddHasExtensions.java:99) 3589: at org.openqa.selenium.firefox.AddHasExtensions$1.installExtension(AddHasExtensions.java:79) 3590: at org.openqa.selenium.firefox.FirefoxDriver.installExtension(FirefoxDriver.java:269) 3591: at org.openqa.selenium.firefox.RemoteFirefoxDriverTest.shouldAllowRemoteWebDriverBuilderToUseHasExtensions(RemoteFirefoxDriverTest.java:42) 3592: Execution result: https://gypsum.cluster.engflow.com/actions/executions/ChCmOD-PG11CApif65oXtLndEgdkZWZhdWx0GiUKICC9s2Gz6yc99DP_slYMNKGbQ9DBYDp-2g_83TSGNkp1EJ8D 3593: ================================================================================ 3594: (00:57:54) [14,992 / 15,247] 1437 / 1692 tests, 7 failed; Testing //java/test/org/openqa/selenium/bidi/browsingcontext:BrowsingContextTest; 411s remote, remote-cache ... (50 actions running) 3595: (00:57:59) [15,003 / 15,247] 1448 / 1692 tests, 7 failed; Testing //java/test/org/openqa/selenium/bidi/browsingcontext:BrowsingContextTest; 416s remote, remote-cache ... (50 actions, 48 running) 3596: (00:58:04) [15,009 / 15,247] 1454 / 1692 tests, 7 failed; Testing //java/test/org/openqa/selenium/bidi/browsingcontext:BrowsingContextTest; 421s remote, remote-cache ... (50 actions, 49 running) 3597: (00:58:06) FAIL: //java/test/org/openqa/selenium/firefox:RemoteFirefoxDriverTest-remote (see /home/runner/.bazel/execroot/_main/bazel-out/k8-fastbuild/testlogs/java/test/org/openqa/selenium/firefox/RemoteFirefoxDriverTest-remote/test.log) 3598: FAILED: //java/test/org/openqa/selenium/firefox:RemoteFirefoxDriverTest-remote (Summary) ... 3624: 00:57:19.699 INFO [LocalDistributor.newSession] - Session request received by the Distributor: 3625: [Capabilities {acceptInsecureCerts: true, browserName: firefox, moz:debuggerAddress: true, moz:firefoxOptions: {binary: external/_main~pin_browsers..., prefs: {remote.active-protocols: 3}}, webSocketUrl: true}] 3626: 00:57:22.843 INFO [LocalNode.newSession] - Session created by the Node. Id: ba91696f-e966-472e-ac8d-bfffb35c3194, Caps: Capabilities {acceptInsecureCerts: true, browserName: firefox, browserVersion: 127.0, moz:accessibilityChecks: false, moz:buildID: 20240606181944, moz:debuggerAddress: 127.0.0.1:7181, moz:firefoxOptions: {binary: external/_main~pin_browsers..., prefs: {remote.active-protocols: 3}}, moz:geckodriverVersion: 0.34.0, moz:headless: false, moz:platformVersion: 6.1.0-21-cloud-amd64, moz:processID: 7542, moz:profile: /tmp/rust_mozprofileiMm9lf, moz:shutdownTimeout: 60000, moz:webdriverClick: true, moz:windowless: false, pageLoadStrategy: normal, platformName: linux, proxy: Proxy(), se:cdp: ws://127.0.0.1:10619/sessio..., se:cdpVersion: 85.0, se:gridWebSocketUrl: ws://127.0.0.1:7181/session..., setWindowRect: true, strictFileInteractability: false, timeouts: {implicit: 0, pageLoad: 300000, script: 30000}, unhandledPromptBehavior: dismiss and notify, userAgent: Mozilla/5.0 (X11; Linux x86..., webSocketUrl: ws://127.0.0.1:10619/sessio...} 3627: 00:57:22.857 INFO [LocalDistributor.newSession] - Session created by the Distributor. Id: ba91696f-e966-472e-ac8d-bfffb35c3194 3628: Caps: Capabilities {acceptInsecureCerts: true, browserName: firefox, browserVersion: 127.0, moz:accessibilityChecks: false, moz:buildID: 20240606181944, moz:debuggerAddress: 127.0.0.1:7181, moz:firefoxOptions: {binary: external/_main~pin_browsers..., prefs: {remote.active-protocols: 3}}, moz:geckodriverVersion: 0.34.0, moz:headless: false, moz:platformVersion: 6.1.0-21-cloud-amd64, moz:processID: 7542, moz:profile: /tmp/rust_mozprofileiMm9lf, moz:shutdownTimeout: 60000, moz:webdriverClick: true, moz:windowless: false, pageLoadStrategy: normal, platformName: linux, proxy: Proxy(), se:cdp: ws://127.0.0.1:10619/sessio..., se:cdpVersion: 85.0, se:gridWebSocketUrl: ws://127.0.0.1:7181/session..., setWindowRect: true, strictFileInteractability: false, timeouts: {implicit: 0, pageLoad: 300000, script: 30000}, unhandledPromptBehavior: dismiss and notify, userAgent: Mozilla/5.0 (X11; Linux x86..., webSocketUrl: ws://127.0.0.1:10619/sessio...} 3629: 00:57:22.960 INFO [ProxyNodeWebsockets.createWsEndPoint] - Establishing connection to ws://127.0.0.1:7181/devtools/browser/dfc41302-6444-42fe-9130-552230e51985 3630: 00:57:22.991 INFO [ProxyNodeWebsockets.createWsEndPoint] - Establishing connection to ws://127.0.0.1:7181/session/ba91696f-e966-472e-ac8d-bfffb35c3194 3631: 00:57:23.186 WARN [SeleniumSpanExporter$1.lambda$export$3] - {"traceId": "f9f119bc5bb5331a4a0b3a50dde5faf0","eventTime": 1718326643184388254,"eventName": "HTTP request execution complete","attributes": {"http.flavor": 1,"http.handler_class": "org.openqa.selenium.remote.http.Route$PredicatedRoute","http.host": "127.0.0.1:10619","http.method": "POST","http.request_content_length": "6725","http.scheme": "HTTP","http.status_code": 500,"http.target": "\u002fsession\u002fba91696f-e966-472e-ac8d-bfffb35c3194\u002fmoz\u002faddon\u002finstall","http.user_agent": "selenium\u002f4.22.0-SNAPSHOT (java unix)"}} 3632: Restarting driver after failed test shouldAllowRemoteWebDriverBuilderToUseHasExtensions() ... 3640: Caps: Capabilities {acceptInsecureCerts: true, browserName: firefox, browserVersion: 127.0, moz:accessibilityChecks: false, moz:buildID: 20240606181944, moz:debuggerAddress: 127.0.0.1:9133, moz:firefoxOptions: {binary: external/_main~pin_browsers..., prefs: {browser.download.dir: foo/bar, remote.active-protocols: 3}}, moz:geckodriverVersion: 0.34.0, moz:headless: false, moz:platformVersion: 6.1.0-21-cloud-amd64, moz:processID: 7790, moz:profile: /tmp/rust_mozprofilexHQ0Sv, moz:shutdownTimeout: 60000, moz:webdriverClick: true, moz:windowless: false, pageLoadStrategy: normal, platformName: linux, proxy: Proxy(), se:cdp: ws://127.0.0.1:10619/sessio..., se:cdpVersion: 85.0, se:gridWebSocketUrl: ws://127.0.0.1:9133/session..., setWindowRect: true, strictFileInteractability: false, timeouts: {implicit: 0, pageLoad: 300000, script: 30000}, unhandledPromptBehavior: dismiss and notify, userAgent: Mozilla/5.0 (X11; Linux x86..., webSocketUrl: ws://127.0.0.1:10619/sessio...} 3641: 00:57:27.833 INFO [ProxyNodeWebsockets.createWsEndPoint] - Establishing connection to ws://127.0.0.1:9133/devtools/browser/51a9201f-7e6d-493a-91fb-74492437c977 3642: 00:57:27.893 INFO [ProxyNodeWebsockets.createWsEndPoint] - Establishing connection to ws://127.0.0.1:9133/session/830e8cee-6a7a-4712-ada3-c5ed8bd9f4c6 3643: 00:57:29.293 INFO [LocalSessionMap.lambda$new$0] - Deleted session from local Session Map, Id: 830e8cee-6a7a-4712-ada3-c5ed8bd9f4c6 3644: 00:57:29.294 INFO [GridModel.release] - Releasing slot for session id 830e8cee-6a7a-4712-ada3-c5ed8bd9f4c6 3645: 00:57:29.294 INFO [SessionSlot.stop] - Stopping session 830e8cee-6a7a-4712-ada3-c5ed8bd9f4c6 3646: Failures: 1 3647: 1) shouldAllowRemoteWebDriverBuilderToUseHasExtensions() (org.openqa.selenium.firefox.RemoteFirefoxDriverTest) 3648: org.openqa.selenium.WebDriverException: Could not install add-on: /tmp/addon-c96b371e-dbca-4fa6-8f2d-e4fb8641df48.xpi: ERROR_CORRUPT_FILE: The file appears to be corrupt. ... 3652: Command: [ba91696f-e966-472e-ac8d-bfffb35c3194, installExtension {temporary=false, addon=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}] 3653: Capabilities {acceptInsecureCerts: true, browserName: firefox, browserVersion: 127.0, moz:accessibilityChecks: false, moz:buildID: 20240606181944, moz:debuggerAddress: 127.0.0.1:7181, moz:firefoxOptions: {binary: external/_main~pin_browsers..., prefs: {remote.active-protocols: 3}}, moz:geckodriverVersion: 0.34.0, moz:headless: false, moz:platformVersion: 6.1.0-21-cloud-amd64, moz:processID: 7542, moz:profile: /tmp/rust_mozprofileiMm9lf, moz:shutdownTimeout: 60000, moz:webdriverClick: true, moz:windowless: false, pageLoadStrategy: normal, platformName: linux, proxy: Proxy(), se:cdp: ws://127.0.0.1:10619/sessio..., se:cdpVersion: 85.0, se:gridWebSocketUrl: ws://127.0.0.1:7181/session..., setWindowRect: true, strictFileInteractability: false, timeouts: {implicit: 0, pageLoad: 300000, script: 30000}, unhandledPromptBehavior: dismiss and notify, userAgent: Mozilla/5.0 (X11; Linux x86..., webSocketUrl: ws://127.0.0.1:10619/sessio...} 3654: Session ID: ba91696f-e966-472e-ac8d-bfffb35c3194 3655: at java.base/jdk.internal.reflect.NativeConstructorAccessorImpl.newInstance0(Native Method) 3656: at java.base/jdk.internal.reflect.NativeConstructorAccessorImpl.newInstance(NativeConstructorAccessorImpl.java:77) 3657: at java.base/jdk.internal.reflect.DelegatingConstructorAccessorImpl.newInstance(DelegatingConstructorAccessorImpl.java:45) 3658: at java.base/java.lang.reflect.Constructor.newInstanceWithCaller(Constructor.java:499) 3659: at java.base/java.lang.reflect.Constructor.newInstance(Constructor.java:480) 3660: at org.openqa.selenium.remote.ErrorCodec.decode(ErrorCodec.java:167) ... 3698: 00:57:53.489 INFO [LocalDistributor.newSession] - Session request received by the Distributor: 3699: [Capabilities {acceptInsecureCerts: true, browserName: firefox, moz:debuggerAddress: true, moz:firefoxOptions: {binary: external/_main~pin_browsers..., prefs: {remote.active-protocols: 3}}, webSocketUrl: true}] 3700: 00:57:57.674 INFO [LocalNode.newSession] - Session created by the Node. Id: 5f538fe4-9191-40f7-be26-2ef672aac171, Caps: Capabilities {acceptInsecureCerts: true, browserName: firefox, browserVersion: 127.0, moz:accessibilityChecks: false, moz:buildID: 20240606181944, moz:debuggerAddress: 127.0.0.1:4180, moz:firefoxOptions: {binary: external/_main~pin_browsers..., prefs: {remote.active-protocols: 3}}, moz:geckodriverVersion: 0.34.0, moz:headless: false, moz:platformVersion: 6.1.0-21-cloud-amd64, moz:processID: 8351, moz:profile: /tmp/rust_mozprofile0duPES, moz:shutdownTimeout: 60000, moz:webdriverClick: true, moz:windowless: false, pageLoadStrategy: normal, platformName: linux, proxy: Proxy(), se:cdp: ws://127.0.0.1:7558/session..., se:cdpVersion: 85.0, se:gridWebSocketUrl: ws://127.0.0.1:4180/session..., setWindowRect: true, strictFileInteractability: false, timeouts: {implicit: 0, pageLoad: 300000, script: 30000}, unhandledPromptBehavior: dismiss and notify, userAgent: Mozilla/5.0 (X11; Linux x86..., webSocketUrl: ws://127.0.0.1:7558/session...} 3701: 00:57:57.695 INFO [LocalDistributor.newSession] - Session created by the Distributor. Id: 5f538fe4-9191-40f7-be26-2ef672aac171 3702: Caps: Capabilities {acceptInsecureCerts: true, browserName: firefox, browserVersion: 127.0, moz:accessibilityChecks: false, moz:buildID: 20240606181944, moz:debuggerAddress: 127.0.0.1:4180, moz:firefoxOptions: {binary: external/_main~pin_browsers..., prefs: {remote.active-protocols: 3}}, moz:geckodriverVersion: 0.34.0, moz:headless: false, moz:platformVersion: 6.1.0-21-cloud-amd64, moz:processID: 8351, moz:profile: /tmp/rust_mozprofile0duPES, moz:shutdownTimeout: 60000, moz:webdriverClick: true, moz:windowless: false, pageLoadStrategy: normal, platformName: linux, proxy: Proxy(), se:cdp: ws://127.0.0.1:7558/session..., se:cdpVersion: 85.0, se:gridWebSocketUrl: ws://127.0.0.1:4180/session..., setWindowRect: true, strictFileInteractability: false, timeouts: {implicit: 0, pageLoad: 300000, script: 30000}, unhandledPromptBehavior: dismiss and notify, userAgent: Mozilla/5.0 (X11; Linux x86..., webSocketUrl: ws://127.0.0.1:7558/session...} 3703: 00:57:57.793 INFO [ProxyNodeWebsockets.createWsEndPoint] - Establishing connection to ws://127.0.0.1:4180/devtools/browser/e13aca05-3442-41af-814e-a85891a7fda1 3704: 00:57:57.831 INFO [ProxyNodeWebsockets.createWsEndPoint] - Establishing connection to ws://127.0.0.1:4180/session/5f538fe4-9191-40f7-be26-2ef672aac171 3705: 00:57:58.040 WARN [SeleniumSpanExporter$1.lambda$export$3] - {"traceId": "d8c34b918fccb72385078c6157483f5d","eventTime": 1718326678036447803,"eventName": "HTTP request execution complete","attributes": {"http.flavor": 1,"http.handler_class": "org.openqa.selenium.remote.http.Route$PredicatedRoute","http.host": "127.0.0.1:7558","http.method": "POST","http.request_content_length": "6725","http.scheme": "HTTP","http.status_code": 500,"http.target": "\u002fsession\u002f5f538fe4-9191-40f7-be26-2ef672aac171\u002fmoz\u002faddon\u002finstall","http.user_agent": "selenium\u002f4.22.0-SNAPSHOT (java unix)"}} 3706: Restarting driver after failed test shouldAllowRemoteWebDriverBuilderToUseHasExtensions() ... 3714: Caps: Capabilities {acceptInsecureCerts: true, browserName: firefox, browserVersion: 127.0, moz:accessibilityChecks: false, moz:buildID: 20240606181944, moz:debuggerAddress: 127.0.0.1:30838, moz:firefoxOptions: {binary: external/_main~pin_browsers..., prefs: {browser.download.dir: foo/bar, remote.active-protocols: 3}}, moz:geckodriverVersion: 0.34.0, moz:headless: false, moz:platformVersion: 6.1.0-21-cloud-amd64, moz:processID: 8592, moz:profile: /tmp/rust_mozprofilelt1rT1, moz:shutdownTimeout: 60000, moz:webdriverClick: true, moz:windowless: false, pageLoadStrategy: normal, platformName: linux, proxy: Proxy(), se:cdp: ws://127.0.0.1:7558/session..., se:cdpVersion: 85.0, se:gridWebSocketUrl: ws://127.0.0.1:30838/sessio..., setWindowRect: true, strictFileInteractability: false, timeouts: {implicit: 0, pageLoad: 300000, script: 30000}, unhandledPromptBehavior: dismiss and notify, userAgent: Mozilla/5.0 (X11; Linux x86..., webSocketUrl: ws://127.0.0.1:7558/session...} 3715: 00:58:03.248 INFO [ProxyNodeWebsockets.createWsEndPoint] - Establishing connection to ws://127.0.0.1:30838/devtools/browser/762bb1e3-136d-41bb-8ba9-ca8ef0d4e9dd 3716: 00:58:03.286 INFO [ProxyNodeWebsockets.createWsEndPoint] - Establishing connection to ws://127.0.0.1:30838/session/4099bb10-b948-49e5-a0ea-aaf3aeb0d4b6 3717: 00:58:04.837 INFO [LocalSessionMap.lambda$new$0] - Deleted session from local Session Map, Id: 4099bb10-b948-49e5-a0ea-aaf3aeb0d4b6 3718: 00:58:04.837 INFO [GridModel.release] - Releasing slot for session id 4099bb10-b948-49e5-a0ea-aaf3aeb0d4b6 3719: 00:58:04.838 INFO [SessionSlot.stop] - Stopping session 4099bb10-b948-49e5-a0ea-aaf3aeb0d4b6 3720: Failures: 1 3721: 1) shouldAllowRemoteWebDriverBuilderToUseHasExtensions() (org.openqa.selenium.firefox.RemoteFirefoxDriverTest) 3722: org.openqa.selenium.WebDriverException: Could not install add-on: /tmp/addon-25db9398-85fd-440a-a662-ee4bf8584aae.xpi: ERROR_CORRUPT_FILE: The file appears to be corrupt. ... 3726: Command: [5f538fe4-9191-40f7-be26-2ef672aac171, installExtension {temporary=false, addon=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}] 3727: Capabilities {acceptInsecureCerts: true, browserName: firefox, browserVersion: 127.0, moz:accessibilityChecks: false, moz:buildID: 20240606181944, moz:debuggerAddress: 127.0.0.1:4180, moz:firefoxOptions: {binary: external/_main~pin_browsers..., prefs: {remote.active-protocols: 3}}, moz:geckodriverVersion: 0.34.0, moz:headless: false, moz:platformVersion: 6.1.0-21-cloud-amd64, moz:processID: 8351, moz:profile: /tmp/rust_mozprofile0duPES, moz:shutdownTimeout: 60000, moz:webdriverClick: true, moz:windowless: false, pageLoadStrategy: normal, platformName: linux, proxy: Proxy(), se:cdp: ws://127.0.0.1:7558/session..., se:cdpVersion: 85.0, se:gridWebSocketUrl: ws://127.0.0.1:4180/session..., setWindowRect: true, strictFileInteractability: false, timeouts: {implicit: 0, pageLoad: 300000, script: 30000}, unhandledPromptBehavior: dismiss and notify, userAgent: Mozilla/5.0 (X11; Linux x86..., webSocketUrl: ws://127.0.0.1:7558/session...} 3728: Session ID: 5f538fe4-9191-40f7-be26-2ef672aac171 3729: at java.base/jdk.internal.reflect.NativeConstructorAccessorImpl.newInstance0(Native Method) 3730: at java.base/jdk.internal.reflect.NativeConstructorAccessorImpl.newInstance(NativeConstructorAccessorImpl.java:77) 3731: at java.base/jdk.internal.reflect.DelegatingConstructorAccessorImpl.newInstance(DelegatingConstructorAccessorImpl.java:45) 3732: at java.base/java.lang.reflect.Constructor.newInstanceWithCaller(Constructor.java:499) 3733: at java.base/java.lang.reflect.Constructor.newInstance(Constructor.java:480) 3734: at org.openqa.selenium.remote.ErrorCodec.decode(ErrorCodec.java:167) ... 3742: at org.openqa.selenium.firefox.AddHasExtensions$1.installExtension(AddHasExtensions.java:99) 3743: at org.openqa.selenium.firefox.AddHasExtensions$1.installExtension(AddHasExtensions.java:79) 3744: at org.openqa.selenium.remote.RemoteWebDriver$ByteBuddy$4AiRg4hl.installExtension(Unknown Source) 3745: at org.openqa.selenium.firefox.RemoteFirefoxDriverTest.shouldAllowRemoteWebDriverBuilderToUseHasExtensions(RemoteFirefoxDriverTest.java:42) 3746: Execution result: https://gypsum.cluster.engflow.com/actions/executions/ChAwCq10Pe9ObbuUbJlJu4QHEgdkZWZhdWx0GiUKIACXGSbbl0yLiD0AOGkozwcAtxncssnGvOure-K5fTakEJ8D 3747: ================================================================================ 3748: /home/runner/.bazel/execroot/_main/bazel-out/k8-fastbuild/testlogs/java/test/org/openqa/selenium/firefox/RemoteFirefoxDriverTest-remote/test_attempts/attempt_1.log 3749: (00:58:06) INFO: From Testing //java/test/org/openqa/selenium/firefox:RemoteFirefoxDriverTest-remote: 3750: (00:58:09) [15,019 / 15,247] 1464 / 1692 tests, 8 failed; Testing //java/test/org/openqa/selenium/bidi/browsingcontext:BrowsingContextTest; 426s remote, remote-cache ... (50 actions running) 3751: (00:58:14) [15,028 / 15,247] 1473 / 1692 tests, 8 failed; Testing //java/test/org/openqa/selenium/bidi/browsingcontext:BrowsingContextTest; 431s remote, remote-cache ... (50 actions, 49 running) 3752: (00:58:19) [15,040 / 15,247] 1486 / 1692 tests, 8 failed; Testing //java/test/org/openqa/selenium/bidi/browsingcontext:BrowsingContextTest; 436s remote, remote-cache ... (50 actions, 49 running) 3753: (00:58:24) [15,053 / 15,247] 1498 / 1692 tests, 8 failed; Testing //java/test/org/openqa/selenium/bidi/browsingcontext:BrowsingContextTest; 441s remote, remote-cache ... (50 actions, 48 running) 3754: (00:58:30) [15,064 / 15,247] 1509 / 1692 tests, 8 failed; Testing //java/test/org/openqa/selenium/bidi/browsingcontext:BrowsingContextTest; 447s remote, remote-cache ... (50 actions, 49 running) 3755: (00:58:35) [15,071 / 15,247] 1516 / 1692 tests, 8 failed; Testing //java/test/org/openqa/selenium/bidi/browsingcontext:BrowsingContextTest; 452s remote, remote-cache ... (50 actions, 48 running) 3756: (00:58:40) [15,088 / 15,247] 1533 / 1692 tests, 8 failed; Testing //java/test/org/openqa/selenium/bidi/browsingcontext:BrowsingContextTest; 457s remote, remote-cache ... (50 actions, 48 running) 3757: (00:58:45) [15,099 / 15,247] 1544 / 1692 tests, 8 failed; Testing //java/test/org/openqa/selenium/bidi/browsingcontext:BrowsingContextTest; 462s remote, remote-cache ... (50 actions, 46 running) 3758: (00:58:50) FAIL: //java/test/org/openqa/selenium/bidi/browsingcontext:BrowsingContextTest (see /home/runner/.bazel/execroot/_main/bazel-out/k8-fastbuild/testlogs/java/test/org/openqa/selenium/bidi/browsingcontext/BrowsingContextTest/test_attempts/attempt_1.log) 3759: (00:58:50) [15,113 / 15,247] 1558 / 1692 tests, 8 failed; Testing //java/test/org/openqa/selenium/bidi/browsingcontext:BrowsingContextTest; 467s remote, remote-cache ... (50 actions, 48 running) 3760: (00:58:55) [15,125 / 15,247] 1570 / 1692 tests, 8 failed; Testing //java/test/org/openqa/selenium/bidi/browsingcontext:BrowsingContextTest; 472s remote, remote-cache ... (50 actions, 49 running) 3761: (00:59:00) [15,134 / 15,247] 1579 / 1692 tests, 8 failed; Testing //java/test/org/openqa/selenium/bidi/browsingcontext:BrowsingContextTest; 477s remote, remote-cache ... (50 actions, 49 running) 3762: (00:59:06) [15,139 / 15,247] 1585 / 1692 tests, 8 failed; Testing //java/test/org/openqa/selenium/bidi/browsingcontext:BrowsingContextTest; 483s remote, remote-cache ... (50 actions running) 3763: (00:59:11) [15,153 / 15,247] 1598 / 1692 tests, 8 failed; Testing //java/test/org/openqa/selenium/bidi/browsingcontext:BrowsingContextTest; 488s remote, remote-cache ... (50 actions, 49 running) 3764: (00:59:15) FAIL: //java/test/org/openqa/selenium/bidi/browsingcontext:BrowsingContextTest-remote (see /home/runner/.bazel/execroot/_main/bazel-out/k8-fastbuild/testlogs/java/test/org/openqa/selenium/bidi/browsingcontext/BrowsingContextTest-remote/test_attempts/attempt_1.log) 3765: (00:59:16) [15,165 / 15,247] 1610 / 1692 tests, 8 failed; Testing //java/test/org/openqa/selenium/bidi/browsingcontext:BrowsingContextTest; 493s remote, remote-cache ... (50 actions, 47 running) 3766: (00:59:21) [15,174 / 15,247] 1619 / 1692 tests, 8 failed; Testing //java/test/org/openqa/selenium/bidi/browsingcontext:BrowsingContextTest; 498s remote, remote-cache ... (50 actions running) 3767: (00:59:26) [15,180 / 15,247] 1625 / 1692 tests, 8 failed; Testing //java/test/org/openqa/selenium/bidi/browsingcontext:BrowsingContextTest; 503s remote, remote-cache ... (50 actions, 49 running) 3768: (00:59:31) [15,193 / 15,247] 1639 / 1692 tests, 8 failed; Testing //java/test/org/openqa/selenium/bidi/browsingcontext:BrowsingContextTest; 508s remote, remote-cache ... (50 actions, 48 running) 3769: (00:59:36) [15,203 / 15,247] 1649 / 1692 tests, 8 failed; Testing //java/test/org/openqa/selenium/bidi/browsingcontext:BrowsingContextTest; 513s remote, remote-cache ... (44 actions running) 3770: (00:59:41) [15,217 / 15,247] 1662 / 1692 tests, 8 failed; Testing //java/test/org/openqa/selenium/bidi/browsingcontext:BrowsingContextTest; 518s remote, remote-cache ... (30 actions running) 3771: (00:59:47) [15,227 / 15,247] 1673 / 1692 tests, 8 failed; Testing //java/test/org/openqa/selenium/bidi/browsingcontext:BrowsingContextTest; 524s remote, remote-cache ... (20 actions running) 3772: (00:59:52) [15,231 / 15,247] 1677 / 1692 tests, 8 failed; Testing //java/test/org/openqa/selenium/bidi/browsingcontext:BrowsingContextTest; 529s remote, remote-cache ... (16 actions running) 3773: (00:59:57) [15,234 / 15,247] 1680 / 1692 tests, 8 failed; Testing //java/test/org/openqa/selenium/bidi/browsingcontext:BrowsingContextTest; 534s remote, remote-cache ... (13 actions running) 3774: (01:00:02) [15,237 / 15,247] 1682 / 1692 tests, 8 failed; Testing //java/test/org/openqa/selenium/bidi/browsingcontext:BrowsingContextTest; 539s remote, remote-cache ... (10 actions running) 3775: (01:00:09) [15,239 / 15,247] 1684 / 1692 tests, 8 failed; Testing //java/test/org/openqa/selenium/bidi/browsingcontext:BrowsingContextTest; 546s remote, remote-cache ... (8 actions running) 3776: (01:00:18) [15,239 / 15,247] 1684 / 1692 tests, 8 failed; Testing //java/test/org/openqa/selenium/bidi/browsingcontext:BrowsingContextTest; 555s remote, remote-cache ... (8 actions running) 3777: (01:00:24) [15,240 / 15,247] 1685 / 1692 tests, 8 failed; Testing //java/test/org/openqa/selenium/bidi/browsingcontext:BrowsingContextTest; 561s remote, remote-cache ... (7 actions running) 3778: (01:00:29) [15,240 / 15,247] 1685 / 1692 tests, 8 failed; Testing //java/test/org/openqa/selenium/bidi/browsingcontext:BrowsingContextTest; 566s remote, remote-cache ... (7 actions running) 3779: (01:00:35) [15,241 / 15,247] 1686 / 1692 tests, 8 failed; Testing //java/test/org/openqa/selenium/bidi/browsingcontext:BrowsingContextTest; 572s remote, remote-cache ... (6 actions running) 3780: (01:00:41) [15,242 / 15,247] 1687 / 1692 tests, 8 failed; Testing //java/test/org/openqa/selenium/bidi/browsingcontext:BrowsingContextTest; 578s remote, remote-cache ... (5 actions running) 3781: (01:00:46) [15,243 / 15,247] 1688 / 1692 tests, 8 failed; Testing //java/test/org/openqa/selenium/bidi/browsingcontext:BrowsingContextTest; 583s remote, remote-cache ... (4 actions running) 3782: (01:00:54) [15,244 / 15,247] 1689 / 1692 tests, 8 failed; Testing //java/test/org/openqa/selenium/bidi/browsingcontext:BrowsingContextTest; 591s remote, remote-cache ... (3 actions running) 3783: (01:01:04) [15,244 / 15,247] 1689 / 1692 tests, 8 failed; Testing //java/test/org/openqa/selenium/bidi/browsingcontext:BrowsingContextTest; 601s remote, remote-cache ... (3 actions running) 3784: (01:01:29) [15,244 / 15,247] 1689 / 1692 tests, 8 failed; Testing //java/test/org/openqa/selenium/bidi/browsingcontext:BrowsingContextTest; 626s remote, remote-cache ... (3 actions running) 3785: (01:02:02) [15,244 / 15,247] 1690 / 1692 tests, 8 failed; Testing //java/test/org/openqa/selenium/bidi/browsingcontext:BrowsingContextTest; 659s remote, remote-cache ... (3 actions running) 3786: (01:02:09) [15,245 / 15,247] 1690 / 1692 tests, 8 failed; Testing //java/test/org/openqa/selenium/bidi/browsingcontext:BrowsingContextTest; 666s remote, remote-cache ... (2 actions running) 3787: (01:02:19) [15,245 / 15,247] 1690 / 1692 tests, 8 failed; Testing //java/test/org/openqa/selenium/bidi/browsingcontext:BrowsingContextTest; 676s remote, remote-cache ... (2 actions running) 3788: (01:02:43) [15,245 / 15,247] 1690 / 1692 tests, 8 failed; Testing //java/test/org/openqa/selenium/bidi/browsingcontext:BrowsingContextTest; 700s remote, remote-cache ... (2 actions running) 3789: (01:03:43) [15,245 / 15,247] 1690 / 1692 tests, 8 failed; Testing //java/test/org/openqa/selenium/bidi/browsingcontext:BrowsingContextTest; 760s remote, remote-cache ... (2 actions running) 3790: (01:04:43) [15,245 / 15,247] 1690 / 1692 tests, 8 failed; Testing //java/test/org/openqa/selenium/bidi/browsingcontext:BrowsingContextTest; 820s remote, remote-cache ... (2 actions running) 3791: (01:05:43) [15,245 / 15,247] 1690 / 1692 tests, 8 failed; Testing //java/test/org/openqa/selenium/bidi/browsingcontext:BrowsingContextTest; 880s remote, remote-cache ... (2 actions running) 3792: (01:06:17) FAIL: //java/test/org/openqa/selenium/bidi/browsingcontext:BrowsingContextTest (see /home/runner/.bazel/execroot/_main/bazel-out/k8-fastbuild/testlogs/java/test/org/openqa/selenium/bidi/browsingcontext/BrowsingContextTest/test.log) 3793: FAILED: //java/test/org/openqa/selenium/bidi/browsingcontext:BrowsingContextTest (Summary) ... 3807: Failures: 1 3808: 1) canSetViewportWithDevicePixelRatio() (org.openqa.selenium.bidi.browsingcontext.BrowsingContextTest) 3809: java.lang.Exception: org.openqa.selenium.bidi.browsingcontext.BrowsingContextTest.canSetViewportWithDevicePixelRatio is marked as not yet implemented with FIREFOX but already works! 3810: at org.openqa.selenium.testing.SeleniumExtension.afterEach(SeleniumExtension.java:145) 3811: at java.base/java.util.ArrayList.forEach(ArrayList.java:1511) 3812: at java.base/java.util.ArrayList.forEach(ArrayList.java:1511) 3813: Execution result: https://gypsum.cluster.engflow.com/actions/executions/ChCC2sc6omxEfZQvhta60t1sEgdkZWZhdWx0GiUKIHqOQ3nLwx71p-pZ6g9-iS_457wdueNrTiEVbD4aJBqREJ8D 3814: ================================================================================ 3815: (01:06:19) [15,246 / 15,247] 1691 / 1692 tests, 9 failed; Testing //java/test/org/openqa/selenium/bidi/browsingcontext:BrowsingContextTest-remote; 901s remote, remote-cache 3816: (01:06:28) [15,246 / 15,247] 1691 / 1692 tests, 9 failed; Testing //java/test/org/openqa/selenium/bidi/browsingcontext:BrowsingContextTest-remote; 910s remote, remote-cache 3817: (01:06:58) [15,246 / 15,247] 1691 / 1692 tests, 9 failed; Testing //java/test/org/openqa/selenium/bidi/browsingcontext:BrowsingContextTest-remote; 940s remote, remote-cache 3818: (01:07:58) [15,246 / 15,247] 1691 / 1692 tests, 9 failed; Testing //java/test/org/openqa/selenium/bidi/browsingcontext:BrowsingContextTest-remote; 1000s remote, remote-cache 3819: (01:08:58) [15,246 / 15,247] 1691 / 1692 tests, 9 failed; Testing //java/test/org/openqa/selenium/bidi/browsingcontext:BrowsingContextTest-remote; 1060s remote, remote-cache 3820: (01:09:58) [15,246 / 15,247] 1691 / 1692 tests, 9 failed; Testing //java/test/org/openqa/selenium/bidi/browsingcontext:BrowsingContextTest-remote; 1120s remote, remote-cache 3821: (01:10:58) [15,246 / 15,247] 1691 / 1692 tests, 9 failed; Testing //java/test/org/openqa/selenium/bidi/browsingcontext:BrowsingContextTest-remote; 1180s remote, remote-cache 3822: (01:11:58) [15,246 / 15,247] 1691 / 1692 tests, 9 failed; Testing //java/test/org/openqa/selenium/bidi/browsingcontext:BrowsingContextTest-remote; 1240s remote, remote-cache 3823: (01:12:58) [15,246 / 15,247] 1691 / 1692 tests, 9 failed; Testing //java/test/org/openqa/selenium/bidi/browsingcontext:BrowsingContextTest-remote; 1300s remote, remote-cache 3824: (01:13:27) FAIL: //java/test/org/openqa/selenium/bidi/browsingcontext:BrowsingContextTest-remote (see /home/runner/.bazel/execroot/_main/bazel-out/k8-fastbuild/testlogs/java/test/org/openqa/selenium/bidi/browsingcontext/BrowsingContextTest-remote/test.log) 3825: FAILED: //java/test/org/openqa/selenium/bidi/browsingcontext:BrowsingContextTest-remote (Summary) ... 4488: java.lang.Exception: org.openqa.selenium.bidi.browsingcontext.BrowsingContextTest.canSetViewportWithDevicePixelRatio is marked as not yet implemented with FIREFOX but already works! 4489: at org.openqa.selenium.testing.SeleniumExtension.afterEach(SeleniumExtension.java:145) 4490: at java.base/java.util.ArrayList.forEach(ArrayList.java:1511) 4491: at java.base/java.util.ArrayList.forEach(ArrayList.java:1511) 4492: Execution result: https://gypsum.cluster.engflow.com/actions/executions/ChD2_grbmyRBt6JCvDOqbZ3VEgdkZWZhdWx0GiUKIJEkJ4puHK_HW2-vvdX4yUDPs92YMhVrKTf-VjK3Z4n_EJ8D 4493: ================================================================================ 4494: (01:13:28) INFO: Elapsed time: 1814.086s, Critical Path: 1402.14s 4495: (01:13:28) INFO: 14572 processes: 6034 remote cache hit, 6882 internal, 53 local, 1603 remote. 4496: (01:13:28) INFO: Build completed, 10 tests FAILED, 14572 total actions ... 4599: //java/test/org/openqa/selenium:ElementAccessibleNameTest-spotbugs (cached) PASSED in 7.1s 4600: //java/test/org/openqa/selenium:ElementAriaRoleTest-spotbugs (cached) PASSED in 5.1s 4601: //java/test/org/openqa/selenium:ElementAttributeTest-spotbugs (cached) PASSED in 7.7s 4602: //java/test/org/openqa/selenium:ElementDomAttributeTest-spotbugs (cached) PASSED in 10.2s 4603: //java/test/org/openqa/selenium:ElementDomPropertyTest-spotbugs (cached) PASSED in 8.9s 4604: //java/test/org/openqa/selenium:ElementEqualityTest-spotbugs (cached) PASSED in 7.8s 4605: //java/test/org/openqa/selenium:ElementFindingTest-spotbugs (cached) PASSED in 11.3s 4606: //java/test/org/openqa/selenium:ElementSelectingTest-spotbugs (cached) PASSED in 5.9s 4607: //java/test/org/openqa/selenium:ErrorsTest-spotbugs (cached) PASSED in 6.2s ... 4918: //java/test/org/openqa/selenium/os:ExternalProcessTest (cached) PASSED in 2.8s 4919: //java/test/org/openqa/selenium/os:ExternalProcessTest-spotbugs (cached) PASSED in 9.9s 4920: //java/test/org/openqa/selenium/os:OsProcessTest (cached) PASSED in 3.4s 4921: //java/test/org/openqa/selenium/os:OsProcessTest-spotbugs (cached) PASSED in 10.2s 4922: //java/test/org/openqa/selenium/remote:AugmenterTest (cached) PASSED in 5.7s 4923: //java/test/org/openqa/selenium/remote:AugmenterTest-spotbugs (cached) PASSED in 11.7s 4924: //java/test/org/openqa/selenium/remote:DesiredCapabilitiesTest (cached) PASSED in 2.1s 4925: //java/test/org/openqa/selenium/remote:DesiredCapabilitiesTest-spotbugs (cached) PASSED in 9.1s 4926: //java/test/org/openqa/selenium/remote:ErrorCodecTest (cached) PASSED in 2.3s 4927: //java/test/org/openqa/selenium/remote:ErrorCodecTest-spotbugs (cached) PASSED in 9.8s 4928: //java/test/org/openqa/selenium/remote:ErrorHandlerTest (cached) PASSED in 2.4s 4929: //java/test/org/openqa/selenium/remote:ErrorHandlerTest-spotbugs (cached) PASSED in 12.1s ... 5070: //javascript/node/selenium-webdriver:prettier-test (cached) PASSED in 9.1s 5071: //javascript/node/selenium-webdriver:small-tests (cached) PASSED in 13.4s 5072: //py:unit-test/unit/selenium/webdriver/chrome/chrome_options_tests.py (cached) PASSED in 3.6s 5073: //py:unit-test/unit/selenium/webdriver/common/cdp_module_fallback_tests.py (cached) PASSED in 4.0s 5074: //py:unit-test/unit/selenium/webdriver/common/common_options_tests.py (cached) PASSED in 3.8s 5075: //py:unit-test/unit/selenium/webdriver/common/print_page_options_tests.py (cached) PASSED in 3.7s 5076: //py:unit-test/unit/selenium/webdriver/edge/edge_options_tests.py (cached) PASSED in 3.1s 5077: //py:unit-test/unit/selenium/webdriver/firefox/firefox_options_tests.py (cached) PASSED in 2.8s 5078: //py:unit-test/unit/selenium/webdriver/remote/error_handler_tests.py (cached) PASSED in 3.0s ... 5219: //dotnet/test/common:ElementFindingTest-edge PASSED in 26.4s 5220: //dotnet/test/common:ElementFindingTest-firefox PASSED in 36.7s 5221: //dotnet/test/common:ElementPropertyTest-chrome PASSED in 7.7s 5222: //dotnet/test/common:ElementPropertyTest-edge PASSED in 8.4s 5223: //dotnet/test/common:ElementPropertyTest-firefox PASSED in 11.1s 5224: //dotnet/test/common:ElementSelectingTest-chrome PASSED in 11.7s 5225: //dotnet/test/common:ElementSelectingTest-edge PASSED in 13.4s 5226: //dotnet/test/common:ElementSelectingTest-firefox PASSED in 23.9s 5227: //dotnet/test/common:ErrorsTest-chrome PASSED in 8.6s 5228: //dotnet/test/common:ErrorsTest-edge PASSED in 9.4s 5229: //dotnet/test/common:ErrorsTest-firefox PASSED in 8.7s ... 5447: //java/test/org/openqa/selenium:ElementFindingTest PASSED in 41.6s 5448: //java/test/org/openqa/selenium:ElementFindingTest-chrome PASSED in 26.0s 5449: //java/test/org/openqa/selenium:ElementFindingTest-edge PASSED in 100.2s 5450: //java/test/org/openqa/selenium:ElementFindingTest-firefox-beta PASSED in 39.7s 5451: //java/test/org/openqa/selenium:ElementSelectingTest PASSED in 36.9s 5452: //java/test/org/openqa/selenium:ElementSelectingTest-chrome PASSED in 18.2s 5453: //java/test/org/openqa/selenium:ElementSelectingTest-edge PASSED in 30.0s 5454: //java/test/org/openqa/selenium:ElementSelectingTest-firefox-beta PASSED in 30.6s 5455: //java/test/org/openqa/selenium:ErrorsTest PASSED in 14.2s 5456: //java/test/org/openqa/selenium:ErrorsTest-chrome PASSED in 10.3s 5457: //java/test/org/openqa/selenium:ErrorsTest-edge PASSED in 14.7s 5458: //java/test/org/openqa/selenium:ErrorsTest-firefox-beta PASSED in 16.3s ... 6027: //rb/spec/integration/selenium/webdriver:driver-firefox-beta-bidi PASSED in 30.3s 6028: //rb/spec/integration/selenium/webdriver:driver-firefox-bidi PASSED in 33.5s 6029: //rb/spec/integration/selenium/webdriver:element-edge PASSED in 39.0s 6030: //rb/spec/integration/selenium/webdriver:element-edge-bidi PASSED in 19.9s 6031: //rb/spec/integration/selenium/webdriver:element-firefox PASSED in 70.1s 6032: //rb/spec/integration/selenium/webdriver:element-firefox-beta PASSED in 79.0s 6033: //rb/spec/integration/selenium/webdriver:element-firefox-beta-bidi PASSED in 26.4s 6034: //rb/spec/integration/selenium/webdriver:element-firefox-bidi PASSED in 22.6s 6035: //rb/spec/integration/selenium/webdriver:error-chrome PASSED in 20.4s 6036: //rb/spec/integration/selenium/webdriver:error-chrome-bidi PASSED in 17.4s 6037: //rb/spec/integration/selenium/webdriver:error-edge PASSED in 16.7s 6038: //rb/spec/integration/selenium/webdriver:error-edge-bidi PASSED in 18.4s 6039: //rb/spec/integration/selenium/webdriver:error-firefox PASSED in 20.3s 6040: //rb/spec/integration/selenium/webdriver:error-firefox-beta PASSED in 26.4s 6041: //rb/spec/integration/selenium/webdriver:error-firefox-beta-bidi PASSED in 24.3s 6042: //rb/spec/integration/selenium/webdriver:error-firefox-bidi PASSED in 18.0s ... 6171: //rb/spec/integration/selenium/webdriver/remote:element-chrome PASSED in 18.8s 6172: //rb/spec/integration/selenium/webdriver/remote:element-chrome-bidi PASSED in 18.9s 6173: //rb/spec/integration/selenium/webdriver/remote:element-edge PASSED in 22.2s 6174: //rb/spec/integration/selenium/webdriver/remote:element-edge-bidi PASSED in 24.7s 6175: //rb/spec/integration/selenium/webdriver/remote:element-firefox PASSED in 32.7s 6176: //rb/spec/integration/selenium/webdriver/remote:element-firefox-beta PASSED in 31.5s 6177: //rb/spec/integration/selenium/webdriver/remote:element-firefox-beta-bidi PASSED in 30.1s 6178: //rb/spec/integration/selenium/webdriver/remote:element-firefox-bidi PASSED in 34.9s 6179: //py:common-chrome-test/selenium/webdriver/common/bidi_tests.py FLAKY, failed in 1 out of 2 in 7.2s 6180: Stats over 2 runs: max = 7.2s, min = 6.6s, avg = 6.9s, dev = 0.3s 6181: /home/runner/.bazel/execroot/_main/bazel-out/k8-fastbuild/testlogs/py/common-chrome-test/selenium/webdriver/common/bidi_tests.py/test_attempts/attempt_1.log 6182: //java/test/org/openqa/selenium/bidi/browsingcontext:BrowsingContextTest FAILED in 2 out of 2 in 466.4s 6183: Stats over 2 runs: max = 466.4s, min = 445.0s, avg = 455.7s, dev = 10.7s 6184: /home/runner/.bazel/execroot/_main/bazel-out/k8-fastbuild/testlogs/java/test/org/openqa/selenium/bidi/browsingcontext/BrowsingContextTest/test.log 6185: /home/runner/.bazel/execroot/_main/bazel-out/k8-fastbuild/testlogs/java/test/org/openqa/selenium/bidi/browsingcontext/BrowsingContextTest/test_attempts/attempt_1.log 6186: //java/test/org/openqa/selenium/bidi/browsingcontext:BrowsingContextTest-remote FAILED in 2 out of 2 in 476.6s 6187: Stats over 2 runs: max = 476.6s, min = 427.3s, avg = 451.9s, dev = 24.7s 6188: /home/runner/.bazel/execroot/_main/bazel-out/k8-fastbuild/testlogs/java/test/org/openqa/selenium/bidi/browsingcontext/BrowsingContextTest-remote/test.log 6189: /home/runner/.bazel/execroot/_main/bazel-out/k8-fastbuild/testlogs/java/test/org/openqa/selenium/bidi/browsingcontext/BrowsingContextTest-remote/test_attempts/attempt_1.log 6190: //java/test/org/openqa/selenium/bidi/input:DefaultKeyboardTest-chrome FAILED in 2 out of 2 in 27.5s 6191: Stats over 2 runs: max = 27.5s, min = 26.3s, avg = 26.9s, dev = 0.6s 6192: /home/runner/.bazel/execroot/_main/bazel-out/k8-fastbuild/testlogs/java/test/org/openqa/selenium/bidi/input/DefaultKeyboardTest-chrome/test.log 6193: /home/runner/.bazel/execroot/_main/bazel-out/k8-fastbuild/testlogs/java/test/org/openqa/selenium/bidi/input/DefaultKeyboardTest-chrome/test_attempts/attempt_1.log 6194: //java/test/org/openqa/selenium/bidi/input:DefaultKeyboardTest-chrome-remote FAILED in 2 out of 2 in 33.4s 6195: Stats over 2 runs: max = 33.4s, min = 32.2s, avg = 32.8s, dev = 0.6s 6196: /home/runner/.bazel/execroot/_main/bazel-out/k8-fastbuild/testlogs/java/test/org/openqa/selenium/bidi/input/DefaultKeyboardTest-chrome-remote/test.log 6197: /home/runner/.bazel/execroot/_main/bazel-out/k8-fastbuild/testlogs/java/test/org/openqa/selenium/bidi/input/DefaultKeyboardTest-chrome-remote/test_attempts/attempt_1.log 6198: //java/test/org/openqa/selenium/firefox:RemoteFirefoxDriverTest FAILED in 2 out of 2 in 23.1s 6199: Stats over 2 runs: max = 23.1s, min = 22.5s, avg = 22.8s, dev = 0.3s 6200: /home/runner/.bazel/execroot/_main/bazel-out/k8-fastbuild/testlogs/java/test/org/openqa/selenium/firefox/RemoteFirefoxDriverTest/test.log 6201: /home/runner/.bazel/execroot/_main/bazel-out/k8-fastbuild/testlogs/java/test/org/openqa/selenium/firefox/RemoteFirefoxDriverTest/test_attempts/attempt_1.log 6202: //java/test/org/openqa/selenium/firefox:RemoteFirefoxDriverTest-remote FAILED in 2 out of 2 in 34.5s 6203: Stats over 2 runs: max = 34.5s, min = 28.1s, avg = 31.3s, dev = 3.2s 6204: /home/runner/.bazel/execroot/_main/bazel-out/k8-fastbuild/testlogs/java/test/org/openqa/selenium/firefox/RemoteFirefoxDriverTest-remote/test.log 6205: /home/runner/.bazel/execroot/_main/bazel-out/k8-fastbuild/testlogs/java/test/org/openqa/selenium/firefox/RemoteFirefoxDriverTest-remote/test_attempts/attempt_1.log 6206: //py:common-chrome-test/selenium/webdriver/common/w3c_interaction_tests.py FAILED in 2 out of 2 in 15.3s 6207: Stats over 2 runs: max = 15.3s, min = 14.4s, avg = 14.9s, dev = 0.4s 6208: /home/runner/.bazel/execroot/_main/bazel-out/k8-fastbuild/testlogs/py/common-chrome-test/selenium/webdriver/common/w3c_interaction_tests.py/test.log 6209: /home/runner/.bazel/execroot/_main/bazel-out/k8-fastbuild/testlogs/py/common-chrome-test/selenium/webdriver/common/w3c_interaction_tests.py/test_attempts/attempt_1.log 6210: //rb/spec/integration/selenium/webdriver:driver-edge FAILED in 2 out of 2 in 41.2s 6211: Stats over 2 runs: max = 41.2s, min = 38.1s, avg = 39.7s, dev = 1.6s 6212: /home/runner/.bazel/execroot/_main/bazel-out/k8-fastbuild/testlogs/rb/spec/integration/selenium/webdriver/driver-edge/test.log 6213: /home/runner/.bazel/execroot/_main/bazel-out/k8-fastbuild/testlogs/rb/spec/integration/selenium/webdriver/driver-edge/test_attempts/attempt_1.log 6214: //rb/spec/integration/selenium/webdriver/chrome:driver-chrome FAILED in 2 out of 2 in 42.0s 6215: Stats over 2 runs: max = 42.0s, min = 41.6s, avg = 41.8s, dev = 0.2s 6216: /home/runner/.bazel/execroot/_main/bazel-out/k8-fastbuild/testlogs/rb/spec/integration/selenium/webdriver/chrome/driver-chrome/test.log 6217: /home/runner/.bazel/execroot/_main/bazel-out/k8-fastbuild/testlogs/rb/spec/integration/selenium/webdriver/chrome/driver-chrome/test_attempts/attempt_1.log 6218: //rb/spec/integration/selenium/webdriver/firefox:driver-firefox FAILED in 2 out of 2 in 69.1s 6219: Stats over 2 runs: max = 69.1s, min = 63.2s, avg = 66.1s, dev = 3.0s 6220: /home/runner/.bazel/execroot/_main/bazel-out/k8-fastbuild/testlogs/rb/spec/integration/selenium/webdriver/firefox/driver-firefox/test.log 6221: /home/runner/.bazel/execroot/_main/bazel-out/k8-fastbuild/testlogs/rb/spec/integration/selenium/webdriver/firefox/driver-firefox/test_attempts/attempt_1.log 6222: Executed 1041 out of 1692 tests: 1682 tests pass and 10 fail remotely. 6223: There were tests whose specified size is too big. Use the --test_verbose_timeout_warnings command line option to see which ones these are. 6224: (01:13:45) INFO: Streaming build results to: https://gypsum.cluster.engflow.com/invocation/f27b4e65-040f-476b-ad81-b98d5dcafbd7 6225:  6226: ##[error]Process completed with exit code 3. ```

    ✨ CI feedback usage guide:
    The CI feedback tool (`/checks)` automatically triggers when a PR has a failed check. The tool analyzes the failed checks and provides several feedbacks: - Failed stage - Failed test name - Failure summary - Relevant error logs In addition to being automatically triggered, the tool can also be invoked manually by commenting on a PR: ``` /checks "https://github.com/{repo_name}/actions/runs/{run_number}/job/{job_number}" ``` where `{repo_name}` is the name of the repository, `{run_number}` is the run number of the failed check, and `{job_number}` is the job number of the failed check. #### Configuration options - `enable_auto_checks_feedback` - if set to true, the tool will automatically provide feedback when a check is failed. Default is true. - `excluded_checks_list` - a list of checks to exclude from the feedback, for example: ["check1", "check2"]. Default is an empty list. - `enable_help_text` - if set to true, the tool will provide a help message with the feedback. Default is true. - `persistent_comment` - if set to true, the tool will overwrite a previous checks comment with the new feedback. Default is true. - `final_update_message` - if `persistent_comment` is true and updating a previous checks message, the tool will also create a new message: "Persistent checks updated to latest commit". Default is true. See more information about the `checks` tool in the [docs](https://pr-agent-docs.codium.ai/tools/ci_feedback/).
    titusfortner commented 3 weeks ago

    merging because v126 fixes issues on trunk