Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

[grid] Ignored options when they are prefixed, safari specif as well #15574

Open
wants to merge 1 commit into
base: trunk
Choose a base branch
from

Conversation

diemol
Copy link
Member

@diemol diemol commented Apr 4, 2025

User description

🔗 Related Issues

Fixes #15481
Fixes #14485

💥 What does this PR do?

This will ignore any prefixed options capability in the DefaultSlotMatcher. This was wrongly considered during the matching process, and it should not be. It needs to be passed along so the remote end deals with it.

🔧 Implementation Notes

This resolves the core problem of the linked issues. It is true that options should not be handled as they are.

💡 Additional Considerations

No.

🔄 Types of changes

  • Bug fix (backward compatible)

PR Type

Bug fix, Tests


Description

  • Added "safari:" to ignored extension capability prefixes in DefaultSlotMatcher.

  • Excluded "options" capabilities from matching in DefaultSlotMatcher.

  • Introduced a new test to verify "options" capabilities are ignored for matching.


Changes walkthrough 📝

Relevant files
Bug fix
DefaultSlotMatcher.java
Update DefaultSlotMatcher to ignore specific capabilities

java/src/org/openqa/selenium/grid/data/DefaultSlotMatcher.java

  • Added "safari:" to the list of ignored extension capability prefixes.
  • Excluded "options" capabilities from matching logic.
  • Updated comments to clarify handling of extension capabilities.
  • +4/-1     
    Tests
    DefaultSlotMatcherTest.java
    Add test for ignoring "options" capabilities in matching 

    java/test/org/openqa/selenium/grid/data/DefaultSlotMatcherTest.java

  • Added a new test to verify "options" capabilities are ignored for
    matching.
  • Ensured existing tests validate the updated matching logic.
  • +26/-0   

    Need help?
  • Type /help how to ... in the comments thread for any questions about Qodo Merge usage.
  • Check out the documentation for more information.
  • @titusfortner titusfortner added B-grid Everything grid and server related C-java Java Bindings labels Apr 4, 2025
    Copy link
    Contributor

    qodo-merge-pro bot commented Apr 4, 2025

    PR Reviewer Guide 🔍

    Here are some key observations to aid the review process:

    🎫 Ticket compliance analysis ❌

    5678 - Not compliant

    Non-compliant requirements:

    • Fix "Error: ConnectFailure (Connection refused)" when instantiating ChromeDriver multiple times

    Requires further human verification:

    • Need to verify if the PR's changes to DefaultSlotMatcher address the ChromeDriver connection issues
    • Need to test with the specific environment mentioned (Ubuntu 16.04.4, Chrome 65.0.3325.181, ChromeDriver 2.35)

    1234 - Not compliant

    Non-compliant requirements:

    • Fix issue where Firefox 42.0 doesn't trigger JavaScript in link's href on click() in Selenium 2.48.0/2.48.2

    Requires further human verification:

    • Need to verify if the PR's changes to DefaultSlotMatcher address the Firefox JavaScript triggering issue

    ⏱️ Estimated effort to review: 2 🔵🔵⚪⚪⚪
    🧪 PR contains tests
    🔒 No security concerns identified
    ⚡ Recommended focus areas for review

    Ticket Mismatch

    The PR description mentions fixing issues #15481 and #14485, but these don't match the tickets provided in the PR info. Need to verify if this PR actually addresses the provided tickets.

    private static final List<String> EXTENSION_CAPABILITIES_PREFIXES =
        Arrays.asList("goog:", "moz:", "ms:", "safari:", "se:");

    Copy link
    Contributor

    qodo-merge-pro bot commented Apr 4, 2025

    PR Code Suggestions ✨

    Explore these optional code suggestions:

    CategorySuggestion                                                                                                                                    Impact
    Possible issue
    More precise options filtering

    The current implementation will filter out any capability name containing
    "options" anywhere in the string. This is too broad and might unintentionally
    exclude valid capabilities. Consider using a more precise check that
    specifically targets capability names ending with ":options".

    java/src/org/openqa/selenium/grid/data/DefaultSlotMatcher.java [162]

    -.filter(name -> !name.toLowerCase().contains("options"))
    +.filter(name -> !name.endsWith(":options"))
    • Apply this suggestion
    Suggestion importance[1-10]: 8

    __

    Why: The suggestion correctly identifies an overly broad filter that could unintentionally exclude valid capabilities. Using .endsWith(":options") instead of .toLowerCase().contains("options") is more precise and aligns better with the intended behavior of only filtering out extension capabilities that are specifically options.

    Medium
    • More

    Copy link
    Contributor

    qodo-merge-pro bot commented Apr 4, 2025

    CI Feedback 🧐

    A test triggered by this PR failed. Here is an AI-generated analysis of the failure:

    Action: Test / All RBE tests

    Failed stage: Run Bazel [❌]

    Failed test name: DefaultWheelTest

    Failure summary:

    The action failed because multiple test failures occurred in the Selenium test suite. The primary
    failures were:

    1. In the DefaultWheelTest-remote test, the test shouldScrollFromViewportByGivenAmount() failed with
    an assertion error: "expected: but was: " (line 6634).

    2. In the DefaultKeyboardTest-edge-remote test, there were multiple failures.

    3. In the Ruby test action_builder-firefox-remote, the test scrolls by given amount failed (line
    9647).

    4. Several tests failed with timeout errors like: "Timed out waiting for
    [http://127.0.0.1:XXXXX/status] to be available after 10000 ms".

    The failures appear to be related to browser automation tests, particularly with scrolling and
    keyboard input functionality in the Selenium WebDriver.

    Relevant error logs:
    1:  ##[group]Operating System
    2:  Ubuntu
    ...
    
    945:  Package 'php-sql-formatter' is not installed, so not removed
    946:  Package 'php8.3-ssh2' is not installed, so not removed
    947:  Package 'php-ssh2-all-dev' is not installed, so not removed
    948:  Package 'php8.3-stomp' is not installed, so not removed
    949:  Package 'php-stomp-all-dev' is not installed, so not removed
    950:  Package 'php-swiftmailer' is not installed, so not removed
    951:  Package 'php-symfony' is not installed, so not removed
    952:  Package 'php-symfony-asset' is not installed, so not removed
    953:  Package 'php-symfony-asset-mapper' is not installed, so not removed
    954:  Package 'php-symfony-browser-kit' is not installed, so not removed
    955:  Package 'php-symfony-clock' is not installed, so not removed
    956:  Package 'php-symfony-debug-bundle' is not installed, so not removed
    957:  Package 'php-symfony-doctrine-bridge' is not installed, so not removed
    958:  Package 'php-symfony-dom-crawler' is not installed, so not removed
    959:  Package 'php-symfony-dotenv' is not installed, so not removed
    960:  Package 'php-symfony-error-handler' is not installed, so not removed
    961:  Package 'php-symfony-event-dispatcher' is not installed, so not removed
    ...
    
    1139:  Package 'php-twig-html-extra' is not installed, so not removed
    1140:  Package 'php-twig-i18n-extension' is not installed, so not removed
    1141:  Package 'php-twig-inky-extra' is not installed, so not removed
    1142:  Package 'php-twig-intl-extra' is not installed, so not removed
    1143:  Package 'php-twig-markdown-extra' is not installed, so not removed
    1144:  Package 'php-twig-string-extra' is not installed, so not removed
    1145:  Package 'php8.3-uopz' is not installed, so not removed
    1146:  Package 'php-uopz-all-dev' is not installed, so not removed
    1147:  Package 'php8.3-uploadprogress' is not installed, so not removed
    1148:  Package 'php-uploadprogress-all-dev' is not installed, so not removed
    1149:  Package 'php8.3-uuid' is not installed, so not removed
    1150:  Package 'php-uuid-all-dev' is not installed, so not removed
    1151:  Package 'php-validate' is not installed, so not removed
    1152:  Package 'php-vlucas-phpdotenv' is not installed, so not removed
    1153:  Package 'php-voku-portable-ascii' is not installed, so not removed
    1154:  Package 'php-wmerrors' is not installed, so not removed
    1155:  Package 'php-xdebug-all-dev' is not installed, so not removed
    ...
    
    1889:  * `Zip::DOSTime`
    1890:  Run your test suite with the `RUBYZIP_V3_API_WARN` environment
    1891:  variable set to see warnings about usage of the old API. This will
    1892:  help you to identify any changes that you need to make to your code.
    1893:  See https://github.com/rubyzip/rubyzip/wiki/Updating-to-version-3.x for
    1894:  more information.
    1895:  Please ensure that your Gemfiles and .gemspecs are suitably restrictive
    1896:  to avoid an unexpected breakage when 3.0 is released (e.g. ~> 2.3.0).
    1897:  See https://github.com/rubyzip/rubyzip for details. The Changelog also
    1898:  lists other enhancements and bugfixes that have been implemented since
    1899:  version 2.3.0.
    1900:  2 installed gems you directly depend on are looking for funding.
    1901:  Run `bundle fund` for details
    1902:  (15:44:25) �[32mINFO: �[0mFrom Running bundle install (@@rules_ruby++ruby+bundle//:bundle):
    1903:  (15:44:25) �[32mINFO: �[0mFrom Building java/src/org/openqa/selenium/remote/libapi-class.jar (70 source files):
    1904:  java/src/org/openqa/selenium/remote/ErrorHandler.java:46: warning: [removal] ErrorCodes in org.openqa.selenium.remote has been deprecated and marked for removal
    1905:  private final ErrorCodes errorCodes;
    1906:  ^
    1907:  java/src/org/openqa/selenium/remote/ErrorHandler.java:60: warning: [removal] ErrorCodes in org.openqa.selenium.remote has been deprecated and marked for removal
    1908:  this.errorCodes = new ErrorCodes();
    1909:  ^
    1910:  java/src/org/openqa/selenium/remote/ErrorHandler.java:68: warning: [removal] ErrorCodes in org.openqa.selenium.remote has been deprecated and marked for removal
    1911:  public ErrorHandler(ErrorCodes codes, boolean includeServerErrors) {
    1912:  ^
    1913:  java/src/org/openqa/selenium/remote/Response.java:97: warning: [removal] ErrorCodes in org.openqa.selenium.remote has been deprecated and marked for removal
    1914:  ErrorCodes errorCodes = new ErrorCodes();
    1915:  ^
    1916:  java/src/org/openqa/selenium/remote/Response.java:97: warning: [removal] ErrorCodes in org.openqa.selenium.remote has been deprecated and marked for removal
    1917:  ErrorCodes errorCodes = new ErrorCodes();
    1918:  ^
    1919:  java/src/org/openqa/selenium/remote/ProtocolHandshake.java:181: warning: [removal] ErrorCodes in org.openqa.selenium.remote has been deprecated and marked for removal
    1920:  response.setStatus(ErrorCodes.SUCCESS);
    1921:  ^
    1922:  java/src/org/openqa/selenium/remote/ProtocolHandshake.java:182: warning: [removal] ErrorCodes in org.openqa.selenium.remote has been deprecated and marked for removal
    1923:  response.setState(ErrorCodes.SUCCESS_STRING);
    1924:  ^
    1925:  java/src/org/openqa/selenium/remote/W3CHandshakeResponse.java:53: warning: [removal] ErrorCodes in org.openqa.selenium.remote has been deprecated and marked for removal
    1926:  new ErrorCodes().toStatus((String) rawError, Optional.of(tuple.getStatusCode())));
    1927:  ^
    1928:  java/src/org/openqa/selenium/remote/W3CHandshakeResponse.java:56: warning: [removal] ErrorCodes in org.openqa.selenium.remote has been deprecated and marked for removal
    1929:  new ErrorCodes().getExceptionType((String) rawError);
    1930:  ^
    1931:  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
    1932:  private final ErrorCodes errorCodes = new ErrorCodes();
    1933:  ^
    1934:  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
    1935:  private final ErrorCodes errorCodes = new ErrorCodes();
    1936:  ^
    1937:  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
    1938:  int status = response.getStatus() == ErrorCodes.SUCCESS ? HTTP_OK : HTTP_INTERNAL_ERROR;
    1939:  ^
    1940:  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
    1941:  response.setStatus(ErrorCodes.UNKNOWN_COMMAND);
    1942:  ^
    1943:  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
    1944:  response.setStatus(ErrorCodes.UNHANDLED_ERROR);
    1945:  ^
    1946:  java/src/org/openqa/selenium/remote/codec/AbstractHttpResponseCodec.java:117: warning: [removal] ErrorCodes in org.openqa.selenium.remote has been deprecated and marked for removal
    1947:  response.setStatus(ErrorCodes.SUCCESS);
    1948:  ^
    1949:  java/src/org/openqa/selenium/remote/codec/AbstractHttpResponseCodec.java:118: warning: [removal] ErrorCodes in org.openqa.selenium.remote has been deprecated and marked for removal
    1950:  response.setState(errorCodes.toState(ErrorCodes.SUCCESS));
    1951:  ^
    1952:  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
    1953:  response.setState(errorCodes.toState(ErrorCodes.SUCCESS));
    1954:  ^
    1955:  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
    1956:  private final ErrorCodes errorCodes = new ErrorCodes();
    1957:  ^
    1958:  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
    1959:  private final ErrorCodes errorCodes = new ErrorCodes();
    1960:  ^
    1961:  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
    1962:  response.setStatus(ErrorCodes.UNKNOWN_COMMAND);
    1963:  ^
    1964:  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
    1965:  response.setStatus(ErrorCodes.UNHANDLED_ERROR);
    1966:  ^
    1967:  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
    1968:  response.setStatus(ErrorCodes.SUCCESS);
    1969:  ^
    ...
    
    2133:  �[0m   �[0m�[0m�[1m�[38;5;12m= �[0m�[0m�[1mnote�[0m�[0m: `#[warn(unused_mut)]` on by default�[0m
    2134:  �[0m�[1m�[33mwarning�[0m�[0m�[1m: 1 warning emitted�[0m
    2135:  (15:44:29) �[35mWARNING: �[0m/home/runner/work/selenium/selenium/javascript/atoms/BUILD.bazel:397:19: runfiles symlink javascript/atoms/test/action_test.html -> javascript/atoms/test/action_test.html obscured by javascript/atoms/test -> bazel-out/k8-fastbuild/bin/javascript/atoms/test
    2136:  (15:44:29) �[35mWARNING: �[0m/home/runner/work/selenium/selenium/javascript/atoms/BUILD.bazel:397:19: runfiles symlink javascript/atoms/test/attribute_test.html -> javascript/atoms/test/attribute_test.html obscured by javascript/atoms/test -> bazel-out/k8-fastbuild/bin/javascript/atoms/test
    2137:  (15:44:29) �[35mWARNING: �[0m/home/runner/work/selenium/selenium/javascript/atoms/BUILD.bazel:397:19: runfiles symlink javascript/atoms/test/child_locator_test.html -> javascript/atoms/test/child_locator_test.html obscured by javascript/atoms/test -> bazel-out/k8-fastbuild/bin/javascript/atoms/test
    2138:  (15:44:29) �[35mWARNING: �[0m/home/runner/work/selenium/selenium/javascript/atoms/BUILD.bazel:397:19: runfiles symlink javascript/atoms/test/click_link_test.html -> javascript/atoms/test/click_link_test.html obscured by javascript/atoms/test -> bazel-out/k8-fastbuild/bin/javascript/atoms/test
    2139:  (15:44:29) �[35mWARNING: �[0m/home/runner/work/selenium/selenium/javascript/atoms/BUILD.bazel:397: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
    2140:  (15:44:29) �[35mWARNING: �[0m/home/runner/work/selenium/selenium/javascript/atoms/BUILD.bazel:397: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
    2141:  (15:44:29) �[35mWARNING: �[0m/home/runner/work/selenium/selenium/javascript/atoms/BUILD.bazel:397: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
    2142:  (15:44:29) �[35mWARNING: �[0m/home/runner/work/selenium/selenium/javascript/atoms/BUILD.bazel:397: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
    2143:  (15:44:29) �[35mWARNING: �[0m/home/runner/work/selenium/selenium/javascript/atoms/BUILD.bazel:397:19: runfiles symlink javascript/atoms/test/deps.js -> javascript/atoms/test/deps.js obscured by javascript/atoms/test -> bazel-out/k8-fastbuild/bin/javascript/atoms/test
    2144:  (15:44:29) �[35mWARNING: �[0m/home/runner/work/selenium/selenium/javascript/atoms/BUILD.bazel:397: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
    2145:  (15:44:29) �[35mWARNING: �[0m/home/runner/work/selenium/selenium/javascript/atoms/BUILD.bazel:397: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
    2146:  (15:44:29) �[35mWARNING: �[0m/home/runner/work/selenium/selenium/javascript/atoms/BUILD.bazel:397: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
    2147:  (15:44:29) �[35mWARNING: �[0m/home/runner/work/selenium/selenium/javascript/atoms/BUILD.bazel:397: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
    2148:  (15:44:29) �[35mWARNING: �[0m/home/runner/work/selenium/selenium/javascript/atoms/BUILD.bazel:397: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
    2149:  (15:44:29) �[35mWARNING: �[0m/home/runner/work/selenium/selenium/javascript/atoms/BUILD.bazel:397:19: runfiles symlink javascript/atoms/test/events_test.html -> javascript/atoms/test/events_test.html obscured by javascript/atoms/test -> bazel-out/k8-fastbuild/bin/javascript/atoms/test
    ...
    
    2316:  |                     ~~^~~~~~~~~~~~~~~~~~~
    2317:  (15:44:34) �[32mINFO: �[0mFrom Building external/protobuf+/java/core/libcore.jar (43 source files, 1 source jar) [for tool]:
    2318:  external/protobuf+/java/core/src/main/java/com/google/protobuf/RepeatedFieldBuilderV3.java:28: warning: [dep-ann] deprecated item is not annotated with @Deprecated
    2319:  public class RepeatedFieldBuilderV3<
    2320:  ^
    2321:  (15:44:34) �[32mAnalyzing:�[0m 2264 targets (1647 packages loaded, 57320 targets configured)
    2322:  �[32m[10,073 / 10,779]�[0m 117 / 1616 tests;�[0m Extracting npm package @mui/[email protected]_60647716; 4s remote, remote-cache ... (14 actions, 8 running)
    2323:  (15:44:39) �[32mAnalyzing:�[0m 2264 targets (1651 packages loaded, 60158 targets configured)
    2324:  �[32m[10,852 / 12,011]�[0m 117 / 1974 tests;�[0m [Prepa] Splitting Javascript ../../../javascript/grid-ui/src/index.tsx [esbuild]
    2325:  (15:44:40) �[32mINFO: �[0mFrom PackageZip javascript/grid-ui/react-zip.jar:
    2326:  /mnt/engflow/worker/work/1/exec/bazel-out/k8-opt-exec-ST-a934f86a68ba/bin/external/rules_pkg+/pkg/private/zip/build_zip.runfiles/rules_python++python+python_3_9_x86_64-unknown-linux-gnu/lib/python3.9/zipfile.py:1522: UserWarning: Duplicate name: 'grid-ui/'
    2327:  return self._open_to_write(zinfo, force_zip64=force_zip64)
    2328:  (15:44:44) �[32mAnalyzing:�[0m 2264 targets (1653 packages loaded, 60423 targets configured)
    2329:  �[32m[10,970 / 12,243]�[0m 128 / 1974 tests;�[0m [Prepa] Testing //py:common-chrome-test/selenium/webdriver/common/driver_finder_tests.py ... (15 actions, 6 running)
    2330:  (15:44:50) �[32mAnalyzing:�[0m 2264 targets (1654 packages loaded, 60653 targets configured)
    2331:  �[32m[11,116 / 12,403]�[0m 137 / 1974 tests;�[0m Testing //py:unit-test/unit/selenium/webdriver/remote/error_handler_tests.py; 3s remote, remote-cache ... (50 actions, 1 running)
    2332:  (15:44:55) �[32mAnalyzing:�[0m 2264 targets (1654 packages loaded, 60657 targets configured)
    2333:  �[32m[11,171 / 12,505]�[0m 156 / 1974 tests;�[0m [Prepa] Testing //py:common-chrome-bidi-test/selenium/webdriver/common/executing_javascript_tests.py; 4s ... (50 actions, 0 running)
    2334:  (15:45:00) �[32mAnalyzing:�[0m 2264 targets (1654 packages loaded, 60658 targets configured)
    2335:  �[32m[11,223 / 12,608]�[0m 173 / 1974 tests;�[0m [Sched] Building java/src/org/openqa/selenium/grid/data/libdata.jar (29 source files); 8s ... (50 actions, 0 running)
    2336:  (15:45:06) �[32mAnalyzing:�[0m 2264 targets (1654 packages loaded, 60658 targets configured)
    2337:  �[32m[11,248 / 12,725]�[0m 188 / 1974 tests;�[0m [Sched] Building java/src/org/openqa/selenium/grid/data/libdata.jar (29 source files); 14s ... (50 actions, 1 running)
    2338:  (15:45:11) �[32mAnalyzing:�[0m 2264 targets (1654 packages loaded, 63765 targets configured)
    2339:  �[32m[11,397 / 12,812]�[0m 243 / 1992 tests;�[0m Building java/src/org/openqa/selenium/grid/data/libdata.jar (29 source files); 4s remote, remote-cache ... (50 actions, 1 running)
    2340:  (15:45:16) �[32mAnalyzing:�[0m 2264 targets (1654 packages loaded, 63814 targets configured)
    2341:  �[32m[11,621 / 12,942]�[0m 346 / 2042 tests;�[0m [Sched] Building java/test/org/openqa/selenium/grid/data/DefaultSlotMatcherTest.jar (1 source file); 4s ... (50 actions, 0 running)
    2342:  (15:45:21) �[32mAnalyzing:�[0m 2264 targets (1654 packages loaded, 63856 targets configured)
    2343:  �[32m[11,883 / 13,144]�[0m 455 / 2084 tests;�[0m [Sched] Building java/test/org/openqa/selenium/grid/data/DefaultSlotMatcherTest.jar (1 source file); 9s ... (48 actions, 2 running)
    2344:  (15:45:23) �[32mINFO: �[0mFrom Building java/test/org/openqa/selenium/remote/libsmall-tests-test-lib.jar (5 source files) and running annotation processors (AutoServiceProcessor):
    2345:  java/test/org/openqa/selenium/remote/WebDriverFixture.java:170: warning: [removal] ErrorCodes in org.openqa.selenium.remote has been deprecated and marked for removal
    2346:  response.setStatus(new ErrorCodes().toStatus(state, Optional.of(400)));
    2347:  ^
    2348:  (15:45:26) �[32mAnalyzing:�[0m 2264 targets (1654 packages loaded, 63887 targets configured)
    2349:  �[32m[12,087 / 13,318]�[0m 524 / 2115 tests;�[0m [Sched] Building java/test/org/openqa/selenium/grid/data/DefaultSlotMatcherTest.jar (1 source file); 14s ... (49 actions, 3 running)
    2350:  (15:45:26) �[32mINFO: �[0mFrom Building java/test/org/openqa/selenium/remote/RemotableByTest.jar (1 source file) and running annotation processors (AutoServiceProcessor):
    2351:  java/test/org/openqa/selenium/remote/RemotableByTest.java:23: warning: [removal] ErrorCodes in org.openqa.selenium.remote has been deprecated and marked for removal
    2352:  import static org.openqa.selenium.remote.ErrorCodes.SUCCESS_STRING;
    2353:  ^
    2354:  java/test/org/openqa/selenium/remote/RemotableByTest.java:23: warning: [removal] ErrorCodes in org.openqa.selenium.remote has been deprecated and marked for removal
    2355:  import static org.openqa.selenium.remote.ErrorCodes.SUCCESS_STRING;
    2356:  ^
    2357:  java/test/org/openqa/selenium/remote/RemotableByTest.java:23: warning: [removal] ErrorCodes in org.openqa.selenium.remote has been deprecated and marked for removal
    2358:  import static org.openqa.selenium.remote.ErrorCodes.SUCCESS_STRING;
    2359:  ^
    2360:  java/test/org/openqa/selenium/remote/RemotableByTest.java:45: warning: [removal] ErrorCodes in org.openqa.selenium.remote has been deprecated and marked for removal
    2361:  private final ErrorCodes errorCodes = new ErrorCodes();
    2362:  ^
    2363:  java/test/org/openqa/selenium/remote/RemotableByTest.java:45: warning: [removal] ErrorCodes in org.openqa.selenium.remote has been deprecated and marked for removal
    2364:  private final ErrorCodes errorCodes = new ErrorCodes();
    2365:  ^
    2366:  java/test/org/openqa/selenium/remote/RemotableByTest.java:45: warning: [removal] ErrorCodes in org.openqa.selenium.remote has been deprecated and marked for removal
    2367:  private final ErrorCodes errorCodes = new ErrorCodes();
    2368:  ^
    2369:  java/test/org/openqa/selenium/remote/RemotableByTest.java:45: warning: [removal] ErrorCodes in org.openqa.selenium.remote has been deprecated and marked for removal
    2370:  private final ErrorCodes errorCodes = new ErrorCodes();
    2371:  ^
    2372:  (15:45:31) �[32mAnalyzing:�[0m 2264 targets (1654 packages loaded, 63935 targets configured)
    2373:  �[32m[12,322 / 13,498]�[0m 630 / 2163 tests;�[0m [Sched] Building java/test/org/openqa/selenium/grid/data/DefaultSlotMatcherTest.jar (1 source file); 19s ... (50 actions, 2 running)
    2374:  (15:45:36) �[32mAnalyzing:�[0m 2264 targets (1654 packages loaded, 63986 targets configured)
    2375:  �[32m[12,535 / 13,651]�[0m 746 / 2212 tests;�[0m [Sched] Building java/test/org/openqa/selenium/grid/data/DefaultSlotMatcherTest.jar (1 source file); 24s ... (48 actions, 1 running)
    2376:  (15:45:38) �[32mINFO: �[0mFrom Building java/test/org/openqa/selenium/remote/codec/w3c/W3CHttpResponseCodecTest.jar (1 source file):
    2377:  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
    2378:  import static org.openqa.selenium.remote.ErrorCodes.METHOD_NOT_ALLOWED;
    2379:  ^
    2380:  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
    2381:  assertThat(decoded.getStatus()).isEqualTo(ErrorCodes.SUCCESS);
    2382:  ^
    2383:  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
    2384:  assertThat(decoded.getStatus()).isEqualTo(ErrorCodes.UNHANDLED_ERROR);
    2385:  ^
    2386:  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
    2387:  assertThat(decoded.getStatus()).isEqualTo(ErrorCodes.UNHANDLED_ERROR);
    2388:  ^
    2389:  (15:45:38) �[32mINFO: �[0mFrom Building java/test/org/openqa/selenium/remote/ErrorHandlerTest.jar (1 source file) and running annotation processors (AutoServiceProcessor):
    2390:  java/test/org/openqa/selenium/remote/ErrorHandlerTest.java:79: warning: [removal] ErrorCodes in org.openqa.selenium.remote has been deprecated and marked for removal
    2391:  handler.throwIfResponseFailed(createResponse(ErrorCodes.SUCCESS), 100);
    2392:  ^
    2393:  java/test/org/openqa/selenium/remote/ErrorHandlerTest.java:85: warning: [removal] ErrorCodes in org.openqa.selenium.remote has been deprecated and marked for removal
    2394:  assertThrowsCorrectExceptionType(ErrorCodes.NO_SUCH_WINDOW, NoSuchWindowException.class);
    2395:  ^
    2396:  java/test/org/openqa/selenium/remote/ErrorHandlerTest.java:86: warning: [removal] ErrorCodes in org.openqa.selenium.remote has been deprecated and marked for removal
    2397:  assertThrowsCorrectExceptionType(ErrorCodes.NO_SUCH_FRAME, NoSuchFrameException.class);
    2398:  ^
    2399:  java/test/org/openqa/selenium/remote/ErrorHandlerTest.java:87: warning: [removal] ErrorCodes in org.openqa.selenium.remote has been deprecated and marked for removal
    2400:  assertThrowsCorrectExceptionType(ErrorCodes.NO_SUCH_ELEMENT, NoSuchElementException.class);
    2401:  ^
    2402:  java/test/org/openqa/selenium/remote/ErrorHandlerTest.java:88: warning: [removal] ErrorCodes in org.openqa.selenium.remote has been deprecated and marked for removal
    2403:  assertThrowsCorrectExceptionType(ErrorCodes.UNKNOWN_COMMAND, UnsupportedCommandException.class);
    2404:  ^
    2405:  java/test/org/openqa/selenium/remote/ErrorHandlerTest.java:90: warning: [removal] ErrorCodes in org.openqa.selenium.remote has been deprecated and marked for removal
    2406:  ErrorCodes.METHOD_NOT_ALLOWED, UnsupportedCommandException.class);
    2407:  ^
    2408:  java/test/org/openqa/selenium/remote/ErrorHandlerTest.java:92: warning: [removal] ErrorCodes in org.openqa.selenium.remote has been deprecated and marked for removal
    2409:  ErrorCodes.STALE_ELEMENT_REFERENCE, StaleElementReferenceException.class);
    2410:  ^
    2411:  java/test/org/openqa/selenium/remote/ErrorHandlerTest.java:94: warning: [removal] ErrorCodes in org.openqa.selenium.remote has been deprecated and marked for removal
    2412:  ErrorCodes.INVALID_ELEMENT_STATE, InvalidElementStateException.class);
    2413:  ^
    2414:  java/test/org/openqa/selenium/remote/ErrorHandlerTest.java:95: warning: [removal] ErrorCodes in org.openqa.selenium.remote has been deprecated and marked for removal
    2415:  assertThrowsCorrectExceptionType(ErrorCodes.XPATH_LOOKUP_ERROR, InvalidSelectorException.class);
    2416:  ^
    2417:  java/test/org/openqa/selenium/remote/ErrorHandlerTest.java:107: warning: [removal] ErrorCodes in org.openqa.selenium.remote has been deprecated and marked for removal
    2418:  Response response = createResponse(ErrorCodes.UNHANDLED_ERROR);
    2419:  ^
    2420:  java/test/org/openqa/selenium/remote/ErrorHandlerTest.java:120: warning: [removal] ErrorCodes in org.openqa.selenium.remote has been deprecated and marked for removal
    2421:  createResponse(ErrorCodes.UNHANDLED_ERROR, "boom"), 123))
    2422:  ^
    2423:  java/test/org/openqa/selenium/remote/ErrorHandlerTest.java:133: warning: [removal] ErrorCodes in org.openqa.selenium.remote has been deprecated and marked for removal
    2424:  createResponse(ErrorCodes.UNHANDLED_ERROR, ImmutableMap.of("message", "boom")),
    2425:  ^
    2426:  java/test/org/openqa/selenium/remote/ErrorHandlerTest.java:147: warning: [removal] ErrorCodes in org.openqa.selenium.remote has been deprecated and marked for removal
    2427:  ErrorCodes.UNHANDLED_ERROR,
    2428:  ^
    2429:  java/test/org/openqa/selenium/remote/ErrorHandlerTest.java:167: warning: [removal] ErrorCodes in org.openqa.selenium.remote has been deprecated and marked for removal
    2430:  ErrorCodes.UNHANDLED_ERROR,
    2431:  ^
    2432:  java/test/org/openqa/selenium/remote/ErrorHandlerTest.java:193: warning: [removal] ErrorCodes in org.openqa.selenium.remote has been deprecated and marked for removal
    2433:  createResponse(ErrorCodes.UNHANDLED_ERROR, toMap(serverError)), 123))
    2434:  ^
    2435:  java/test/org/openqa/selenium/remote/ErrorHandlerTest.java:214: warning: [removal] ErrorCodes in org.openqa.selenium.remote has been deprecated and marked for removal
    2436:  createResponse(ErrorCodes.UNHANDLED_ERROR, data), 123))
    2437:  ^
    2438:  java/test/org/openqa/selenium/remote/ErrorHandlerTest.java:248: warning: [removal] ErrorCodes in org.openqa.selenium.remote has been deprecated and marked for removal
    2439:  createResponse(ErrorCodes.UNHANDLED_ERROR, data), 123))
    2440:  ^
    2441:  java/test/org/openqa/selenium/remote/ErrorHandlerTest.java:280: warning: [removal] ErrorCodes in org.openqa.selenium.remote has been deprecated and marked for removal
    2442:  createResponse(ErrorCodes.UNHANDLED_ERROR, data), 123))
    2443:  ^
    2444:  java/test/org/openqa/selenium/remote/ErrorHandlerTest.java:308: warning: [removal] ErrorCodes in org.openqa.selenium.remote has been deprecated and marked for removal
    2445:  createResponse(ErrorCodes.UNHANDLED_ERROR, data), 123))
    2446:  ^
    2447:  java/test/org/openqa/selenium/remote/ErrorHandlerTest.java:327: warning: [removal] ErrorCodes in org.openqa.selenium.remote has been deprecated and marked for removal
    2448:  createResponse(ErrorCodes.UNHANDLED_ERROR, data), 123))
    2449:  ^
    2450:  java/test/org/openqa/selenium/remote/ErrorHandlerTest.java:355: warning: [removal] ErrorCodes in org.openqa.selenium.remote has been deprecated and marked for removal
    2451:  createResponse(ErrorCodes.UNHANDLED_ERROR, data), 123))
    2452:  ^
    2453:  java/test/org/openqa/selenium/remote/ErrorHandlerTest.java:394: warning: [removal] ErrorCodes in org.openqa.selenium.remote has been deprecated and marked for removal
    2454:  createResponse(ErrorCodes.UNHANDLED_ERROR, data), 123))
    2455:  ^
    2456:  java/test/org/openqa/selenium/remote/ErrorHandlerTest.java:426: warning: [removal] ErrorCodes in org.openqa.selenium.remote has been deprecated and marked for removal
    2457:  createResponse(ErrorCodes.UNHANDLED_ERROR, toMap(serverError)), 123))
    2458:  ^
    2459:  java/test/org/openqa/selenium/remote/ErrorHandlerTest.java:435: warning: [removal] ErrorCodes in org.openqa.selenium.remote has been deprecated and marked for removal
    2460:  exceptions.put(ErrorCodes.NO_SUCH_SESSION, NoSuchSessionException.class);
    2461:  ^
    2462:  java/test/org/openqa/selenium/remote/ErrorHandlerTest.java:436: warning: [removal] ErrorCodes in org.openqa.selenium.remote has been deprecated and marked for removal
    2463:  exceptions.put(ErrorCodes.NO_SUCH_ELEMENT, NoSuchElementException.class);
    2464:  ^
    2465:  java/test/org/openqa/selenium/remote/ErrorHandlerTest.java:437: warning: [removal] ErrorCodes in org.openqa.selenium.remote has been deprecated and marked for removal
    2466:  exceptions.put(ErrorCodes.NO_SUCH_FRAME, NoSuchFrameException.class);
    2467:  ^
    2468:  java/test/org/openqa/selenium/remote/ErrorHandlerTest.java:438: warning: [removal] ErrorCodes in org.openqa.selenium.remote has been deprecated and marked for removal
    2469:  exceptions.put(ErrorCodes.UNKNOWN_COMMAND, UnsupportedCommandException.class);
    2470:  ^
    2471:  java/test/org/openqa/selenium/remote/ErrorHandlerTest.java:439: warning: [removal] ErrorCodes in org.openqa.selenium.remote has been deprecated and marked for removal
    2472:  exceptions.put(ErrorCodes.STALE_ELEMENT_REFERENCE, StaleElementReferenceException.class);
    2473:  ^
    2474:  java/test/org/openqa/selenium/remote/ErrorHandlerTest.java:440: warning: [removal] ErrorCodes in org.openqa.selenium.remote has been deprecated and marked for removal
    2475:  exceptions.put(ErrorCodes.INVALID_ELEMENT_STATE, InvalidElementStateException.class);
    2476:  ^
    2477:  java/test/org/openqa/selenium/remote/ErrorHandlerTest.java:441: warning: [removal] ErrorCodes in org.openqa.selenium.remote has been deprecated and marked for removal
    2478:  exceptions.put(ErrorCodes.UNHANDLED_ERROR, WebDriverException.class);
    2479:  ^
    2480:  java/test/org/openqa/selenium/remote/ErrorHandlerTest.java:442: warning: [removal] ErrorCodes in org.openqa.selenium.remote has been deprecated and marked for removal
    2481:  exceptions.put(ErrorCodes.JAVASCRIPT_ERROR, JavascriptException.class);
    2482:  ^
    2483:  java/test/org/openqa/selenium/remote/ErrorHandlerTest.java:443: warning: [removal] ErrorCodes in org.openqa.selenium.remote has been deprecated and marked for removal
    2484:  exceptions.put(ErrorCodes.XPATH_LOOKUP_ERROR, InvalidSelectorException.class);
    2485:  ^
    2486:  java/test/org/openqa/selenium/remote/ErrorHandlerTest.java:444: warning: [removal] ErrorCodes in org.openqa.selenium.remote has been deprecated and marked for removal
    2487:  exceptions.put(ErrorCodes.TIMEOUT, TimeoutException.class);
    2488:  ^
    2489:  java/test/org/openqa/selenium/remote/ErrorHandlerTest.java:445: warning: [removal] ErrorCodes in org.openqa.selenium.remote has been deprecated and marked for removal
    2490:  exceptions.put(ErrorCodes.NO_SUCH_WINDOW, NoSuchWindowException.class);
    2491:  ^
    2492:  java/test/org/openqa/selenium/remote/ErrorHandlerTest.java:446: warning: [removal] ErrorCodes in org.openqa.selenium.remote has been deprecated and marked for removal
    2493:  exceptions.put(ErrorCodes.INVALID_COOKIE_DOMAIN, InvalidCookieDomainException.class);
    2494:  ^
    2495:  java/test/org/openqa/selenium/remote/ErrorHandlerTest.java:447: warning: [removal] ErrorCodes in org.openqa.selenium.remote has been deprecated and marked for removal
    2496:  exceptions.put(ErrorCodes.UNABLE_TO_SET_COOKIE, UnableToSetCookieException.class);
    2497:  ^
    2498:  java/test/org/openqa/selenium/remote/ErrorHandlerTest.java:448: warning: [removal] ErrorCodes in org.openqa.selenium.remote has been deprecated and marked for removal
    2499:  exceptions.put(ErrorCodes.UNEXPECTED_ALERT_PRESENT, UnhandledAlertException.class);
    2500:  ^
    2501:  java/test/org/openqa/selenium/remote/ErrorHandlerTest.java:449: warning: [removal] ErrorCodes in org.openqa.selenium.remote has been deprecated and marked for removal
    2502:  exceptions.put(ErrorCodes.NO_ALERT_PRESENT, NoAlertPresentException.class);
    2503:  ^
    2504:  java/test/org/openqa/selenium/remote/ErrorHandlerTest.java:450: warning: [removal] ErrorCodes in org.openqa.selenium.remote has been deprecated and marked for removal
    2505:  exceptions.put(ErrorCodes.ASYNC_SCRIPT_TIMEOUT, ScriptTimeoutException.class);
    2506:  ^
    2507:  java/test/org/openqa/selenium/remote/ErrorHandlerTest.java:451: warning: [removal] ErrorCodes in org.openqa.selenium.remote has been deprecated and marked for removal
    2508:  exceptions.put(ErrorCodes.INVALID_SELECTOR_ERROR, InvalidSelectorException.class);
    2509:  ^
    2510:  java/test/org/openqa/selenium/remote/ErrorHandlerTest.java:452: warning: [removal] ErrorCodes in org.openqa.selenium.remote has been deprecated and marked for removal
    2511:  exceptions.put(ErrorCodes.SESSION_NOT_CREATED, SessionNotCreatedException.class);
    2512:  ^
    2513:  java/test/org/openqa/selenium/remote/ErrorHandlerTest.java:453: warning: [removal] ErrorCodes in org.openqa.selenium.remote has been deprecated and marked for removal
    2514:  exceptions.put(ErrorCodes.MOVE_TARGET_OUT_OF_BOUNDS, MoveTargetOutOfBoundsException.class);
    2515:  ^
    2516:  java/test/org/openqa/selenium/remote/ErrorHandlerTest.java:454: warning: [removal] ErrorCodes in org.openqa.selenium.remote has been deprecated and marked for removal
    2517:  exceptions.put(ErrorCodes.INVALID_XPATH_SELECTOR, InvalidSelectorException.class);
    2518:  ^
    2519:  java/test/org/openqa/selenium/remote/ErrorHandlerTest.java:455: warning: [removal] ErrorCodes in org.openqa.selenium.remote has been deprecated and marked for removal
    2520:  exceptions.put(ErrorCodes.INVALID_XPATH_SELECTOR_RETURN_TYPER, InvalidSelectorException.class);
    2521:  ^
    2522:  java/test/org/openqa/selenium/remote/ErrorHandlerTest.java:469: warning: [removal] ErrorCodes in org.openqa.selenium.remote has been deprecated and marked for removal
    2523:  ? ErrorCodes.INVALID_SELECTOR_ERROR
    2524:  ^
    2525:  java/test/org/openqa/selenium/remote/ErrorHandlerTest.java:471: warning: [removal] ErrorCodes in org.openqa.selenium.remote has been deprecated and marked for removal
    2526:  assertThat(new ErrorCodes().toStatusCode(e)).isEqualTo(expected);
    2527:  ^
    2528:  java/test/org/openqa/selenium/remote/ErrorHandlerTest.java:483: warning: [removal] ErrorCodes in org.openqa.selenium.remote has been deprecated and marked for removal
    2529:  response.setState(new ErrorCodes().toState(status));
    2530:  ^
    2531:  (15:45:40) �[32mINFO: �[0mFrom Building java/test/org/openqa/selenium/json/JsonTest.jar (1 source file):
    2532:  java/test/org/openqa/selenium/json/JsonTest.java:430: warning: [removal] ErrorCodes in org.openqa.selenium.remote has been deprecated and marked for removal
    2533:  assertThat(response.getState()).isEqualTo(new ErrorCodes().toState(0));
    2534:  ^
    2535:  java/test/org/openqa/selenium/json/JsonTest.java:441: warning: [removal] ErrorCodes in org.openqa.selenium.remote has been deprecated and marked for removal
    2536:  assertThat(response.getState()).isEqualTo(new ErrorCodes().toState(0));
    2537:  ^
    2538:  java/test/org/openqa/selenium/json/JsonTest.java:454: warning: [removal] ErrorCodes in org.openqa.selenium.remote has been deprecated and marked for removal
    2539:  assertThat(response.getState()).isEqualTo(new ErrorCodes().toState(32));
    2540:  ^
    ...
    
    5031:  at org.openqa.selenium.testing.drivers.OutOfProcessSeleniumServer.start(OutOfProcessSeleniumServer.java:133)
    5032:  at org.openqa.selenium.testing.drivers.RemoteSupplier.startServer(RemoteSupplier.java:77)
    5033:  at org.openqa.selenium.testing.drivers.RemoteSupplier.get(RemoteSupplier.java:55)
    5034:  at org.openqa.selenium.testing.drivers.RemoteSupplier.get(RemoteSupplier.java:29)
    5035:  at java.base/java.util.stream.ReferencePipeline$3$1.accept(ReferencePipeline.java:197)
    5036:  at java.base/java.util.Spliterators$ArraySpliterator.tryAdvance(Spliterators.java:1002)
    5037:  at java.base/java.util.stream.ReferencePipeline.forEachWithCancel(ReferencePipeline.java:129)
    5038:  at java.base/java.util.stream.AbstractPipeline.copyIntoWithCancel(AbstractPipeline.java:527)
    5039:  at java.base/java.util.stream.AbstractPipeline.copyInto(AbstractPipeline.java:513)
    5040:  at java.base/java.util.stream.AbstractPipeline.wrapAndCopyInto(AbstractPipeline.java:499)
    5041:  at java.base/java.util.stream.FindOps$FindOp.evaluateSequential(FindOps.java:150)
    5042:  at java.base/java.util.stream.AbstractPipeline.evaluate(AbstractPipeline.java:234)
    5043:  at java.base/java.util.stream.ReferencePipeline.findFirst(ReferencePipeline.java:647)
    5044:  at org.openqa.selenium.testing.drivers.WebDriverBuilder.get(WebDriverBuilder.java:77)
    5045:  at org.openqa.selenium.devtools.NetworkInterceptorTest.setup(NetworkInterceptorTest.java:68)
    5046:  5) shouldProceedAsNormalIfRequestResultInAnKnownErrorAndExceptionNotCaughtByFilter() (org.openqa.selenium.devtools.NetworkInterceptorTest)
    5047:  java.lang.RuntimeException: org.openqa.selenium.net.UrlChecker$TimeoutException: Timed out waiting for [http://127.0.0.1:24565/status] to be available after 10003 ms
    ...
    
    5083:  at org.openqa.selenium.testing.drivers.OutOfProcessSeleniumServer.start(OutOfProcessSeleniumServer.java:133)
    5084:  at org.openqa.selenium.testing.drivers.RemoteSupplier.startServer(RemoteSupplier.java:77)
    5085:  at org.openqa.selenium.testing.drivers.RemoteSupplier.get(RemoteSupplier.java:55)
    5086:  at org.openqa.selenium.testing.drivers.RemoteSupplier.get(RemoteSupplier.java:29)
    5087:  at java.base/java.util.stream.ReferencePipeline$3$1.accept(ReferencePipeline.java:197)
    5088:  at java.base/java.util.Spliterators$ArraySpliterator.tryAdvance(Spliterators.java:1002)
    5089:  at java.base/java.util.stream.ReferencePipeline.forEachWithCancel(ReferencePipeline.java:129)
    5090:  at java.base/java.util.stream.AbstractPipeline.copyIntoWithCancel(AbstractPipeline.java:527)
    5091:  at java.base/java.util.stream.AbstractPipeline.copyInto(AbstractPipeline.java:513)
    5092:  at java.base/java.util.stream.AbstractPipeline.wrapAndCopyInto(AbstractPipeline.java:499)
    5093:  at java.base/java.util.stream.FindOps$FindOp.evaluateSequential(FindOps.java:150)
    5094:  at java.base/java.util.stream.AbstractPipeline.evaluate(AbstractPipeline.java:234)
    5095:  at java.base/java.util.stream.ReferencePipeline.findFirst(ReferencePipeline.java:647)
    5096:  at org.openqa.selenium.testing.drivers.WebDriverBuilder.get(WebDriverBuilder.java:77)
    5097:  at org.openqa.selenium.devtools.NetworkInterceptorTest.setup(NetworkInterceptorTest.java:68)
    5098:  6) shouldPassResponseBackToBrowserIfRequestResultsInAnKnownErrorAndExceptionCaughtByFilter() (org.openqa.selenium.devtools.NetworkInterceptorTest)
    5099:  java.lang.RuntimeException: org.openqa.selenium.net.UrlChecker$TimeoutException: Timed out waiting for [http://127.0.0.1:30639/status] to be available after 10000 ms
    ...
    
    5541:  at java.base/java.util.stream.ReferencePipeline.forEachWithCancel(ReferencePipeline.java:129)
    5542:  at java.base/java.util.stream.AbstractPipeline.copyIntoWithCancel(AbstractPipeline.java:527)
    5543:  at java.base/java.util.stream.AbstractPipeline.copyInto(AbstractPipeline.java:513)
    5544:  at java.base/java.util.stream.AbstractPipeline.wrapAndCopyInto(AbstractPipeline.java:499)
    5545:  at java.base/java.util.stream.FindOps$FindOp.evaluateSequential(FindOps.java:150)
    5546:  at java.base/java.util.stream.AbstractPipeline.evaluate(AbstractPipeline.java:234)
    5547:  at java.base/java.util.stream.ReferencePipeline.findFirst(ReferencePipeline.java:647)
    5548:  at org.openqa.selenium.testing.drivers.WebDriverBuilder.get(WebDriverBuilder.java:77)
    5549:  at org.openqa.selenium.testing.SeleniumExtension.actuallyCreateDriver(SeleniumExtension.java:276)
    5550:  at org.openqa.selenium.testing.SeleniumExtension.actuallyCreateDriver(SeleniumExtension.java:265)
    5551:  at org.openqa.selenium.testing.SeleniumExtension.getDriver(SeleniumExtension.java:254)
    5552:  at org.openqa.selenium.testing.JupiterTestBase.prepareEnvironment(JupiterTestBase.java:84)
    5553:  at java.base/java.lang.reflect.Method.invoke(Method.java:568)
    5554:  at java.base/java.util.ArrayList.forEach(ArrayList.java:1511)
    5555:  at java.base/java.util.ArrayList.forEach(ArrayList.java:1511)
    5556:  2) canListenToFetchError() (org.openqa.selenium.bidi.network.NetworkEventsTest)
    5557:  java.lang.RuntimeException: org.openqa.selenium.net.UrlChecker$TimeoutException: Timed out waiting for [http://127.0.0.1:11132/status] to be available after 10002 ms
    ...
    
    6571:  (15:52:13) �[32m[15,818 / 15,979]�[0m 2032 / 2264 tests;�[0m Testing //java/test/org/openqa/selenium/bidi/script:CallFunctionParameterTest-remote; 250s remote, remote-cache ... (50 actions, 39 running)
    6572:  (15:52:19) �[32m[15,820 / 15,979]�[0m 2033 / 2264 tests;�[0m Testing //java/test/org/openqa/selenium/bidi/script:CallFunctionParameterTest-remote; 255s remote, remote-cache ... (50 actions, 42 running)
    6573:  (15:52:24) �[32m[15,824 / 15,979]�[0m 2036 / 2264 tests;�[0m Testing //java/test/org/openqa/selenium/bidi/script:CallFunctionParameterTest-remote; 260s remote, remote-cache ... (50 actions, 39 running)
    6574:  (15:52:31) �[32m[15,824 / 15,979]�[0m 2036 / 2264 tests;�[0m Testing //java/test/org/openqa/selenium/bidi/script:CallFunctionParameterTest-remote; 267s remote, remote-cache ... (50 actions, 41 running)
    6575:  (15:52:36) �[32m[15,824 / 15,979]�[0m 2036 / 2264 tests;�[0m Testing //java/test/org/openqa/selenium/bidi/script:CallFunctionParameterTest-remote; 273s remote, remote-cache ... (50 actions, 42 running)
    6576:  (15:52:36) �[31m�[1mFAIL: �[0m//java/test/org/openqa/selenium/bidi/input:DefaultKeyboardTest-edge-remote (see /home/runner/.bazel/execroot/_main/bazel-out/k8-fastbuild/testlogs/java/test/org/openqa/selenium/bidi/input/DefaultKeyboardTest-edge-remote/test_attempts/attempt_1.log)
    6577:  (15:52:41) �[32m[15,829 / 15,983]�[0m 2039 / 2264 tests;�[0m Testing //java/test/org/openqa/selenium/bidi/script:CallFunctionParameterTest-remote; 278s remote, remote-cache ... (50 actions, 40 running)
    6578:  (15:52:47) �[32m[15,832 / 15,983]�[0m 2042 / 2264 tests;�[0m Testing //java/test/org/openqa/selenium/bidi/script:CallFunctionParameterTest-remote; 283s remote, remote-cache ... (50 actions, 41 running)
    6579:  (15:52:52) �[32m[15,834 / 15,983]�[0m 2044 / 2264 tests;�[0m Testing //java/test/org/openqa/selenium/bidi/script:CallFunctionParameterTest-remote; 289s remote, remote-cache ... (50 actions, 41 running)
    6580:  (15:52:57) �[32m[15,834 / 15,983]�[0m 2044 / 2264 tests;�[0m Testing //java/test/org/openqa/selenium/bidi/script:CallFunctionParameterTest-remote; 294s remote, remote-cache ... (50 actions, 43 running)
    6581:  (15:53:02) �[32m[15,840 / 15,983]�[0m 2051 / 2264 tests;�[0m Testing //java/test/org/openqa/selenium/bidi/script:CallFunctionParameterTest-remote; 299s remote, remote-cache ... (50 actions, 40 running)
    6582:  (15:53:08) �[32m[15,846 / 15,983]�[0m 2057 / 2264 tests;�[0m Testing //java/test/org/openqa/selenium/bidi/script:CallFunctionParameterTest-remote; 304s remote, remote-cache ... (50 actions, 41 running)
    6583:  (15:53:13) �[32m[15,851 / 15,985]�[0m 2059 / 2264 tests;�[0m Testing //java/test/org/openqa/selenium/bidi/script:CallFunctionParameterTest-remote; 309s remote, remote-cache ... (50 actions, 40 running)
    6584:  (15:53:18) �[32m[15,854 / 15,985]�[0m 2061 / 2264 tests;�[0m Testing //java/test/org/openqa/selenium/bidi/script:CallFunctionParameterTest-remote; 315s remote, remote-cache ... (50 actions, 39 running)
    6585:  (15:53:19) �[31m�[1mFAIL: �[0m//java/test/org/openqa/selenium/bidi/input:DefaultWheelTest-remote (see /home/runner/.bazel/execroot/_main/bazel-out/k8-fastbuild/testlogs/java/test/org/openqa/selenium/bidi/input/DefaultWheelTest-remote/test.log)
    6586:  �[31m�[1mFAILED: �[0m//java/test/org/openqa/selenium/bidi/input:DefaultWheelTest-remote (Summary)
    6587:  /home/runner/.bazel/execroot/_main/bazel-out/k8-fastbuild/testlogs/java/test/org/openqa/selenium/bidi/input/DefaultWheelTest-remote/test.log
    ...
    
    6619:  15:50:54.717 INFO [LocalDistributor.newSession] - Session created by the Distributor. Id: 7305c5ba-68a5-4255-b3d6-d86c13f6c66d 
    6620:  Caps: Capabilities {acceptInsecureCerts: true, browserName: firefox, browserVersion: 137.0, moz:accessibilityChecks: false, moz:buildID: 20250327043313, moz:debuggerAddress: 127.0.0.1:26812, moz:firefoxOptions: {binary: external/+pin_browsers_exte..., prefs: {remote.active-protocols: 3}}, moz:geckodriverVersion: 0.36.0, moz:headless: false, moz:platformVersion: 6.1.0-32-cloud-amd64, moz:processID: 14254, moz:profile: /tmp/rust_mozprofileJZ9XBS, moz:shutdownTimeout: 60000, moz:webdriverClick: true, moz:windowless: false, pageLoadStrategy: normal, platformName: linux, proxy: Proxy(), se:cdpEnabled: false, se:gridWebSocketUrl: ws://127.0.0.1:26812/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:32411/sessio...}
    6621:  15:50:54.771 INFO [ProxyNodeWebsockets.createWsEndPoint] - Establishing connection to ws://127.0.0.1:26812/session/7305c5ba-68a5-4255-b3d6-d86c13f6c66d
    6622:  15:51:00.282 INFO [LocalNode.stopTimedOutSession] - Session id 7305c5ba-68a5-4255-b3d6-d86c13f6c66d is stopping on demand...
    6623:  15:51:00.283 INFO [LocalSessionMap.remove] - Deleted session from local Session Map, Id: 7305c5ba-68a5-4255-b3d6-d86c13f6c66d
    6624:  15:51:00.283 INFO [GridModel.release] - Releasing slot for session id 7305c5ba-68a5-4255-b3d6-d86c13f6c66d
    6625:  15:51:00.283 INFO [SessionSlot.stop] - Stopping session 7305c5ba-68a5-4255-b3d6-d86c13f6c66d
    6626:  15:51:00.322 INFO [LocalDistributor.newSession] - Session request received by the Distributor: 
    6627:  [Capabilities {acceptInsecureCerts: true, browserName: firefox, moz:firefoxOptions: {binary: external/+pin_browsers_exte..., prefs: {remote.active-protocols: 3}}, webSocketUrl: true}]
    6628:  15:51:05.523 INFO [LocalNode.newSession] - Session created by the Node. Id: bdb41c26-4044-4806-919e-b3be62d1b620, Caps: Capabilities {acceptInsecureCerts: true, browserName: firefox, browserVersion: 137.0, moz:accessibilityChecks: false, moz:buildID: 20250327043313, moz:debuggerAddress: 127.0.0.1:5630, moz:firefoxOptions: {binary: external/+pin_browsers_exte..., prefs: {remote.active-protocols: 3}}, moz:geckodriverVersion: 0.36.0, moz:headless: false, moz:platformVersion: 6.1.0-32-cloud-amd64, moz:processID: 14508, moz:profile: /tmp/rust_mozprofilet1fKvq, moz:shutdownTimeout: 60000, moz:webdriverClick: true, moz:windowless: false, pageLoadStrategy: normal, platformName: linux, proxy: Proxy(), se:cdpEnabled: false, se:gridWebSocketUrl: ws://127.0.0.1:5630/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:32411/sessio...}
    6629:  15:51:05.533 INFO [LocalDistributor.newSession] - Session created by the Distributor. Id: bdb41c26-4044-4806-919e-b3be62d1b620 
    6630:  Caps: Capabilities {acceptInsecureCerts: true, browserName: firefox, browserVersion: 137.0, moz:accessibilityChecks: false, moz:buildID: 20250327043313, moz:debuggerAddress: 127.0.0.1:5630, moz:firefoxOptions: {binary: external/+pin_browsers_exte..., prefs: {remote.active-protocols: 3}}, moz:geckodriverVersion: 0.36.0, moz:headless: false, moz:platformVersion: 6.1.0-32-cloud-amd64, moz:processID: 14508, moz:profile: /tmp/rust_mozprofilet1fKvq, moz:shutdownTimeout: 60000, moz:webdriverClick: true, moz:windowless: false, pageLoadStrategy: normal, platformName: linux, proxy: Proxy(), se:cdpEnabled: false, se:gridWebSocketUrl: ws://127.0.0.1:5630/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:32411/sessio...}
    6631:  15:51:05.584 INFO [ProxyNodeWebsockets.createWsEndPoint] - Establishing connection to ws://127.0.0.1:5630/session/bdb41c26-4044-4806-919e-b3be62d1b620
    6632:  Failures: 1
    6633:  1) shouldScrollFromViewportByGivenAmount() (org.openqa.selenium.bidi.input.DefaultWheelTest)
    6634:  org.opentest4j.AssertionFailedError: expected: <true> but was: <false>
    6635:  at org.junit.jupiter.api.AssertionFailureBuilder.build(AssertionFailureBuilder.java:151)
    ...
    
    6901:  at java.base/java.util.stream.ReferencePipeline.forEachWithCancel(ReferencePipeline.java:129)
    6902:  at java.base/java.util.stream.AbstractPipeline.copyIntoWithCancel(AbstractPipeline.java:527)
    6903:  at java.base/java.util.stream.AbstractPipeline.copyInto(AbstractPipeline.java:513)
    6904:  at java.base/java.util.stream.AbstractPipeline.wrapAndCopyInto(AbstractPipeline.java:499)
    6905:  at java.base/java.util.stream.FindOps$FindOp.evaluateSequential(FindOps.java:150)
    6906:  at java.base/java.util.stream.AbstractPipeline.evaluate(AbstractPipeline.java:234)
    6907:  at java.base/java.util.stream.ReferencePipeline.findFirst(ReferencePipeline.java:647)
    6908:  at org.openqa.selenium.testing.drivers.WebDriverBuilder.get(WebDriverBuilder.java:77)
    6909:  at org.openqa.selenium.testing.SeleniumExtension.actuallyCreateDriver(SeleniumExtension.java:276)
    6910:  at org.openqa.selenium.testing.SeleniumExtension.actuallyCreateDriver(SeleniumExtension.java:265)
    6911:  at org.openqa.selenium.testing.SeleniumExtension.getDriver(SeleniumExtension.java:254)
    6912:  at org.openqa.selenium.testing.JupiterTestBase.prepareEnvironment(JupiterTestBase.java:84)
    6913:  at java.base/java.lang.reflect.Method.invoke(Method.java:568)
    6914:  at java.base/java.util.ArrayList.forEach(ArrayList.java:1511)
    6915:  at java.base/java.util.ArrayList.forEach(ArrayList.java:1511)
    6916:  4) throwErrorWhenOriginOffsetIsOutOfViewport() (org.openqa.selenium.bidi.input.DefaultWheelTest)
    6917:  java.lang.RuntimeException: org.openqa.selenium.net.UrlChecker$TimeoutException: Timed out waiting for [http://127.0.0.1:9070/status] to be available after 10011 ms
    ...
    
    7041:  at java.base/java.util.stream.ReferencePipeline.forEachWithCancel(ReferencePipeline.java:129)
    7042:  at java.base/java.util.stream.AbstractPipeline.copyIntoWithCancel(AbstractPipeline.java:527)
    7043:  at java.base/java.util.stream.AbstractPipeline.copyInto(AbstractPipeline.java:513)
    7044:  at java.base/java.util.stream.AbstractPipeline.wrapAndCopyInto(AbstractPipeline.java:499)
    7045:  at java.base/java.util.stream.FindOps$FindOp.evaluateSequential(FindOps.java:150)
    7046:  at java.base/java.util.stream.AbstractPipeline.evaluate(AbstractPipeline.java:234)
    7047:  at java.base/java.util.stream.ReferencePipeline.findFirst(ReferencePipeline.java:647)
    7048:  at org.openqa.selenium.testing.drivers.WebDriverBuilder.get(WebDriverBuilder.java:77)
    7049:  at org.openqa.selenium.testing.SeleniumExtension.actuallyCreateDriver(SeleniumExtension.java:276)
    7050:  at org.openqa.selenium.testing.SeleniumExtension.actuallyCreateDriver(SeleniumExtension.java:265)
    7051:  at org.openqa.selenium.testing.SeleniumExtension.getDriver(SeleniumExtension.java:254)
    7052:  at org.openqa.selenium.testing.JupiterTestBase.prepareEnvironment(JupiterTestBase.java:84)
    7053:  at java.base/java.lang.reflect.Method.invoke(Method.java:568)
    7054:  at java.base/java.util.ArrayList.forEach(ArrayList.java:1511)
    7055:  at java.base/java.util.ArrayList.forEach(ArrayList.java:1511)
    7056:  6) throwErrorWhenElementOriginIsOutOfViewport() (org.openqa.selenium.bidi.input.DefaultWheelTest)
    7057:  java.lang.RuntimeException: org.openqa.selenium.net.UrlChecker$TimeoutException: Timed out waiting for [http://127.0.0.1:18914/status] to be available after 10009 ms
    ...
    
    7183:  at java.base/java.util.stream.AbstractPipeline.copyInto(AbstractPipeline.java:513)
    7184:  at java.base/java.util.stream.AbstractPipeline.wrapAndCopyInto(AbstractPipeline.java:499)
    7185:  at java.base/java.util.stream.FindOps$FindOp.evaluateSequential(FindOps.java:150)
    7186:  at java.base/java.util.stream.AbstractPipeline.evaluate(AbstractPipeline.java:234)
    7187:  at java.base/java.util.stream.ReferencePipeline.findFirst(ReferencePipeline.java:647)
    7188:  at org.openqa.selenium.testing.drivers.WebDriverBuilder.get(WebDriverBuilder.java:77)
    7189:  at org.openqa.selenium.testing.SeleniumExtension.actuallyCreateDriver(SeleniumExtension.java:276)
    7190:  at org.openqa.selenium.testing.SeleniumExtension.actuallyCreateDriver(SeleniumExtension.java:265)
    7191:  at org.openqa.selenium.testing.SeleniumExtension.getDriver(SeleniumExtension.java:254)
    7192:  at org.openqa.selenium.testing.JupiterTestBase.prepareEnvironment(JupiterTestBase.java:84)
    7193:  at java.base/java.lang.reflect.Method.invoke(Method.java:568)
    7194:  at java.base/java.util.ArrayList.forEach(ArrayList.java:1511)
    7195:  at java.base/java.util.ArrayList.forEach(ArrayList.java:1511)
    7196:  Execution result: https://gypsum.cluster.engflow.com/actions/executions/ChD7GN9OELlSx5EzHhc8DR_WEgdkZWZhdWx0GiUKIDofGnNKyFXvOJIa3YE4HXJ6nfpgLAR_bLw-kZtZ8_rPELwD
    7197:  ================================================================================
    7198:  (15:53:26) �[32m[15,855 / 15,985]�[0m 2062 / 2264 tests, �[31m�[1m1 failed�[0m;�[0m Testing //java/test/org/openqa/selenium/bidi/script:CallFunctionParameterTest-remote; 322s remote, remote-cache ... (50 actions, 40 running)
    7199:  (15:53:31) �[32m[15,857 / 15,985]�[0m 2064 / 2264 tests, �[31m�[1m1 failed�[0m;�[0m Testing //java/test/org/openqa/selenium/bidi/script:CallFunctionParameterTest-remote; 327s remote, remote-cache ... (50 actions, 39 running)
    7200:  (15:53:37) �[32m[15,858 / 15,985]�[0m 2065 / 2264 tests, �[31m�[1m1 failed�[0m;�[0m Testing //java/test/org/openqa/selenium/bidi/script:CallFunctionParameterTest-remote; 333s remote, remote-cache ... (50 actions, 38 running)
    7201:  (15:53:42) �[32m[15,863 / 15,985]�[0m 2070 / 2264 tests, �[31m�[1m1 failed�[0m;�[0m Testing //java/test/org/openqa/selenium/bidi/script:CallFunctionParameterTest-remote; 339s remote, remote-cache ... (50 actions, 36 running)
    7202:  (15:53:48) �[32m[15,863 / 15,985]�[0m 2070 / 2264 tests, �[31m�[1m1 failed�[0m;�[0m Testing //java/test/org/openqa/selenium/bidi/script:CallFunctionParameterTest-remote; 345s remote, remote-cache ... (50 actions, 37 running)
    7203:  (15:53:53) �[32m[15,863 / 15,985]�[0m 2070 / 2264 tests, �[31m�[1m1 failed�[0m;�[0m Testing //java/test/org/openqa/selenium/bidi/script:CallFunctionParameterTest-remote; 350s remote, remote-cache ... (50 actions, 37 running)
    7204:  (15:53:56) �[31m�[1mFAIL: �[0m//java/test/org/openqa/selenium/bidi/script:EvaluateParametersTest-chrome-remote (see /home/runner/.bazel/execroot/_main/bazel-out/k8-fastbuild/testlogs/java/test/org/openqa/selenium/bidi/script/EvaluateParametersTest-chrome-remote/test_attempts/attempt_1.log)
    7205:  (15:53:58) �[32m[15,866 / 15,985]�[0m 2073 / 2264 tests, �[31m�[1m1 failed�[0m;�[0m Testing //java/test/org/openqa/selenium/bidi/script:CallFunctionParameterTest-remote; 355s remote, remote-cache ... (50 actions, 36 running)
    7206:  (15:54:06) �[32m[15,866 / 15,985]�[0m 2073 / 2264 tests, �[31m�[1m1 failed�[0m;�[0m Testing //java/test/org/openqa/selenium/bidi/script:CallFunctionParameterTest-remote; 363s remote, remote-cache ... (50 actions, 38 running)
    7207:  (15:54:12) �[32m[15,868 / 15,985]�[0m 2075 / 2264 tests, �[31m�[1m1 failed�[0m;�[0m Testing //java/test/org/openqa/selenium/bidi/script:CallFunctionParameterTest-remote; 368s remote, remote-cache ... (50 actions, 39 running)
    7208:  (15:54:17) �[32m[15,869 / 15,985]�[0m 2076 / 2264 tests, �[31m�[1m1 failed�[0m;�[0m Testing //java/test/org/openqa/selenium/bidi/script:CallFunctionParameterTest-remote; 374s remote, remote-cache ... (50 actions, 38 running)
    7209:  (15:54:22) �[32m[15,870 / 15,985]�[0m 2077 / 2264 tests, �[31m�[1m1 failed�[0m;�[0m Testing //java/test/org/openqa/selenium/bidi/script:CallFunctionParameterTest-remote; 379s remote, remote-cache ... (50 actions, 38 running)
    7210:  (15:54:28) �[32m[15,872 / 15,985]�[0m 2079 / 2264 tests, �[31m�[1m1 failed�[0m;�[0m Testing //java/test/org/openqa/selenium/bidi/script:CallFunctionParameterTest-remote; 385s remote, remote-cache ... (50 actions, 40 running)
    7211:  (15:54:33) �[32m[15,873 / 15,985]�[0m 2080 / 2264 tests, �[31m�[1m1 failed�[0m;�[0m Testing //java/test/org/openqa/selenium/bidi/script:CallFunctionParameterTest-remote; 390s remote, remote-cache ... (50 actions, 40 running)
    7212:  (15:54:39) �[32m[15,873 / 15,985]�[0m 2081 / 2264 tests, �[31m�[1m1 failed�[0m;�[0m Testing //java/test/org/openqa/selenium/bidi/script:CallFunctionParameterTest-remote; 396s remote, remote-cache ... (50 actions, 40 running)
    7213:  (15:54:45) �[32m[15,876 / 15,985]�[0m 2083 / 2264 tests, �[31m�[1m1 failed�[0m;�[0m Testing //java/test/org/openqa/selenium/bidi/script:CallFunctionParameterTest-remote; 401s remote, remote-cache ... (50 actions, 39 running)
    7214:  (15:54:50) �[32m[15,882 / 15,985]�[0m 2089 / 2264 tests, �[31m�[1m1 failed�[0m;�[0m Testing //java/test/org/openqa/selenium/bidi/script:CallFunctionParameterTest-remote; 406s remote, remote-cache ... (50 actions, 37 running)
    7215:  (15:54:50) �[31m�[1mFAIL: �[0m//java/test/org/openqa/selenium/devtools:JavascriptExceptionsTest-edge-remote (see /home/runner/.bazel/execroot/_main/bazel-out/k8-fastbuild/testlogs/java/test/org/openqa/selenium/devtools/JavascriptExceptionsTest-edge-remote/test_attempts/attempt_1.log)
    7216:  (15:54:55) �[32m[15,887 / 15,985]�[0m 2095 / 2264 tests, �[31m�[1m1 failed�[0m;�[0m Testing //java/test/org/openqa/selenium/bidi/script:CallFunctionParameterTest-remote; 412s remote, remote-cache ... (50 actions, 36 running)
    7217:  (15:55:02) �[32m[15,894 / 15,985]�[0m 2101 / 2264 tests, �[31m�[1m1 failed�[0m;�[0m Testing //java/test/org/openqa/selenium/bidi/script:CallFunctionParameterTest-remote; 419s remote, remote-cache ... (50 actions, 36 running)
    7218:  �[35mFLAKY: �[0m//java/test/org/openqa/selenium/bidi/script:EvaluateParametersTest-chrome-remote (Summary)
    ...
    
    7642:  at java.base/java.util.stream.AbstractPipeline.copyIntoWithCancel(AbstractPipeline.java:527)
    7643:  at java.base/java.util.stream.AbstractPipeline.copyInto(AbstractPipeline.java:513)
    7644:  at java.base/java.util.stream.AbstractPipeline.wrapAndCopyInto(AbstractPipeline.java:499)
    7645:  at java.base/java.util.stream.FindOps$FindOp.evaluateSequential(FindOps.java:150)
    7646:  at java.base/java.util.stream.AbstractPipeline.evaluate(AbstractPipeline.java:234)
    7647:  at java.base/java.util.stream.ReferencePipeline.findFirst(ReferencePipeline.java:647)
    7648:  at org.openqa.selenium.testing.drivers.WebDriverBuilder.get(WebDriverBuilder.java:77)
    7649:  at org.openqa.selenium.testing.SeleniumExtension.actuallyCreateDriver(SeleniumExtension.java:276)
    7650:  at org.openqa.selenium.testing.SeleniumExtension.actuallyCreateDriver(SeleniumExtension.java:265)
    7651:  at org.openqa.selenium.testing.SeleniumExtension.getDriver(SeleniumExtension.java:254)
    7652:  at org.openqa.selenium.testing.JupiterTestBase.prepareEnvironment(JupiterTestBase.java:84)
    7653:  at java.base/java.lang.reflect.Method.invoke(Method.java:568)
    7654:  at java.base/java.util.ArrayList.forEach(ArrayList.java:1511)
    7655:  at java.base/java.util.ArrayList.forEach(ArrayList.java:1511)
    7656:  6) canEvaluateScriptWithResulWithOwnership() (org.openqa.selenium.bidi.script.EvaluateParametersTest)
    7657:  (15:55:11) �[32m[15,896 / 15,985]�[0m 2103 / 2264 tests, �[31m�[1m1 failed�[0m;�[0m Testing //java/test/org/openqa/selenium/bidi/script:CallFunctionParameterTest-remote; 427s remote, remote-cache ... (50 actions, 35 running)
    7658:  java.lang.RuntimeException: org.openqa.selenium.net.UrlChecker$TimeoutException: Timed out waiting for [http://127.0.0.1:23679/status] to be available after 10000 ms
    ...
    
    7784:  at java.base/java.util.stream.AbstractPipeline.copyInto(AbstractPipeline.java:513)
    7785:  at java.base/java.util.stream.AbstractPipeline.wrapAndCopyInto(AbstractPipeline.java:499)
    7786:  at java.base/java.util.stream.FindOps$FindOp.evaluateSequential(FindOps.java:150)
    7787:  at java.base/java.util.stream.AbstractPipeline.evaluate(AbstractPipeline.java:234)
    7788:  at java.base/java.util.stream.ReferencePipeline.findFirst(ReferencePipeline.java:647)
    7789:  at org.openqa.selenium.testing.drivers.WebDriverBuilder.get(WebDriverBuilder.java:77)
    7790:  at org.openqa.selenium.testing.SeleniumExtension.actuallyCreateDriver(SeleniumExtension.java:276)
    7791:  at org.openqa.selenium.testing.SeleniumExtension.actuallyCreateDriver(SeleniumExtension.java:265)
    7792:  at org.openqa.selenium.testing.SeleniumExtension.getDriver(SeleniumExtension.java:254)
    7793:  at org.openqa.selenium.testing.JupiterTestBase.prepareEnvironment(JupiterTestBase.java:84)
    7794:  at java.base/java.lang.reflect.Method.invoke(Method.java:568)
    7795:  at java.base/java.util.ArrayList.forEach(ArrayList.java:1511)
    7796:  at java.base/java.util.ArrayList.forEach(ArrayList.java:1511)
    7797:  Execution result: https://gypsum.cluster.engflow.com/actions/executions/ChD1MEJzewpdMqAmPIWUlPHrEgdkZWZhdWx0GiUKIB6wfpj0KEzGLB2EirxnD9iNj1KtOfGD6x-qMiRh5ZJYELwD
    7798:  ================================================================================
    7799:  (15:55:17) �[32m[15,897 / 15,985]�[0m 2104 / 2264 tests, �[31m�[1m1 failed�[0m;�[0m Testing //java/test/org/openqa/selenium/bidi/script:CallFunctionParameterTest-remote; 434s remote, remote-cache ... (50 actions, 37 running)
    7800:  (15:55:23) �[32m[15,898 / 15,985]�[0m 2105 / 2264 tests, �[31m�[1m1 failed�[0m;�[0m Testing //java/test/org/openqa/selenium/bidi/script:CallFunctionParameterTest-remote; 439s remote, remote-cache ... (50 actions, 42 running)
    7801:  (15:55:26) �[31m�[1mFAIL: �[0m//java/test/org/openqa/selenium/bidi/input:DefaultKeyboardTest-edge-remote (see /home/runner/.bazel/execroot/_main/bazel-out/k8-fastbuild/testlogs/java/test/org/openqa/selenium/bidi/input/DefaultKeyboardTest-edge-remote/test.log)
    7802:  �[31m�[1mFAILED: �[0m//java/test/org/openqa/selenium/bidi/input:DefaultKeyboardTest-edge-remote (Summary)
    7803:  /home/runner/.bazel/execroot/_main/bazel-out/k8-fastbuild/testlogs/java/test/org/openqa/selenium/bidi/input/DefaultKeyboardTest-edge-remote/test.log
    ...
    
    8590:  at org.openqa.selenium.testing.SeleniumExtension.actuallyCreateDriver(SeleniumExtension.java:276)
    8591:  at org.openqa.selenium.testing.SeleniumExtension.actuallyCreateDriver(SeleniumExtension.java:265)
    8592:  at org.openqa.selenium.testing.SeleniumExtension.getDriver(SeleniumExtension.java:254)
    8593:  at org.openqa.selenium.testing.JupiterTestBase.prepareEnvironment(JupiterTestBase.java:84)
    8594:  at java.base/java.lang.reflect.Method.invoke(Method.java:568)
    8595:  at java.base/java.util.ArrayList.forEach(ArrayList.java:1511)
    8596:  at java.base/java.util.ArrayList.forEach(ArrayList.java:1511)
    8597:  15:55:25.806 INFO [LocalNode.stopTimedOutSession] - Session id 868dace0fa8f931d0e4c896da1345ed7 is stopping on demand...
    8598:  15:55:25.808 INFO [LocalSessionMap.remove] - Deleted session from local Session Map, Id: 868dace0fa8f931d0e4c896da1345ed7
    8599:  15:55:25.809 INFO [GridModel.release] - Releasing slot for session id 868dace0fa8f931d0e4c896da1345ed7
    8600:  15:55:25.810 INFO [SessionSlot.stop] - Stopping session 868dace0fa8f931d0e4c896da1345ed7
    8601:  15:55:25.828 INFO [GridModel.setAvailability] - Switching Node 72af068b-afcf-4192-b057-92c733b95914 (uri: http://127.0.0.1:18836) from UP to DRAINING
    8602:  15:55:25.830 INFO [LocalNode.drain] - Firing node drain complete message
    8603:  Execution result: https://gypsum.cluster.engflow.com/actions/executions/ChBioCHd21pT5Ivz1_Hrv40oEgdkZWZhdWx0GiUKIKqsoYEmX1CZFwab2ME7uvonyNLos13Rv06VqJgRYtzjELwD
    8604:  ================================================================================
    8605:  (15:55:28) �[32m[15,905 / 15,985]�[0m 2112 / 2264 tests, �[31m�[1m2 failed�[0m;�[0m Testing //java/test/org/openqa/selenium/bidi/script:CallFunctionParameterTest-remote; 445s remote, remote-cach...

    Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
    Labels
    B-grid Everything grid and server related C-java Java Bindings Review effort 2/5
    Projects
    None yet
    Development

    Successfully merging this pull request may close these issues.

    [🚀 Feature]: Selenium 4 Grid Slot Matching RFC
    2 participants