Skip to content

[java] remove guava from client bindings #12737#13739

Open
joerg1985 wants to merge 2 commits into
trunkfrom
removed-guava-from-the-client
Open

[java] remove guava from client bindings #12737#13739
joerg1985 wants to merge 2 commits into
trunkfrom
removed-guava-from-the-client

Conversation

@joerg1985

@joerg1985 joerg1985 commented Mar 26, 2024

Copy link
Copy Markdown
Member

User description

This PR is the final part of #12737 but will break the compatibility of the org.openqa.selenium.support.ui.ExpectedCondition interface.

A blog post must warn the users to ensure there are no tickets raised for this, see #12737 for details.

Types of changes

  • Bug fix (non-breaking change which fixes an issue)
  • New feature (non-breaking change which adds functionality)
  • Breaking change (fix or feature that would cause existing functionality to change)

Checklist

  • I have read the contributing document.
  • My change requires a change to the documentation.
  • I have updated the documentation accordingly.
  • I have added tests to cover my changes.
  • All new and existing tests passed.

Type

enhancement, breaking change


Description

  • Removed Guava dependency from ExpectedCondition interface, now using java.util.function.Function instead.
  • Updated BUILD.bazel file to remove Guava from dependencies.
  • This change introduces a breaking change in the ExpectedCondition interface which may affect existing implementations.

Changes walkthrough

Relevant files
Enhancement
ExpectedCondition.java
Removal of Guava Dependency in ExpectedCondition                 

java/src/org/openqa/selenium/support/ui/ExpectedCondition.java

  • Removed dependency on com.google.common.base.Function.
  • Now only extends java.util.function.Function.
  • +2/-5     
    Configuration changes
    BUILD.bazel
    Update BUILD.bazel to Remove Guava Dependency                       

    java/src/org/openqa/selenium/support/ui/BUILD.bazel

    • Removed com.google.guava:guava from dependencies.
    +0/-2     

    PR-Agent usage:
    Comment /help on the PR to get a list of all available PR-Agent tools and their descriptions

    @qodo-code-review qodo-code-review Bot added P-enhancement PR with a new feature P-breaking change PR is not backwards compatible labels Mar 26, 2024
    @qodo-code-review

    Copy link
    Copy Markdown
    Contributor

    PR Description updated to latest commit (e358e2c)

    @qodo-code-review

    Copy link
    Copy Markdown
    Contributor

    PR Review

    ⏱️ Estimated effort to review [1-5]

    2, because the changes are straightforward and localized to specific files, but understanding the impact of removing Guava and ensuring no side effects requires a good understanding of the existing codebase and its dependencies.

    🧪 Relevant tests

    No

    🔍 Possible issues

    Breaking Change: The removal of Guava's Function in favor of java.util.function.Function in ExpectedCondition.java is a breaking change that could affect any existing implementations that rely on Guava's Function.

    Compatibility Issues: There might be compatibility issues for projects that have not yet migrated to Java 8 or newer, as java.util.function.Function is a part of Java 8.

    🔒 Security concerns

    No


    ✨ Review tool usage guide:

    Overview:
    The review tool scans the PR code changes, and generates a PR review which includes several types of feedbacks, such as possible PR issues, security threats and relevant test in the PR. More feedbacks can be added by configuring the tool.

    The tool can be triggered automatically every time a new PR is opened, or can be invoked manually by commenting on any PR.

    • When commenting, to edit configurations related to the review tool (pr_reviewer section), use the following template:
    /review --pr_reviewer.some_config1=... --pr_reviewer.some_config2=...
    
    [pr_reviewer]
    some_config1=...
    some_config2=...
    

    See the review usage page for a comprehensive guide on using this tool.

    @qodo-code-review

    qodo-code-review Bot commented Mar 26, 2024

    Copy link
    Copy Markdown
    Contributor

    PR Code Suggestions

    CategorySuggestions                                                                                                                                                       
    Enhancement
    Ensure compatibility with Java's Function interface and provide migration guidance.

    Since you've replaced Guava's Function with Java's Function, ensure that all method
    signatures and usages of ExpectedCondition are compatible with the
    java.util.function.Function interface. This change might impact existing consumers of
    ExpectedCondition who expect Guava's Function interface. Consider adding a migration guide
    or additional documentation to help users transition.

    java/src/org/openqa/selenium/support/ui/ExpectedCondition.java [20-35]

    +// Ensure compatibility and provide migration guide if necessary
     import java.util.function.Function;
     public interface ExpectedCondition<T>
         extends Function<WebDriver, T> {}
     
    Maintainability
    Verify and handle any remaining Guava dependencies throughout the project.

    After removing the Guava dependency, ensure that there are no other parts of your project
    that still require Guava. If Guava is used elsewhere, you might need to include it
    explicitly in those parts or refactor them to remove the dependency. Additionally, review
    your project's documentation to update any references to Guava.

    java/src/org/openqa/selenium/support/ui/BUILD.bazel [1-60]

    +// Ensure no other parts of the project require Guava or update documentation accordingly
     load("//java:defs.bzl", "java_library")
     java_library(
         ...
         "//java/src/org/openqa/selenium/remote",
     ],
     

    ✨ Improve tool usage guide:

    Overview:
    The improve tool scans the PR code changes, and automatically generates suggestions for improving the PR code. The tool can be triggered automatically every time a new PR is opened, or can be invoked manually by commenting on a PR.

    • When commenting, to edit configurations related to the improve tool (pr_code_suggestions section), use the following template:
    /improve --pr_code_suggestions.some_config1=... --pr_code_suggestions.some_config2=...
    
    [pr_code_suggestions]
    some_config1=...
    some_config2=...
    

    See the improve usage page for a comprehensive guide on using this tool.

    @qodo-code-review

    qodo-code-review Bot commented Mar 26, 2024

    Copy link
    Copy Markdown
    Contributor

    CI Failure Feedback

    (Checks updated until commit b2f4ae5)

    Action: Ruby / Remote Tests (edge, windows) / Remote Tests (edge, windows)

    Failed stage: Run Bazel [❌]

    Failure summary:

    The action failed due to permission denied errors when attempting to spawn processes for the test
    suite. This occurred in a before(:suite) hook across multiple test cases, indicating an issue with
    the environment's permissions or configuration that prevented the execution of the necessary
    commands.

    Relevant error logs:
    1:  ##[group]Operating System
    2:  Microsoft Windows Server 2022
    ...
    
    738:  �[35mWARNING: �[0mD:/a/selenium/selenium/BUILD.bazel:13:22: input 'package' to //:.aspect_rules_js/node_modules/path-type@4.0.0/pkg is a directory; dependency checking of directories is unsound
    739:  �[35mWARNING: �[0mD:/a/selenium/selenium/BUILD.bazel:13:22: input 'package' to //:.aspect_rules_js/node_modules/path-parse@1.0.7/pkg is a directory; dependency checking of directories is unsound
    740:  �[35mWARNING: �[0mD:/a/selenium/selenium/BUILD.bazel:13:22: input 'package' to //:.aspect_rules_js/node_modules/parse-json@5.2.0/pkg is a directory; dependency checking of directories is unsound
    741:  �[35mWARNING: �[0mD:/a/selenium/selenium/BUILD.bazel:13:22: input 'package' to //:.aspect_rules_js/node_modules/parent-module@1.0.1/pkg is a directory; dependency checking of directories is unsound
    742:  �[35mWARNING: �[0mD:/a/selenium/selenium/BUILD.bazel:13:22: input 'package' to //:.aspect_rules_js/node_modules/node-releases@2.0.6/pkg is a directory; dependency checking of directories is unsound
    743:  �[35mWARNING: �[0mD:/a/selenium/selenium/BUILD.bazel:13:22: input 'package' to //:.aspect_rules_js/node_modules/ms@2.1.2/pkg is a directory; dependency checking of directories is unsound
    744:  �[35mWARNING: �[0mD:/a/selenium/selenium/BUILD.bazel:13:22: input 'package' to //:.aspect_rules_js/node_modules/lines-and-columns@1.2.4/pkg is a directory; dependency checking of directories is unsound
    745:  �[35mWARNING: �[0mD:/a/selenium/selenium/BUILD.bazel:13:22: input 'package' to //:.aspect_rules_js/node_modules/json5@2.2.3/pkg is a directory; dependency checking of directories is unsound
    746:  �[35mWARNING: �[0mD:/a/selenium/selenium/BUILD.bazel:13:22: input 'package' to //:.aspect_rules_js/node_modules/json-parse-even-better-errors@2.3.1/pkg is a directory; dependency checking of directories is unsound
    ...
    
    754:  �[35mWARNING: �[0mD:/a/selenium/selenium/BUILD.bazel:13:22: input 'package' to //:.aspect_rules_js/node_modules/has@1.0.3/pkg is a directory; dependency checking of directories is unsound
    755:  �[35mWARNING: �[0mD:/a/selenium/selenium/BUILD.bazel:13:22: input 'package' to //:.aspect_rules_js/node_modules/graphql-tag@2.12.6_graphql_16.8.1/pkg is a directory; dependency checking of directories is unsound
    756:  �[35mWARNING: �[0mD:/a/selenium/selenium/BUILD.bazel:13:22: input 'package' to //:.aspect_rules_js/node_modules/graphql@16.8.1/pkg is a directory; dependency checking of directories is unsound
    757:  �[35mWARNING: �[0mD:/a/selenium/selenium/BUILD.bazel:13:22: input 'package' to //:.aspect_rules_js/node_modules/globals@11.12.0/pkg is a directory; dependency checking of directories is unsound
    758:  �[35mWARNING: �[0mD:/a/selenium/selenium/BUILD.bazel:13:22: input 'package' to //:.aspect_rules_js/node_modules/gensync@1.0.0-beta.2/pkg is a directory; dependency checking of directories is unsound
    759:  �[35mWARNING: �[0mD:/a/selenium/selenium/BUILD.bazel:13:22: input 'package' to //:.aspect_rules_js/node_modules/function-bind@1.1.1/pkg is a directory; dependency checking of directories is unsound
    760:  �[35mWARNING: �[0mD:/a/selenium/selenium/BUILD.bazel:13:22: input 'package' to //:.aspect_rules_js/node_modules/escape-string-regexp@1.0.5/pkg is a directory; dependency checking of directories is unsound
    761:  �[35mWARNING: �[0mD:/a/selenium/selenium/BUILD.bazel:13:22: input 'package' to //:.aspect_rules_js/node_modules/escalade@3.1.1/pkg is a directory; dependency checking of directories is unsound
    762:  �[35mWARNING: �[0mD:/a/selenium/selenium/BUILD.bazel:13:22: input 'package' to //:.aspect_rules_js/node_modules/error-ex@1.3.2/pkg is a directory; dependency checking of directories is unsound
    ...
    
    805:  �[35mWARNING: �[0mD:/a/selenium/selenium/BUILD.bazel:13:22: input 'package' to //:.aspect_rules_js/node_modules/@ampproject+remapping@2.2.0/pkg is a directory; dependency checking of directories is unsound
    806:  �[32m[1,760 / 2,872]�[0m [Prepa] Copying directory npm__at_mui_icons-material__5.15.8__-554584225/package ... (2 actions, 0 running)
    807:  �[32m[1,868 / 2,872]�[0m [Prepa] Copying directory npm__at_mui_icons-material__5.15.8__-554584225/package ... (2 actions, 0 running)
    808:  �[32m[2,117 / 2,872]�[0m [Prepa] Copying directory npm__at_mui_icons-material__5.15.8__-554584225/package; 4s ... (4 actions, 0 running)
    809:  �[32m[2,513 / 2,872]�[0m [Prepa] Copying directory npm__at_mui_icons-material__5.15.8__-554584225/package; 5s ... (3 actions, 0 running)
    810:  �[32m[2,635 / 2,875]�[0m [Prepa] Copying directory npm__at_mui_icons-material__5.15.8__-554584225/package; 6s ... (3 actions, 0 running)
    811:  �[32m[2,674 / 2,875]�[0m [Prepa] Copying directory npm__at_mui_icons-material__5.15.8__-554584225/package; 8s ... (2 actions, 0 running)
    812:  �[32mINFO: �[0mFrom Building java/src/org/openqa/selenium/remote/libapi-class.jar (66 source files):
    813:  java\src\org\openqa\selenium\remote\ErrorHandler.java:46: warning: [removal] ErrorCodes in org.openqa.selenium.remote has been deprecated and marked for removal
    814:  private final ErrorCodes errorCodes;
    815:  ^
    816:  java\src\org\openqa\selenium\remote\ErrorHandler.java:60: warning: [removal] ErrorCodes in org.openqa.selenium.remote has been deprecated and marked for removal
    817:  this.errorCodes = new ErrorCodes();
    818:  ^
    819:  java\src\org\openqa\selenium\remote\ErrorHandler.java:68: warning: [removal] ErrorCodes in org.openqa.selenium.remote has been deprecated and marked for removal
    820:  public ErrorHandler(ErrorCodes codes, boolean includeServerErrors) {
    821:  ^
    822:  java\src\org\openqa\selenium\remote\Response.java:97: warning: [removal] ErrorCodes in org.openqa.selenium.remote has been deprecated and marked for removal
    823:  ErrorCodes errorCodes = new ErrorCodes();
    824:  ^
    825:  java\src\org\openqa\selenium\remote\Response.java:97: warning: [removal] ErrorCodes in org.openqa.selenium.remote has been deprecated and marked for removal
    826:  ErrorCodes errorCodes = new ErrorCodes();
    827:  ^
    828:  java\src\org\openqa\selenium\remote\ProtocolHandshake.java:181: warning: [removal] ErrorCodes in org.openqa.selenium.remote has been deprecated and marked for removal
    829:  response.setStatus(ErrorCodes.SUCCESS);
    830:  ^
    831:  java\src\org\openqa\selenium\remote\ProtocolHandshake.java:182: warning: [removal] ErrorCodes in org.openqa.selenium.remote has been deprecated and marked for removal
    832:  response.setState(ErrorCodes.SUCCESS_STRING);
    833:  ^
    834:  java\src\org\openqa\selenium\remote\W3CHandshakeResponse.java:53: warning: [removal] ErrorCodes in org.openqa.selenium.remote has been deprecated and marked for removal
    835:  new ErrorCodes().toStatus((String) rawError, Optional.of(tuple.getStatusCode())));
    836:  ^
    837:  java\src\org\openqa\selenium\remote\W3CHandshakeResponse.java:56: warning: [removal] ErrorCodes in org.openqa.selenium.remote has been deprecated and marked for removal
    838:  new ErrorCodes().getExceptionType((String) rawError);
    839:  ^
    840:  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
    841:  private final ErrorCodes errorCodes = new ErrorCodes();
    842:  ^
    843:  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
    844:  private final ErrorCodes errorCodes = new ErrorCodes();
    845:  ^
    846:  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
    847:  int status = response.getStatus() == ErrorCodes.SUCCESS ? HTTP_OK : HTTP_INTERNAL_ERROR;
    848:  ^
    849:  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
    850:  response.setStatus(ErrorCodes.UNKNOWN_COMMAND);
    851:  ^
    852:  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
    853:  response.setStatus(ErrorCodes.UNHANDLED_ERROR);
    854:  ^
    855:  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
    856:  response.setStatus(ErrorCodes.SUCCESS);
    857:  ^
    858:  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
    859:  response.setState(errorCodes.toState(ErrorCodes.SUCCESS));
    860:  ^
    861:  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
    862:  response.setState(errorCodes.toState(ErrorCodes.SUCCESS));
    863:  ^
    864:  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
    865:  private final ErrorCodes errorCodes = new ErrorCodes();
    866:  ^
    867:  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
    868:  private final ErrorCodes errorCodes = new ErrorCodes();
    869:  ^
    870:  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
    871:  response.setStatus(ErrorCodes.UNKNOWN_COMMAND);
    872:  ^
    873:  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
    874:  response.setStatus(ErrorCodes.UNHANDLED_ERROR);
    875:  ^
    876:  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
    877:  response.setStatus(ErrorCodes.SUCCESS);
    ...
    
    1042:  �[32m[2,875 / 2,898]�[0m Testing //rb/spec/integration/selenium/webdriver:target_locator-edge-remote; 47s local, disk-cache ... (4 actions running)
    1043:  �[31m�[1mFAIL: �[0m//rb/spec/integration/selenium/webdriver:manager-edge-remote (see D:/_bazel/execroot/selenium/bazel-out/x64_windows-fastbuild/testlogs/rb/spec/integration/selenium/webdriver/manager-edge-remote/test_attempts/attempt_2.log)
    1044:  �[32m[2,875 / 2,898]�[0m Testing //rb/spec/integration/selenium/webdriver:target_locator-edge-remote; 49s local, disk-cache ... (4 actions running)
    1045:  �[32m[2,875 / 2,898]�[0m Testing //rb/spec/integration/selenium/webdriver:target_locator-edge-remote; 54s local, disk-cache ... (4 actions running)
    1046:  �[31m�[1mFAIL: �[0m//rb/spec/integration/selenium/webdriver/edge:service-edge-remote (see D:/_bazel/execroot/selenium/bazel-out/x64_windows-fastbuild/testlogs/rb/spec/integration/selenium/webdriver/edge/service-edge-remote/test_attempts/attempt_2.log)
    1047:  �[32m[2,875 / 2,898]�[0m Testing //rb/spec/integration/selenium/webdriver:target_locator-edge-remote; 55s local, disk-cache ... (4 actions running)
    1048:  �[32m[2,875 / 2,898]�[0m Testing //rb/spec/integration/selenium/webdriver:target_locator-edge-remote; 61s local, disk-cache ... (4 actions running)
    1049:  �[31m�[1mFAIL: �[0m//rb/spec/integration/selenium/webdriver:target_locator-edge-remote (see D:/_bazel/execroot/selenium/bazel-out/x64_windows-fastbuild/testlogs/rb/spec/integration/selenium/webdriver/target_locator-edge-remote/test.log)
    1050:  �[31m�[1mFAILED: �[0m//rb/spec/integration/selenium/webdriver:target_locator-edge-remote (Summary)
    1051:  D:/_bazel/execroot/selenium/bazel-out/x64_windows-fastbuild/testlogs/rb/spec/integration/selenium/webdriver/target_locator-edge-remote/test.log
    1052:  D:/_bazel/execroot/selenium/bazel-out/x64_windows-fastbuild/testlogs/rb/spec/integration/selenium/webdriver/target_locator-edge-remote/test_attempts/attempt_1.log
    1053:  D:/_bazel/execroot/selenium/bazel-out/x64_windows-fastbuild/testlogs/rb/spec/integration/selenium/webdriver/target_locator-edge-remote/test_attempts/attempt_2.log
    1054:  �[32mINFO: �[0mFrom Testing //rb/spec/integration/selenium/webdriver:target_locator-edge-remote:
    1055:  ==================== Test output for //rb/spec/integration/selenium/webdriver:target_locator-edge-remote:
    1056:  2024-03-26 19:53:16 INFO Selenium Server Location: D:/_bazel/execroot/selenium/bazel-out/x64_windows-fastbuild/bin/rb/spec/integration/selenium/webdriver/target_locator-edge-remote.cmd.runfiles/selenium/java/src/org/openqa/selenium/grid/selenium_server_deploy.jar
    1057:  An error occurred in a `before(:suite)` hook.
    1058:  Failure/Error: @pid = Process.spawn(*@command, options)
    1059:  Errno::EACCES:
    1060:  Permission denied - java
    1061:  # ./rb/lib/selenium/webdriver/common/child_process.rb:57:in `spawn'
    1062:  # ./rb/lib/selenium/webdriver/common/child_process.rb:57:in `start'
    1063:  # ./rb/lib/selenium/server.rb:204:in `start'
    1064:  # //?/D:/a/selenium/selenium/rb/spec/integration/selenium/webdriver/spec_helper.rb:40:in `block (2 levels) in <top (required)>'
    1065:  Finished in 0.0448 seconds (files took 0.5931 seconds to load)
    1066:  0 examples, 0 failures, 1 error occurred outside of examples
    1067:  ================================================================================
    1068:  ==================== Test output for //rb/spec/integration/selenium/webdriver:target_locator-edge-remote:
    1069:  2024-03-26 19:53:44 INFO Selenium Server Location: D:/_bazel/execroot/selenium/bazel-out/x64_windows-fastbuild/bin/rb/spec/integration/selenium/webdriver/target_locator-edge-remote.cmd.runfiles/selenium/java/src/org/openqa/selenium/grid/selenium_server_deploy.jar
    1070:  An error occurred in a `before(:suite)` hook.
    1071:  Failure/Error: @pid = Process.spawn(*@command, options)
    1072:  Errno::EACCES:
    1073:  Permission denied - java
    1074:  # ./rb/lib/selenium/webdriver/common/child_process.rb:57:in `spawn'
    1075:  # ./rb/lib/selenium/webdriver/common/child_process.rb:57:in `start'
    1076:  # ./rb/lib/selenium/server.rb:204:in `start'
    1077:  # //?/D:/a/selenium/selenium/rb/spec/integration/selenium/webdriver/spec_helper.rb:40:in `block (2 levels) in <top (required)>'
    1078:  Finished in 0.04466 seconds (files took 0.59374 seconds to load)
    1079:  0 examples, 0 failures, 1 error occurred outside of examples
    1080:  ================================================================================
    1081:  ==================== Test output for //rb/spec/integration/selenium/webdriver:target_locator-edge-remote:
    1082:  2024-03-26 19:54:11 INFO Selenium Server Location: D:/_bazel/execroot/selenium/bazel-out/x64_windows-fastbuild/bin/rb/spec/integration/selenium/webdriver/target_locator-edge-remote.cmd.runfiles/selenium/java/src/org/openqa/selenium/grid/selenium_server_deploy.jar
    1083:  An error occurred in a `before(:suite)` hook.
    1084:  Failure/Error: @pid = Process.spawn(*@command, options)
    1085:  Errno::EACCES:
    1086:  Permission denied - java
    1087:  # ./rb/lib/selenium/webdriver/common/child_process.rb:57:in `spawn'
    1088:  # ./rb/lib/selenium/webdriver/common/child_process.rb:57:in `start'
    1089:  # ./rb/lib/selenium/server.rb:204:in `start'
    1090:  # //?/D:/a/selenium/selenium/rb/spec/integration/selenium/webdriver/spec_helper.rb:40:in `block (2 levels) in <top (required)>'
    1091:  Finished in 0.04629 seconds (files took 0.60047 seconds to load)
    1092:  0 examples, 0 failures, 1 error occurred outside of examples
    1093:  ================================================================================
    1094:  �[32m[2,876 / 2,898]�[0m 1 / 27 tests, �[31m�[1m1 failed�[0m;�[0m Testing //rb/spec/integration/selenium/webdriver:zipper-edge-remote; 55s local, disk-cache ... (4 actions, 3 running)
    1095:  �[32m[2,876 / 2,898]�[0m 1 / 27 tests, �[31m�[1m1 failed�[0m;�[0m Testing //rb/spec/integration/selenium/webdriver:zipper-edge-remote; 61s local, disk-cache ... (4 actions, 3 running)
    1096:  �[31m�[1mFAIL: �[0m//rb/spec/integration/selenium/webdriver:zipper-edge-remote (see D:/_bazel/execroot/selenium/bazel-out/x64_windows-fastbuild/testlogs/rb/spec/integration/selenium/webdriver/zipper-edge-remote/test.log)
    1097:  ==================== Test output for //rb/spec/integration/selenium/webdriver:zipper-edge-remote:
    1098:  �[31m�[1mFAILED: �[0m//rb/spec/integration/selenium/webdriver:zipper-edge-remote (Summary)
    1099:  2024-03-26 19:53:23 INFO Selenium Server Location: D:/_bazel/execroot/selenium/bazel-out/x64_windows-fastbuild/bin/rb/spec/integration/selenium/webdriver/zipper-edge-remote.cmd.runfiles/selenium/java/src/org/openqa/selenium/grid/selenium_server_deploy.jar
    1100:  D:/_bazel/execroot/selenium/bazel-out/x64_windows-fastbuild/testlogs/rb/spec/integration/selenium/webdriver/zipper-edge-remote/test.log
    1101:  D:/_bazel/execroot/selenium/bazel-out/x64_windows-fastbuild/testlogs/rb/spec/integration/selenium/webdriver/zipper-edge-remote/test_attempts/attempt_1.log
    1102:  D:/_bazel/execroot/selenium/bazel-out/x64_windows-fastbuild/testlogs/rb/spec/integration/selenium/webdriver/zipper-edge-remote/test_attempts/attempt_2.log
    1103:  �[32mINFO: �[0mFrom Testing //rb/spec/integration/selenium/webdriver:zipper-edge-remote:
    1104:  An error occurred in a `before(:suite)` hook.
    1105:  Failure/Error: @pid = Process.spawn(*@command, options)
    1106:  Errno::EACCES:
    1107:  Permission denied - java
    1108:  # ./rb/lib/selenium/webdriver/common/child_process.rb:57:in `spawn'
    1109:  # ./rb/lib/selenium/webdriver/common/child_process.rb:57:in `start'
    1110:  # ./rb/lib/selenium/server.rb:204:in `start'
    1111:  # //?/D:/a/selenium/selenium/rb/spec/integration/selenium/webdriver/spec_helper.rb:40:in `block (2 levels) in <top (required)>'
    1112:  Finished in 0.04312 seconds (files took 0.59561 seconds to load)
    1113:  0 examples, 0 failures, 1 error occurred outside of examples
    1114:  ================================================================================
    1115:  ==================== Test output for //rb/spec/integration/selenium/webdriver:zipper-edge-remote:
    1116:  2024-03-26 19:53:50 INFO Selenium Server Location: D:/_bazel/execroot/selenium/bazel-out/x64_windows-fastbuild/bin/rb/spec/integration/selenium/webdriver/zipper-edge-remote.cmd.runfiles/selenium/java/src/org/openqa/selenium/grid/selenium_server_deploy.jar
    1117:  An error occurred in a `before(:suite)` hook.
    1118:  Failure/Error: @pid = Process.spawn(*@command, options)
    1119:  Errno::EACCES:
    1120:  Permission denied - java
    1121:  # ./rb/lib/selenium/webdriver/common/child_process.rb:57:in `spawn'
    1122:  # ./rb/lib/selenium/webdriver/common/child_process.rb:57:in `start'
    1123:  # ./rb/lib/selenium/server.rb:204:in `start'
    1124:  # //?/D:/a/selenium/selenium/rb/spec/integration/selenium/webdriver/spec_helper.rb:40:in `block (2 levels) in <top (required)>'
    1125:  Finished in 0.04532 seconds (files took 0.59646 seconds to load)
    1126:  0 examples, 0 failures, 1 error occurred outside of examples
    1127:  ================================================================================
    1128:  ==================== Test output for //rb/spec/integration/selenium/webdriver:zipper-edge-remote:
    1129:  2024-03-26 19:54:18 INFO Selenium Server Location: D:/_bazel/execroot/selenium/bazel-out/x64_windows-fastbuild/bin/rb/spec/integration/selenium/webdriver/zipper-edge-remote.cmd.runfiles/selenium/java/src/org/openqa/selenium/grid/selenium_server_deploy.jar
    1130:  An error occurred in a `before(:suite)` hook.
    1131:  Failure/Error: @pid = Process.spawn(*@command, options)
    1132:  Errno::EACCES:
    1133:  Permission denied - java
    1134:  # ./rb/lib/selenium/webdriver/common/child_process.rb:57:in `spawn'
    1135:  # ./rb/lib/selenium/webdriver/common/child_process.rb:57:in `start'
    1136:  # ./rb/lib/selenium/server.rb:204:in `start'
    1137:  # //?/D:/a/selenium/selenium/rb/spec/integration/selenium/webdriver/spec_helper.rb:40:in `block (2 levels) in <top (required)>'
    1138:  Finished in 0.05252 seconds (files took 0.70991 seconds to load)
    1139:  0 examples, 0 failures, 1 error occurred outside of examples
    1140:  ================================================================================
    1141:  �[32m[2,877 / 2,898]�[0m 2 / 27 tests, �[31m�[1m2 failed�[0m;�[0m Testing //rb/spec/integration/selenium/webdriver:manager-edge-remote; 56s local, disk-cache ... (4 actions, 2 running)
    1142:  �[32m[2,877 / 2,898]�[0m 2 / 27 tests, �[31m�[1m2 failed�[0m;�[0m Testing //rb/spec/integration/selenium/webdriver:manager-edge-remote; 60s local, disk-cache ... (4 actions, 2 running)
    1143:  �[32m[2,877 / 2,898]�[0m 2 / 27 tests, �[31m�[1m2 failed�[0m;�[0m Testing //rb/spec/integration/selenium/webdriver:manager-edge-remote; 62s local, disk-cache ... (4 actions, 2 running)
    1144:  �[31m�[1mFAIL: �[0m//rb/spec/integration/selenium/webdriver:manager-edge-remote (see D:/_bazel/execroot/selenium/bazel-out/x64_windows-fastbuild/testlogs/rb/spec/integration/selenium/webdriver/manager-edge-remote/test.log)
    1145:  �[31m�[1mFAILED: �[0m//rb/spec/integration/selenium/webdriver:manager-edge-remote (Summary)
    1146:  D:/_bazel/execroot/selenium/bazel-out/x64_windows-fastbuild/testlogs/rb/spec/integration/selenium/webdriver/manager-edge-remote/test.log
    1147:  ==================== Test output for //rb/spec/integration/selenium/webdriver:manager-edge-remote:
    1148:  D:/_bazel/execroot/selenium/bazel-out/x64_windows-fastbuild/testlogs/rb/spec/integration/selenium/webdriver/manager-edge-remote/test_attempts/attempt_1.log
    1149:  2024-03-26 19:53:30 INFO Selenium Server Location: D:/_bazel/execroot/selenium/bazel-out/x64_windows-fastbuild/bin/rb/spec/integration/selenium/webdriver/manager-edge-remote.cmd.runfiles/selenium/java/src/org/openqa/selenium/grid/selenium_server_deploy.jar
    1150:  D:/_bazel/execroot/selenium/bazel-out/x64_windows-fastbuild/testlogs/rb/spec/integration/selenium/webdriver/manager-edge-remote/test_attempts/attempt_2.log
    1151:  �[32mINFO: �[0mFrom Testing //rb/spec/integration/selenium/webdriver:manager-edge-remote:
    1152:  An error occurred in a `before(:suite)` hook.
    1153:  Failure/Error: @pid = Process.spawn(*@command, options)
    1154:  Errno::EACCES:
    1155:  Permission denied - java
    1156:  # ./rb/lib/selenium/webdriver/common/child_process.rb:57:in `spawn'
    1157:  # ./rb/lib/selenium/webdriver/common/child_process.rb:57:in `start'
    1158:  # ./rb/lib/selenium/server.rb:204:in `start'
    1159:  # //?/D:/a/selenium/selenium/rb/spec/integration/selenium/webdriver/spec_helper.rb:40:in `block (2 levels) in <top (required)>'
    1160:  Finished in 0.04645 seconds (files took 0.61917 seconds to load)
    1161:  0 examples, 0 failures, 1 error occurred outside of examples
    1162:  ================================================================================
    1163:  ==================== Test output for //rb/spec/integration/selenium/webdriver:manager-edge-remote:
    1164:  2024-03-26 19:53:57 INFO Selenium Server Location: D:/_bazel/execroot/selenium/bazel-out/x64_windows-fastbuild/bin/rb/spec/integration/selenium/webdriver/manager-edge-remote.cmd.runfiles/selenium/java/src/org/openqa/selenium/grid/selenium_server_deploy.jar
    1165:  An error occurred in a `before(:suite)` hook.
    1166:  Failure/Error: @pid = Process.spawn(*@command, options)
    1167:  Errno::EACCES:
    1168:  Permission denied - java
    1169:  # ./rb/lib/selenium/webdriver/common/child_process.rb:57:in `spawn'
    1170:  # ./rb/lib/selenium/webdriver/common/child_process.rb:57:in `start'
    1171:  # ./rb/lib/selenium/server.rb:204:in `start'
    1172:  # //?/D:/a/selenium/selenium/rb/spec/integration/selenium/webdriver/spec_helper.rb:40:in `block (2 levels) in <top (required)>'
    1173:  Finished in 0.05441 seconds (files took 0.75634 seconds to load)
    1174:  0 examples, 0 failures, 1 error occurred outside of examples
    1175:  ================================================================================
    1176:  ==================== Test output for //rb/spec/integration/selenium/webdriver:manager-edge-remote:
    1177:  2024-03-26 19:54:26 INFO Selenium Server Location: D:/_bazel/execroot/selenium/bazel-out/x64_windows-fastbuild/bin/rb/spec/integration/selenium/webdriver/manager-edge-remote.cmd.runfiles/selenium/java/src/org/openqa/selenium/grid/selenium_server_deploy.jar
    1178:  An error occurred in a `before(:suite)` hook.
    1179:  Failure/Error: @pid = Process.spawn(*@command, options)
    1180:  Errno::EACCES:
    1181:  Permission denied - java
    1182:  # ./rb/lib/selenium/webdriver/common/child_process.rb:57:in `spawn'
    1183:  # ./rb/lib/selenium/webdriver/common/child_process.rb:57:in `start'
    1184:  # ./rb/lib/selenium/server.rb:204:in `start'
    1185:  # //?/D:/a/selenium/selenium/rb/spec/integration/selenium/webdriver/spec_helper.rb:40:in `block (2 levels) in <top (required)>'
    1186:  Finished in 0.05557 seconds (files took 0.81716 seconds to load)
    1187:  0 examples, 0 failures, 1 error occurred outside of examples
    1188:  ================================================================================
    1189:  �[32m[2,878 / 2,898]�[0m 3 / 27 tests, �[31m�[1m3 failed�[0m;�[0m Testing //rb/spec/integration/selenium/webdriver/edge:service-edge-remote; 57s local, disk-cache ... (4 actions, 1 running)
    1190:  �[32m[2,878 / 2,898]�[0m 3 / 27 tests, �[31m�[1m3 failed�[0m;�[0m Testing //rb/spec/integration/selenium/webdriver/edge:service-edge-remote; 62s local, disk-cache ... (4 actions, 2 running)
    1191:  �[31m�[1mFAIL: �[0m//rb/spec/integration/selenium/webdriver/edge:service-edge-remote (see D:/_bazel/execroot/selenium/bazel-out/x64_windows-fastbuild/testlogs/rb/spec/integration/selenium/webdriver/edge/service-edge-remote/test.log)
    1192:  ==================== Test output for //rb/spec/integration/selenium/webdriver/edge:service-edge-remote:
    1193:  2024-03-26 19:53:37 INFO Selenium Server Location: D:/_bazel/execroot/selenium/bazel-out/x64_windows-fastbuild/bin/rb/spec/integration/selenium/webdriver/edge/service-edge-remote.cmd.runfiles/selenium/java/src/org/openqa/selenium/grid/selenium_server_deploy.jar
    1194:  �[31m�[1mFAILED: �[0m//rb/spec/integration/selenium/webdriver/edge:service-edge-remote (Summary)
    1195:  D:/_bazel/execroot/selenium/bazel-out/x64_windows-fastbuild/testlogs/rb/spec/integration/selenium/webdriver/edge/service-edge-remote/test.log
    1196:  An error occurred in a `before(:suite)` hook.
    1197:  D:/_bazel/execroot/selenium/bazel-out/x64_windows-fastbuild/testlogs/rb/spec/integration/selenium/webdriver/edge/service-edge-remote/test_attempts/attempt_1.log
    1198:  Failure/Error: @pid = Process.spawn(*@command, options)
    ...
    
    1200:  �[32mINFO: �[0mFrom Testing //rb/spec/integration/selenium/webdriver/edge:service-edge-remote:
    1201:  Errno::EACCES:
    1202:  Permission denied - java
    1203:  # ./rb/lib/selenium/webdriver/common/child_process.rb:57:in `spawn'
    1204:  # ./rb/lib/selenium/webdriver/common/child_process.rb:57:in `start'
    1205:  # ./rb/lib/selenium/server.rb:204:in `start'
    1206:  # //?/D:/a/selenium/selenium/rb/spec/integration/selenium/webdriver/spec_helper.rb:40:in `block (2 levels) in <top (required)>'
    1207:  Finished in 0.04841 seconds (files took 0.65013 seconds to load)
    1208:  0 examples, 0 failures, 1 error occurred outside of examples
    1209:  ================================================================================
    1210:  ==================== Test output for //rb/spec/integration/selenium/webdriver/edge:service-edge-remote:
    1211:  2024-03-26 19:54:04 INFO Selenium Server Location: D:/_bazel/execroot/selenium/bazel-out/x64_windows-fastbuild/bin/rb/spec/integration/selenium/webdriver/edge/service-edge-remote.cmd.runfiles/selenium/java/src/org/openqa/selenium/grid/selenium_server_deploy.jar
    1212:  An error occurred in a `before(:suite)` hook.
    1213:  Failure/Error: @pid = Process.spawn(*@command, options)
    1214:  Errno::EACCES:
    1215:  Permission denied - java
    1216:  # ./rb/lib/selenium/webdriver/common/child_process.rb:57:in `spawn'
    1217:  # ./rb/lib/selenium/webdriver/common/child_process.rb:57:in `start'
    1218:  # ./rb/lib/selenium/server.rb:204:in `start'
    1219:  # //?/D:/a/selenium/selenium/rb/spec/integration/selenium/webdriver/spec_helper.rb:40:in `block (2 levels) in <top (required)>'
    1220:  Finished in 0.04373 seconds (files took 0.62261 seconds to load)
    1221:  0 examples, 0 failures, 1 error occurred outside of examples
    1222:  ================================================================================
    1223:  ==================== Test output for //rb/spec/integration/selenium/webdriver/edge:service-edge-remote:
    1224:  2024-03-26 19:54:33 INFO Selenium Server Location: D:/_bazel/execroot/selenium/bazel-out/x64_windows-fastbuild/bin/rb/spec/integration/selenium/webdriver/edge/service-edge-remote.cmd.runfiles/selenium/java/src/org/openqa/selenium/grid/selenium_server_deploy.jar
    1225:  An error occurred in a `before(:suite)` hook.
    1226:  Failure/Error: @pid = Process.spawn(*@command, options)
    1227:  Errno::EACCES:
    1228:  Permission denied - java
    1229:  # ./rb/lib/selenium/webdriver/common/child_process.rb:57:in `spawn'
    1230:  # ./rb/lib/selenium/webdriver/common/child_process.rb:57:in `start'
    1231:  # ./rb/lib/selenium/server.rb:204:in `start'
    1232:  # //?/D:/a/selenium/selenium/rb/spec/integration/selenium/webdriver/spec_helper.rb:40:in `block (2 levels) in <top (required)>'
    1233:  Finished in 0.04901 seconds (files took 0.82172 seconds to load)
    1234:  0 examples, 0 failures, 1 error occurred outside of examples
    1235:  ================================================================================
    1236:  �[32m[2,879 / 2,898]�[0m 4 / 27 tests, �[31m�[1m4 failed�[0m;�[0m Testing //rb/spec/integration/selenium/webdriver/edge:driver-edge-remote; 8s disk-cache ... (4 actions, 1 running)
    1237:  �[32m[2,879 / 2,898]�[0m 4 / 27 tests, �[31m�[1m4 failed�[0m;�[0m Testing //rb/spec/integration/selenium/webdriver/edge:driver-edge-remote; 14s disk-cache ... (4 actions, 2 running)
    1238:  �[31m�[1mFAIL: �[0m//rb/spec/integration/selenium/webdriver/remote:element-edge-remote (see D:/_bazel/execroot/selenium/bazel-out/x64_windows-fastbuild/testlogs/rb/spec/integration/selenium/webdriver/remote/element-edge-remote/test_attempts/attempt_1.log)
    1239:  �[32m[2,879 / 2,898]�[0m 4 / 27 tests, �[31m�[1m4 failed�[0m;�[0m Testing //rb/spec/integration/selenium/webdriver/remote:element-edge-remote; 8s local, disk-cache ... (4 actions, 2 running)
    1240:  �[32m[2,879 / 2,898]�[0m 4 / 27 tests, �[31m�[1m4 failed�[0m;�[0m Testing //rb/spec/integration/selenium/webdriver/remote:element-edge-remote; 11s local, disk-cache ... (4 actions, 2 running)
    1241:  �[32m[2,879 / 2,898]�[0m 4 / 27 tests, �[31m�[1m4 failed�[0m;�[0m Testing //rb/spec/integration/selenium/webdriver/remote:element-edge-remote; 14s local, disk-cache ... (4 actions, 2 running)
    1242:  �[32m[2,879 / 2,898]�[0m 4 / 27 tests, �[31m�[1m4 failed�[0m;�[0m Testing //rb/spec/integration/selenium/webdriver/remote:element-edge-remote; 15s local, disk-cache ... (4 actions, 3 running)
    1243:  �[31m�[1mFAIL: �[0m//rb/spec/integration/selenium/webdriver:shadow_root-edge-remote (see D:/_bazel/execroot/selenium/bazel-out/x64_windows-fastbuild/testlogs/rb/spec/integration/selenium/webdriver/shadow_root-edge-remote/test_attempts/attempt_1.log)
    1244:  �[32m[2,879 / 2,898]�[0m 4 / 27 tests, �[31m�[1m4 failed�[0m;�[0m Testing //rb/spec/integration/selenium/webdriver/remote:element-edge-remote; 16s local, disk-cache ... (4 actions, 3 running)
    1245:  �[32m[2,879 / 2,898]�[0m 4 / 27 tests, �[31m�[1m4 failed�[0m;�[0m Testing //rb/spec/integration/selenium/webdriver/remote:element-edge-remote; 22s local, disk-cache ... (4 actions, 3 running)
    1246:  �[31m�[1mFAIL: �[0m//rb/spec/integration/selenium/webdriver/edge:driver-edge-remote (see D:/_bazel/execroot/selenium/bazel-out/x64_windows-fastbuild/testlogs/rb/spec/integration/selenium/webdriver/edge/driver-edge-remote/test_attempts/attempt_1.log)
    1247:  �[32m[2,879 / 2,898]�[0m 4 / 27 tests, �[31m�[1m4 failed�[0m;�[0m Testing //rb/spec/integration/selenium/webdriver/remote:element-edge-remote; 23s local, disk-cache ... (4 actions, 3 running)
    1248:  �[32m[2,879 / 2,898]�[0m 4 / 27 tests, �[31m�[1m4 failed�[0m;�[0m Testing //rb/spec/integration/selenium/webdriver/remote:element-edge-remote; 28s local, disk-cache ... (4 actions running)
    1249:  �[31m�[1mFAIL: �[0m//rb/spec/integration/selenium/webdriver/remote:element-edge-remote (see D:/_bazel/execroot/selenium/bazel-out/x64_windows-fastbuild/testlogs/rb/spec/integration/selenium/webdriver/remote/element-edge-remote/test_attempts/attempt_2.log)
    1250:  �[32m[2,879 / 2,898]�[0m 4 / 27 tests, �[31m�[1m4 failed�[0m;�[0m Testing //rb/spec/integration/selenium/webdriver/remote:element-edge-remote; 30s local, disk-cache ... (4 actions running)
    1251:  �[32m[2,879 / 2,898]�[0m 4 / 27 tests, �[31m�[1m4 failed�[0m;�[0m Testing //rb/spec/integration/selenium/webdriver/remote:element-edge-remote; 35s local, disk-cache ... (4 actions running)
    1252:  �[31m�[1mFAIL: �[0m//rb/spec/integration/selenium/webdriver/edge:profile-edge-remote (see D:/_bazel/execroot/selenium/bazel-out/x64_windows-fastbuild/testlogs/rb/spec/integration/selenium/webdriver/edge/profile-edge-remote/test_attempts/attempt_1.log)
    1253:  �[32m[2,879 / 2,898]�[0m 4 / 27 tests, �[31m�[1m4 failed�[0m;�[0m Testing //rb/spec/integration/selenium/webdriver/remote:element-edge-remote; 36s local, disk-cache ... (4 actions running)
    1254:  �[32m[2,879 / 2,898]�[0m 4 / 27 tests, �[31m�[1m4 failed�[0m;�[0m Testing //rb/spec/integration/selenium/webdriver/remote:element-edge-remote; 41s local, disk-cache ... (4 actions running)
    1255:  �[31m�[1mFAIL: �[0m//rb/spec/integration/selenium/webdriver:shadow_root-edge-remote (see D:/_bazel/execroot/selenium/bazel-out/x64_windows-fastbuild/testlogs/rb/spec/integration/selenium/webdriver/shadow_root-edge-remote/test_attempts/attempt_2.log)
    1256:  �[32m[2,879 / 2,898]�[0m 4 / 27 tests, �[31m�[1m4 failed�[0m;�[0m Testing //rb/spec/integration/selenium/webdriver/remote:element-edge-remote; 42s local, disk-cache ... (4 actions running)
    1257:  �[32m[2,879 / 2,898]�[0m 4 / 27 tests, �[31m�[1m4 failed�[0m;�[0m Testing //rb/spec/integration/selenium/webdriver/remote:element-edge-remote; 43s local, disk-cache ... (4 actions running)
    1258:  �[32m[2,879 / 2,898]�[0m 4 / 27 tests, �[31m�[1m4 failed�[0m;�[0m Testing //rb/spec/integration/selenium/webdriver/remote:element-edge-remote; 49s local, disk-cache ... (4 actions running)
    1259:  �[31m�[1mFAIL: �[0m//rb/spec/integration/selenium/webdriver/edge:driver-edge-remote (see D:/_bazel/execroot/selenium/bazel-out/x64_windows-fastbuild/testlogs/rb/spec/integration/selenium/webdriver/edge/driver-edge-remote/test_attempts/attempt_2.log)
    1260:  �[32m[2,879 / 2,898]�[0m 4 / 27 tests, �[31m�[1m4 failed�[0m;�[0m Testing //rb/spec/integration/selenium/webdriver/remote:element-edge-remote; 50s local, disk-cache ... (4 actions running)
    1261:  �[32m[2,879 / 2,898]�[0m 4 / 27 tests, �[31m�[1m4 failed�[0m;�[0m Testing //rb/spec/integration/selenium/webdriver/remote:element-edge-remote; 56s local, disk-cache ... (4 actions running)
    1262:  �[31m�[1mFAIL: �[0m//rb/spec/integration/selenium/webdriver/remote:element-edge-remote (see D:/_bazel/execroot/selenium/bazel-out/x64_windows-fastbuild/testlogs/rb/spec/integration/selenium/webdriver/remote/element-edge-remote/test.log)
    1263:  �[31m�[1mFAILED: �[0m//rb/spec/integration/selenium/webdriver/remote:element-edge-remote (Summary)
    1264:  ==================== Test output for //rb/spec/integration/selenium/webdriver/remote:element-edge-remote:
    1265:  D:/_bazel/execroot/selenium/bazel-out/x64_windows-fastbuild/testlogs/rb/spec/integration/selenium/webdriver/remote/element-edge-remote/test.log
    1266:  2024-03-26 19:54:40 INFO Selenium Server Location: D:/_bazel/execroot/selenium/bazel-out/x64_windows-fastbuild/bin/rb/spec/integration/selenium/webdriver/remote/element-edge-remote.cmd.runfiles/selenium/java/src/org/openqa/selenium/grid/selenium_server_deploy.jar
    1267:  D:/_bazel/execroot/selenium/bazel-out/x64_windows-fastbuild/testlogs/rb/spec/integration/selenium/webdriver/remote/element-edge-remote/test_attempts/attempt_1.log
    1268:  An error occurred in a `before(:suite)` hook.
    1269:  Failure/Error: @pid = Process.spawn(*@command, options)
    1270:  Errno::EACCES:
    1271:  Permission denied - java
    1272:  # ./rb/lib/selenium/webdriver/common/child_process.rb:57:in `spawn'
    1273:  # ./rb/lib/selenium/webdriver/common/child_process.rb:57:in `start'
    1274:  # ./rb/lib/selenium/server.rb:204:in `start'
    1275:  # //?/D:/a/selenium/selenium/rb/spec/integration/selenium/webdriver/spec_helper.rb:40:in `block (2 levels) in <top (required)>'
    1276:  Finished in 0.07398 seconds (files took 0.94125 seconds to load)
    1277:  0 examples, 0 failures, 1 error occurred outside of examples
    1278:  ================================================================================
    1279:  ==================== Test output for //rb/spec/integration/selenium/webdriver/remote:element-edge-remote:
    1280:  2024-03-26 19:55:02 INFO Selenium Server Location: D:/_bazel/execroot/selenium/bazel-out/x64_windows-fastbuild/bin/rb/spec/integration/selenium/webdriver/remote/element-edge-remote.cmd.runfiles/selenium/java/src/org/openqa/selenium/grid/selenium_server_deploy.jar
    1281:  An error occurred in a `before(:suite)` hook.
    1282:  Failure/Error: @pid = Process.spawn(*@command, options)
    1283:  Errno::EACCES:
    1284:  Permission denied - java
    1285:  # ./rb/lib/selenium/webdriver/common/child_process.rb:57:in `spawn'
    1286:  # ./rb/lib/selenium/webdriver/common/child_process.rb:57:in `start'
    1287:  # ./rb/lib/selenium/server.rb:204:in `start'
    1288:  # //?/D:/a/selenium/selenium/rb/spec/integration/selenium/webdriver/spec_helper.rb:40:in `block (2 levels) in <top (required)>'
    1289:  Finished in 0.04646 seconds (files took 0.62229 seconds to load)
    1290:  0 examples, 0 failures, 1 error occurred outside of examples
    1291:  ================================================================================
    1292:  ==================== Test output for //rb/spec/integration/selenium/webdriver/remote:element-edge-remote:
    1293:  2024-03-26 19:55:29 INFO Selenium Server Location: D:/_bazel/execroot/selenium/bazel-out/x64_windows-fastbuild/bin/rb/spec/integration/selenium/webdriver/remote/element-edge-remote.cmd.runfiles/selenium/java/src/org/openqa/selenium/grid/selenium_server_deploy.jar
    1294:  An error occurred in a `before(:suite)` hook.
    1295:  Failure/Error: @pid = Process.spawn(*@command, options)
    1296:  Errno::EACCES:
    1297:  Permission denied - java
    1298:  # ./rb/lib/selenium/webdriver/common/child_process.rb:57:in `spawn'
    1299:  # ./rb/lib/selenium/webdriver/common/child_process.rb:57:in `start'
    1300:  # ./rb/lib/selenium/server.rb:204:in `start'
    1301:  # //?/D:/a/selenium/selenium/rb/spec/integration/selenium/webdriver/spec_helper.rb:40:in `block (2 levels) in <top (required)>'
    1302:  Finished in 0.04489 seconds (files took 0.60096 seconds to load)
    1303:  0 examples, 0 failures, 1 error occurred outside of examples
    1304:  ================================================================================
    1305:  D:/_bazel/execroot/selenium/bazel-out/x64_windows-fastbuild/testlogs/rb/spec/integration/selenium/webdriver/remote/element-edge-remote/test_attempts/attempt_2.log
    1306:  �[32mINFO: �[0mFrom Testing //rb/spec/integration/selenium/webdriver/remote:element-edge-remote:
    1307:  �[32m[2,880 / 2,898]�[0m 5 / 27 tests, �[31m�[1m5 failed�[0m;�[0m Testing //rb/spec/integration/selenium/webdriver:shadow_root-edge-remote; 49s local, disk-cache ... (4 actions, 3 running)
    1308:  �[32m[2,880 / 2,898]�[0m 5 / 27 tests, �[31m�[1m5 failed�[0m;�[0m Testing //rb/spec/integration/selenium/webdriver:shadow_root-edge-remote; 55s local, disk-cache ... (4 actions, 3 running)
    1309:  �[31m�[1mFAIL: �[0m//rb/spec/integration/selenium/webdriver/edge:profile-edge-remote (see D:/_bazel/execroot/selenium/bazel-out/x64_windows-fastbuild/testlogs/rb/spec/integration/selenium/webdriver/edge/profile-edge-remote/test_attempts/attempt_2.log)
    1310:  �[32m[2,880 / 2,898]�[0m 5 / 27 tests, �[31m�[1m5 failed�[0m;�[0m Testing //rb/spec/integration/selenium/webdriver:shadow_root-edge-remote; 56s local, disk-cache ... (4 actions, 3 running)
    1311:  �[32m[2,880 / 2,898]�[0m 5 / 27 tests, �[31m�[1m5 failed�[0m;�[0m Testing //rb/spec/integration/selenium/webdriver:shadow_root-edge-remote; 59s local, disk-cache ... (4 actions, 3 running)
    1312:  �[32m[2,880 / 2,898]�[0m 5 / 27 tests, �[31m�[1m5 failed�[0m;�[0m Testing //rb/spec/integration/selenium/webdriver:shadow_root-edge-remote; 60s local, disk-cache ... (4 actions, 3 running)
    1313:  �[32m[2,880 / 2,898]�[0m 5 / 27 tests, �[31m�[1m5 failed�[0m;�[0m Testing //rb/spec/integration/selenium/webdriver:shadow_root-edge-remote; 62s local, disk-cache ... (4 actions, 3 running)
    1314:  �[31m�[1mFAIL: �[0m//rb/spec/integration/selenium/webdriver:shadow_root-edge-remote (see D:/_bazel/execroot/selenium/bazel-out/x64_windows-fastbuild/testlogs/rb/spec/integration/selenium/webdriver/shadow_root-edge-remote/test.log)
    1315:  �[31m�[1mFAILED: �[0m//rb/spec/integration/selenium/webdriver:shadow_root-edge-remote (Summary)
    1316:  D:/_bazel/execroot/selenium/bazel-out/x64_windows-fastbuild/testlogs/rb/spec/integration/selenium/webdriver/shadow_root-edge-remote/test.log
    1317:  D:/_bazel/execroot/selenium/bazel-out/x64_windows-fastbuild/testlogs/rb/spec/integration/selenium/webdriver/shadow_root-edge-remote/test_attempts/attempt_1.log
    1318:  D:/_bazel/execroot/selenium/bazel-out/x64_windows-fastbuild/testlogs/rb/spec/integration/selenium/webdriver/shadow_root-edge-remote/test_attempts/attempt_2.log
    1319:  �[32mINFO: �[0mFrom Testing //rb/spec/integration/selenium/webdriver:shadow_root-edge-remote:
    1320:  ==================== Test output for //rb/spec/integration/selenium/webdriver:shadow_root-edge-remote:
    1321:  2024-03-26 19:54:48 INFO Selenium Server Location: D:/_bazel/execroot/selenium/bazel-out/x64_windows-fastbuild/bin/rb/spec/integration/selenium/webdriver/shadow_root-edge-remote.cmd.runfiles/selenium/java/src/org/openqa/selenium/grid/selenium_server_deploy.jar
    1322:  An error occurred in a `before(:suite)` hook.
    1323:  Failure/Error: @pid = Process.spawn(*@command, options)
    1324:  Errno::EACCES:
    1325:  Permission denied - java
    1326:  # ./rb/lib/selenium/webdriver/common/child_process.rb:57:in `spawn'
    1327:  # ./rb/lib/selenium/webdriver/common/child_process.rb:57:in `start'
    1328:  # ./rb/lib/selenium/server.rb:204:in `start'
    1329:  # //?/D:/a/selenium/selenium/rb/spec/integration/selenium/webdriver/spec_helper.rb:40:in `block (2 levels) in <top (required)>'
    1330:  Finished in 0.05267 seconds (files took 0.64412 seconds to load)
    1331:  0 examples, 0 failures, 1 error occurred outside of examples
    1332:  ================================================================================
    1333:  ==================== Test output for //rb/spec/integration/selenium/webdriver:shadow_root-edge-remote:
    1334:  2024-03-26 19:55:15 INFO Selenium Server Location: D:/_bazel/execroot/selenium/bazel-out/x64_windows-fastbuild/bin/rb/spec/integration/selenium/webdriver/shadow_root-edge-remote.cmd.runfiles/selenium/java/src/org/openqa/selenium/grid/selenium_server_deploy.jar
    1335:  An error occurred in a `before(:suite)` hook.
    1336:  Failure/Error: @pid = Process.spawn(*@command, options)
    1337:  Errno::EACCES:
    1338:  Permission denied - java
    1339:  # ./rb/lib/selenium/webdriver/common/child_process.rb:57:in `spawn'
    1340:  # ./rb/lib/selenium/webdriver/common/child_process.rb:57:in `start'
    1341:  # ./rb/lib/selenium/server.rb:204:in `start'
    1342:  # //?/D:/a/selenium/selenium/rb/spec/integration/selenium/webdriver/spec_helper.rb:40:in `block (2 levels) in <top (required)>'
    1343:  Finished in 0.04613 seconds (files took 0.6227 seconds to load)
    1344:  0 examples, 0 failures, 1 error occurred outside of examples
    1345:  ================================================================================
    1346:  ==================== Test output for //rb/spec/integration/selenium/webdriver:shadow_root-edge-remote:
    1347:  2024-03-26 19:55:43 INFO Selenium Server Location: D:/_bazel/execroot/selenium/bazel-out/x64_windows-fastbuild/bin/rb/spec/integration/selenium/webdriver/shadow_root-edge-remote.cmd.runfiles/selenium/java/src/org/openqa/selenium/grid/selenium_server_deploy.jar
    1348:  An error occurred in a `before(:suite)` hook.
    1349:  Failure/Error: @pid = Process.spawn(*@command, options)
    1350:  Errno::EACCES:
    1351:  Permission denied - java
    1352:  # ./rb/lib/selenium/webdriver/common/child_process.rb:57:in `spawn'
    1353:  # ./rb/lib/selenium/webdriver/common/child_process.rb:57:in `start'
    1354:  # ./rb/lib/selenium/server.rb:204:in `start'
    1355:  # //?/D:/a/selenium/selenium/rb/spec/integration/selenium/webdriver/spec_helper.rb:40:in `block (2 levels) in <top (required)>'
    1356:  Finished in 0.04769 seconds (files took 0.64835 seconds to load)
    1357:  0 examples, 0 failures, 1 error occurred outside of examples
    1358:  ================================================================================
    1359:  �[32m[2,881 / 2,898]�[0m 6 / 27 tests, �[31m�[1m6 failed�[0m;�[0m Testing //rb/spec/integration/selenium/webdriver/edge:driver-edge-remote; 56s local, disk-cache ... (4 actions, 2 running)
    1360:  �[32m[2,881 / 2,898]�[0m 6 / 27 tests, �[31m�[1m6 failed�[0m;�[0m Testing //rb/spec/integration/selenium/webdriver/edge:driver-edge-remote; 61s local, disk-cache ... (4 actions, 2 running)
    1361:  �[31m�[1mFAIL: �[0m//rb/spec/integration/selenium/webdriver/edge:driver-edge-remote (see D:/_bazel/execroot/selenium/bazel-out/x64_windows-fastbuild/testlogs/rb/spec/integration/selenium/webdriver/edge/driver-edge-remote/test.log)
    1362:  ==================== Test output for //rb/spec/integration/selenium/webdriver/edge:driver-edge-remote:
    1363:  2024-03-26 19:54:55 INFO Selenium Server Location: D:/_bazel/execroot/selenium/bazel-out/x64_windows-fastbuild/bin/rb/spec/integration/selenium/webdriver/edge/driver-edge-remote.cmd.runfiles/selenium/java/src/org/openqa/selenium/grid/selenium_server_deploy.jar
    1364:  �[31m�[1mFAILED: �[0m//rb/spec/integration/selenium/webdriver/edge:driver-edge-remote (Summary)
    1365:  D:/_bazel/execroot/selenium/bazel-out/x64_windows-fastbuild/testlogs/rb/spec/integration/selenium/webdriver/edge/driver-edge-remote/test.log
    1366:  D:/_bazel/execroot/selenium/bazel-out/x64_windows-fastbuild/testlogs/rb/spec/integration/selenium/webdriver/edge/driver-edge-remote/test_attempts/attempt_1.log
    1367:  D:/_bazel/execroot/selenium/bazel-out/x64_windows-fastbuild/testlogs/rb/spec/integration/selenium/webdriver/edge/driver-edge-remote/test_attempts/attempt_2.log
    1368:  �[32mINFO: �[0mFrom Testing //rb/spec/integration/selenium/webdriver/edge:driver-edge-remote:
    1369:  An error occurred in a `before(:suite)` hook.
    1370:  Failure/Error: @pid = Process.spawn(*@command, options)
    1371:  Errno::EACCES:
    1372:  Permission denied - java
    1373:  # ./rb/lib/selenium/webdriver/common/child_process.rb:57:in `spawn'
    1374:  # ./rb/lib/selenium/webdriver/common/child_process.rb:57:in `start'
    1375:  # ./rb/lib/selenium/server.rb:204:in `start'
    1376:  # //?/D:/a/selenium/selenium/rb/spec/integration/selenium/webdriver/spec_helper.rb:40:in `block (2 levels) in <top (required)>'
    1377:  Finished in 0.04646 seconds (files took 0.62465 seconds to load)
    1378:  0 examples, 0 failures, 1 error occurred outside of examples
    1379:  ================================================================================
    1380:  ==================== Test output for //rb/spec/integration/selenium/webdriver/edge:driver-edge-remote:
    1381:  2024-03-26 19:55:22 INFO Selenium Server Location: D:/_bazel/execroot/selenium/bazel-out/x64_windows-fastbuild/bin/rb/spec/integration/selenium/webdriver/edge/driver-edge-remote.cmd.runfiles/selenium/java/src/org/openqa/selenium/grid/selenium_server_deploy.jar
    1382:  An error occurred in a `before(:suite)` hook.
    1383:  Failure/Error: @pid = Process.spawn(*@command, options)
    1384:  Errno::EACCES:
    1385:  Permission denied - java
    1386:  # ./rb/lib/selenium/webdriver/common/child_process.rb:57:in `spawn'
    1387:  # ./rb/lib/selenium/webdriver/common/child_process.rb:57:in `start'
    1388:  # ./rb/lib/selenium/server.rb:204:in `start'
    1389:  # //?/D:/a/selenium/selenium/rb/spec/integration/selenium/webdriver/spec_helper.rb:40:in `block (2 levels) in <top (required)>'
    1390:  Finished in 0.04526 seconds (files took 0.67768 seconds to load)
    1391:  0 examples, 0 failures, 1 error occurred outside of examples
    1392:  ================================================================================
    1393:  ==================== Test output for //rb/spec/integration/selenium/webdriver/edge:driver-edge-remote:
    1394:  2024-03-26 19:55:50 INFO Selenium Server Location: D:/_bazel/execroot/selenium/bazel-out/x64_windows-fastbuild/bin/rb/spec/integration/selenium/webdriver/edge/driver-edge-remote.cmd.runfiles/selenium/java/src/org/openqa/selenium/grid/selenium_server_deploy.jar
    1395:  An error occurred in a `before(:suite)` hook.
    1396:  Failure/Error: @pid = Process.spawn(*@command, options)
    1397:  Errno::EACCES:
    1398:  Permission denied - java
    1399:  # ./rb/lib/selenium/webdriver/common/child_process.rb:57:in `spawn'
    1400:  # ./rb/lib/selenium/webdriver/common/child_process.rb:57:in `start'
    1401:  # ./rb/lib/selenium/server.rb:204:in `start'
    1402:  # //?/D:/a/selenium/selenium/rb/spec/integration/selenium/webdriver/spec_helper.rb:40:in `block (2 levels) in <top (required)>'
    1403:  Finished in 0.05808 seconds (files took 0.67473 seconds to load)
    1404:  0 examples, 0 failures, 1 error occurred outside of examples
    1405:  ================================================================================
    1406:  �[32m[2,882 / 2,898]�[0m 7 / 27 tests, �[31m�[1m7 failed�[0m;�[0m Testing //rb/spec/integration/selenium/webdriver/edge:profile-edge-remote; 49s local, disk-cache ... (4 actions, 1 running)
    1407:  �[32m[2,882 / 2,898]�[0m 7 / 27 tests, �[31m�[1m7 failed�[0m;�[0m Testing //rb/spec/integration/selenium/webdriver/edge:profile-edge-remote; 53s local, disk-cache ... (4 actions, 1 running)
    1408:  �[32m[2,882 / 2,898]�[0m 7 / 27 tests, �[31m�[1m7 failed�[0m;�[0m Testing //rb/spec/integration/selenium/webdriver/edge:profile-edge-remote; 55s local, disk-cache ... (4 actions, 2 running)
    1409:  �[31m�[1mFAIL: �[0m//rb/spec/integration/selenium/webdriver/edge:profile-edge-remote (see D:/_bazel/execroot/selenium/bazel-out/x64_windows-fastbuild/testlogs/rb/spec/integration/selenium/webdriver/edge/profile-edge-remote/test.log)
    1410:  ==================== Test output for //rb/spec/integration/selenium/webdriver/edge:profile-edge-remote:
    1411:  2024-03-26 19:55:08 INFO Selenium Server Location: D:/_bazel/execroot/selenium/bazel-out/x64_windows-fastbuild/bin/rb/spec/integration/selenium/webdriver/edge/profile-edge-remote.cmd.runfiles/selenium/java/src/org/openqa/selenium/grid/selenium_server_deploy.jar
    1412:  �[31m�[1mFAILED: �[0m//rb/spec/integration/selenium/webdriver/edge:profile-edge-remote (Summary)
    1413:  An error occurred in a `before(:suite)` hook.
    1414:  D:/_bazel/execroot/selenium/bazel-out/x64_windows-fastbuild/testlogs/rb/spec/integration/selenium/webdriver/edge/profile-edge-remote/test.log
    1415:  Failure/Error: @pid = Process.spawn(*@command, options)
    ...
    
    1418:  Errno::EACCES:
    1419:  �[32mINFO: �[0mFrom Testing //rb/spec/integration/selenium/webdriver/edge:profile-edge-remote:
    1420:  Permission denied - java
    1421:  # ./rb/lib/selenium/webdriver/common/child_process.rb:57:in `spawn'
    1422:  # ./rb/lib/selenium/webdriver/common/child_process.rb:57:in `start'
    1423:  # ./rb/lib/selenium/server.rb:204:in `start'
    1424:  # //?/D:/a/selenium/selenium/rb/spec/integration/selenium/webdriver/spec_helper.rb:40:in `block (2 levels) in <top (required)>'
    1425:  Finished in 0.04469 seconds (files took 0.63281 seconds to load)
    1426:  0 examples, 0 failures, 1 error occurred outside of examples
    1427:  ================================================================================
    1428:  ==================== Test output for //rb/spec/integration/selenium/webdriver/edge:profile-edge-remote:
    1429:  2024-03-26 19:55:36 INFO Selenium Server Location: D:/_bazel/execroot/selenium/bazel-out/x64_windows-fastbuild/bin/rb/spec/integration/selenium/webdriver/edge/profile-edge-remote.cmd.runfiles/selenium/java/src/org/openqa/selenium/grid/selenium_server_deploy.jar
    1430:  An error occurred in a `before(:suite)` hook.
    1431:  Failure/Error: @pid = Process.spawn(*@command, options)
    1432:  Errno::EACCES:
    1433:  Permission denied - java
    1434:  # ./rb/lib/selenium/webdriver/common/child_process.rb:57:in `spawn'
    1435:  # ./rb/lib/selenium/webdriver/common/child_process.rb:57:in `start'
    1436:  # ./rb/lib/selenium/server.rb:204:in `start'
    1437:  # //?/D:/a/selenium/selenium/rb/spec/integration/selenium/webdriver/spec_helper.rb:40:in `block (2 levels) in <top (required)>'
    1438:  Finished in 0.04883 seconds (files took 0.67196 seconds to load)
    1439:  0 examples, 0 failures, 1 error occurred outside of examples
    1440:  ================================================================================
    1441:  ==================== Test output for //rb/spec/integration/selenium/webdriver/edge:profile-edge-remote:
    1442:  2024-03-26 19:55:57 INFO Selenium Server Location: D:/_bazel/execroot/selenium/bazel-out/x64_windows-fastbuild/bin/rb/spec/integration/selenium/webdriver/edge/profile-edge-remote.cmd.runfiles/selenium/java/src/org/openqa/selenium/grid/selenium_server_deploy.jar
    1443:  An error occurred in a `before(:suite)` hook.
    1444:  Failure/Error: @pid = Process.spawn(*@command, options)
    1445:  Errno::EACCES:
    1446:  Permission denied - java
    1447:  # ./rb/lib/selenium/webdriver/common/child_process.rb:57:in `spawn'
    1448:  # ./rb/lib/selenium/webdriver/common/child_process.rb:57:in `start'
    1449:  # ./rb/lib/selenium/server.rb:204:in `start'
    1450:  # //?/D:/a/selenium/selenium/rb/spec/integration/selenium/webdriver/spec_helper.rb:40:in `block (2 levels) in <top (required)>'
    1451:  Finished in 0.06221 seconds (files took 0.8502 seconds to load)
    1452:  0 examples, 0 failures, 1 error occurred outside of examples
    1453:  ================================================================================
    1454:  �[32m[2,883 / 2,898]�[0m 8 / 27 tests, �[31m�[1m8 failed�[0m;�[0m Testing //rb/spec/integration/selenium/webdriver:takes_screenshot-edge-remote; 7s disk-cache ... (4 actions, 1 running)
    1455:  �[32m[2,883 / 2,898]�[0m 8 / 27 tests, �[31m�[1m8 failed�[0m;�[0m [Sched] Testing //rb/spec/integration/selenium/webdriver:select-edge-remote; 9s ... (4 actions, 1 running)
    1456:  �[31m�[1mFAIL: �[0m//rb/spec/integration/selenium/webdriver:action_builder-edge-remote (see D:/_bazel/execroot/selenium/bazel-out/x64_windows-fastbuild/testlogs/rb/spec/integration/selenium/webdriver/action_builder-edge-remote/test_attempts/attempt_1.log)
    1457:  �[32m[2,883 / 2,898]�[0m 8 / 27 tests, �[31m�[1m8 failed�[0m;�[0m Testing //rb/spec/integration/selenium/webdriver:action_builder-edge-remote; 8s local, disk-cache ... (4 actions, 2 running)
    1458:  �[32m[2,883 / 2,898]�[0m 8 / 27 tests, �[31m�[1m8 failed�[0m;�[0m Testing //rb/spec/integration/selenium/webdriver:action_builder-edge-remote; 9s local, disk-cache ... (4 actions, 2 running)
    1459:  �[32m[2,883 / 2,898]�[0m 8 / 27 tests, �[31m�[1m8 failed�[0m;�[0m Testing //rb/spec/integration/selenium/webdriver:action_builder-edge-remote; 11s local, disk-cache ... (4 actions, 2 running)
    1460:  �[32m[2,883 / 2,898]�[0m 8 / 27 tests, �[31m�[1m8 failed�[0m;�[0m Testing //rb/spec/integration/selenium/webdriver:action_builder-edge-remote; 13s local, disk-cache ... (4 actions, 2 running)
    1461:  �[32m[2,883 / 2,898]�[0m 8 / 27 tests, �[31m�[1m8 failed�[0m;�[0m Testing //rb/spec/integration/selenium/webdriver:action_builder-edge-remote; 15s local, disk-cache ... (4 actions, 3 running)
    1462:  �[31m�[1mFAIL: �[0m//rb/spec/integration/selenium/webdriver:select-edge-remote (see D:/_bazel/execroot/selenium/bazel-out/x64_windows-fastbuild/testlogs/rb/spec/integration/selenium/webdriver/select-edge-remote/test_attempts/attempt_1.log)
    1463:  �[32m[2,883 / 2,898]�[0m 8 / 27 tests, �[31m�[1m8 failed�[0m;�[0m Testing //rb/spec/integration/selenium/webdriver:action_builder-edge-remote; 16s local, disk-cache ... (4 actions, 3 running)
    1464:  �[32m[2,883 / 2,898]�[0m 8 / 27 tests, �[31m�[1m8 failed�[0m;�[0m Testing //rb/spec/integration/selenium/webdriver:action_builder-edge-remote; 21s local, disk-cache ... (4 actions, 3 running)
    1465:  �[31m�[1mFAIL: �[0m//rb/spec/integration/selenium/webdriver:takes_screenshot-edge-remote (see D:/_bazel/execroot/selenium/bazel-out/x64_windows-fastbuild/testlogs/rb/spec/integration/selenium/webdriver/takes_screenshot-edge-remote/test_attempts/attempt_1.log)
    1466:  �[32m[2,883 / 2,898]�[0m 8 / 27 tests, �[31m�[1m8 failed�[0m;�[0m Testing //rb/spec/integration/selenium/webdriver:action_builder-edge-remote; 23s local, disk-cache ... (4 actions, 3 running)
    1467:  �[32m[2,883 / 2,898]�[0m 8 / 27 tests, �[31m�[1m8 failed�[0m;�[0m Testing //rb/spec/integration/selenium/webdriver:action_builder-edge-remote; 28s local, disk-cache ... (4 actions running)
    1468:  �[31m�[1mFAIL: �[0m//rb/spec/integration/selenium/webdriver:action_builder-edge-remote (see D:/_bazel/execroot/selenium/bazel-out/x64_windows-fastbuild/testlogs/rb/spec/integration/selenium/webdriver/action_builder-edge-remote/test_attempts/attempt_2.log)
    1469:  �[32m[2,883 / 2,898]�[0m 8 / 27 tests, �[31m�[1m8 failed�[0m;�[0m Testing //rb/spec/integration/selenium/webdriver:action_builder-edge-remote; 30s local, disk-cache ... (4 actions running)
    1470:  �[32m[2,883 / 2,898]�[0m 8 / 27 tests, �[31m�[1m8 failed�[0m;�[0m Testing //rb/spec/integration/selenium/webdriver:action_builder-edge-remote; 35s local, disk-cache ... (4 actions running)
    1471:  �[31m�[1mFAIL: �[0m//rb/spec/integration/selenium/webdriver:listener-edge-remote (see D:/_bazel/execroot/selenium/bazel-out/x64_windows-fastbuild/testlogs/rb/spec/integration/selenium/webdriver/listener-edge-remote/test_attempts/attempt_1.log)
    1472:  �[32m[2,883 / 2,898]�[0m 8 / 27 tests, �[31m�[1m8 failed�[0m;�[0m Testing //rb/spec/integration/selenium/webdriver:action_builder-edge-remote; 36s local, disk-cache ... (4 actions running)
    1473:  �[32m[2,883 / 2,898]�[0m 8 / 27 tests, �[31m�[1m8 failed�[0m;�[0m Testing //rb/spec/integration/selenium/webdriver:action_builder-edge-remote; 41s local, disk-cache ... (4 actions running)
    1474:  �[31m�[1mFAIL: �[0m//rb/spec/integration/selenium/webdriver:select-edge-remote (see D:/_bazel/execroot/selenium/bazel-out/x64_windows-fastbuild/testlogs/rb/spec/integration/selenium/webdriver/select-edge-remote/test_attempts/attempt_2.log)
    1475:  �[32m[2,883 / 2,898]�[0m 8 / 27 tests, �[31m�[1m8 failed�[0m;�[0m Testing //rb/spec/integration/selenium/webdriver:action_builder-edge-remote; 42s local, disk-cache ... (4 actions running)
    1476:  �[32m[2,883 / 2,898]�[0m 8 / 27 tests, �[31m�[1m8 failed�[0m;�[0m Testing //rb/spec/integration/selenium/webdriver:action_builder-edge-remote; 44s local, disk-cache ... (4 actions running)
    1477:  �[32m[2,883 / 2,898]�[0m 8 / 27 tests, �[31m�[1m8 failed�[0m;�[0m Testing //rb/spec/integration/selenium/webdriver:action_builder-edge-remote; 49s local, disk-cache ... (4 actions running)
    1478:  �[31m�[1mFAIL: �[0m//rb/spec/integration/selenium/webdriver:takes_screenshot-edge-remote (see D:/_bazel/execroot/selenium/bazel-out/x64_windows-fastbuild/testlogs/rb/spec/integration/selenium/webdriver/takes_screenshot-edge-remote/test_attempts/attempt_2.log)
    1479:  �[32m[2,883 / 2,898]�[0m 8 / 27 tests, �[31m�[1m8 failed�[0m;�[0m Testing //rb/spec/integration/selenium/webdriver:action_builder-edge-remote; 50s local, disk-cache ... (4 actions running)
    1480:  �[32m[2,883 / 2,898]�[0m 8 / 27 tests, �[31m�[1m8 failed�[0m;�[0m Testing //rb/spec/integration/selenium/webdriver:action_builder-edge-remote; 55s local, disk-cache ... (4 actions running)
    1481:  �[31m�[1mFAIL: �[0m//rb/spec/integration/selenium/webdriver:action_builder-edge-remote (see D:/_bazel/execroot/selenium/bazel-out/x64_windows-fastbuild/testlogs/rb/spec/integration/selenium/webdriver/action_builder-edge-remote/test.log)
    1482:  �[31m�[1mFAILED: �[0m//rb/spec/integration/selenium/webdriver:action_builder-edge-remote (Summary)
    1483:  D:/_bazel/execroot/selenium/bazel-out/x64_windows-fastbuild/testlogs/rb/spec/integration/selenium/webdriver/action_builder-edge-remote/test.log
    1484:  ==================== Test output for //rb/spec/integration/selenium/webdriver:action_builder-edge-remote:
    1485:  D:/_bazel/execroot/selenium/bazel-out/x64_windows-fastbuild/testlogs/rb/spec/integration/selenium/webdriver/action_builder-edge-remote/test_attempts/attempt_1.log
    1486:  2024-03-26 19:56:05 INFO Selenium Server Location: D:/_bazel/execroot/selenium/bazel-out/x64_windows-fastbuild/bin/rb/spec/integration/selenium/webdriver/action_builder-edge-remote.cmd.runfiles/selenium/java/src/org/openqa/selenium/grid/selenium_server_deploy.jar
    1487:  D:/_bazel/execroot/selenium/bazel-out/x64_windows-fastbuild/testlogs/rb/spec/integration/selenium/webdriver/action_builder-edge-remote/test_attempts/attempt_2.log
    1488:  �[32mINFO: �[0mFrom Testing //rb/spec/integration/selenium/webdriver:action_builder-edge-remote:
    1489:  An error occurred in a `before(:suite)` hook.
    1490:  Failure/Error: @pid = Process.spawn(*@command, options)
    1491:  Errno::EACCES:
    1492:  Permission denied - java
    1493:  # ./rb/lib/selenium/webdriver/common/child_process.rb:57:in `spawn'
    1494:  # ./rb/lib/selenium/webdriver/common/child_process.rb:57:in `start'
    1495:  # ./rb/lib/selenium/server.rb:204:in `start'
    1496:  # //?/D:/a/selenium/selenium/rb/spec/integration/selenium/webdriver/spec_helper.rb:40:in `block (2 levels) in <top (required)>'
    1497:  Finished in 0.05919 seconds (files took 1.17 seconds to load)
    1498:  0 examples, 0 failures, 1 error occurred outside of examples
    1499:  ================================================================================
    1500:  ==================== Test output for //rb/spec/integration/selenium/webdriver:action_builder-edge-remote:
    1501:  2024-03-26 19:56:26 INFO Selenium Server Location: D:/_bazel/execroot/selenium/bazel-out/x64_windows-fastbuild/bin/rb/spec/integration/selenium/webdriver/action_builder-edge-remote.cmd.runfiles/selenium/java/src/org/openqa/selenium/grid/selenium_server_deploy.jar
    1502:  An error occurred in a `before(:suite)` hook.
    1503:  Failure/Error: @pid = Process.spawn(*@command, options)
    1504:  Errno::EACCES:
    1505:  Permission denied - java
    1506:  # ./rb/lib/selenium/webdriver/common/child_process.rb:57:in `spawn'
    1507:  # ./rb/lib/selenium/webdriver/common/child_process.rb:57:in `start'
    1508:  # ./rb/lib/selenium/server.rb:204:in `start'
    1509:  # //?/D:/a/selenium/selenium/rb/spec/integration/selenium/webdriver/spec_helper.rb:40:in `block (2 levels) in <top (required)>'
    1510:  Finished in 0.0443 seconds (files took 0.59498 seconds to load)
    1511:  0 examples, 0 failures, 1 error occurred outside of examples
    1512:  ================================================================================
    1513:  ==================== Test output for //rb/spec/integration/selenium/webdriver:action_builder-edge-remote:
    1514:  2024-03-26 19:56:53 INFO Selenium Server Location: D:/_bazel/execroot/selenium/bazel-out/x64_windows-fastbuild/bin/rb/spec/integration/selenium/webdriver/action_builder-edge-remote.cmd.runfiles/selenium/java/src/org/openqa/selenium/grid/selenium_server_deploy.jar
    1515:  An error occurred in a `before(:suite)` hook.
    1516:  Failure/Error: @pid = Process.spawn(*@command, options)
    1517:  Errno::EACCES:
    1518:  Permission denied - java
    1519:  # ./rb/lib/selenium/webdriver/common/child_process.rb:57:in `spawn'
    1520:  # ./rb/lib/selenium/webdriver/common/child_process.rb:57:in `start'
    1521:  # ./rb/lib/selenium/server.rb:204:in `start'
    1522:  # //?/D:/a/selenium/selenium/rb/spec/integration/selenium/webdriver/spec_helper.rb:40:in `block (2 levels) in <top (required)>'
    1523:  Finished in 0.04274 seconds (files took 0.58509 seconds to load)
    1524:  0 examples, 0 failures, 1 error occurred outside of examples
    1525:  ================================================================================
    1526:  �[32m[2,884 / 2,898]�[0m 9 / 27 tests, �[31m�[1m9 failed�[0m;�[0m Testing //rb/spec/integration/selenium/webdriver:select-edge-remote; 49s local, disk-cache ... (4 actions, 3 running)
    1527:  �[32m[2,884 / 2,898]�[0m 9 / 27 tests, �[31m�[1m9 failed�[0m;�[0m Testing //rb/spec/integration/selenium/webdriver:select-edge-remote; 55s local, disk-cache ... (4 actions, 3 running)
    1528:  �[31m�[1mFAIL: �[0m//rb/spec/integration/selenium/webdriver:listener-edge-remote (see D:/_bazel/execroot/selenium/bazel-out/x64_windows-fastbuild/testlogs/rb/spec/integration/selenium/webdriver/listener-edge-remote/test_attempts/attempt_2.log)
    1529:  �[32m[2,884 / 2,898]�[0m 9 / 27 tests, �[31m�[1m9 failed�[0m;�[0m Testing //rb/spec/integration/selenium/webdriver:select-edge-remote; 56s local, disk-cache ... (4 actions, 3 running)
    1530:  �[32m[2,884 / 2,898]�[0m 9 / 27 tests, �[31m�[1m9 failed�[0m;�[0m Testing //rb/spec/integration/selenium/webdriver:select-edge-remote; 59s local, disk-cache ... (4 actions, 3 running)
    1531:  �[32m[2,884 / 2,898]�[0m 9 / 27 tests, �[31m�[1m9 failed�[0m;�[0m Testing //rb/spec/integration/selenium/webdriver:select-edge-remote; 60s local, disk-cache ... (4 actions, 3 running)
    1532:  �[32m[2,884 / 2,898]�[0m 9 / 27 tests, �[31m�[1m9 failed�[0m;�[0m Testing //rb/spec/integration/selenium/webdriver:select-edge-remote; 62s local, disk-cache ... (4 actions, 3 running)
    1533:  �[31m�[1mFAIL: �[0m//rb/spec/integration/selenium/webdriver:select-edge-remote (see D:/_bazel/execroot/selenium/bazel-out/x64_windows-fastbuild/testlogs/rb/spec/integration/selenium/webdriver/select-edge-remote/test.log)
    1534:  �[31m�[1mFAILED: �[0m//rb/spec/integration/selenium/webdriver:select-edge-remote (Summary)
    1535:  D:/_bazel/execroot/selenium/bazel-out/x64_windows-fastbuild/testlogs/rb/spec/integration/selenium/webdriver/select-edge-remote/test.log
    1536:  D:/_bazel/execroot/selenium/bazel-out/x64_windows-fastbuild/testlogs/rb/spec/integration/selenium/webdriver/select-edge-remote/test_attempts/attempt_1.log
    1537:  D:/_bazel/execroot/selenium/bazel-out/x64_windows-fastbuild/testlogs/rb/spec/integration/selenium/webdriver/select-edge-remote/test_attempts/attempt_2.log
    1538:  �[32mINFO: �[0mFrom Testing //rb/spec/integration/selenium/webdriver:select-edge-remote:
    1539:  ==================== Test output for //rb/spec/integration/selenium/webdriver:select-edge-remote:
    1540:  2024-03-26 19:56:12 INFO Selenium Server Location: D:/_bazel/execroot/selenium/bazel-out/x64_windows-fastbuild/bin/rb/spec/integration/selenium/webdriver/select-edge-remote.cmd.runfiles/selenium/java/src/org/openqa/selenium/grid/selenium_server_deploy.jar
    1541:  An error occurred in a `before(:suite)` hook.
    1542:  Failure/Error: @pid = Process.spawn(*@command, options)
    1543:  Errno::EACCES:
    1544:  Permission denied - java
    1545:  # ./rb/lib/selenium/webdriver/common/child_process.rb:57:in `spawn'
    1546:  # ./rb/lib/selenium/webdriver/common/child_process.rb:57:in `start'
    1547:  # ./rb/lib/selenium/server.rb:204:in `start'
    1548:  # //?/D:/a/selenium/selenium/rb/spec/integration/selenium/webdriver/spec_helper.rb:40:in `block (2 levels) in <top (required)>'
    1549:  Finished in 0.04825 seconds (files took 0.90527 seconds to load)
    1550:  0 examples, 0 failures, 1 error occurred outside of examples
    1551:  ================================================================================
    1552:  ==================== Test output for //rb/spec/integration/selenium/webdriver:select-edge-remote:
    1553:  2024-03-26 19:56:39 INFO Selenium Server Location: D:/_bazel/execroot/selenium/bazel-out/x64_windows-fastbuild/bin/rb/spec/integration/selenium/webdriver/select-edge-remote.cmd.runfiles/selenium/java/src/org/openqa/selenium/grid/selenium_server_deploy.jar
    1554:  An error occurred in a `before(:suite)` hook.
    1555:  Failure/Error: @pid = Process.spawn(*@command, options)
    1556:  Errno::EACCES:
    1557:  Permission denied - java
    1558:  # ./rb/lib/selenium/webdriver/common/child_process.rb:57:in `spawn'
    1559:  # ./rb/lib/selenium/webdriver/common/child_process.rb:57:in `start'
    1560:  # ./rb/lib/selenium/server.rb:204:in `start'
    1561:  # //?/D:/a/selenium/selenium/rb/spec/integration/selenium/webdriver/spec_helper.rb:40:in `block (2 levels) in <top (required)>'
    1562:  Finished in 0.04458 seconds (files took 0.61064 seconds to load)
    1563:  0 examples, 0 failures, 1 error occurred outside of examples
    1564:  ================================================================================
    1565:  ==================== Test output for //rb/spec/integration/selenium/webdriver:select-edge-remote:
    1566:  2024-03-26 19:57:07 INFO Selenium Server Location: D:/_bazel/execroot/selenium/bazel-out/x64_windows-fastbuild/bin/rb/spec/integration/selenium/webdriver/select-edge-remote.cmd.runfiles/selenium/java/src/org/openqa/selenium/grid/selenium_server_deploy.jar
    1567:  An error occurred in a `before(:suite)` hook.
    1568:  Failure/Error: @pid = Process.spawn(*@command, options)
    1569:  Errno::EACCES:
    1570:  Permission denied - java
    1571:  # ./rb/lib/selenium/webdriver/common/child_process.rb:57:in `spawn'
    1572:  # ./rb/lib/selenium/webdriver/common/child_process.rb:57:in `start'
    1573:  # ./rb/lib/selenium/server.rb:204:in `start'
    1574:  # //?/D:/a/selenium/selenium/rb/spec/integration/selenium/webdriver/spec_helper.rb:40:in `block (2 levels) in <top (required)>'
    1575:  Finished in 0.04681 seconds (files took 0.67126 seconds to load)
    1576:  0 examples, 0 failures, 1 error occurred outside of examples
    1577:  ================================================================================
    1578:  �[32m[2,885 / 2,898]�[0m 10 / 27 tests, �[31m�[1m10 failed�[0m;�[0m Testing //rb/spec/integration/selenium/webdriver:takes_screenshot-edge-remote; 56s local, disk-cache ... (4 actions, 2 running)
    1579:  �[32m[2,885 / 2,898]�[0m 10 / 27 tests, �[31m�[1m10 failed�[0m;�[0m Testing //rb/spec/integration/selenium/webdriver:takes_screenshot-edge-remote; 61s local, disk-cache ... (4 actions, 2 running)
    1580:  �[31m�[1mFAIL: �[0m//rb/spec/integration/selenium/webdriver:takes_screenshot-edge-remote (see D:/_bazel/execroot/selenium/bazel-out/x64_windows-fastbuild/testlogs/rb/spec/integration/selenium/webdriver/takes_screenshot-edge-remote/test.log)
    1581:  ==================== Test output for //rb/spec/integration/selenium/webdriver:takes_screenshot-edge-remote:
    1582:  �[31m�[1mFAILED: �[0m//rb/spec/integration/selenium/webdriver:takes_screenshot-edge-remote (Summary)
    1583:  2024-03-26 19:56:19 INFO Selenium Server Location: D:/_bazel/execroot/selenium/bazel-out/x64_windows-fastbuild/bin/rb/spec/integration/selenium/webdriver/takes_screenshot-edge-remote.cmd.runfiles/selenium/java/src/org/openqa/selenium/grid/selenium_server_deploy.jar
    1584:  D:/_bazel/execroot/selenium/bazel-out/x64_windows-fastbuild/testlogs/rb/spec/integration/selenium/webdriver/takes_screenshot-edge-remote/test.log
    1585:  D:/_bazel/execroot/selenium/bazel-out/x64_windows-fastbuild/testlogs/rb/spec/integration/selenium/webdriver/takes_screenshot-edge-remote/test_attempts/attempt_1.log
    1586:  D:/_bazel/execroot/selenium/bazel-out/x64_windows-fastbuild/testlogs/rb/spec/integration/selenium/webdriver/takes_screenshot-edge-remote/test_attempts/attempt_2.log
    1587:  An error occurred in a `before(:suite)` hook.
    1588:  �[32mINFO: �[0mFrom Testing //rb/spec/integration/selenium/webdriver:takes_screenshot-edge-remote:
    1589:  Failure/Error: @pid = Process.spawn(*@command, options)
    1590:  Errno::EACCES:
    1591:  Permission denied - java
    1592:  # ./rb/lib/selenium/webdriver/common/child_process.rb:57:in `spawn'
    1593:  # ./rb/lib/selenium/webdriver/common/child_process.rb:57:in `start'
    1594:  # ./rb/lib/selenium/server.rb:204:in `start'
    1595:  # //?/D:/a/selenium/selenium/rb/spec/integration/selenium/webdriver/spec_helper.rb:40:in `block (2 levels) in <top (required)>'
    1596:  Finished in 0.04449 seconds (files took 0.60128 seconds to load)
    1597:  0 examples, 0 failures, 1 error occurred outside of examples
    1598:  ================================================================================
    1599:  ==================== Test output for //rb/spec/integration/selenium/webdriver:takes_screenshot-edge-remote:
    1600:  2024-03-26 19:56:46 INFO Selenium Server Location: D:/_bazel/execroot/selenium/bazel-out/x64_windows-fastbuild/bin/rb/spec/integration/selenium/webdriver/takes_screenshot-edge-remote.cmd.runfiles/selenium/java/src/org/openqa/selenium/grid/selenium_server_deploy.jar
    1601:  An error occurred in a `before(:suite)` hook.
    1602:  Failure/Error: @pid = Process.spawn(*@command, options)
    1603:  Errno::EACCES:
    1604:  Permission denied - java
    1605:  # ./rb/lib/selenium/webdriver/common/child_process.rb:57:in `spawn'
    1606:  # ./rb/lib/selenium/webdriver/common/child_process.rb:57:in `start'
    1607:  # ./rb/lib/selenium/server.rb:204:in `start'
    1608:  # //?/D:/a/selenium/selenium/rb/spec/integration/selenium/webdriver/spec_helper.rb:40:in `block (2 levels) in <top (required)>'
    1609:  Finished in 0.04581 seconds (files took 0.64243 seconds to load)
    1610:  0 examples, 0 failures, 1 error occurred outside of examples
    1611:  ================================================================================
    1612:  ==================== Test output for //rb/spec/integration/selenium/webdriver:takes_screenshot-edge-remote:
    1613:  2024-03-26 19:57:14 INFO Selenium Server Location: D:/_bazel/execroot/selenium/bazel-out/x64_windows-fastbuild/bin/rb/spec/integration/selenium/webdriver/takes_screenshot-edge-remote.cmd.runfiles/selenium/java/src/org/openqa/selenium/grid/selenium_server_deploy.jar
    1614:  An error occurred in a `before(:suite)` hook.
    1615:  Failure/Error: @pid = Process.spawn(*@command, options)
    1616:  Errno::EACCES:
    1617:  Permission denied - java
    1618:  # ./rb/lib/selenium/webdriver/common/child_process.rb:57:in `spawn'
    1619:  # ./rb/lib/selenium/webdriver/common/child_process.rb:57:in `start'
    1620:  # ./rb/lib/selenium/server.rb:204:in `start'
    1621:  # //?/D:/a/selenium/selenium/rb/spec/integration/selenium/webdriver/spec_helper.rb:40:in `block (2 levels) in <top (required)>'
    1622:  Finished in 0.0487 seconds (files took 0.63767 seconds to load)
    1623:  0 examples, 0 failures, 1 error occurred outside of examples
    1624:  ================================================================================
    1625:  �[32m[2,886 / 2,898]�[0m 11 / 27 tests, �[31m�[1m11 failed�[0m;�[0m Testing //rb/spec/integration/selenium/webdriver:listener-edge-remote; 49s local, disk-cache ... (4 actions, 1 running)
    1626:  �[32m[2,886 / 2,898]�[0m 11 / 27 tests, �[31m�[1m11 failed�[0m;�[0m Testing //rb/spec/integration/selenium/webdriver:listener-edge-remote; 52s local, disk-cache ... (4 actions, 1 running)
    1627:  �[32m[2,886 / 2,898]�[0m 11 / 27 tests, �[31m�[1m11 failed�[0m;�[0m Testing //rb/spec/integration/selenium/webdriver:listener-edge-remote; 55s local, disk-cache ... (4 actions, 2 running)
    1628:  �[31m�[1mFAIL: �[0m//rb/spec/integration/selenium/webdriver:listener-edge-remote (see D:/_bazel/execroot/selenium/bazel-out/x64_windows-fastbuild/testlogs/rb/spec/integration/selenium/webdriver/listener-edge-remote/test.log)
    1629:  �[31m�[1mFAILED: �[0m//rb/spec/integration/selenium/webdriver:listener-edge-remote (Summary)
    1630:  D:/_bazel/execroot/selenium/bazel-out/x64_windows-fastbuild/testlogs/rb/spec/integration/selenium/webdriver/listener-edge-remote/test.log
    1631:  D:/_bazel/execroot/selenium/bazel-out/x64_windows-fastbuild/testlogs/rb/spec/integration/selenium/webdriver/listener-edge-remote/test_attempts/attempt_1.log
    1632:  D:/_bazel/execroot/selenium/bazel-out/x64_windows-fastbuild/testlogs/rb/spec/integration/selenium/webdriver/listener-edge-remote/test_attempts/attempt_2.log
    1633:  �[32mINFO: �[0mFrom Testing //rb/spec/integration/selenium/webdriver:listener-edge-remote:
    1634:  ==================== Test output for //rb/spec/integration/selenium/webdriver:listener-edge-remote:
    1635:  2024-03-26 19:56:33 INFO Selenium Server Location: D:/_bazel/execroot/selenium/bazel-out/x64_windows-fastbuild/bin/rb/spec/integration/selenium/webdriver/listener-edge-remote.cmd.runfiles/selenium/java/src/org/openqa/selenium/grid/selenium_server_deploy.jar
    1636:  An error occurred in a `before(:suite)` hook.
    1637:  Failure/Error: @pid = Process.spawn(*@command, options)
    1638:  Errno::EACCES:
    1639:  Permission denied - java
    1640:  # ./rb/lib/selenium/webdriver/common/child_process.rb:57:in `spawn'
    1641:  # ./rb/lib/selenium/webdriver/common/child_process.rb:57:in `start'
    1642:  # ./rb/lib/selenium/server.rb:204:in `start'
    1643:  # //?/D:/a/selenium/selenium/rb/spec/integration/selenium/webdriver/spec_helper.rb:40:in `block (2 levels) in <top (required)>'
    1644:  Finished in 0.04329 seconds (files took 0.5946 seconds to load)
    1645:  0 examples, 0 failures, 1 error occurred outside of examples
    1646:  ================================================================================
    1647:  ==================== Test output for //rb/spec/integration/selenium/webdriver:listener-edge-remote:
    1648:  2024-03-26 19:57:00 INFO Selenium Server Location: D:/_bazel/execroot/selenium/bazel-out/x64_windows-fastbuild/bin/rb/spec/integration/selenium/webdriver/listener-edge-remote.cmd.runfiles/selenium/java/src/org/openqa/selenium/grid/selenium_server_deploy.jar
    1649:  An error occurred in a `before(:suite)` hook.
    1650:  Failure/Error: @pid = Process.spawn(*@command, options)
    1651:  Errno::EACCES:
    1652:  Permission denied - java
    1653:  # ./rb/lib/selenium/webdriver/common/child_process.rb:57:in `spawn'
    1654:  # ./rb/lib/selenium/webdriver/common/child_process.rb:57:in `start'
    1655:  # ./rb/lib/selenium/server.rb:204:in `start'
    1656:  # //?/D:/a/selenium/selenium/rb/spec/integration/selenium/webdriver/spec_helper.rb:40:in `block (2 levels) in <top (required)>'
    1657:  Finished in 0.05527 seconds (files took 0.71648 seconds to load)
    1658:  0 examples, 0 failures, 1 error occurred outside of examples
    1659:  ================================================================================
    1660:  ==================== Test output for //rb/spec/integration/selenium/webdriver:listener-edge-remote:
    1661:  2024-03-26 19:57:22 INFO Selenium Server Location: D:/_bazel/execroot/selenium/bazel-out/x64_windows-fastbuild/bin/rb/spec/integration/selenium/webdriver/listener-edge-remote.cmd.runfiles/selenium/java/src/org/openqa/selenium/grid/selenium_server_deploy.jar
    1662:  An error occurred in a `before(:suite)` hook.
    1663:  Failure/Error: @pid = Process.spawn(*@command, options)
    1664:  Errno::EACCES:
    1665:  Permission denied - java
    1666:  # ./rb/lib/selenium/webdriver/common/child_process.rb:57:in `spawn'
    1667:  # ./rb/lib/selenium/webdriver/common/child_process.rb:57:in `start'
    1668:  # ./rb/lib/selenium/server.rb:204:in `start'
    1669:  # //?/D:/a/selenium/selenium/rb/spec/integration/selenium/webdriver/spec_helper.rb:40:in `block (2 levels) in <top (required)>'
    1670:  Finished in 0.05015 seconds (files took 0.8684 seconds to load)
    1671:  0 examples, 0 failures, 1 error occurred outside of examples
    1672:  ================================================================================
    1673:  �[32m[2,887 / 2,898]�[0m 12 / 27 tests, �[31m�[1m12 failed�[0m;�[0m Testing //rb/spec/integration/selenium/webdriver:error-edge-remote; 7s disk-cache ... (4 actions, 1 running)
    1674:  �[32m[2,887 / 2,898]�[0m 12 / 27 tests, �[31m�[1m12 failed�[0m;�[0m [Sched] Testing //rb/spec/integration/selenium/webdriver:element-edge-remote; 9s ... (4 actions, 1 running)
    1675:  �[32m[2,887 / 2,898]�[0m 12 / 27 tests, �[31m�[1m12 failed�[0m;�[0m Testing //rb/spec/integration/selenium/webdriver/remote:driver-edge-remote; 7s local, disk-cache ... (4 actions, 2 running)
    1676:  �[31m�[1mFAIL: �[0m//rb/spec/integration/selenium/webdriver/remote:driver-edge-remote (see D:/_bazel/execroot/selenium/bazel-out/x64_windows-fastbuild/testlogs/rb/spec/integration/selenium/webdriver/remote/driver-edge-remote/test_attempts/attempt_1.log)
    1677:  �[32m[2,887 / 2,898]�[0m 12 / 27 tests, �[31m�[1m12 failed�[0m;�[0m Testing //rb/spec/integration/selenium/webdriver/remote:driver-edge-remote; 9s local, disk-cache ... (4 actions, 2 running)
    1678:  �[32m[2,887 / 2,898]�[0m 12 / 27 tests, �[31m�[1m12 failed�[0m;�[0m Testing //rb/spec/integration/selenium/webdriver/remote:driver-edge-remote; 11s local, disk-cache ... (4 actions, 2 running)
    1679:  �[32m[2,887 / 2,898]�[0m 12 / 27 tests, �[31m�[1m12 failed�[0m;�[0m Testing //rb/spec/integration/selenium/webdriver/remote:driver-edge-remote; 13s local, disk-cache ... (4 actions, 2 running)
    1680:  �[32m[2,887 / 2,898]�[0m 12 / 27 tests, �[31m�[1m12 failed�[0m;�[0m Testing //rb/spec/integration/selenium/webdriver/remote:driver-edge-remote; 14s local, disk-cache ... (4 actions, 3 running)
    1681:  �[31m�[1mFAIL: �[0m//rb/spec/integration/selenium/webdriver:element-edge-remote (see D:/_bazel/execroot/selenium/bazel-out/x64_windows-fastbuild/testlogs/rb/spec/integration/selenium/webdriver/element-edge-remote/test_attempts/attempt_1.log)
    1682:  �[32m[2,887 / 2,898]�[0m 12 / 27 tests, �[31m�[1m12 failed�[0m;�[0m Testing //rb/spec/integration/selenium/webdriver/remote:driver-edge-remote; 16s local, disk-cache ... (4 actions, 3 running)
    1683:  �[32m[2,887 / 2,898]�[0m 12 / 27 tests, �[31m�[1m12 failed�[0m;�[0m Testing //rb/spec/integration/selenium/webdriver/remote:driver-edge-remote; 21s local, disk-cache ... (4 actions, 3 running)
    1684:  �[31m�[1mFAIL: �[0m//rb/spec/integration/selenium/webdriver:error-edge-remote (see D:/_bazel/execroot/selenium/bazel-out/x64_windows-fastbuild/testlogs/rb/spec/integration/selenium/webdriver/error-edge-remote/test_attempts/attempt_1.log)
    1685:  �[32m[2,887 / 2,898]�[0m 12 / 27 tests, �[31m�[1m12 failed�[0m;�[0m Testing //rb/spec/integration/selenium/webdriver/remote:driver-edge-remote; 23s local, disk-cache ... (4 actions, 3 running)
    1686:  �[32m[2,887 / 2,898]�[0m 12 / 27 tests, �[31m�[1m12 failed�[0m;�[0m Testing //rb/spec/integration/selenium/webdriver/remote:driver-edge-remote; 28s local, disk-cache ... (4 actions running)
    1687:  �[31m�[1mFAIL: �[0m//rb/spec/integration/selenium/webdriver/remote:driver-edge-remote (see D:/_bazel/execroot/selenium/bazel-out/x64_windows-fastbuild/testlogs/rb/spec/integration/selenium/webdriver/remote/driver-edge-remote/test_attempts/attempt_2.log)
    1688:  �[32m[2,887 / 2,898]�[0m 12 / 27 tests, �[31m�[1m12 failed�[0m;�[0m Testing //rb/spec/integration/selenium/webdriver/remote:driver-edge-remote; 30s local, disk-cache ... (4 actions running)
    1689:  �[32m[2,887 / 2,898]�[0m 12 / 27 tests, �[31m�[1m12 failed�[0m;�[0m Testing //rb/spec/integration/selenium/webdriver/remote:driver-edge-remote; 35s local, disk-cache ... (4 actions running)
    1690:  �[31m�[1mFAIL: �[0m//rb/spec/integration/selenium/webdriver:driver-edge-remote (see D:/_bazel/execroot/selenium/bazel-out/x64_windows-fastbuild/testlogs/rb/spec/integration/selenium/webdriver/driver-edge-remote/test_attempts/attempt_1.log)
    1691:  �[32m[2,887 / 2,898]�[0m 12 / 27 tests, �[31m�[1m12 failed�[0m;�[0m Testing //rb/spec/integration/selenium/webdriver/remote:driver-edge-remote; 36s local, disk-cache ... (4 actions running)
    1692:  �[32m[2,887 / 2,898]�[0m 12 / 27 tests, �[31m�[1m12 failed�[0m;�[0m Testing //rb/spec/integration/selenium/webdriver/remote:driver-edge-remote; 41s local, disk-cache ... (4 actions running)
    1693:  �[31m�[1mFAIL: �[0m//rb/spec/integration/selenium/webdriver:element-edge-remote (see D:/_bazel/execroot/selenium/bazel-out/x64_windows-fastbuild/testlogs/rb/spec/integration/selenium/webdriver/element-edge-remote/test_attempts/attempt_2.log)
    1694:  �[32m[2,887 / 2,898]�[0m 12 / 27 tests, �[31m�[1m12 failed�[0m;�[0m Testing //rb/spec/integration/selenium/webdriver/remote:driver-edge-remote; 42s local, disk-cache ... (4 actions running)
    1695:  �[32m[2,887 / 2,898]�[0m 12 / 27 tests, �[31m�[1m12 failed�[0m;�[0m Testing //rb/spec/integration/selenium/webdriver/remote:driver-edge-remote; 43s local, disk-cache ... (4 actions running)
    1696:  �[32m[2,887 / 2,898]�[0m 12 / 27 tests, �[31m�[1m12 failed�[0m;�[0m Testing //rb/spec/integration/selenium/webdriver/remote:driver-edge-remote; 48s local, disk-cache ... (4 actions running)
    1697:  �[31m�[1mFAIL: �[0m//rb/spec/integration/selenium/webdriver:error-edge-remote (see D:/_bazel/execroot/selenium/bazel-out/x64_windows-fastbuild/testlogs/rb/spec/integration/selenium/webdriver/error-edge-remote/test_attempts/attempt_2.log)
    1698:  �[32m[2,887 / 2,898]�[0m 12 / 27 tests, �[31m�[1m12 failed�[0m;�[0m Testing //rb/spec/integration/selenium/webdriver/remote:driver-edge-remote; 50s local, disk-cache ... (4 actions running)
    1699:  �[32m[2,887 / 2,898]�[0m 12 / 27 tests, �[31m�[1m12 failed�[0m;�[0m Testing //rb/spec/integration/selenium/webdriver/remote:driver-edge-remote; 55s local, disk-cache ... (4 actions running)
    1700:  �[31m�[1mFAIL: �[0m//rb/spec/integration/selenium/webdriver/remote:driver-edge-remote (see D:/_bazel/execroot/selenium/bazel-out/x64_windows-fastbuild/testlogs/rb/spec/integration/selenium/webdriver/remote/driver-edge-remote/test.log)
    1701:  �[31m�[1mFAILED: �[0m//rb/spec/integration/selenium/webdriver/remote:driver-edge-remote (Summary)
    1702:  D:/_bazel/execroot/selenium/bazel-out/x64_windows-fastbuild/testlogs/rb/spec/integration/selenium/webdriver/remote/driver-edge-remote/test.log
    1703:  ==================== Test output for //rb/spec/integration/selenium/webdriver/remote:driver-edge-remote:
    1704:  2024-03-26 19:57:29 INFO Selenium Server Location: D:/_bazel/execroot/selenium/bazel-out/x64_windows-fastbuild/bin/rb/spec/integration/selenium/webdriver/remote/driver-edge-remote.cmd.runfiles/selenium/java/src/org/openqa/selenium/grid/selenium_server_deploy.jar
    1705:  D:/_bazel/execroot/selenium/bazel-out/x64_windows-fastbuild/testlogs/rb/spec/integration/selenium/webdriver/remote/driver-edge-remote/test_attempts/attempt_1.log
    1706:  An error occurred in a `before(:suite)` hook.
    1707:  D:/_bazel/execroot/selenium/bazel-out/x64_windows-fastbuild/testlogs/rb/spec/integration/selenium/webdriver/remote/driver-edge-remote/test_attempts/attempt_2.log
    1708:  Failure/Error: @pid = Process.spawn(*@command, options)
    1709:  �[32mINFO: �[0mFrom Testing //rb/spec/integration/selenium/webdriver/remote:driver-edge-remote:
    1710:  Errno::EACCES:
    1711:  Permission denied - java
    1712:  # ./rb/lib/selenium/webdriver/common/child_process.rb:57:in `spawn'
    1713:  # ./rb/lib/selenium/webdriver/common/child_process.rb:57:in `start'
    1714:  # ./rb/lib/selenium/server.rb:204:in `start'
    1715:  # //?/D:/a/selenium/selenium/rb/spec/integration/selenium/webdriver/spec_helper.rb:40:in `block (2 levels) in <top (required)>'
    1716:  Finished in 0.07194 seconds (files took 0.92984 seconds to load)
    1717:  0 examples, 0 failures, 1 error occurred outside of examples
    1718:  ================================================================================
    1719:  ==================== Test output for //rb/spec/integration/selenium/webdriver/remote:driver-edge-remote:
    1720:  2024-03-26 19:57:50 INFO Selenium Server Location: D:/_bazel/execroot/selenium/bazel-out/x64_windows-fastbuild/bin/rb/spec/integration/selenium/webdriver/remote/driver-edge-remote.cmd.runfiles/selenium/java/src/org/openqa/selenium/grid/selenium_server_deploy.jar
    1721:  An error occurred in a `before(:suite)` hook.
    1722:  Failure/Error: @pid = Process.spawn(*@command, options)
    1723:  Errno::EACCES:
    1724:  Permission denied - java
    1725:  # ./rb/lib/selenium/webdriver/common/child_process.rb:57:in `spawn'
    1726:  # ./rb/lib/selenium/webdriver/common/child_process.rb:57:in `start'
    1727:  # ./rb/lib/selenium/server.rb:204:in `start'
    1728:  # //?/D:/a/selenium/selenium/rb/spec/integration/selenium/webdriver/spec_helper.rb:40:in `block (2 levels) in <top (required)>'
    1729:  Finished in 0.04387 seconds (files took 0.60758 seconds to load)
    1730:  0 examples, 0 failures, 1 error occurred outside of examples
    1731:  ================================================================================
    1732:  ==================== Test output for //rb/spec/integration/selenium/webdriver/remote:driver-edge-remote:
    1733:  2024-03-26 19:58:17 INFO Selenium Server Location: D:/_bazel/execroot/selenium/bazel-out/x64_windows-fastbuild/bin/rb/spec/integration/selenium/webdriver/remote/driver-edge-remote.cmd.runfiles/selenium/java/src/org/openqa/selenium/grid/selenium_server_deploy.jar
    1734:  An error occurred in a `before(:suite)` hook.
    1735:  Failure/Error: @pid = Process.spawn(*@command, options)
    1736:  Errno::EACCES:
    1737:  Permission denied - java
    1738:  # ./rb/lib/selenium/webdriver/common/child_process.rb:57:in `spawn'
    1739:  # ./rb/lib/selenium/webdriver/common/child_process.rb:57:in `start'
    1740:  # ./rb/lib/selenium/server.rb:204:in `start'
    1741:  # //?/D:/a/selenium/selenium/rb/spec/integration/selenium/webdriver/spec_helper.rb:40:in `block (2 levels) in <top (required)>'
    1742:  Finished in 0.0432 seconds (files took 0.59301 seconds to load)
    1743:  0 examples, 0 failures, 1 error occurred outside of examples
    1744:  ================================================================================
    1745:  �[32m[2,888 / 2,898]�[0m 13 / 27 tests, �[31m�[1m13 failed�[0m;�[0m Testing //rb/spec/integration/selenium/webdriver:element-edge-remote; 49s local, disk-cache ... (4 actions, 3 running)
    1746:  �[32m[2,888 / 2,898]�[0m 13 / 27 tests, �[31m�[1m13 failed�[0m;�[0m Testing //rb/spec/integration/selenium/webdriver:element-edge-remote; 54s local, disk-cache ... (4 actions, 3 running)
    1747:  �[31m�[1mFAIL: �[0m//rb/spec/integration/selenium/webdriver:driver-edge-remote (see D:/_bazel/execroot/selenium/bazel-out/x64_windows-fastbuild/testlogs/rb/spec/integration/selenium/webdriver/driver-edge-remote/test_attempts/attempt_2.log)
    1748:  �[32m[2,888 / 2,898]�[0m 13 / 27 tests, �[31m�[1m13 failed�[0m;�[0m Testing //rb/spec/integration/selenium/webdriver:element-edge-remote; 56s local, disk-cache ... (4 actions, 3 running)
    1749:  �[32m[2,888 / 2,898]�[0m 13 / 27 tests, �[31m�[1m13 failed�[0m;�[0m Testing //rb/spec/integration/selenium/webdriver:element-edge-remote; 58s local, disk-cache ... (4 actions, 3 running)
    1750:  �[32m[2,888 / 2,898]�[0m 13 / 27 tests, �[31m�[1m13 failed�[0m;�[0m Testing //rb/spec/integration/selenium/webdriver:element-edge-remote; 60s local, disk-cache ... (4 actions, 3 running)
    1751:  �[32m[2,888 / 2,898]�[0m 13 / 27 tests, �[31m�[1m13 failed�[0m;�[0m Testing //rb/spec/integration/selenium/webdriver:element-edge-remote; 61s local, disk-cache ... (4 actions, 3 running)
    1752:  �[31m�[1mFAIL: �[0m//rb/spec/integration/selenium/webdriver:element-edge-remote (see D:/_bazel/execroot/selenium/bazel-out/x64_windows-fastbuild/testlogs/rb/spec/integration/selenium/webdriver/element-edge-remote/test.log)
    1753:  �[31m�[1mFAILED: �[0m//rb/spec/integration/selenium/webdriver:element-edge-remote (Summary)
    1754:  D:/_bazel/execroot/selenium/bazel-out/x64_windows-fastbuild/testlogs/rb/spec/integration/selenium/webdriver/element-edge-remote/test.log
    1755:  D:/_bazel/execroot/selenium/bazel-out/x64_windows-fastbuild/testlogs/rb/spec/integration/selenium/webdriver/element-edge-remote/test_attempts/attempt_1.log
    1756:  D:/_bazel/execroot/selenium/bazel-out/x64_windows-fastbuild/testlogs/rb/spec/integration/selenium/webdriver/element-edge-remote/test_attempts/attempt_2.log
    1757:  �[32mINFO: �[0mFrom Testing //rb/spec/integration/selenium/webdriver:element-edge-remote:
    1758:  ==================== Test output for //rb/spec/integration/selenium/webdriver:element-edge-remote:
    1759:  2024-03-26 19:57:36 INFO Selenium Server Location: D:/_bazel/execroot/selenium/bazel-out/x64_windows-fastbuild/bin/rb/spec/integration/selenium/webdriver/element-edge-remote.cmd.runfiles/selenium/java/src/org/openqa/selenium/grid/selenium_server_deploy.jar
    1760:  An error occurred in a `before(:suite)` hook.
    1761:  Failure/Error: @pid = Process.spawn(*@command, options)
    1762:  Errno::EACCES:
    1763:  Permission denied - java
    1764:  # ./rb/lib/selenium/webdriver/common/child_process.rb:57:in `spawn'
    1765:  # ./rb/lib/selenium/webdriver/common/child_process.rb:57:in `start'
    1766:  # ./rb/lib/selenium/server.rb:204:in `start'
    1767:  # //?/D:/a/selenium/selenium/rb/spec/integration/selenium/webdriver/spec_helper.rb:40:in `block (2 levels) in <top (required)>'
    1768:  Finished in 0.047 seconds (files took 0.66011 seconds to load)
    1769:  0 examples, 0 failures, 1 error occurred outside of examples
    1770:  ================================================================================
    1771:  ==================== Test output for //rb/spec/integration/selenium/webdriver:element-edge-remote:
    1772:  2024-03-26 19:58:04 INFO Selenium Server Location: D:/_bazel/execroot/selenium/bazel-out/x64_windows-fastbuild/bin/rb/spec/integration/selenium/webdriver/element-edge-remote.cmd.runfiles/selenium/java/src/org/openqa/selenium/grid/selenium_server_deploy.jar
    1773:  An error occurred in a `before(:suite)` hook.
    1774:  Failure/Error: @pid = Process.spawn(*@command, options)
    1775:  Errno::EACCES:
    1776:  Permission denied - java
    1777:  # ./rb/lib/selenium/webdriver/common/child_process.rb:57:in `spawn'
    1778:  # ./rb/lib/selenium/webdriver/common/child_process.rb:57:in `start'
    1779:  # ./rb/lib/selenium/server.rb:204:in `start'
    1780:  # //?/D:/a/selenium/selenium/rb/spec/integration/selenium/webdriver/spec_helper.rb:40:in `block (2 levels) in <top (required)>'
    1781:  Finished in 0.04749 seconds (files took 0.63486 seconds to load)
    1782:  0 examples, 0 failures, 1 error occurred outside of examples
    1783:  ================================================================================
    1784:  ==================== Test output for //rb/spec/integration/selenium/webdriver:element-edge-remote:
    1785:  2024-03-26 19:58:31 INFO Selenium Server Location: D:/_bazel/execroot/selenium/bazel-out/x64_windows-fastbuild/bin/rb/spec/integration/selenium/webdriver/element-edge-remote.cmd.runfiles/selenium/java/src/org/openqa/selenium/grid/selenium_server_deploy.jar
    1786:  An error occurred in a `before(:suite)` hook.
    1787:  Failure/Error: @pid = Process.spawn(*@command, options)
    1788:  Errno::EACCES:
    1789:  Permission denied - java
    1790:  # ./rb/lib/selenium/webdriver/common/child_process.rb:57:in `spawn'
    1791:  # ./rb/lib/selenium/webdriver/common/child_process.rb:57:in `start'
    1792:  # ./rb/lib/selenium/server.rb:204:in `start'
    1793:  # //?/D:/a/selenium/selenium/rb/spec/integration/selenium/webdriver/spec_helper.rb:40:in `block (2 levels) in <top (required)>'
    1794:  Finished in 0.04869 seconds (files took 0.65841 seconds to load)
    1795:  0 examples, 0 failures, 1 error occurred outside of examples
    1796:  ================================================================================
    1797:  �[32m[2,889 / 2,898]�[0m 14 / 27 tests, �[31m�[1m14 failed�[0m;�[0m Testing //rb/spec/integration/selenium/webdriver:error-edge-remote; 56s local, disk-cache ... (4 actions, 2 running)
    1798:  �[32m[2,889 / 2,898]�[0m 14 / 27 tests, �[31m�[1m14 failed�[0m;�[0m Testing //rb/spec/integration/selenium/webdriver:error-edge-remote; 61s local, disk-cache ... (4 actions, 2 running)
    1799:  �[31m�[1mFAIL: �[0m//rb/spec/integration/selenium/webdriver:error-edge-remote (see D:/_bazel/execroot/selenium/bazel-out/x64_windows-fastbuild/testlogs/rb/spec/integration/selenium/webdriver/error-edge-remote/test.log)
    1800:  ==================== Test output for //rb/spec/integration/selenium/webdriver:error-edge-remote:
    1801:  �[31m�[1mFAILED: �[0m//rb/spec/integration/selenium/webdriver:error-edge-remote (Summary)
    1802:  D:/_bazel/execroot/selenium/bazel-out/x64_windows-fastbuild/testlogs/rb/spec/integration/selenium/webdriver/error-edge-remote/test.log
    1803:  D:/_bazel/execroot/selenium/bazel-out/x64_windows-fastbuild/testlogs/rb/spec/integration/selenium/webdriver/error-edge-remote/test_attempts/attempt_1.log
    1804:  D:/_bazel/execroot/selenium/bazel-out/x64_windows-fastbuild/testlogs/rb/spec/integration/selenium/webdriver/error-edge-remote/test_attempts/attempt_2.log
    1805:  �[32mINFO: �[0mFrom Testing //rb/spec/integration/selenium/webdriver:error-edge-remote:
    1806:  2024-03-26 19:57:43 INFO Selenium Server Location: D:/_bazel/execroot/selenium/bazel-out/x64_windows-fastbuild/bin/rb/spec/integration/selenium/webdriver/error-edge-remote.cmd.runfiles/selenium/java/src/org/openqa/selenium/grid/selenium_server_deploy.jar
    1807:  An error occurred in a `before(:suite)` hook.
    1808:  Failure/Error: @pid = Process.spawn(*@command, options)
    1809:  Errno::EACCES:
    1810:  Permission denied - java
    1811:  # ./rb/lib/selenium/webdriver/common/child_process.rb:57:in `spawn'
    1812:  # ./rb/lib/selenium/webdriver/common/child_process.rb:57:in `start'
    1813:  # ./rb/lib/selenium/server.rb:204:in `start'
    1814:  # //?/D:/a/selenium/selenium/rb/spec/integration/selenium/webdriver/spec_helper.rb:40:in `block (2 levels) in <top (required)>'
    1815:  Finished in 0.04537 seconds (files took 0.60794 seconds to load)
    1816:  0 examples, 0 failures, 1 error occurred outside of examples
    1817:  ================================================================================
    1818:  ==================== Test output for //rb/spec/integration/selenium/webdriver:error-edge-remote:
    1819:  2024-03-26 19:58:11 INFO Selenium Server Location: D:/_bazel/execroot/selenium/bazel-out/x64_windows-fastbuild/bin/rb/spec/integration/selenium/webdriver/error-edge-remote.cmd.runfiles/selenium/java/src/org/openqa/selenium/grid/selenium_server_deploy.jar
    1820:  An error occurred in a `before(:suite)` hook.
    1821:  Failure/Error: @pid = Process.spawn(*@command, options)
    1822:  Errno::EACCES:
    1823:  Permission denied - java
    1824:  # ./rb/lib/selenium/webdriver/common/child_process.rb:57:in `spawn'
    1825:  # ./rb/lib/selenium/webdriver/common/child_process.rb:57:in `start'
    1826:  # ./rb/lib/selenium/server.rb:204:in `start'
    1827:  # //?/D:/a/selenium/selenium/rb/spec/integration/selenium/webdriver/spec_helper.rb:40:in `block (2 levels) in <top (required)>'
    1828:  Finished in 0.05185 seconds (files took 0.63451 seconds to load)
    1829:  0 examples, 0 failures, 1 error occurred outside of examples
    1830:  ================================================================================
    1831:  ==================== Test output for //rb/spec/integration/selenium/webdriver:error-edge-remote:
    1832:  2024-03-26 19:58:38 INFO Selenium Server Location: D:/_bazel/execroot/selenium/bazel-out/x64_windows-fastbuild/bin/rb/spec/integration/selenium/webdriver/error-edge-remote.cmd.runfiles/selenium/java/src/org/openqa/selenium/grid/selenium_server_deploy.jar
    1833:  An error occurred in a `before(:suite)` hook.
    1834:  Failure/Error: @pid = Process.spawn(*@command, options)
    1835:  Errno::EACCES:
    1836:  Permission denied - java
    1837:  # ./rb/lib/selenium/webdriver/common/child_process.rb:57:in `spawn'
    1838:  # ./rb/lib/selenium/webdriver/common/child_process.rb:57:in `start'
    1839:  # ./rb/lib/selenium/server.rb:204:in `start'
    1840:  # //?/D:/a/selenium/selenium/rb/spec/integration/selenium/webdriver/spec_helper.rb:40:in `block (2 levels) in <top (required)>'
    1841:  Finished in 0.04695 seconds (files took 0.65818 seconds to load)
    1842:  0 examples, 0 failures, 1 error occurred outside of examples
    1843:  ================================================================================
    1844:  �[32m[2,890 / 2,898]�[0m 15 / 27 tests, �[31m�[1m15 failed�[0m;�[0m Testing //rb/spec/integration/selenium/webdriver:driver-edge-remote; 49s local, disk-cache ... (4 actions, 1 running)
    1845:  �[32m[2,890 / 2,898]�[0m 15 / 27 tests, �[31m�[1m15 failed�[0m;�[0m Testing //rb/spec/integration/selenium/webdriver:driver-edge-remote; 53s local, disk-cache ... (4 actions, 1 running)
    1846:  �[32m[2,890 / 2,898]�[0m 15 / 27 tests, �[31m�[1m15 failed�[0m;�[0m Testing //rb/spec/integration/selenium/webdriver:driver-edge-remote; 55s local, disk-cache ... (4 actions, 2 running)
    1847:  �[31m�[1mFAIL: �[0m//rb/spec/integration/selenium/webdriver:driver-edge-remote (see D:/_bazel/execroot/selenium/bazel-out/x64_windows-fastbuild/testlogs/rb/spec/integration/selenium/webdriver/driver-edge-remote/test.log)
    1848:  ==================== Test output for //rb/spec/integration/selenium/webdriver:driver-edge-remote:
    1849:  2024-03-26 19:57:57 INFO Selenium Server Location: D:/_bazel/execroot/selenium/bazel-out/x64_windows-fastbuild/bin/rb/spec/integration/selenium/webdriver/driver-edge-remote.cmd.runfiles/selenium/java/src/org/openqa/selenium/grid/selenium_server_deploy.jar
    1850:  An error occurred in a `before(:suite)` hook.
    1851:  Failure/Error: @pid = Process.spawn(*@command, options)
    1852:  Errno::EACCES:
    1853:  Permission denied - java
    1854:  # ./rb/lib/selenium/webdriver/common/child_process.rb:57:in `spawn'
    1855:  # ./rb/lib/selenium/webdriver/common/child_process.rb:57:in `start'
    1856:  # ./rb/lib/selenium/server.rb:204:in `start'
    1857:  # //?/D:/a/selenium/selenium/rb/spec/integration/selenium/webdriver/spec_helper.rb:40:in `block (2 levels) in <top (required)>'
    1858:  Finished in 0.04645 seconds (files took 0.61792 seconds to load)
    1859:  0 examples, 0 failures, 1 error occurred outside of examples
    1860:  ================================================================================
    1861:  ==================== Test output for //rb/spec/integration/selenium/webdriver:driver-edge-remote:
    1862:  2024-03-26 19:58:24 INFO Selenium Server Location: D:/_bazel/execroot/selenium/bazel-out/x64_windows-fastbuild/bin/rb/spec/integration/selenium/webdriver/driver-edge-remote.cmd.runfiles/selenium/java/src/org/openqa/selenium/grid/selenium_server_deploy.jar
    1863:  An error occurred in a `before(:suite)` hook.
    1864:  Failure/Error: @pid = Process.spawn(*@command, options)
    1865:  Errno::EACCES:
    1866:  Permission denied - java
    1867:  # ./rb/lib/selenium/webdriver/common/child_process.rb:57:in `spawn'
    1868:  # ./rb/lib/selenium/webdriver/common/child_process.rb:57:in `start'
    1869:  # ./rb/lib/selenium/server.rb:204:in `start'
    1870:  # //?/D:/a/selenium/selenium/rb/spec/integration/selenium/webdriver/spec_helper.rb:40:in `block (2 levels) in <top (required)>'
    1871:  Finished in 0.06032 seconds (files took 0.69255 seconds to load)
    1872:  0 examples, 0 failures, 1 error occurred outside of examples
    1873:  ================================================================================
    1874:  ==================== Test output for //rb/spec/integration/selenium/webdriver:driver-edge-remote:
    1875:  2024-03-26 19:58:46 INFO Selenium Server Location: D:/_bazel/execroot/selenium/bazel-out/x64_windows-fastbuild/bin/rb/spec/integration/selenium/webdriver/driver-edge-remote.cmd.runfiles/selenium/java/src/org/openqa/selenium/grid/selenium_server_deploy.jar
    1876:  An error occurred in a `before(:suite)` hook.
    1877:  Failure/Error: @pid = Process.spawn(*@command, options)
    1878:  Errno::EACCES:
    1879:  Permission denied - java
    1880:  # ./rb/lib/selenium/webdriver/common/child_process.rb:57:in `spawn'
    1881:  # ./rb/lib/selenium/webdriver/common/child_process.rb:57:in `start'
    1882:  # ./rb/lib/selenium/server.rb:204:in `start'
    1883:  # //?/D:/a/selenium/selenium/rb/spec/integration/selenium/webdriver/spec_helper.rb:40:in `block (2 levels) in <top (required)>'
    1884:  Finished in 0.06206 seconds (files took 0.90828 seconds to load)
    1885:  0 examples, 0 failures, 1 error occurred outside of examples
    1886:  ================================================================================
    1887:  �[31m�[1mFAILED: �[0m//rb/spec/integration/selenium/webdriver:driver-edge-remote (Summary)
    1888:  D:/_bazel/execroot/selenium/bazel-out/x64_windows-fastbuild/testlogs/rb/spec/integration/selenium/webdriver/driver-edge-remote/test.log
    1889:  D:/_bazel/execroot/selenium/bazel-out/x64_windows-fastbuild/testlogs/rb/spec/integration/selenium/webdriver/driver-edge-remote/test_attempts/attempt_1.log
    1890:  D:/_bazel/execroot/selenium/bazel-out/x64_windows-fastbuild/testlogs/rb/spec/integration/selenium/webdriver/driver-edge-remote/test_attempts/attempt_2.log
    1891:  �[32mINFO: �[0mFrom Testing //rb/spec/integration/selenium/webdriver:driver-edge-remote:
    1892:  �[32m[2,891 / 2,898]�[0m 16 / 27 tests, �[31m�[1m16 failed�[0m;�[0m Testing //rb/spec/integration/selenium/webdriver:timeout-edge-remote; 7s disk-cache ... (4 actions, 1 running)
    1893:  �[32m[2,891 / 2,898]�[0m 16 / 27 tests, �[31m�[1m16 failed�[0m;�[0m [Sched] Testing //rb/spec/integration/selenium/webdriver:storage-edge-remote; 8s ... (4 actions, 1 running)
    1894:  �[32m[2,891 / 2,898]�[0m 16 / 27 tests, �[31m�[1m16 failed�[0m;�[0m Testing //rb/spec/integration/selenium/webdriver:virtual_authenticator-edge-remote; 7s local, disk-cache ... (4 actions, 2 running)
    1895:  �[31m�[1mFAIL: �[0m//rb/spec/integration/selenium/webdriver:virtual_authenticator-edge-remote (see D:/_bazel/execroot/selenium/bazel-out/x64_windows-fastbuild/testlogs/rb/spec/integration/selenium/webdriver/virtual_authenticator-edge-remote/test_attempts/attempt_1.log)
    1896:  �[32m[2,891 / 2,898]�[0m 16 / 27 tests, �[31m�[1m16 failed�[0m;�[0m Testing //rb/spec/integration/selenium/webdriver:virtual_authenticator-edge-remote; 8s local, disk-cache ... (4 actions, 2 running)
    1897:  �[32m[2,891 / 2,898]�[0m 16 / 27 tests, �[31m�[1m16 failed�[0m;�[0m Testing //rb/spec/integration/selenium/webdriver:virtual_authenticator-edge-remote; 9s local, disk-cache ... (4 actions, 2 running)
    1898:  �[32m[2,891 / 2,898]�[0m 16 / 27 tests, �[31m�[1m16 failed�[0m;�[0m Testing //rb/spec/integration/selenium/webdriver:virtual_authenticator-edge-remote; 11s local, disk-cache ... (4 actions, 2 running)
    1899:  �[32m[2,891 / 2,898]�[0m 16 / 27 tests, �[31m�[1m16 failed�[0m;�[0m Testing //rb/spec/integration/selenium/webdriver:virtual_authenticator-edge-remote; 12s local, disk-cache ... (4 actions, 2 running)
    1900:  �[32m[2,891 / 2,898]�[0m 16 / 27 tests, �[31m�[1m16 failed�[0m;�[0m Testing //rb/spec/integration/selenium/webdriver:virtual_authenticator-edge-remote; 14s local, disk-cache ... (4 actions, 3 running)
    1901:  �[31m�[1mFAIL: �[0m//rb/spec/integration/selenium/webdriver:storage-edge-remote (see D:/_bazel/execroot/selenium/bazel-out/x64_windows-fastbuild/testlogs/rb/spec/integration/selenium/webdriver/storage-edge-remote/test_attempts/attempt_1.log)
    1902:  �[32m[2,891 / 2,898]�[0m 16 / 27 tests, �[31m�[1m16 failed�[0m;�[0m Testing //rb/spec/integration/selenium/webdriver:virtual_authenticator-edge-remote; 16s local, disk-cache ... (4 actions, 3 running)
    1903:  �[32m[2,891 / 2,898]�[0m 16 / 27 tests, �[31m�[1m16 failed�[0m;�[0m Testing //rb/spec/integration/selenium/webdriver:virtual_authenticator-edge-remote; 21s local, disk-cache ... (4 actions, 3 running)
    1904:  �[31m�[1mFAIL: �[0m//rb/spec/integration/selenium/webdriver:timeout-edge-remote (see D:/_bazel/execroot/selenium/bazel-out/x64_windows-fastbuild/testlogs/rb/spec/integration/selenium/webdriver/timeout-edge-remote/test_attempts/attempt_1.log)
    1905:  �[32m[2,891 / 2,898]�[0m 16 / 27 tests, �[31m�[1m16 failed�[0m;�[0m Testing //rb/spec/integration/selenium/webdriver:virtual_authenticator-edge-remote; 23s local, disk-cache ... (4 actions, 3 running)
    1906:  �[32m[2,891 / 2,898]�[0m 16 / 27 tests, �[31m�[1m16 failed�[0m;�[0m Testing //rb/spec/integration/selenium/webdriver:virtual_authenticator-edge-remote; 28s local, disk-cache ... (4 actions running)
    1907:  �[31m�[1mFAIL: �[0m//rb/spec/integration/selenium/webdriver:virtual_authenticator-edge-remote (see D:/_bazel/execroot/selenium/bazel-out/x64_windows-fastbuild/testlogs/rb/spec/integration/selenium/webdriver/virtual_authenticator-edge-remote/test_attempts/attempt_2.log)
    1908:  �[32m[2,891 / 2,898]�[0m 16 / 27 tests, �[31m�[1m16 failed�[0m;�[0m Testing //rb/spec/integration/selenium/webdriver:virtual_authenticator-edge-remote; 30s local, disk-cache ... (4 actions running)
    1909:  �[32m[2,891 / 2,898]�[0m 16 / 27 tests, �[31m�[1m16 failed�[0m;�[0m Testing //rb/spec/integration/selenium/webdriver:virtual_authenticator-edge-remote; 35s local, disk-cache ... (4 actions running)
    1910:  �[31m�[1mFAIL: �[0m//rb/spec/integration/selenium/webdriver/edge:options-edge-remote (see D:/_bazel/execroot/selenium/bazel-out/x64_windows-fastbuild/testlogs/rb/spec/integration/selenium/webdriver/edge/options-edge-remote/test_attempts/attempt_1.log)
    1911:  �[32m[2,891 / 2,898]�[0m 16 / 27 tests, �[31m�[1m16 failed�[0m;�[0m Testing //rb/spec/integration/selenium/webdriver:virtual_authenticator-edge-remote; 36s local, disk-cache ... (4 actions running)
    1912:  �[32m[2,891 / 2,898]�[0m 16 / 27 tests, �[31m�[1m16 failed�[0m;�[0m Testing //rb/spec/integration/selenium/webdriver:virtual_authenticator-edge-remote; 41s local, disk-cache ... (4 actions running)
    1913:  �[31m�[1mFAIL: �[0m//rb/spec/integration/selenium/webdriver:storage-edge-remote (see D:/_bazel/execroot/selenium/bazel-out/x64_windows-fastbuild/testlogs/rb/spec/integration/selenium/webdriver/storage-edge-remote/test_attempts/attempt_2.log)
    1914:  �[32m[2,891 / 2,898]�[0m 16 / 27 tests, �[31m�[1m16 failed�[0m;�[0m Testing //rb/spec/integration/selenium/webdriver:virtual_authenticator-edge-remote; 42s local, disk-cache ... (4 actions running)
    1915:  �[32m[2,891 / 2,898]�[0m 16 / 27 tests, �[31m�[1m16 failed�[0m;�[0m Testing //rb/spec/integration/selenium/webdriver:virtual_authenticator-edge-remote; 43s local, disk-cache ... (4 actions running)
    1916:  �[32m[2,891 / 2,898]�[0m 16 / 27 tests, �[31m�[1m16 failed�[0m;�[0m Testing //rb/spec/integration/selenium/webdriver:virtual_authenticator-edge-remote; 48s local, disk-cache ... (4 actions running)
    1917:  �[31m�[1mFAIL: �[0m//rb/spec/integration/selenium/webdriver:timeout-edge-remote (see D:/_bazel/execroot/selenium/bazel-out/x64_windows-fastbuild/testlogs/rb/spec/integration/selenium/webdriver/timeout-edge-remote/test_attempts/attempt_2.log)
    1918:  �[32m[2,891 / 2,898]�[0m 16 / 27 tests, �[31m�[1m16 failed�[0m;�[0m Testing //rb/spec/integration/selenium/webdriver:virtual_authenticator-edge-remote; 50s local, disk-cache ... (4 actions running)
    1919:  �[32m[2,891 / 2,898]�[0m 16 / 27 tests, �[31m�[1m16 failed�[0m;�[0m Testing //rb/spec/integration/selenium/webdriver:virtual_authenticator-edge-remote; 55s local, disk-cache ... (4 actions running)
    1920:  �[31m�[1mFAIL: �[0m//rb/spec/integration/selenium/webdriver:virtual_authenticator-edge-remote (see D:/_bazel/execroot/selenium/bazel-out/x64_windows-fastbuild/testlogs/rb/spec/integration/selenium/webdriver/virtual_authenticator-edge-remote/test.log)
    1921:  �[31m�[1mFAILED: �[0m//rb/spec/integration/selenium/webdriver:virtual_authenticator-edge-remote (Summary)
    1922:  ==================== Test output for //rb/spec/integration/selenium/webdriver:virtual_authenticator-edge-remote:
    1923:  D:/_bazel/execroot/selenium/bazel-out/x64_windows-fastbuild/testlogs/rb/spec/integration/selenium/webdriver/virtual_authenticator-edge-remote/test.log
    1924:  2024-03-26 19:58:53 INFO Selenium Server Location: D:/_bazel/execroot/selenium/bazel-out/x64_windows-fastbuild/bin/rb/spec/integration/selenium/webdriver/virtual_authenticator-edge-remote.cmd.runfiles/selenium/java/src/org/openqa/selenium/grid/selenium_server_deploy.jar
    1925:  D:/_bazel/execroot/selenium/bazel-out/x64_windows-fastbuild/testlogs/rb/spec/integration/selenium/webdriver/virtual_authenticator-edge-remote/test_attempts/attempt_1.log
    1926:  D:/_bazel/execroot/selenium/bazel-out/x64_windows-fastbuild/testlogs/rb/spec/integration/selenium/webdriver/virtual_authenticator-edge-remote/test_attempts/attempt_2.log
    1927:  �[32mINFO: �[0mFrom Testing //rb/spec/integration/selenium/webdriver:virtual_authenticator-edge-remote:
    1928:  An error occurred in a `before(:suite)` hook.
    1929:  Failure/Error: @pid = Process.spawn(*@command, options)
    1930:  Errno::EACCES:
    1931:  Permission denied - java
    1932:  # ./rb/lib/selenium/webdriver/common/child_process.rb:57:in `spawn'
    1933:  # ./rb/lib/selenium/webdriver/common/child_process.rb:57:in `start'
    1934:  # ./rb/lib/selenium/server.rb:204:in `start'
    1935:  # //?/D:/a/selenium/selenium/rb/spec/integration/selenium/webdriver/spec_helper.rb:40:in `block (2 levels) in <top (required)>'
    1936:  Finished in 0.06321 seconds (files took 0.9333 seconds to load)
    1937:  0 examples, 0 failures, 1 error occurred outside of examples
    1938:  ================================================================================
    1939:  ==================== Test output for //rb/spec/integration/selenium/webdriver:virtual_authenticator-edge-remote:
    1940:  2024-03-26 19:59:14 INFO Selenium Server Location: D:/_bazel/execroot/selenium/bazel-out/x64_windows-fastbuild/bin/rb/spec/integration/selenium/webdriver/virtual_authenticator-edge-remote.cmd.runfiles/selenium/java/src/org/openqa/selenium/grid/selenium_server_deploy.jar
    1941:  An error occurred in a `before(:suite)` hook.
    1942:  Failure/Error: @pid = Process.spawn(*@command, options)
    1943:  Errno::EACCES:
    1944:  Permission denied - java
    1945:  # ./rb/lib/selenium/webdriver/common/child_process.rb:57:in `spawn'
    1946:  # ./rb/lib/selenium/webdriver/common/child_process.rb:57:in `start'
    1947:  # ./rb/lib/selenium/server.rb:204:in `start'
    1948:  # //?/D:/a/selenium/selenium/rb/spec/integration/selenium/webdriver/spec_helper.rb:40:in `block (2 levels) in <top (required)>'
    1949:  Finished in 0.04616 seconds (files took 0.59761 seconds to load)
    1950:  0 examples, 0 failures, 1 error occurred outside of examples
    1951:  ================================================================================
    1952:  ==================== Test output for //rb/spec/integration/selenium/webdriver:virtual_authenticator-edge-remote:
    1953:  2024-03-26 19:59:41 INFO Selenium Server Location: D:/_bazel/execroot/selenium/bazel-out/x64_windows-fastbuild/bin/rb/spec/integration/selenium/webdriver/virtual_authenticator-edge-remote.cmd.runfiles/selenium/java/src/org/openqa/selenium/grid/selenium_server_deploy.jar
    1954:  An error occurred in a `before(:suite)` hook.
    1955:  Failure/Error: @pid = Process.spawn(*@command, options)
    1956:  Errno::EACCES:
    1957:  Permission denied - java
    1958:  # ./rb/lib/selenium/webdriver/common/child_process.rb:57:in `spawn'
    1959:  # ./rb/lib/selenium/webdriver/common/child_process.rb:57:in `start'
    1960:  # ./rb/lib/selenium/server.rb:204:in `start'
    1961:  # //?/D:/a/selenium/selenium/rb/spec/integration/selenium/webdriver/spec_helper.rb:40:in `block (2 levels) in <top (required)>'
    1962:  Finished in 0.04598 seconds (files took 0.64981 seconds to load)
    1963:  0 examples, 0 failures, 1 error occurred outside of examples
    1964:  ================================================================================
    1965:  �[32m[2,892 / 2,898]�[0m 17 / 27 tests, �[31m�[1m17 failed�[0m;�[0m Testing //rb/spec/integration/selenium/webdriver:storage-edge-remote; 50s local, disk-cache ... (4 actions, 3 running)
    1966:  �[32m[2,892 / 2,898]�[0m 17 / 27 tests, �[31m�[1m17 failed�[0m;�[0m Testing //rb/spec/integration/selenium/webdriver:storage-edge-remote; 55s local, disk-cache ... (4 actions, 3 running)
    1967:  �[31m�[1mFAIL: �[0m//rb/spec/integration/selenium/webdriver/edge:options-edge-remote (see D:/_bazel/execroot/selenium/bazel-out/x64_windows-fastbuild/testlogs/rb/spec/integration/selenium/webdriver/edge/options-edge-remote/test_attempts/attempt_2.log)
    1968:  �[32m[2,892 / 2,898]�[0m 17 / 27 tests, �[31m�[1m17 failed�[0m;�[0m Testing //rb/spec/integration/selenium/webdriver:storage-edge-remote; 57s local, disk-cache ... (4 actions, 3 running)
    1969:  �[32m[2,892 / 2,898]�[0m 17 / 27 tests, �[31m�[1m17 failed�[0m;�[0m Testing //rb/spec/integration/selenium/webdriver:storage-edge-remote; 59s local, disk-cache ... (4 actions, 3 running)
    1970:  �[32m[2,892 / 2,898]�[0m 17 / 27 tests, �[31m�[1m17 failed�[0m;�[0m Testing //rb/spec/integration/selenium/webdriver:storage-edge-remote; 61s local, disk-cache ... (4 actions, 3 running)
    1971:  �[32m[2,892 / 2,898]�[0m 17 / 27 tests, �[31m�[1m17 failed�[0m;�[0m Testing //rb/spec/integration/selenium/webdriver:storage-edge-remote; 62s local, disk-cache ... (4 actions, 3 running)
    1972:  �[31m�[1mFAIL: �[0m//rb/spec/integration/selenium/webdriver:storage-edge-remote (see D:/_bazel/execroot/selenium/bazel-out/x64_windows-fastbuild/testlogs/rb/spec/integration/selenium/webdriver/storage-edge-remote/test.log)
    1973:  �[31m�[1mFAILED: �[0m//rb/spec/integration/selenium/webdriver:storage-edge-remote (Summary)
    1974:  D:/_bazel/execroot/selenium/bazel-out/x64_windows-fastbuild/testlogs/rb/spec/integration/selenium/webdriver/storage-edge-remote/test.log
    1975:  ==================== Test output for //rb/spec/integration/selenium/webdriver:storage-edge-remote:
    1976:  D:/_bazel/execroot/selenium/bazel-out/x64_windows-fastbuild/testlogs/rb/spec/integration/selenium/webdriver/storage-edge-remote/test_attempts/attempt_1.log
    1977:  D:/_bazel/execroot/selenium/bazel-out/x64_windows-fastbuild/testlogs/rb/spec/integration/selenium/webdriver/storage-edge-remote/test_attempts/attempt_2.log
    1978:  �[32mINFO: �[0mFrom Testing //rb/spec/integration/selenium/webdriver:storage-edge-remote:
    1979:  2024-03-26 19:59:00 INFO Selenium Server Location: D:/_bazel/execroot/selenium/bazel-out/x64_windows-fastbuild/bin/rb/spec/integration/selenium/webdriver/storage-edge-remote.cmd.runfiles/selenium/java/src/org/openqa/selenium/grid/selenium_server_deploy.jar
    1980:  An error occurred in a `before(:suite)` hook.
    1981:  Failure/Error: @pid = Process.spawn(*@command, options)
    1982:  Errno::EACCES:
    1983:  Permission denied - java
    1984:  # ./rb/lib/selenium/webdriver/common/child_process.rb:57:in `spawn'
    1985:  # ./rb/lib/selenium/webdriver/common/child_process.rb:57:in `start'
    1986:  # ./rb/lib/selenium/server.rb:204:in `start'
    1987:  # //?/D:/a/selenium/selenium/rb/spec/integration/selenium/webdriver/spec_helper.rb:40:in `block (2 levels) in <top (required)>'
    1988:  Finished in 0.05091 seconds (files took 1.02 seconds to load)
    1989:  0 examples, 0 failures, 1 error occurred outside of examples
    1990:  ================================================================================
    1991:  ==================== Test output for //rb/spec/integration/selenium/webdriver:storage-edge-remote:
    1992:  2024-03-26 19:59:28 INFO Selenium Server Location: D:/_bazel/execroot/selenium/bazel-out/x64_windows-fastbuild/bin/rb/spec/integration/selenium/webdriver/storage-edge-remote.cmd.runfiles/selenium/java/src/org/openqa/selenium/grid/selenium_server_deploy.jar
    1993:  An error occurred in a `before(:suite)` hook.
    1994:  Failure/Error: @pid = Process.spawn(*@command, options)
    1995:  Errno::EACCES:
    1996:  Permission denied - java
    1997:  # ./rb/lib/selenium/webdriver/common/child_process.rb:57:in `spawn'
    1998:  # ./rb/lib/selenium/webdriver/common/child_process.rb:57:in `start'
    1999:  # ./rb/lib/selenium/server.rb:204:in `start'
    2000:  # //?/D:/a/selenium/selenium/rb/spec/integration/selenium/webdriver/spec_helper.rb:40:in `block (2 levels) in <top (required)>'
    2001:  Finished in 0.04512 seconds (files took 0.64046 seconds to load)
    2002:  0 examples, 0 failures, 1 error occurred outside of examples
    2003:  ================================================================================
    2004:  ==================== Test output for //rb/spec/integration/selenium/webdriver:storage-edge-remote:
    2005:  2024-03-26 19:59:55 INFO Selenium Server Location: D:/_bazel/execroot/selenium/bazel-out/x64_windows-fastbuild/bin/rb/spec/integration/selenium/webdriver/storage-edge-remote.cmd.runfiles/selenium/java/src/org/openqa/selenium/grid/selenium_server_deploy.jar
    2006:  An error occurred in a `before(:suite)` hook.
    2007:  Failure/Error: @pid = Process.spawn(*@command, options)
    2008:  Errno::EACCES:
    2009:  Permission denied - java
    2010:  # ./rb/lib/selenium/webdriver/common/child_process.rb:57:in `spawn'
    2011:  # ./rb/lib/selenium/webdriver/common/child_process.rb:57:in `start'
    2012:  # ./rb/lib/selenium/server.rb:204:in `start'
    2013:  # //?/D:/a/selenium/selenium/rb/spec/integration/selenium/webdriver/spec_helper.rb:40:in `block (2 levels) in <top (required)>'
    2014:  Finished in 0.04852 seconds (files took 0.67464 seconds to load)
    2015:  0 examples, 0 failures, 1 error occurred outside of examples
    2016:  ================================================================================
    2017:  �[32m[2,893 / 2,898]�[0m 18 / 27 tests, �[31m�[1m18 failed�[0m;�[0m Testing //rb/spec/integration/selenium/webdriver:timeout-edge-remote; 56s local, disk-cache ... (4 actions, 2 running)
    2018:  �[32m[2,893 / 2,898]�[0m 18 / 27 tests, �[31m�[1m18 failed�[0m;�[0m Testing //rb/spec/integration/selenium/webdriver:timeout-edge-remote; 61s local, disk-cache ... (4 actions, 2 running)
    2019:  �[31m�[1mFAIL: �[0m//rb/spec/integration/selenium/webdriver:timeout-edge-remote (see D:/_bazel/execroot/selenium/bazel-out/x64_windows-fastbuild/testlogs/rb/spec/integration/selenium/webdriver/timeout-edge-remote/test.log)
    2020:  �[31m�[1mFAILED: �[0m//rb/spec/integration/selenium/webdriver:timeout-edge-remote (Summary)
    2021:  ==================== Test output for //rb/spec/integration/selenium/webdriver:timeout-edge-remote:
    2022:  D:/_bazel/execroot/selenium/bazel-out/x64_windows-fastbuild/testlogs/rb/spec/integration/selenium/webdriver/timeout-edge-remote/test.log
    2023:  2024-03-26 19:59:07 INFO Selenium Server Location: D:/_bazel/execroot/selenium/bazel-out/x64_windows-fastbuild/bin/rb/spec/integration/selenium/webdriver/timeout-edge-remote.cmd.runfiles/selenium/java/src/org/openqa/selenium/grid/selenium_server_deploy.jar
    2024:  D:/_bazel/execroot/selenium/bazel-out/x64_windows-fastbuild/testlogs/rb/spec/integration/selenium/webdriver/timeout-edge-remote/test_attempts/attempt_1.log
    2025:  D:/_bazel/execroot/selenium/bazel-out/x64_windows-fastbuild/testlogs/rb/spec/integration/selenium/webdriver/timeout-edge-remote/test_attempts/attempt_2.log
    2026:  An error occurred in a `before(:suite)` hook.
    2027:  �[32mINFO: �[0mFrom Testing //rb/spec/integration/selenium/webdriver:timeout-edge-remote:
    2028:  Failure/Error: @pid = Process.spawn(*@command, options)
    2029:  Errno::EACCES:
    2030:  Permission denied - java
    2031:  # ./rb/lib/selenium/webdriver/common/child_process.rb:57:in `spawn'
    2032:  # ./rb/lib/selenium/webdriver/common/child_process.rb:57:in `start'
    2033:  # ./rb/lib/selenium/server.rb:204:in `start'
    2034:  # //?/D:/a/selenium/selenium/rb/spec/integration/selenium/webdriver/spec_helper.rb:40:in `block (2 levels) in <top (required)>'
    2035:  Finished in 0.04838 seconds (files took 0.63349 seconds to load)
    2036:  0 examples, 0 failures, 1 error occurred outside of examples
    2037:  ================================================================================
    2038:  ==================== Test output for //rb/spec/integration/selenium/webdriver:timeout-edge-remote:
    2039:  2024-03-26 19:59:35 INFO Selenium Server Location: D:/_bazel/execroot/selenium/bazel-out/x64_windows-fastbuild/bin/rb/spec/integration/selenium/webdriver/timeout-edge-remote.cmd.runfiles/selenium/java/src/org/openqa/selenium/grid/selenium_server_deploy.jar
    2040:  An error occurred in a `before(:suite)` hook.
    2041:  Failure/Error: @pid = Process.spawn(*@command, options)
    2042:  Errno::EACCES:
    2043:  Permission denied - java
    2044:  # ./rb/lib/selenium/webdriver/common/child_process.rb:57:in `spawn'
    2045:  # ./rb/lib/selenium/webdriver/common/child_process.rb:57:in `start'
    2046:  # ./rb/lib/selenium/server.rb:204:in `start'
    2047:  # //?/D:/a/selenium/selenium/rb/spec/integration/selenium/webdriver/spec_helper.rb:40:in `block (2 levels) in <top (required)>'
    2048:  Finished in 0.04388 seconds (files took 0.60962 seconds to load)
    2049:  0 examples, 0 failures, 1 error occurred outside of examples
    2050:  ================================================================================
    2051:  ==================== Test output for //rb/spec/integration/selenium/webdriver:timeout-edge-remote:
    2052:  2024-03-26 20:00:02 INFO Selenium Server Location: D:/_bazel/execroot/selenium/bazel-out/x64_windows-fastbuild/bin/rb/spec/integration/selenium/webdriver/timeout-edge-remote.cmd.runfiles/selenium/java/src/org/openqa/selenium/grid/selenium_server_deploy.jar
    2053:  An error occurred in a `before(:suite)` hook.
    2054:  Failure/Error: @pid = Process.spawn(*@command, options)
    2055:  Errno::EACCES:
    2056:  Permission denied - java
    2057:  # ./rb/lib/selenium/webdriver/common/child_process.rb:57:in `spawn'
    2058:  # ./rb/lib/selenium/webdriver/common/child_process.rb:57:in `start'
    2059:  # ./rb/lib/selenium/server.rb:204:in `start'
    2060:  # //?/D:/a/selenium/selenium/rb/spec/integration/selenium/webdriver/spec_helper.rb:40:in `block (2 levels) in <top (required)>'
    2061:  Finished in 0.04504 seconds (files took 0.66378 seconds to load)
    2062:  0 examples, 0 failures, 1 error occurred outside of examples
    2063:  ================================================================================
    2064:  �[32m[2,894 / 2,898]�[0m 19 / 27 tests, �[31m�[1m19 failed�[0m;�[0m Testing //rb/spec/integration/selenium/webdriver/edge:options-edge-remote; 50s local, disk-cache ... (4 actions, 1 running)
    2065:  �[32m[2,894 / 2,898]�[0m 19 / 27 tests, �[31m�[1m19 failed�[0m;�[0m Testing //rb/spec/integration/selenium/webdriver/edge:options-edge-remote; 53s local, disk-cache ... (4 actions, 1 running)
    2066:  �[32m[2,894 / 2,898]�[0m 19 / 27 tests, �[31m�[1m19 failed�[0m;�[0m Testing //rb/spec/integration/selenium/webdriver/edge:options-edge-remote; 55s local, disk-cache ... (4 actions, 2 running)
    2067:  �[31m�[1mFAIL: �[0m//rb/spec/integration/selenium/webdriver/edge:options-edge-remote (see D:/_bazel/execroot/selenium/bazel-out/x64_windows-fastbuild/testlogs/rb/spec/integration/selenium/webdriver/edge/options-edge-remote/test.log)
    2068:  ==================== Test output for //rb/spec/integration/selenium/webdriver/edge:options-edge-remote:
    2069:  2024-03-26 19:59:21 INFO Selenium Server Location: D:/_bazel/execroot/selenium/bazel-out/x64_windows-fastbuild/bin/rb/spec/integration/selenium/webdriver/edge/options-edge-remote.cmd.runfiles/selenium/java/src/org/openqa/selenium/grid/selenium_server_deploy.jar
    2070:  �[31m�[1mFAILED: �[0m//rb/spec/integration/selenium/webdriver/edge:options-edge-remote (Summary)
    2071:  D:/_bazel/execroot/selenium/bazel-out/x64_windows-fastbuild/testlogs/rb/spec/integration/selenium/webdriver/edge/options-edge-remote/test.log
    2072:  D:/_bazel/execroot/selenium/bazel-out/x64_windows-fastbuild/testlogs/rb/spec/integration/selenium/webdriver/edge/options-edge-remote/test_attempts/attempt_1.log
    2073:  D:/_bazel/execroot/selenium/bazel-out/x64_windows-fastbuild/testlogs/rb/spec/integration/selenium/webdriver/edge/options-edge-remote/test_attempts/attempt_2.log
    2074:  An error occurred in a `before(:suite)` hook.
    2075:  �[32mINFO: �[0mFrom Testing //rb/spec/integration/selenium/webdriver/edge:options-edge-remote:
    2076:  Failure/Error: @pid = Process.spawn(*@command, options)
    2077:  Errno::EACCES:
    2078:  Permission denied - java
    2079:  # ./rb/lib/selenium/webdriver/common/child_process.rb:57:in `spawn'
    2080:  # ./rb/lib/selenium/webdriver/common/child_process.rb:57:in `start'
    2081:  # ./rb/lib/selenium/server.rb:204:in `start'
    2082:  # //?/D:/a/selenium/selenium/rb/spec/integration/selenium/webdriver/spec_helper.rb:40:in `block (2 levels) in <top (required)>'
    2083:  Finished in 0.0463 seconds (files took 0.64215 seconds to load)
    2084:  0 examples, 0 failures, 1 error occurred outside of examples
    2085:  ================================================================================
    2086:  ==================== Test output for //rb/spec/integration/selenium/webdriver/edge:options-edge-remote:
    2087:  2024-03-26 19:59:48 INFO Selenium Server Location: D:/_bazel/execroot/selenium/bazel-out/x64_windows-fastbuild/bin/rb/spec/integration/selenium/webdriver/edge/options-edge-remote.cmd.runfiles/selenium/java/src/org/openqa/selenium/grid/selenium_server_deploy.jar
    2088:  An error occurred in a `before(:suite)` hook.
    2089:  Failure/Error: @pid = Process.spawn(*@command, options)
    2090:  Errno::EACCES:
    2091:  Permission denied - java
    2092:  # ./rb/lib/selenium/webdriver/common/child_process.rb:57:in `spawn'
    2093:  # ./rb/lib/selenium/webdriver/common/child_process.rb:57:in `start'
    2094:  # ./rb/lib/selenium/server.rb:204:in `start'
    2095:  # //?/D:/a/selenium/selenium/rb/spec/integration/selenium/webdriver/spec_helper.rb:40:in `block (2 levels) in <top (required)>'
    2096:  Finished in 0.05061 seconds (files took 0.71254 seconds to load)
    2097:  0 examples, 0 failures, 1 error occurred outside of examples
    2098:  ================================================================================
    2099:  ==================== Test output for //rb/spec/integration/selenium/webdriver/edge:options-edge-remote:
    2100:  2024-03-26 20:00:10 INFO Selenium Server Location: D:/_bazel/execroot/selenium/bazel-out/x64_windows-fastbuild/bin/rb/spec/integration/selenium/webdriver/edge/options-edge-remote.cmd.runfiles/selenium/java/src/org/openqa/selenium/grid/selenium_server_deploy.jar
    2101:  An error occurred in a `before(:suite)` hook.
    2102:  Failure/Error: @pid = Process.spawn(*@command, options)
    2103:  Errno::EACCES:
    2104:  Permission denied - java
    2105:  # ./rb/lib/selenium/webdriver/common/child_process.rb:57:in `spawn'
    2106:  # ./rb/lib/selenium/webdriver/common/child_process.rb:57:in `start'
    2107:  # ./rb/lib/selenium/server.rb:204:in `start'
    2108:  # //?/D:/a/selenium/selenium/rb/spec/integration/selenium/webdriver/spec_helper.rb:40:in `block (2 levels) in <top (required)>'
    2109:  Finished in 0.04929 seconds (files took 0.80469 seconds to load)
    2110:  0 examples, 0 failures, 1 error occurred outside of examples
    2111:  ================================================================================
    2112:  �[32m[2,895 / 2,898]�[0m 20 / 27 tests, �[31m�[1m20 failed�[0m;�[0m Testing //rb/spec/integration/selenium/webdriver:guard-edge-remote; 7s disk-cache ... (3 actions, 1 running)
    2113:  �[32m[2,895 / 2,898]�[0m 20 / 27 tests, �[31m�[1m20 failed�[0m;�[0m [Sched] Testing //rb/spec/integration/selenium/webdriver:window-edge-remote; 7s ... (3 actions, 1 running)
    2114:  �[32m[2,895 / 2,898]�[0m 20 / 27 tests, �[31m�[1m20 failed�[0m;�[0m Testing //rb/spec/integration/selenium/webdriver:navigation-edge-remote; 6s local, disk-cache ... (3 actions, 2 running)
    2115:  �[31m�[1mFAIL: �[0m//rb/spec/integration/selenium/webdriver:navigation-edge-remote (see D:/_bazel/execroot/selenium/bazel-out/x64_windows-fastbuild/testlogs/rb/spec/integration/selenium/webdriver/navigation-edge-remote/test_attempts/attempt_1.log)
    2116:  �[32m[2,895 / 2,898]�[0m 20 / 27 tests, �[31m�[1m20 failed�[0m;�[0m Testing //rb/spec/integration/selenium/webdriver:navigation-edge-remote; 8s local, disk-cache ... (3 actions, 2 running)
    2117:  �[32m[2,895 / 2,898]�[0m 20 / 27 tests, �[31m�[1m20 failed�[0m;�[0m Testing //rb/spec/integration/selenium/webdriver:navigation-edge-remote; 11s local, disk-cache ... (3 actions, 2 running)
    2118:  �[32m[2,895 / 2,898]�[0m 20 / 27 tests, �[31m�[1m20 failed�[0m;�[0m Testing //rb/spec/integration/selenium/webdriver:navigation-edge-remote; 13s local, disk-cache ... (3 actions running)
    2119:  �[31m�[1mFAIL: �[0m//rb/spec/integration/selenium/webdriver:window-edge-remote (see D:/_bazel/execroot/selenium/bazel-out/x64_windows-fastbuild/testlogs/rb/spec/integration/selenium/webdriver/window-edge-remote/test_attempts/attempt_1.log)
    2120:  �[32m[2,895 / 2,898]�[0m 20 / 27 tests, �[31m�[1m20 failed�[0m;�[0m Testing //rb/spec/integration/selenium/webdriver:navigation-edge-remote; 15s local, disk-cache ... (3 actions running)
    2121:  �[32m[2,895 / 2,898]�[0m 20 / 27 tests, �[31m�[1m20 failed�[0m;�[0m Testing //rb/spec/integration/selenium/webdriver:navigation-edge-remote; 20s local, disk-cache ... (3 actions running)
    2122:  �[31m�[1mFAIL: �[0m//rb/spec/integration/selenium/webdriver:guard-edge-remote (see D:/_bazel/execroot/selenium/bazel-out/x64_windows-fastbuild/testlogs/rb/spec/integration/selenium/webdriver/guard-edge-remote/test_attempts/attempt_1.log)
    2123:  �[32m[2,895 / 2,898]�[0m 20 / 27 tests, �[31m�[1m20 failed�[0m;�[0m Testing //rb/spec/integration/selenium/webdriver:navigation-edge-remote; 22s local, disk-cache ... (3 actions running)
    2124:  �[32m[2,895 / 2,898]�[0m 20 / 27 tests, �[31m�[1m20 failed�[0m;�[0m Testing //rb/spec/integration/selenium/webdriver:navigation-edge-remote; 27s local, disk-cache ... (3 actions running)
    2125:  �[31m�[1mFAIL: �[0m//rb/spec/integration/selenium/webdriver:navigation-edge-remote (see D:/_bazel/execroot/selenium/bazel-out/x64_windows-fastbuild/testlogs/rb/spec/integration/selenium/webdriver/navigation-edge-remote/test_attempts/attempt_2.log)
    2126:  �[32m[2,895 / 2,898]�[0m 20 / 27 tests, �[31m�[1m20 failed�[0m;�[0m Testing //rb/spec/integration/selenium/webdriver:navigation-edge-remote; 28s local, disk-cache ... (3 actions running)
    2127:  �[32m[2,895 / 2,898]�[0m 20 / 27 tests, �[31m�[1m20 failed�[0m;�[0m Testing //rb/spec/integration/selenium/webdriver:navigation-edge-remote; 34s local, disk-cache ... (3 actions running)
    2128:  �[31m�[1mFAIL: �[0m//rb/spec/integration/selenium/webdriver:window-edge-remote (see D:/_bazel/execroot/selenium/bazel-out/x64_windows-fastbuild/testlogs/rb/spec/integration/selenium/webdriver/window-edge-remote/test_attempts/attempt_2.log)
    2129:  �[32m[2,895 / 2,898]�[0m 20 / 27 tests, �[31m�[1m20 failed�[0m;�[0m Testing //rb/spec/integration/selenium/webdriver:navigation-edge-remote; 35s local, disk-cache ... (3 actions running)
    2130:  �[32m[2,895 / 2,898]�[0m 20 / 27 tests, �[31m�[1m20 failed�[0m;�[0m Testing //rb/spec/integration/selenium/webdriver:navigation-edge-remote; 41s local, disk-cache ... (3 actions running)
    2131:  �[31m�[1mFAIL: �[0m//rb/spec/integration/selenium/webdriver:guard-edge-remote (see D:/_bazel/execroot/selenium/bazel-out/x64_windows-fastbuild/testlogs/rb/spec/integration/selenium/webdriver/guard-edge-remote/test_attempts/attempt_2.log)
    2132:  �[32m[2,895 / 2,898]�[0m 20 / 27 tests, �[31m�[1m20 failed�[0m;�[0m Testing //rb/spec/integration/selenium/webdriver:navigation-edge-remote; 42s local, disk-cache ... (3 actions running)
    2133:  �[32m[2,895 / 2,898]�[0m 20 / 27 tests, �[31m�[1m20 failed�[0m;�[0m Testing //rb/spec/integration/selenium/webdriver:navigation-edge-remote; 47s local, disk-cache ... (3 actions running)
    2134:  �[31m�[1mFAIL: �[0m//rb/spec/integration/selenium/webdriver:navigation-edge-remote (see D:/_bazel/execroot/selenium/bazel-out/x64_windows-fastbuild/testlogs/rb/spec/integration/selenium/webdriver/navigation-edge-remote/test.log)
    2135:  �[31m�[1mFAILED: �[0m//rb/spec/integration/selenium/webdriver:navigation-edge-remote (Summary)
    2136:  D:/_bazel/execroot/selenium/bazel-out/x64_windows-fastbuild/testlogs/rb/spec/integration/selenium/webdriver/navigation-edge-remote/test.log
    2137:  D:/_bazel/execroot/selenium/bazel-out/x64_windows-fastbuild/testlogs/rb/spec/integration/selenium/webdriver/navigation-edge-remote/test_attempts/attempt_1.log
    2138:  D:/_bazel/execroot/selenium/bazel-out/x64_windows-fastbuild/testlogs/rb/spec/integration/selenium/webdriver/navigation-edge-remote/test_attempts/attempt_2.log
    2139:  �[32mINFO: �[0mFrom Testing //rb/spec/integration/selenium/webdriver:navigation-edge-remote:
    2140:  ==================== Test output for //rb/spec/integration/selenium/webdriver:navigation-edge-remote:
    2141:  2024-03-26 20:00:17 INFO Selenium Server Location: D:/_bazel/execroot/selenium/bazel-out/x64_windows-fastbuild/bin/rb/spec/integration/selenium/webdriver/navigation-edge-remote.cmd.runfiles/selenium/java/src/org/openqa/selenium/grid/selenium_server_deploy.jar
    2142:  An error occurred in a `before(:suite)` hook.
    2143:  Failure/Error: @pid = Process.spawn(*@command, options)
    2144:  Errno::EACCES:
    2145:  Permission denied - java
    2146:  # ./rb/lib/selenium/webdriver/common/child_process.rb:57:in `spawn'
    2147:  # ./rb/lib/selenium/webdriver/common/child_process.rb:57:in `start'
    2148:  # ./rb/lib/selenium/server.rb:204:in `start'
    2149:  # //?/D:/a/selenium/selenium/rb/spec/integration/selenium/webdriver/spec_helper.rb:40:in `block (2 levels) in <top (required)>'
    2150:  Finished in 0.04614 seconds (files took 0.62523 seconds to load)
    2151:  0 examples, 0 failures, 1 error occurred outside of examples
    2152:  ================================================================================
    2153:  ==================== Test output for //rb/spec/integration/selenium/webdriver:navigation-edge-remote:
    2154:  2024-03-26 20:00:37 INFO Selenium Server Location: D:/_bazel/execroot/selenium/bazel-out/x64_windows-fastbuild/bin/rb/spec/integration/selenium/webdriver/navigation-edge-remote.cmd.runfiles/selenium/java/src/org/openqa/selenium/grid/selenium_server_deploy.jar
    2155:  An error occurred in a `before(:suite)` hook.
    2156:  Failure/Error: @pid = Process.spawn(*@command, options)
    2157:  Errno::EACCES:
    2158:  Permission denied - java
    2159:  # ./rb/lib/selenium/webdriver/common/child_process.rb:57:in `spawn'
    2160:  # ./rb/lib/selenium/webdriver/common/child_process.rb:57:in `start'
    2161:  # ./rb/lib/selenium/server.rb:204:in `start'
    2162:  # //?/D:/a/selenium/selenium/rb/spec/integration/selenium/webdriver/spec_helper.rb:40:in `block (2 levels) in <top (required)>'
    2163:  Finished in 0.04737 seconds (files took 0.61876 seconds to load)
    2164:  0 examples, 0 failures, 1 error occurred outside of examples
    2165:  ================================================================================
    2166:  ==================== Test output for //rb/spec/integration/selenium/webdriver:navigation-edge-remote:
    2167:  2024-03-26 20:00:58 INFO Selenium Server Location: D:/_bazel/execroot/selenium/bazel-out/x64_windows-fastbuild/bin/rb/spec/integration/selenium/webdriver/navigation-edge-remote.cmd.runfiles/selenium/java/src/org/openqa/selenium/grid/selenium_server_deploy.jar
    2168:  An error occurred in a `before(:suite)` hook.
    2169:  Failure/Error: @pid = Process.spawn(*@command, options)
    2170:  Errno::EACCES:
    2171:  Permission denied - java
    2172:  # ./rb/lib/selenium/webdriver/common/child_process.rb:57:in `spawn'
    2173:  # ./rb/lib/selenium/webdriver/common/child_process.rb:57:in `start'
    2174:  # ./rb/lib/selenium/server.rb:204:in `start'
    2175:  # //?/D:/a/selenium/selenium/rb/spec/integration/selenium/webdriver/spec_helper.rb:40:in `block (2 levels) in <top (required)>'
    2176:  Finished in 0.04671 seconds (files took 0.62736 seconds to load)
    2177:  0 examples, 0 failures, 1 error occurred outside of examples
    2178:  ================================================================================
    2179:  �[32m[2,896 / 2,898]�[0m 21 / 27 tests, �[31m�[1m21 failed�[0m;�[0m Testing //rb/spec/integration/selenium/webdriver:window-edge-remote; 42s local, disk-cache ... (2 actions running)
    2180:  �[32m[2,896 / 2,898]�[0m 21 / 27 tests, �[31m�[1m21 failed�[0m;�[0m Testing //rb/spec/integration/selenium/webdriver:window-edge-remote; 47s local, disk-cache ... (2 actions running)
    2181:  �[31m�[1mFAIL: �[0m//rb/spec/integration/selenium/webdriver:window-edge-remote (see D:/_bazel/execroot/selenium/bazel-out/x64_windows-fastbuild/testlogs/rb/spec/integration/selenium/webdriver/window-edge-remote/test.log)
    2182:  �[31m�[1mFAILED: �[0m//rb/spec/integration/selenium/webdriver:window-edge-remote (Summary)
    2183:  D:/_bazel/execroot/selenium/bazel-out/x64_windows-fastbuild/testlogs/rb/spec/integration/selenium/webdriver/window-edge-remote/test.log
    2184:  ==================== Test output for //rb/spec/integration/selenium/webdriver:window-edge-remote:
    2185:  D:/_bazel/execroot/selenium/bazel-out/x64_windows-fastbuild/testlogs/rb/spec/integration/selenium/webdriver/window-edge-remote/test_attempts/attempt_1.log
    2186:  2024-03-26 20:00:23 INFO Selenium Server Location: D:/_bazel/execroot/selenium/bazel-out/x64_windows-fastbuild/bin/rb/spec/integration/selenium/webdriver/window-edge-remote.cmd.runfiles/selenium/java/src/org/openqa/selenium/grid/selenium_server_deploy.jar
    2187:  D:/_bazel/execroot/selenium/bazel-out/x64_windows-fastbuild/testlogs/rb/spec/integration/selenium/webdriver/window-edge-remote/test_attempts/attempt_2.log
    2188:  �[32mINFO: �[0mFrom Testing //rb/spec/integration/selenium/webdriver:window-edge-remote:
    2189:  An error occurred in a `before(:suite)` hook.
    2190:  Failure/Error: @pid = Process.spawn(*@command, options)
    2191:  Errno::EACCES:
    2192:  Permission denied - java
    2193:  # ./rb/lib/selenium/webdriver/common/child_process.rb:57:in `spawn'
    2194:  # ./rb/lib/selenium/webdriver/common/child_process.rb:57:in `start'
    2195:  # ./rb/lib/selenium/server.rb:204:in `start'
    2196:  # //?/D:/a/selenium/selenium/rb/spec/integration/selenium/webdriver/spec_helper.rb:40:in `block (2 levels) in <top (required)>'
    2197:  Finished in 0.04627 seconds (files took 0.60309 seconds to load)
    2198:  0 examples, 0 failures, 1 error occurred outside of examples
    2199:  ================================================================================
    2200:  ==================== Test output for //rb/spec/integration/selenium/webdriver:window-edge-remote:
    2201:  2024-03-26 20:00:44 INFO Selenium Server Location: D:/_bazel/execroot/selenium/bazel-out/x64_windows-fastbuild/bin/rb/spec/integration/selenium/webdriver/window-edge-remote.cmd.runfiles/selenium/java/src/org/openqa/selenium/grid/selenium_server_deploy.jar
    2202:  An error occurred in a `before(:suite)` hook.
    2203:  Failure/Error: @pid = Process.spawn(*@command, options)
    2204:  Errno::EACCES:
    2205:  Permission denied - java
    2206:  # ./rb/lib/selenium/webdriver/common/child_process.rb:57:in `spawn'
    2207:  # ./rb/lib/selenium/webdriver/common/child_process.rb:57:in `start'
    2208:  # ./rb/lib/selenium/server.rb:204:in `start'
    2209:  # //?/D:/a/selenium/selenium/rb/spec/integration/selenium/webdriver/spec_helper.rb:40:in `block (2 levels) in <top (required)>'
    2210:  Finished in 0.04548 seconds (files took 0.59451 seconds to load)
    2211:  0 examples, 0 failures, 1 error occurred outside of examples
    2212:  ================================================================================
    2213:  ==================== Test output for //rb/spec/integration/selenium/webdriver:window-edge-remote:
    2214:  2024-03-26 20:01:04 INFO Selenium Server Location: D:/_bazel/execroot/selenium/bazel-out/x64_windows-fastbuild/bin/rb/spec/integration/selenium/webdriver/window-edge-remote.cmd.runfiles/selenium/java/src/org/openqa/selenium/grid/selenium_server_deploy.jar
    2215:  An error occurred in a `before(:suite)` hook.
    2216:  Failure/Error: @pid = Process.spawn(*@command, options)
    2217:  Errno::EACCES:
    2218:  Permission denied - java
    2219:  # ./rb/lib/selenium/webdriver/common/child_process.rb:57:in `spawn'
    2220:  # ./rb/lib/selenium/webdriver/common/child_process.rb:57:in `start'
    2221:  # ./rb/lib/selenium/server.rb:204:in `start'
    2222:  # //?/D:/a/selenium/selenium/rb/spec/integration/selenium/webdriver/spec_helper.rb:40:in `block (2 levels) in <top (required)>'
    2223:  Finished in 0.04396 seconds (files took 0.61364 seconds to load)
    2224:  0 examples, 0 failures, 1 error occurred outside of examples
    2225:  ================================================================================
    2226:  �[32m[2,897 / 2,898]�[0m 22 / 27 tests, �[31m�[1m22 failed�[0m;�[0m Testing //rb/spec/integration/selenium/webdriver:guard-edge-remote; 42s local, disk-cache
    2227:  �[32m[2,897 / 2,898]�[0m 22 / 27 tests, �[31m�[1m22 failed�[0m;�[0m Testing //rb/spec/integration/selenium/webdriver:guard-edge-remote; 47s local, disk-cache
    2228:  �[31m�[1mFAIL: �[0m//rb/spec/integration/selenium/webdriver:guard-edge-remote (see D:/_bazel/execroot/selenium/bazel-out/x64_windows-fastbuild/testlogs/rb/spec/integration/selenium/webdriver/guard-edge-remote/test.log)
    2229:  �[31m�[1mFAILED: �[0m//rb/spec/integration/selenium/webdriver:guard-edge-remote (Summary)
    2230:  D:/_bazel/execroot/selenium/bazel-out/x64_windows-fastbuild/testlogs/rb/spec/integration/selenium/webdriver/guard-edge-remote/test.log
    2231:  D:/_bazel/execroot/selenium/bazel-out/x64_windows-fastbuild/testlogs/rb/spec/integration/selenium/webdriver/guard-edge-remote/test_attempts/attempt_1.log
    2232:  D:/_bazel/execroot/selenium/bazel-out/x64_windows-fastbuild/testlogs/rb/spec/integration/selenium/webdriver/guard-edge-remote/test_attempts/attempt_2.log
    2233:  �[32mINFO: �[0mFrom Testing //rb/spec/integration/selenium/webdriver:guard-edge-remote:
    2234:  ==================== Test output for //rb/spec/integration/selenium/webdriver:guard-edge-remote:
    2235:  2024-03-26 20:00:30 INFO Selenium Server Location: D:/_bazel/execroot/selenium/bazel-out/x64_windows-fastbuild/bin/rb/spec/integration/selenium/webdriver/guard-edge-remote.cmd.runfiles/selenium/java/src/org/openqa/selenium/grid/selenium_server_deploy.jar
    2236:  An error occurred in a `before(:suite)` hook.
    2237:  Failure/Error: @pid = Process.spawn(*@command, options)
    2238:  Errno::EACCES:
    2239:  Permission denied - java
    2240:  # ./rb/lib/selenium/webdriver/common/child_process.rb:57:in `spawn'
    2241:  # ./rb/lib/selenium/webdriver/common/child_process.rb:57:in `start'
    2242:  # ./rb/lib/selenium/server.rb:204:in `start'
    2243:  # //?/D:/a/selenium/selenium/rb/spec/integration/selenium/webdriver/spec_helper.rb:40:in `block (2 levels) in <top (required)>'
    2244:  Finished in 0.04834 seconds (files took 0.66499 seconds to load)
    2245:  0 examples, 0 failures, 1 error occurred outside of examples
    2246:  ================================================================================
    2247:  ==================== Test output for //rb/spec/integration/selenium/webdriver:guard-edge-remote:
    2248:  2024-03-26 20:00:51 INFO Selenium Server Location: D:/_bazel/execroot/selenium/bazel-out/x64_windows-fastbuild/bin/rb/spec/integration/selenium/webdriver/guard-edge-remote.cmd.runfiles/selenium/java/src/org/openqa/selenium/grid/selenium_server_deploy.jar
    2249:  An error occurred in a `before(:suite)` hook.
    2250:  Failure/Error: @pid = Process.spawn(*@command, options)
    2251:  Errno::EACCES:
    2252:  Permission denied - java
    2253:  # ./rb/lib/selenium/webdriver/common/child_process.rb:57:in `spawn'
    2254:  # ./rb/lib/selenium/webdriver/common/child_process.rb:57:in `start'
    2255:  # ./rb/lib/selenium/server.rb:204:in `start'
    2256:  # //?/D:/a/selenium/selenium/rb/spec/integration/selenium/webdriver/spec_helper.rb:40:in `block (2 levels) in <top (required)>'
    2257:  Finished in 0.04709 seconds (files took 0.60043 seconds to load)
    2258:  0 examples, 0 failures, 1 error occurred outside of examples
    2259:  ================================================================================
    2260:  ==================== Test output for //rb/spec/integration/selenium/webdriver:guard-edge-remote:
    2261:  2024-03-26 20:01:11 INFO Selenium Server Location: D:/_bazel/execroot/selenium/bazel-out/x64_windows-fastbuild/bin/rb/spec/integration/selenium/webdriver/guard-edge-remote.cmd.runfiles/selenium/java/src/org/openqa/selenium/grid/selenium_server_deploy.jar
    2262:  An error occurred in a `before(:suite)` hook.
    2263:  Failure/Error: @pid = Process.spawn(*@command, options)
    2264:  Errno::EACCES:
    2265:  Permission denied - java
    2266:  # ./rb/lib/selenium/webdriver/common/child_process.rb:57:in `spawn'
    2267:  # ./rb/lib/selenium/webdriver/common/child_process.rb:57:in `start'
    2268:  # ./rb/lib/selenium/server.rb:204:in `start'
    2269:  # //?/D:/a/selenium/selenium/rb/spec/integration/selenium/webdriver/spec_helper.rb:40:in `block (2 levels) in <top (required)>'
    2270:  Finished in 0.0427 seconds (files took 0.58632 seconds to load)
    2271:  0 examples, 0 failures, 1 error occurred outside of examples
    2272:  ================================================================================
    2273:  �[32m[2,898 / 2,899]�[0m 23 / 27 tests, �[31m�[1m23 failed�[0m;�[0m Testing //rb/spec/integration/selenium/webdriver:devtools-edge-remote; 0s disk-cache
    2274:  �[32m[2,898 / 2,899]�[0m 23 / 27 tests, �[31m�[1m23 failed�[0m;�[0m [Sched] Testing //rb/spec/integration/selenium/webdriver:devtools-edge-remote
    2275:  �[32m[2,898 / 2,899]�[0m 23 / 27 tests, �[31m�[1m23 failed�[0m;�[0m Testing //rb/spec/integration/selenium/webdriver:devtools-edge-remote; 1s local, disk-cache
    2276:  �[32m[2,898 / 2,899]�[0m 23 / 27 tests, �[31m�[1m23 failed�[0m;�[0m Testing //rb/spec/integration/selenium/webdriver:devtools-edge-remote; 6s local, disk-cache
    2277:  �[31m�[1mFAIL: �[0m//rb/spec/integration/selenium/webdriver:devtools-edge-remote (see D:/_bazel/execroot/selenium/bazel-out/x64_windows-fastbuild/testlogs/rb/spec/integration/selenium/webdriver/devtools-edge-remote/test_attempts/attempt_1.log)
    2278:  �[32m[2,898 / 2,899]�[0m 23 / 27 tests, �[31m�[1m23 failed�[0m;�[0m Testing //rb/spec/integration/selenium/webdriver:devtools-edge-remote; 7s local, disk-cache
    2279:  �[32m[2,898 / 2,899]�[0m 23 / 27 tests, �[31m�[1m23 failed�[0m;�[0m Testing //rb/spec/integration/selenium/webdriver:devtools-edge-remote; 13s local, disk-cache
    2280:  �[31m�[1mFAIL: �[0m//rb/spec/integration/selenium/webdriver:devtools-edge-remote (see D:/_bazel/execroot/selenium/bazel-out/x64_windows-fastbuild/testlogs/rb/spec/integration/selenium/webdriver/devtools-edge-remote/test_attempts/attempt_2.log)
    2281:  �[32m[2,898 / 2,899]�[0m 23 / 27 tests, �[31m�[1m23 failed�[0m;�[0m Testing //rb/spec/integration/selenium/webdriver:devtools-edge-remote; 15s local, disk-cache
    2282:  �[32m[2,898 / 2,899]�[0m 23 / 27 tests, �[31m�[1m23 failed�[0m;�[0m Testing //rb/spec/integration/selenium/webdriver:devtools-edge-remote; 21s local, disk-cache
    2283:  �[31m�[1mFAIL: �[0m//rb/spec/integration/selenium/webdriver:devtools-edge-remote (see D:/_bazel/execroot/selenium/bazel-out/x64_windows-fastbuild/testlogs/rb/spec/integration/selenium/webdriver/devtools-edge-remote/test.log)
    2284:  �[31m�[1mFAILED: �[0m//rb/spec/integration/selenium/webdriver:devtools-edge-remote (Summary)
    2285:  D:/_bazel/execroot/selenium/bazel-out/x64_windows-fastbuild/testlogs/rb/spec/integration/selenium/webdriver/devtools-edge-remote/test.log
    2286:  D:/_bazel/execroot/selenium/bazel-out/x64_windows-fastbuild/testlogs/rb/spec/integration/selenium/webdriver/devtools-edge-remote/test_attempts/attempt_1.log
    2287:  D:/_bazel/execroot/selenium/bazel-out/x64_windows-fastbuild/testlogs/rb/spec/integration/selenium/webdriver/devtools-edge-remote/test_attempts/attempt_2.log
    2288:  �[32mINFO: �[0mFrom Testing //rb/spec/integration/selenium/webdriver:devtools-edge-remote:
    2289:  ==================== Test output for //rb/spec/integration/selenium/webdriver:devtools-edge-remote:
    2290:  2024-03-26 20:01:28 INFO Selenium Server Location: D:/_bazel/execroot/selenium/bazel-out/x64_windows-fastbuild/bin/rb/spec/integration/selenium/webdriver/devtools-edge-remote.cmd.runfiles/selenium/java/src/org/openqa/selenium/grid/selenium_server_deploy.jar
    2291:  An error occurred in a `before(:suite)` hook.
    2292:  Failure/Error: @pid = Process.spawn(*@command, options)
    2293:  Errno::EACCES:
    2294:  Permission denied - java
    2295:  # ./rb/lib/selenium/webdriver/common/child_process.rb:57:in `spawn'
    2296:  # ./rb/lib/selenium/webdriver/common/child_process.rb:57:in `start'
    2297:  # ./rb/lib/selenium/server.rb:204:in `start'
    2298:  # //?/D:/a/selenium/selenium/rb/spec/integration/selenium/webdriver/spec_helper.rb:40:in `block (2 levels) in <top (required)>'
    2299:  Finished in 0.04584 seconds (files took 0.59527 seconds to load)
    2300:  0 examples, 0 failures, 1 error occurred outside of examples
    2301:  ================================================================================
    2302:  ==================== Test output for //rb/spec/integration/selenium/webdriver:devtools-edge-remote:
    2303:  2024-03-26 20:01:35 INFO Selenium Server Location: D:/_bazel/execroot/selenium/bazel-out/x64_windows-fastbuild/bin/rb/spec/integration/selenium/webdriver/devtools-edge-remote.cmd.runfiles/selenium/java/src/org/openqa/selenium/grid/selenium_server_deploy.jar
    2304:  An error occurred in a `before(:suite)` hook.
    2305:  Failure/Error: @pid = Process.spawn(*@command, options)
    2306:  Errno::EACCES:
    2307:  Permission denied - java
    2308:  # ./rb/lib/selenium/webdriver/common/child_process.rb:57:in `spawn'
    2309:  # ./rb/lib/selenium/webdriver/common/child_process.rb:57:in `start'
    2310:  # ./rb/lib/selenium/server.rb:204:in `start'
    2311:  # //?/D:/a/selenium/selenium/rb/spec/integration/selenium/webdriver/spec_helper.rb:40:in `block (2 levels) in <top (required)>'
    2312:  Finished in 0.04196 seconds (files took 0.57892 seconds to load)
    2313:  0 examples, 0 failures, 1 error occurred outside of examples
    2314:  ================================================================================
    2315:  ==================== Test output for //rb/spec/integration/selenium/webdriver:devtools-edge-remote:
    2316:  2024-03-26 20:01:43 INFO Selenium Server Location: D:/_bazel/execroot/selenium/bazel-out/x64_windows-fastbuild/bin/rb/spec/integration/selenium/webdriver/devtools-edge-remote.cmd.runfiles/selenium/java/src/org/openqa/selenium/grid/selenium_server_deploy.jar
    2317:  An error occurred in a `before(:suite)` hook.
    2318:  Failure/Error: @pid = Process.spawn(*@command, options)
    2319:  Errno::EACCES:
    2320:  Permission denied - java
    2321:  # ./rb/lib/selenium/webdriver/common/child_process.rb:57:in `spawn'
    2322:  # ./rb/lib/selenium/webdriver/common/child_process.rb:57:in `start'
    2323:  # ./rb/lib/selenium/server.rb:204:in `start'
    2324:  # //?/D:/a/selenium/selenium/rb/spec/integration/selenium/webdriver/spec_helper.rb:40:in `block (2 levels) in <top (required)>'
    2325:  Finished in 0.04652 seconds (files took 0.64366 seconds to load)
    2326:  0 examples, 0 failures, 1 error occurred outside of examples
    2327:  ================================================================================
    2328:  �[32m[2,899 / 2,900]�[0m 24 / 27 tests, �[31m�[1m24 failed�[0m;�[0m Testing //rb/spec/integration/selenium/webdriver/bidi:log_inspector-edge-remote; 0s disk-cache
    2329:  �[32m[2,899 / 2,900]�[0m 24 / 27 tests, �[31m�[1m24 failed�[0m;�[0m [Sched] Testing //rb/spec/integration/selenium/webdriver/bidi:log_inspector-edge-remote
    2330:  �[32m[2,899 / 2,900]�[0m 24 / 27 tests, �[31m�[1m24 failed�[0m;�[0m Testing //rb/spec/integration/selenium/webdriver/bidi:log_inspector-edge-remote; 1s local, disk-cache
    2331:  �[32m[2,899 / 2,900]�[0m 24 / 27 tests, �[31m�[1m24 failed�[0m;�[0m Testing //rb/spec/integration/selenium/webdriver/bidi:log_inspector-edge-remote; 6s local, disk-cache
    2332:  �[31m�[1mFAIL: �[0m//rb/spec/integration/selenium/webdriver/bidi:log_inspector-edge-remote (see D:/_bazel/execroot/selenium/bazel-out/x64_windows-fastbuild/testlogs/rb/spec/integration/selenium/webdriver/bidi/log_inspector-edge-remote/test_attempts/attempt_1.log)
    2333:  �[32m[2,899 / 2,900]�[0m 24 / 27 tests, �[31m�[1m24 failed�[0m;�[0m Testing //rb/spec/integration/selenium/webdriver/bidi:log_inspector-edge-remote; 8s local, disk-cache
    2334:  �[32m[2,899 / 2,900]�[0m 24 / 27 tests, �[31m�[1m24 failed�[0m;�[0m Testing //rb/spec/integration/selenium/webdriver/bidi:log_inspector-edge-remote; 13s local, disk-cache
    2335:  �[31m�[1mFAIL: �[0m//rb/spec/integration/selenium/webdriver/bidi:log_inspector-edge-remote (see D:/_bazel/execroot/selenium/bazel-out/x64_windows-fastbuild/testlogs/rb/spec/integration/selenium/webdriver/bidi/log_inspector-edge-remote/test_attempts/attempt_2.log)
    2336:  �[32m[2,899 / 2,900]�[0m 24 / 27 tests, �[31m�[1m24 failed�[0m;�[0m Testing //rb/spec/integration/selenium/webdriver/bidi:log_inspector-edge-remote; 15s local, disk-cache
    2337:  �[32m[2,899 / 2,900]�[0m 24 / 27 tests, �[31m�[1m24 failed�[0m;�[0m Testing //rb/spec/integration/selenium/webdriver/bidi:log_inspector-edge-remote; 21s local, disk-cache
    2338:  �[31m�[1mFAIL: �[0m//rb/spec/integration/selenium/webdriver/bidi:log_inspector-edge-remote (see D:/_bazel/execroot/selenium/bazel-out/x64_windows-fastbuild/testlogs/rb/spec/integration/selenium/webdriver/bidi/log_inspector-edge-remote/test.log)
    2339:  ==================== Test output for //rb/spec/integration/selenium/webdriver/bidi:log_inspector-edge-remote:
    2340:  �[31m�[1mFAILED: �[0m//rb/spec/integration/selenium/webdriver/bidi:log_inspector-edge-remote (Summary)
    2341:  2024-03-26 20:02:00 INFO Selenium Server Location: D:/_bazel/execroot/selenium/bazel-out/x64_windows-fastbuild/bin/rb/spec/integration/selenium/webdriver/bidi/log_inspector-edge-remote.cmd.runfiles/selenium/java/src/org/openqa/selenium/grid/selenium_server_deploy.jar
    2342:  D:/_bazel/execroot/selenium/bazel-out/x64_windows-fastbuild/testlogs/rb/spec/integration/selenium/webdriver/bidi/log_inspector-edge-remote/test.log
    2343:  D:/_bazel/execroot/selenium/bazel-out/x64_windows-fastbuild/testlogs/rb/spec/integration/selenium/webdriver/bidi/log_inspector-edge-remote/test_attempts/attempt_1.log
    2344:  D:/_bazel/execroot/selenium/bazel-out/x64_windows-fastbuild/testlogs/rb/spec/integration/selenium/webdriver/bidi/log_inspector-edge-remote/test_attempts/attempt_2.log
    2345:  An error occurred in a `before(:suite)` hook.
    2346:  �[32mINFO: �[0mFrom Testing //rb/spec/integration/selenium/webdriver/bidi:log_inspector-edge-remote:
    2347:  Failure/Error: @pid = Process.spawn(*@command, options)
    2348:  Errno::EACCES:
    2349:  Permission denied - java
    2350:  # ./rb/lib/selenium/webdriver/common/child_process.rb:57:in `spawn'
    2351:  # ./rb/lib/selenium/webdriver/common/child_process.rb:57:in `start'
    2352:  # ./rb/lib/selenium/server.rb:204:in `start'
    2353:  # //?/D:/a/selenium/selenium/rb/spec/integration/selenium/webdriver/spec_helper.rb:40:in `block (2 levels) in <top (required)>'
    2354:  Finished in 0.04268 seconds (files took 0.60848 seconds to load)
    2355:  0 examples, 0 failures, 1 error occurred outside of examples
    2356:  ================================================================================
    2357:  ==================== Test output for //rb/spec/integration/selenium/webdriver/bidi:log_inspector-edge-remote:
    2358:  2024-03-26 20:02:07 INFO Selenium Server Location: D:/_bazel/execroot/selenium/bazel-out/x64_windows-fastbuild/bin/rb/spec/integration/selenium/webdriver/bidi/log_inspector-edge-remote.cmd.runfiles/selenium/java/src/org/openqa/selenium/grid/selenium_server_deploy.jar
    2359:  An error occurred in a `before(:suite)` hook.
    2360:  Failure/Error: @pid = Process.spawn(*@command, options)
    2361:  Errno::EACCES:
    2362:  Permission denied - java
    2363:  # ./rb/lib/selenium/webdriver/common/child_process.rb:57:in `spawn'
    2364:  # ./rb/lib/selenium/webdriver/common/child_process.rb:57:in `start'
    2365:  # ./rb/lib/selenium/server.rb:204:in `start'
    2366:  # //?/D:/a/selenium/selenium/rb/spec/integration/selenium/webdriver/spec_helper.rb:40:in `block (2 levels) in <top (required)>'
    2367:  Finished in 0.04567 seconds (files took 0.61158 seconds to load)
    2368:  0 examples, 0 failures, 1 error occurred outside of examples
    2369:  ================================================================================
    2370:  ==================== Test output for //rb/spec/integration/selenium/webdriver/bidi:log_inspector-edge-remote:
    2371:  2024-03-26 20:02:14 INFO Selenium Server Location: D:/_bazel/execroot/selenium/bazel-out/x64_windows-fastbuild/bin/rb/spec/integration/selenium/webdriver/bidi/log_inspector-edge-remote.cmd.runfiles/selenium/java/src/org/openqa/selenium/grid/selenium_server_deploy.jar
    2372:  An error occurred in a `before(:suite)` hook.
    2373:  Failure/Error: @pid = Process.spawn(*@command, options)
    2374:  Errno::EACCES:
    2375:  Permission denied - java
    2376:  # ./rb/lib/selenium/webdriver/common/child_process.rb:57:in `spawn'
    2377:  # ./rb/lib/selenium/webdriver/common/child_process.rb:57:in `start'
    2378:  # ./rb/lib/selenium/server.rb:204:in `start'
    2379:  # //?/D:/a/selenium/selenium/rb/spec/integration/selenium/webdriver/spec_helper.rb:40:in `block (2 levels) in <top (required)>'
    2380:  Finished in 0.04314 seconds (files took 0.5882 seconds to load)
    2381:  0 examples, 0 failures, 1 error occurred outside of examples
    2382:  ================================================================================
    2383:  �[32m[2,900 / 2,901]�[0m 25 / 27 tests, �[31m�[1m25 failed�[0m;�[0m Testing //rb/spec/integration/selenium/webdriver/bidi:browsing_context-edge-remote; 0s disk-cache
    2384:  �[32m[2,900 / 2,901]�[0m 25 / 27 tests, �[31m�[1m25 failed�[0m;�[0m [Sched] Testing //rb/spec/integration/selenium/webdriver/bidi:browsing_context-edge-remote
    2385:  �[32m[2,900 / 2,901]�[0m 25 / 27 tests, �[31m�[1m25 failed�[0m;�[0m Testing //rb/spec/integration/selenium/webdriver/bidi:browsing_context-edge-remote; 1s local, disk-cache
    2386:  �[32m[2,900 / 2,901]�[0m 25 / 27 tests, �[31m�[1m25 failed�[0m;�[0m Testing //rb/spec/integration/selenium/webdriver/bidi:browsing_context-edge-remote; 6s local, disk-cache
    2387:  �[31m�[1mFAIL: �[0m//rb/spec/integration/selenium/webdriver/bidi:browsing_context-edge-remote (see D:/_bazel/execroot/selenium/bazel-out/x64_windows-fastbuild/testlogs/rb/spec/integration/selenium/webdriver/bidi/browsing_context-edge-remote/test_attempts/attempt_1.log)
    2388:  �[32m[2,900 / 2,901]�[0m 25 / 27 tests, �[31m�[1m25 failed�[0m;�[0m Testing //rb/spec/integration/selenium/webdriver/bidi:browsing_context-edge-remote; 8s local, disk-cache
    2389:  �[32m[2,900 / 2,901]�[0m 25 / 27 tests, �[31m�[1m25 failed�[0m;�[0m Testing //rb/spec/integration/selenium/webdriver/bidi:browsing_context-edge-remote; 13s local, disk-cache
    2390:  �[31m�[1mFAIL: �[0m//rb/spec/integration/selenium/webdriver/bidi:browsing_context-edge-remote (see D:/_bazel/execroot/selenium/bazel-out/x64_windows-fastbuild/testlogs/rb/spec/integration/selenium/webdriver/bidi/browsing_context-edge-remote/test_attempts/attempt_2.log)
    2391:  �[32m[2,900 / 2,901]�[0m 25 / 27 tests, �[31m�[1m25 failed�[0m;�[0m Testing //rb/spec/integration/selenium/webdriver/bidi:browsing_context-edge-remote; 15s local, disk-cache
    2392:  �[32m[2,900 / 2,901]�[0m 25 / 27 tests, �[31m�[1m25 failed�[0m;�[0m Testing //rb/spec/integration/selenium/webdriver/bidi:browsing_context-edge-remote; 21s local, disk-cache
    2393:  �[31m�[1mFAIL: �[0m//rb/spec/integration/selenium/webdriver/bidi:browsing_context-edge-remote (see D:/_bazel/execroot/selenium/bazel-out/x64_windows-fastbuild/testlogs/rb/spec/integration/selenium/webdriver/bidi/browsing_context-edge-remote/test.log)
    2394:  �[31m�[1mFAILED: �[0m//rb/spec/integration/selenium/webdriver/bidi:browsing_context-edge-remote (Summary)
    2395:  D:/_bazel/execroot/selenium/bazel-out/x64_windows-fastbuild/testlogs/rb/spec/integration/selenium/webdriver/bidi/browsing_context-edge-remote/test.log
    2396:  D:/_bazel/execroot/selenium/bazel-out/x64_windows-fastbuild/testlogs/rb/spec/integration/selenium/webdriver/bidi/browsing_context-edge-remote/test_attempts/attempt_1.log
    2397:  D:/_bazel/execroot/selenium/bazel-out/x64_windows-fastbuild/testlogs/rb/spec/integration/selenium/webdriver/bidi/browsing_context-edge-remote/test_attempts/attempt_2.log
    2398:  �[32mINFO: �[0mFrom Testing //rb/spec/integration/selenium/webdriver/bidi:browsing_context-edge-remote:
    2399:  ==================== Test output for //rb/spec/integration/selenium/webdriver/bidi:browsing_context-edge-remote:
    2400:  2024-03-26 20:02:32 INFO Selenium Server Location: D:/_bazel/execroot/selenium/bazel-out/x64_windows-fastbuild/bin/rb/spec/integration/selenium/webdriver/bidi/browsing_context-edge-remote.cmd.runfiles/selenium/java/src/org/openqa/selenium/grid/selenium_server_deploy.jar
    2401:  An error occurred in a `before(:suite)` hook.
    2402:  Failure/Error: @pid = Process.spawn(*@command, options)
    2403:  Errno::EACCES:
    2404:  Permission denied - java
    2405:  # ./rb/lib/selenium/webdriver/common/child_process.rb:57:in `spawn'
    2406:  # ./rb/lib/selenium/webdriver/common/child_process.rb:57:in `start'
    2407:  # ./rb/lib/selenium/server.rb:204:in `start'
    2408:  # //?/D:/a/selenium/selenium/rb/spec/integration/selenium/webdriver/spec_helper.rb:40:in `block (2 levels) in <top (required)>'
    2409:  Finished in 0.04352 seconds (files took 0.60629 seconds to load)
    2410:  0 examples, 0 failures, 1 error occurred outside of examples
    2411:  ================================================================================
    2412:  ==================== Test output for //rb/spec/integration/selenium/webdriver/bidi:browsing_context-edge-remote:
    2413:  2024-03-26 20:02:39 INFO Selenium Server Location: D:/_bazel/execroot/selenium/bazel-out/x64_windows-fastbuild/bin/rb/spec/integration/selenium/webdriver/bidi/browsing_context-edge-remote.cmd.runfiles/selenium/java/src/org/openqa/selenium/grid/selenium_server_deploy.jar
    2414:  An error occurred in a `before(:suite)` hook.
    2415:  Failure/Error: @pid = Process.spawn(*@command, options)
    2416:  Errno::EACCES:
    2417:  Permission denied - java
    2418:  # ./rb/lib/selenium/webdriver/common/child_process.rb:57:in `spawn'
    2419:  # ./rb/lib/selenium/webdriver/common/child_process.rb:57:in `start'
    2420:  # ./rb/lib/selenium/server.rb:204:in `start'
    2421:  # //?/D:/a/selenium/selenium/rb/spec/integration/selenium/webdriver/spec_helper.rb:40:in `block (2 levels) in <top (required)>'
    2422:  Finished in 0.04297 seconds (files took 0.58665 seconds to load)
    2423:  0 examples, 0 failures, 1 error occurred outside of examples
    2424:  ================================================================================
    2425:  ==================== Test output for //rb/spec/integration/selenium/webdriver/bidi:browsing_context-edge-remote:
    2426:  2024-03-26 20:02:46 INFO Selenium Server Location: D:/_bazel/execroot/selenium/bazel-out/x64_windows-fastbuild/bin/rb/spec/integration/selenium/webdriver/bidi/browsing_context-edge-remote.cmd.runfiles/selenium/java/src/org/openqa/selenium/grid/selenium_server_deploy.jar
    2427:  An error occurred in a `before(:suite)` hook.
    2428:  Failure/Error: @pid = Process.spawn(*@command, options)
    2429:  Errno::EACCES:
    2430:  Permission denied - java
    2431:  # ./rb/lib/selenium/webdriver/common/child_process.rb:57:in `spawn'
    2432:  # ./rb/lib/selenium/webdriver/common/child_process.rb:57:in `start'
    2433:  # ./rb/lib/selenium/server.rb:204:in `start'
    2434:  # //?/D:/a/selenium/selenium/rb/spec/integration/selenium/webdriver/spec_helper.rb:40:in `block (2 levels) in <top (required)>'
    2435:  Finished in 0.04457 seconds (files took 0.62257 seconds to load)
    2436:  0 examples, 0 failures, 1 error occurred outside of examples
    2437:  ================================================================================
    2438:  �[32m[2,901 / 2,902]�[0m 26 / 27 tests, �[31m�[1m26 failed�[0m;�[0m Testing //rb/spec/integration/selenium/webdriver:bidi-edge-remote; 0s disk-cache
    2439:  �[32m[2,901 / 2,902]�[0m 26 / 27 tests, �[31m�[1m26 failed�[0m;�[0m [Sched] Testing //rb/spec/integration/selenium/webdriver:bidi-edge-remote
    2440:  �[32m[2,901 / 2,902]�[0m 26 / 27 tests, �[31m�[1m26 failed�[0m;�[0m Testing //rb/spec/integration/selenium/webdriver:bidi-edge-remote; 1s local, disk-cache
    2441:  �[32m[2,901 / 2,902]�[0m 26 / 27 tests, �[31m�[1m26 failed�[0m;�[0m Testing //rb/spec/integration/selenium/webdriver:bidi-edge-remote; 6s local, disk-cache
    2442:  �[31m�[1mFAIL: �[0m//rb/spec/integration/selenium/webdriver:bidi-edge-remote (see D:/_bazel/execroot/selenium/bazel-out/x64_windows-fastbuild/testlogs/rb/spec/integration/selenium/webdriver/bidi-edge-remote/test_attempts/attempt_1.log)
    2443:  �[32m[2,901 / 2,902]�[0m 26 / 27 tests, �[31m�[1m26 failed�[0m;�[0m Testing //rb/spec/integration/selenium/webdriver:bidi-edge-remote; 8s local, disk-cache
    2444:  �[32m[2,901 / 2,902]�[0m 26 / 27 tests, �[31m�[1m26 failed�[0m;�[0m Testing //rb/spec/integration/selenium/webdriver:bidi-edge-remote; 13s local, disk-cache
    2445:  �[31m�[1mFAIL: �[0m//rb/spec/integration/selenium/webdriver:bidi-edge-remote (see D:/_bazel/execroot/selenium/bazel-out/x64_windows-fastbuild/testlogs/rb/spec/integration/selenium/webdriver/bidi-edge-remote/test_attempts/attempt_2.log)
    2446:  �[32m[2,901 / 2,902]�[0m 26 / 27 tests, �[31m�[1m26 failed�[0m;�[0m Testing //rb/spec/integration/selenium/webdriver:bidi-edge-remote; 15s local, disk-cache
    2447:  �[32m[2,901 / 2,902]�[0m 26 / 27 tests, �[31m�[1m26 failed�[0m;�[0m Testing //rb/spec/integration/selenium/webdriver:bidi-edge-remote; 21s local, disk-cache
    2448:  �[31m�[1mFAIL: �[0m//rb/spec/integration/selenium/webdriver:bidi-edge-remote (see D:/_bazel/execroot/selenium/bazel-out/x64_windows-fastbuild/testlogs/rb/spec/integration/selenium/webdriver/bidi-edge-remote/test.log)
    2449:  �[31m�[1mFAILED: �[0m//rb/spec/integration/selenium/webdriver:bidi-edge-remote (Summary)
    2450:  D:/_bazel/execroot/selenium/bazel-out/x64_windows-fastbuild/testlogs/rb/spec/integration/selenium/webdriver/bidi-edge-remote/test.log
    2451:  D:/_bazel/execroot/selenium/bazel-out/x64_windows-fastbuild/testlogs/rb/spec/integration/selenium/webdriver/bidi-edge-remote/test_attempts/attempt_1.log
    2452:  ==================== Test output for //rb/spec/integration/selenium/webdriver:bidi-edge-remote:
    2453:  D:/_bazel/execroot/selenium/bazel-out/x64_windows-fastbuild/testlogs/rb/spec/integration/selenium/webdriver/bidi-edge-remote/test_attempts/attempt_2.log
    2454:  �[32mINFO: �[0mFrom Testing //rb/spec/integration/selenium/webdriver:bidi-edge-remote:
    2455:  2024-03-26 20:03:03 INFO Selenium Server Location: D:/_bazel/execroot/selenium/bazel-out/x64_windows-fastbuild/bin/rb/spec/integration/selenium/webdriver/bidi-edge-remote.cmd.runfiles/selenium/java/src/org/openqa/selenium/grid/selenium_server_deploy.jar
    2456:  An error occurred in a `before(:suite)` hook.
    2457:  Failure/Error: @pid = Process.spawn(*@command, options)
    2458:  Errno::EACCES:
    2459:  Permission denied - java
    2460:  # ./rb/lib/selenium/webdriver/common/child_process.rb:57:in `spawn'
    2461:  # ./rb/lib/selenium/webdriver/common/child_process.rb:57:in `start'
    2462:  # ./rb/lib/selenium/server.rb:204:in `start'
    2463:  # //?/D:/a/selenium/selenium/rb/spec/integration/selenium/webdriver/spec_helper.rb:40:in `block (2 levels) in <top (required)>'
    2464:  Finished in 0.04366 seconds (files took 0.59157 seconds to load)
    2465:  0 examples, 0 failures, 1 error occurred outside of examples
    2466:  ================================================================================
    2467:  ==================== Test output for //rb/spec/integration/selenium/webdriver:bidi-edge-remote:
    2468:  2024-03-26 20:03:10 INFO Selenium Server Location: D:/_bazel/execroot/selenium/bazel-out/x64_windows-fastbuild/bin/rb/spec/integration/selenium/webdriver/bidi-edge-remote.cmd.runfiles/selenium/java/src/org/openqa/selenium/grid/selenium_server_deploy.jar
    2469:  An error occurred in a `before(:suite)` hook.
    2470:  Failure/Error: @pid = Process.spawn(*@command, options)
    2471:  Errno::EACCES:
    2472:  Permission denied - java
    2473:  # ./rb/lib/selenium/webdriver/common/child_process.rb:57:in `spawn'
    2474:  # ./rb/lib/selenium/webdriver/common/child_process.rb:57:in `start'
    2475:  # ./rb/lib/selenium/server.rb:204:in `start'
    2476:  # //?/D:/a/selenium/selenium/rb/spec/integration/selenium/webdriver/spec_helper.rb:40:in `block (2 levels) in <top (required)>'
    2477:  Finished in 0.04369 seconds (files took 0.62403 seconds to load)
    2478:  0 examples, 0 failures, 1 error occurred outside of examples
    2479:  ================================================================================
    2480:  ==================== Test output for //rb/spec/integration/selenium/webdriver:bidi-edge-remote:
    2481:  2024-03-26 20:03:17 INFO Selenium Server Location: D:/_bazel/execroot/selenium/bazel-out/x64_windows-fastbuild/bin/rb/spec/integration/selenium/webdriver/bidi-edge-remote.cmd.runfiles/selenium/java/src/org/openqa/selenium/grid/selenium_server_deploy.jar
    2482:  An error occurred in a `before(:suite)` hook.
    2483:  Failure/Error: @pid = Process.spawn(*@command, options)
    2484:  Errno::EACCES:
    2485:  Permission denied - java
    2486:  # ./rb/lib/selenium/webdriver/common/child_process.rb:57:in `spawn'
    2487:  # ./rb/lib/selenium/webdriver/common/child_process.rb:57:in `start'
    2488:  # ./rb/lib/selenium/server.rb:204:in `start'
    2489:  # //?/D:/a/selenium/selenium/rb/spec/integration/selenium/webdriver/spec_helper.rb:40:in `block (2 levels) in <top (required)>'
    2490:  Finished in 0.04233 seconds (files took 0.58361 seconds to load)
    2491:  0 examples, 0 failures, 1 error occurred outside of examples
    2492:  ================================================================================
    2493:  �[32mINFO: �[0mFound 27 test targets...
    2494:  �[32mINFO: �[0mElapsed time: 864.411s, Critical Path: 202.52s
    2495:  �[32mINFO: �[0m2672 processes: 1422 disk cache hit, 1059 internal, 184 local, 7 worker.
    2496:  �[32mINFO: �[0mBuild completed, 27 tests FAILED, 2672 total actions
    2497:  //rb/spec/integration/selenium/webdriver:action_builder-edge-remote      �[0m�[31m�[1mFAILED�[0m in 3 out of 3 in 7.8s
    2498:  Stats over 3 runs: max = 7.8s, min = 6.7s, avg = 7.1s, dev = 0.5s
    2499:  D:/_bazel/execroot/selenium/bazel-out/x64_windows-fastbuild/testlogs/rb/spec/integration/selenium/webdriver/action_builder-edge-remote/test.log
    2500:  D:/_bazel/execroot/selenium/bazel-out/x64_windows-fastbuild/testlogs/rb/spec/integration/selenium/webdriver/action_builder-edge-remote/test_attempts/attempt_1.log
    2501:  D:/_bazel/execroot/selenium/bazel-out/x64_windows-fastbuild/testlogs/rb/spec/integration/selenium/webdriver/action_builder-edge-remote/test_attempts/attempt_2.log
    2502:  //rb/spec/integration/selenium/webdriver:bidi-edge-remote                �[0m�[31m�[1mFAILED�[0m in 3 out of 3 in 6.7s
    2503:  Stats over 3 runs: max = 6.7s, min = 6.7s, avg = 6.7s, dev = 0.0s
    2504:  D:/_bazel/execroot/selenium/bazel-out/x64_windows-fastbuild/testlogs/rb/spec/integration/selenium/webdriver/bidi-edge-remote/test.log
    2505:  D:/_bazel/execroot/selenium/bazel-out/x64_windows-fastbuild/testlogs/rb/spec/integration/selenium/webdriver/bidi-edge-remote/test_attempts/attempt_1.log
    2506:  D:/_bazel/execroot/selenium/bazel-out/x64_windows-fastbuild/testlogs/rb/spec/integration/selenium/webdriver/bidi-edge-remote/test_attempts/attempt_2.log
    2507:  //rb/spec/integration/selenium/webdriver:devtools-edge-remote            �[0m�[31m�[1mFAILED�[0m in 3 out of 3 in 6.8s
    2508:  Stats over 3 runs: max = 6.8s, min = 6.6s, avg = 6.7s, dev = 0.1s
    2509:  D:/_bazel/execroot/selenium/bazel-out/x64_windows-fastbuild/testlogs/rb/spec/integration/selenium/webdriver/devtools-edge-remote/test.log
    2510:  D:/_bazel/execroot/selenium/bazel-out/x64_windows-fastbuild/testlogs/rb/spec/integration/selenium/webdriver/devtools-edge-remote/test_attempts/attempt_1.log
    2511:  D:/_bazel/execroot/selenium/bazel-out/x64_windows-fastbuild/testlogs/rb/spec/integration/selenium/webdriver/devtools-edge-remote/test_attempts/attempt_2.log
    2512:  //rb/spec/integration/selenium/webdriver:driver-edge-remote              �[0m�[31m�[1mFAILED�[0m in 3 out of 3 in 7.4s
    2513:  Stats over 3 runs: max = 7.4s, min = 6.8s, avg = 7.1s, dev = 0.3s
    2514:  D:/_bazel/execroot/selenium/bazel-out/x64_windows-fastbuild/testlogs/rb/spec/integration/selenium/webdriver/driver-edge-remote/test.log
    2515:  D:/_bazel/execroot/selenium/bazel-out/x64_windows-fastbuild/testlogs/rb/spec/integration/selenium/webdriver/driver-edge-remote/test_attempts/attempt_1.log
    2516:  D:/_bazel/execroot/selenium/bazel-out/x64_windows-fastbuild/testlogs/rb/spec/integration/selenium/webdriver/driver-edge-remote/test_attempts/attempt_2.log
    2517:  //rb/spec/integration/selenium/webdriver:element-edge-remote             �[0m�[31m�[1mFAILED�[0m in 3 out of 3 in 7.1s
    2518:  Stats over 3 runs: max = 7.1s, min = 6.8s, avg = 7.0s, dev = 0.1s
    2519:  D:/_bazel/execroot/selenium/bazel-out/x64_windows-fastbuild/testlogs/rb/spec/integration/selenium/webdriver/element-edge-remote/test.log
    2520:  D:/_bazel/execroot/selenium/bazel-out/x64_windows-fastbuild/testlogs/rb/spec/integration/selenium/webdriver/element-edge-remote/test_attempts/attempt_1.log
    2521:  D:/_bazel/execroot/selenium/bazel-out/x64_windows-fastbuild/testlogs/rb/spec/integration/selenium/webdriver/element-edge-remote/test_attempts/attempt_2.log
    2522:  //rb/spec/integration/selenium/webdriver:error-edge-remote               �[0m�[31m�[1mFAILED�[0m in 3 out of 3 in 6.9s
    2523:  Stats over 3 runs: max = 6.9s, min = 6.8s, avg = 6.9s, dev = 0.0s
    2524:  D:/_bazel/execroot/selenium/bazel-out/x64_windows-fastbuild/testlogs/rb/spec/integration/selenium/webdriver/error-edge-remote/test.log
    2525:  D:/_bazel/execroot/selenium/bazel-out/x64_windows-fastbuild/testlogs/rb/spec/integration/selenium/webdriver/error-edge-remote/test_attempts/attempt_1.log
    2526:  D:/_bazel/execroot/selenium/bazel-out/x64_windows-fastbuild/testlogs/rb/spec/integration/selenium/webdriver/error-edge-remote/test_attempts/attempt_2.log
    2527:  //rb/spec/integration/selenium/webdriver:guard-edge-remote               �[0m�[31m�[1mFAILED�[0m in 3 out of 3 in 6.9s
    2528:  Stats over 3 runs: max = 6.9s, min = 6.6s, avg = 6.8s, dev = 0.1s
    2529:  D:/_bazel/execroot/selenium/bazel-out/x64_windows-fastbuild/testlogs/rb/spec/integration/selenium/webdriver/guard-edge-remote/test.log
    2530:  D:/_bazel/execroot/selenium/bazel-out/x64_windows-fastbuild/testlogs/rb/spec/integration/selenium/webdriver/guard-edge-remote/test_attempts/attempt_1.log
    2531:  D:/_bazel/execroot/selenium/bazel-out/x64_windows-fastbuild/testlogs/rb/spec/integration/selenium/webdriver/guard-edge-remote/test_attempts/attempt_2.log
    2532:  //rb/spec/integration/selenium/webdriver:listener-edge-remote            �[0m�[31m�[1mFAILED�[0m in 3 out of 3 in 7.4s
    2533:  Stats over 3 runs: max = 7.4s, min = 6.8s, avg = 7.2s, dev = 0.3s
    2534:  D:/_bazel/execroot/selenium/bazel-out/x64_windows-fastbuild/testlogs/rb/spec/integration/selenium/webdriver/listener-edge-remote/test.log
    2535:  D:/_bazel/execroot/selenium/bazel-out/x64_windows-fastbuild/testlogs/rb/spec/integration/selenium/webdriver/listener-edge-remote/test_attempts/attempt_1.log
    2536:  D:/_bazel/execroot/selenium/bazel-out/x64_windows-fastbuild/testlogs/rb/spec/integration/selenium/webdriver/listener-edge-remote/test_attempts/attempt_2.log
    2537:  //rb/spec/integration/selenium/webdriver:manager-edge-remote             �[0m�[31m�[1mFAILED�[0m in 3 out of 3 in 7.3s
    2538:  Stats over 3 runs: max = 7.3s, min = 6.8s, avg = 7.1s, dev = 0.2s
    2539:  D:/_bazel/execroot/selenium/bazel-out/x64_windows-fastbuild/testlogs/rb/spec/integration/selenium/webdriver/manager-edge-remote/test.log
    2540:  D:/_bazel/execroot/selenium/bazel-out/x64_windows-fastbuild/testlogs/rb/spec/integration/selenium/webdriver/manager-edge-remote/test_attempts/attempt_1.log
    2541:  D:/_bazel/execroot/selenium/bazel-out/x64_windows-fastbuild/testlogs/rb/spec/integration/selenium/webdriver/manager-edge-remote/test_attempts/attempt_2.log
    2542:  //rb/spec/integration/selenium/webdriver:navigation-edge-remote          �[0m�[31m�[1mFAILED�[0m in 3 out of 3 in 7.0s
    2543:  Stats over 3 runs: max = 7.0s, min = 6.7s, avg = 6.8s, dev = 0.1s
    2544:  D:/_bazel/execroot/selenium/bazel-out/x64_windows-fastbuild/testlogs/rb/spec/integration/selenium/webdriver/navigation-edge-remote/test.log
    2545:  D:/_bazel/execroot/selenium/bazel-out/x64_windows-fastbuild/testlogs/rb/spec/integration/selenium/webdriver/navigation-edge-remote/test_attempts/attempt_1.log
    2546:  D:/_bazel/execroot/selenium/bazel-out/x64_windows-fastbuild/testlogs/rb/spec/integration/selenium/webdriver/navigation-edge-remote/test_attempts/attempt_2.log
    2547:  //rb/spec/integration/selenium/webdriver:select-edge-remote              �[0m�[31m�[1mFAILED�[0m in 3 out of 3 in 7.2s
    2548:  Stats over 3 runs: max = 7.2s, min = 6.8s, avg = 7.0s, dev = 0.2s
    2549:  D:/_bazel/execroot/selenium/bazel-out/x64_windows-fastbuild/testlogs/rb/spec/integration/selenium/webdriver/select-edge-remote/test.log
    2550:  D:/_bazel/execroot/selenium/bazel-out/x64_windows-fastbuild/testlogs/rb/spec/integration/selenium/webdriver/select-edge-remote/test_attempts/attempt_1.log
    2551:  D:/_bazel/execroot/selenium/bazel-out/x64_windows-fastbuild/testlogs/rb/spec/integration/selenium/webdriver/select-edge-remote/test_attempts/attempt_2.log
    2552:  //rb/spec/integration/selenium/webdriver:shadow_root-edge-remote         �[0m�[31m�[1mFAILED�[0m in 3 out of 3 in 7.3s
    2553:  Stats over 3 runs: max = 7.3s, min = 6.8s, avg = 7.0s, dev = 0.2s
    2554:  D:/_bazel/execroot/selenium/bazel-out/x64_windows-fastbuild/testlogs/rb/spec/integration/selenium/webdriver/shadow_root-edge-remote/test.log
    2555:  D:/_bazel/execroot/selenium/bazel-out/x64_windows-fastbuild/testlogs/rb/spec/integration/selenium/webdriver/shadow_root-edge-remote/test_attempts/attempt_1.log
    2556:  D:/_bazel/execroot/selenium/bazel-out/x64_windows-fastbuild/testlogs/rb/spec/integration/selenium/webdriver/shadow_root-edge-remote/test_attempts/attempt_2.log
    2557:  //rb/spec/integration/selenium/webdriver:storage-edge-remote             �[0m�[31m�[1mFAILED�[0m in 3 out of 3 in 7.5s
    2558:  Stats over 3 runs: max = 7.5s, min = 6.9s, avg = 7.2s, dev = 0.3s
    2559:  D:/_bazel/execroot/selenium/bazel-out/x64_windows-fastbuild/testlogs/rb/spec/integration/selenium/webdriver/storage-edge-remote/test.log
    2560:  D:/_bazel/execroot/selenium/bazel-out/x64_windows-fastbuild/testlogs/rb/spec/integration/selenium/webdriver/storage-edge-remote/test_attempts/attempt_1.log
    2561:  D:/_bazel/execroot/selenium/bazel-out/x64_windows-fastbuild/testlogs/rb/spec/integration/selenium/webdriver/storage-edge-remote/test_attempts/attempt_2.log
    2562:  //rb/spec/integration/selenium/webdriver:takes_screenshot-edge-remote    �[0m�[31m�[1mFAILED�[0m in 3 out of 3 in 7.0s
    2563:  Stats over 3 runs: max = 7.0s, min = 6.7s, avg = 6.9s, dev = 0.1s
    2564:  D:/_bazel/execroot/selenium/bazel-out/x64_windows-fastbuild/testlogs/rb/spec/integration/selenium/webdriver/takes_screenshot-edge-remote/test.log
    2565:  D:/_bazel/execroot/selenium/bazel-out/x64_windows-fastbuild/testlogs/rb/spec/integration/selenium/webdriver/takes_screenshot-edge-remote/test_attempts/attempt_1.log
    2566:  D:/_bazel/execroot/selenium/bazel-out/x64_windows-fastbuild/testlogs/rb/spec/integration/selenium/webdriver/takes_screenshot-edge-remote/test_attempts/attempt_2.log
    2567:  //rb/spec/integration/selenium/webdriver:target_locator-edge-remote      �[0m�[31m�[1mFAILED�[0m in 3 out of 3 in 6.9s
    2568:  Stats over 3 runs: max = 6.9s, min = 6.7s, avg = 6.8s, dev = 0.1s
    2569:  D:/_bazel/execroot/selenium/bazel-out/x64_windows-fastbuild/testlogs/rb/spec/integration/selenium/webdriver/target_locator-edge-remote/test.log
    2570:  D:/_bazel/execroot/selenium/bazel-out/x64_windows-fastbuild/testlogs/rb/spec/integration/selenium/webdriver/target_locator-edge-remote/test_attempts/attempt_1.log
    2571:  D:/_bazel/execroot/selenium/bazel-out/x64_windows-fastbuild/testlogs/rb/spec/integration/selenium/webdriver/target_locator-edge-remote/test_attempts/attempt_2.log
    2572:  //rb/spec/integration/selenium/webdriver:timeout-edge-remote             �[0m�[31m�[1mFAILED�[0m in 3 out of 3 in 6.9s
    2573:  Stats over 3 runs: max = 6.9s, min = 6.8s, avg = 6.8s, dev = 0.0s
    2574:  D:/_bazel/execroot/selenium/bazel-out/x64_windows-fastbuild/testlogs/rb/spec/integration/selenium/webdriver/timeout-edge-remote/test.log
    2575:  D:/_bazel/execroot/selenium/bazel-out/x64_windows-fastbuild/testlogs/rb/spec/integration/selenium/webdriver/timeout-edge-remote/test_attempts/attempt_1.log
    2576:  D:/_bazel/execroot/selenium/bazel-out/x64_windows-fastbuild/testlogs/rb/spec/integration/selenium/webdriver/timeout-edge-remote/test_attempts/attempt_2.log
    2577:  //rb/spec/integration/selenium/webdriver:virtual_authenticator-edge-remote �[0m�[31m�[1mFAILED�[0m in 3 out of 3 in 7.3s
    2578:  Stats over 3 runs: max = 7.3s, min = 6.8s, avg = 7.0s, dev = 0.2s
    2579:  D:/_bazel/execroot/selenium/bazel-out/x64_windows-fastbuild/testlogs/rb/spec/integration/selenium/webdriver/virtual_authenticator-edge-remote/test.log
    2580:  D:/_bazel/execroot/selenium/bazel-out/x64_windows-fastbuild/testlogs/rb/spec/integration/selenium/webdriver/virtual_authenticator-edge-remote/test_attempts/attempt_1.log
    2581:  D:/_bazel/execroot/selenium/bazel-out/x64_windows-fastbuild/testlogs/rb/spec/integration/selenium/webdriver/virtual_authenticator-edge-remote/test_attempts/attempt_2.log
    2582:  //rb/spec/integration/selenium/webdriver:window-edge-remote              �[0m�[31m�[1mFAILED�[0m in 3 out of 3 in 6.9s
    2583:  Stats over 3 runs: max = 6.9s, min = 6.7s, avg = 6.8s, dev = 0.1s
    2584:  D:/_bazel/execroot/selenium/bazel-out/x64_windows-fastbuild/testlogs/rb/spec/integration/selenium/webdriver/window-edge-remote/test.log
    2585:  D:/_bazel/execroot/selenium/bazel-out/x64_windows-fastbuild/testlogs/rb/spec/integration/selenium/webdriver/window-edge-remote/test_attempts/attempt_1.log
    2586:  D:/_bazel/execroot/selenium/bazel-out/x64_windows-fastbuild/testlogs/rb/spec/integration/selenium/webdriver/window-edge-remote/test_attempts/attempt_2.log
    2587:  //rb/spec/integration/selenium/webdriver:zipper-edge-remote              �[0m�[31m�[1mFAILED�[0m in 3 out of 3 in 7.1s
    2588:  Stats over 3 runs: max = 7.1s, min = 6.7s, avg = 6.9s, dev = 0.2s
    2589:  D:/_bazel/execroot/selenium/bazel-out/x64_windows-fastbuild/testlogs/rb/spec/integration/selenium/webdriver/zipper-edge-remote/test.log
    2590:  D:/_bazel/execroot/selenium/bazel-out/x64_windows-fastbuild/testlogs/rb/spec/integration/selenium/webdriver/zipper-edge-remote/test_attempts/attempt_1.log
    2591:  D:/_bazel/execroot/selenium/bazel-out/x64_windows-fastbuild/testlogs/rb/spec/integration/selenium/webdriver/zipper-edge-remote/test_attempts/attempt_2.log
    2592:  //rb/spec/integration/selenium/webdriver/bidi:browsing_context-edge-remote �[0m�[31m�[1mFAILED�[0m in 3 out of 3 in 6.7s
    2593:  Stats over 3 runs: max = 6.7s, min = 6.6s, avg = 6.6s, dev = 0.0s
    2594:  D:/_bazel/execroot/selenium/bazel-out/x64_windows-fastbuild/testlogs/rb/spec/integration/selenium/webdriver/bidi/browsing_context-edge-remote/test.log
    2595:  D:/_bazel/execroot/selenium/bazel-out/x64_windows-fastbuild/testlogs/rb/spec/integration/selenium/webdriver/bidi/browsing_context-edge-remote/test_attempts/attempt_1.log
    2596:  D:/_bazel/execroot/selenium/bazel-out/x64_windows-fastbuild/testlogs/rb/spec/integration/selenium/webdriver/bidi/browsing_context-edge-remote/test_attempts/attempt_2.log
    2597:  //rb/spec/integration/selenium/webdriver/bidi:log_inspector-edge-remote  �[0m�[31m�[1mFAILED�[0m in 3 out of 3 in 6.6s
    2598:  Stats over 3 runs: max = 6.6s, min = 6.6s, avg = 6.6s, dev = 0.0s
    2599:  D:/_bazel/execroot/selenium/bazel-out/x64_windows-fastbuild/testlogs/rb/spec/integration/selenium/webdriver/bidi/log_inspector-edge-remote/test.log
    2600:  D:/_bazel/execroot/selenium/bazel-out/x64_windows-fastbuild/testlogs/rb/spec/integration/selenium/webdriver/bidi/log_inspector-edge-remote/test_attempts/attempt_1.log
    2601:  D:/_bazel/execroot/selenium/bazel-out/x64_windows-fastbuild/testlogs/rb/spec/integration/selenium/webdriver/bidi/log_inspector-edge-remote/test_attempts/attempt_2.log
    2602:  //rb/spec/integration/selenium/webdriver/edge:driver-edge-remote         �[0m�[31m�[1mFAILED�[0m in 3 out of 3 in 7.0s
    2603:  Stats over 3 runs: max = 7.0s, min = 6.8s, avg = 6.9s, dev = 0.1s
    2604:  D:/_bazel/execroot/selenium/bazel-out/x64_windows-fastbuild/testlogs/rb/spec/integration/selenium/webdriver/edge/driver-edge-remote/test.log
    2605:  D:/_bazel/execroot/selenium/bazel-out/x64_windows-fastbuild/testlogs/rb/spec/integration/selenium/webdriver/edge/driver-edge-remote/test_attempts/attempt_1.log
    2606:  D:/_bazel/execroot/selenium/bazel-out/x64_windows-fastbuild/testlogs/rb/spec/integration/selenium/webdriver/edge/driver-edge-remote/test_attempts/attempt_2.log
    2607:  //rb/spec/integration/selenium/webdriver/edge:options-edge-remote        �[0m�[31m�[1mFAILED�[0m in 3 out of 3 in 7.3s
    2608:  Stats over 3 runs: max = 7.3s, min = 6.8s, avg = 7.0s, dev = 0.2s
    2609:  D:/_bazel/execroot/selenium/bazel-out/x64_windows-fastbuild/testlogs/rb/spec/integration/selenium/webdriver/edge/options-edge-remote/test.log
    2610:  D:/_bazel/execroot/selenium/bazel-out/x64_windows-fastbuild/testlogs/rb/spec/integration/selenium/webdriver/edge/options-edge-remote/test_attempts/attempt_1.log
    2611:  D:/_bazel/execroot/selenium/bazel-out/x64_windows-fastbuild/testlogs/rb/spec/integration/selenium/webdriver/edge/options-edge-remote/test_attempts/attempt_2.log
    2612:  //rb/spec/integration/selenium/webdriver/edge:profile-edge-remote        �[0m�[31m�[1mFAILED�[0m in 3 out of 3 in 7.3s
    2613:  Stats over 3 runs: max = 7.3s, min = 6.8s, avg = 7.0s, dev = 0.2s
    2614:  D:/_bazel/execroot/selenium/bazel-out/x64_windows-fastbuild/testlogs/rb/spec/integration/selenium/webdriver/edge/profile-edge-remote/test.log
    2615:  D:/_bazel/execroot/selenium/bazel-out/x64_windows-fastbuild/testlogs/rb/spec/integration/selenium/webdriver/edge/profile-edge-remote/test_attempts/attempt_1.log
    2616:  D:/_bazel/execroot/selenium/bazel-out/x64_windows-fastbuild/testlogs/rb/spec/integration/selenium/webdriver/edge/profile-edge-remote/test_attempts/attempt_2.log
    2617:  //rb/spec/integration/selenium/webdriver/edge:service-edge-remote        �[0m�[31m�[1mFAILED�[0m in 3 out of 3 in 7.2s
    2618:  Stats over 3 runs: max = 7.2s, min = 6.8s, avg = 6.9s, dev = 0.2s
    2619:  D:/_bazel/execroot/selenium/bazel-out/x64_windows-fastbuild/testlogs/rb/spec/integration/selenium/webdriver/edge/service-edge-remote/test.log
    2620:  D:/_bazel/execroot/selenium/bazel-out/x64_windows-fastbuild/testlogs/rb/spec/integration/selenium/webdriver/edge/service-edge-remote/test_attempts/attempt_1.log
    2621:  D:/_bazel/execroot/selenium/bazel-out/x64_windows-fastbuild/testlogs/rb/spec/integration/selenium/webdriver/edge/service-edge-remote/test_attempts/attempt_2.log
    2622:  //rb/spec/integration/selenium/webdriver/remote:driver-edge-remote       �[0m�[31m�[1mFAILED�[0m in 3 out of 3 in 7.7s
    2623:  Stats over 3 runs: max = 7.7s, min = 6.7s, avg = 7.1s, dev = 0.5s
    2624:  D:/_bazel/execroot/selenium/bazel-out/x64_windows-fastbuild/testlogs/rb/spec/integration/selenium/webdriver/remote/driver-edge-remote/test.log
    2625:  D:/_bazel/execroot/selenium/bazel-out/x64_windows-fastbuild/testlogs/rb/spec/integration/selenium/webdriver/remote/driver-edge-remote/test_attempts/attempt_1.log
    2626:  D:/_bazel/execroot/selenium/bazel-out/x64_windows-fastbuild/testlogs/rb/spec/integration/selenium/webdriver/remote/driver-edge-remote/test_attempts/attempt_2.log
    2627:  //rb/spec/integration/selenium/webdriver/remote:element-edge-remote      �[0m�[31m�[1mFAILED�[0m in 3 out of 3 in 8.0s
    2628:  Stats over 3 runs: max = 8.0s, min = 6.8s, avg = 7.2s, dev = 0.5s
    2629:  D:/_bazel/execroot/selenium/bazel-out/x64_windows-fastbuild/testlogs/rb/spec/integration/selenium/webdriver/remote/element-edge-remote/test.log
    2630:  D:/_bazel/execroot/selenium/bazel-out/x64_windows-fastbuild/testlogs/rb/spec/integration/selenium/webdriver/remote/element-edge-remote/test_attempts/attempt_1.log
    2631:  D:/_bazel/execroot/selenium/bazel-out/x64_windows-fastbuild/testlogs/rb/spec/integration/selenium/webdriver/remote/element-edge-remote/test_attempts/attempt_2.log
    2632:  Executed 27 out of 27 tests: �[0m�[31m�[1m27 fail locally�[0m.
    2633:  �[0m
    2634:  ##[error]Process completed with exit code 1.
    

    ✨ 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.

    @joerg1985 joerg1985 force-pushed the removed-guava-from-the-client branch 3 times, most recently from bdaa13e to d541c23 Compare March 26, 2024 16:47
    @codecov-commenter

    Copy link
    Copy Markdown

    Codecov Report

    All modified and coverable lines are covered by tests ✅

    Project coverage is 58.57%. Comparing base (907b219) to head (3d9eca3).

    ❗ Current head 3d9eca3 differs from pull request most recent head d541c23. Consider uploading reports for the commit d541c23 to get more accurate results

    ❗ Your organization needs to install the Codecov GitHub app to enable full functionality.

    Additional details and impacted files
    @@           Coverage Diff           @@
    ##            trunk   #13739   +/-   ##
    =======================================
      Coverage   58.57%   58.57%           
    =======================================
      Files          86       86           
      Lines        5272     5272           
      Branches      220      220           
    =======================================
      Hits         3088     3088           
      Misses       1964     1964           
      Partials      220      220           

    ☔ View full report in Codecov by Sentry.
    📢 Have feedback on the report? Share it here.

    @joerg1985 joerg1985 force-pushed the removed-guava-from-the-client branch 3 times, most recently from 55f528b to b2f4ae5 Compare March 26, 2024 19:30
    @joerg1985

    Copy link
    Copy Markdown
    Member Author

    @titusfortner could you please have a look at this one?

    @titusfortner

    Copy link
    Copy Markdown
    Member

    I'm assuming there's no easy way to mark these as deprecated?
    Do we want to wait for 5.0 to make this change?

    @joerg1985

    Copy link
    Copy Markdown
    Member Author

    As diemol wrote:
    I remember now. We need to write a blog post about it, announce it, and then make the change because we cannot just deprecate the interface or do something similar.

    #12737 (comment)

    @pujagani

    Copy link
    Copy Markdown
    Contributor

    " Do we want to wait for 5.0 to make this change? " - I think that might be a better option and the blog can linked to the major changes happening in 5.0 and as part of the migration guide from 4.0 to 5.0.

    @diemol

    diemol commented May 22, 2024

    Copy link
    Copy Markdown
    Member

    I don't see why we need to wait for Selenium 5. This is an isolated change we can handle before that. Then, Selenium 5 would have less breaking changes.

    @titusfortner

    Copy link
    Copy Markdown
    Member

    To be honest, i'd kind of like selenium to behave a little more like other projects and put upcoming breaking changes in Selenium 5 at this point.

    @joerg1985

    Copy link
    Copy Markdown
    Member Author

    I am happy with pushing it to Selenium 5, i was only asking because the issue had no target milestone at all. So i will add it to the Selenium 5 milestone.

    @joerg1985

    Copy link
    Copy Markdown
    Member Author

    Sorry @diemol i missed your comment

    @joerg1985 joerg1985 force-pushed the removed-guava-from-the-client branch from b2f4ae5 to 43a62c1 Compare November 22, 2024 00:15
    @qodo-code-review

    qodo-code-review Bot commented Nov 22, 2024

    Copy link
    Copy Markdown
    Contributor

    CI Failure Feedback 🧐

    (Checks updated until commit 99bb3cd)

    Action: Test / All RBE tests

    Failed stage: Run Bazel [❌]

    Failed test name: DefaultWheelTest

    Failure summary:

    Multiple test failures occurred in the Selenium test suite:

  • Several BiDi (Browser DevTools Protocol) related tests failed, including:
    - DefaultWheelTest for
    both Chrome and Edge
    - BrowsingContextInspectorTest for Chrome and Edge
    - ScriptCommandsTest and
    ScriptEventsTest
  • Remote WebDriver tests failed:
    - RemoteWebDriverScreenshotTest for Chrome and Firefox
    -
    ChromeOptionsFunctionalTest
  • FirefoxDriverTest failed

    The main error pattern appears to be failures in driver initialization and environment setup, as
    indicated by repeated failures in SeleniumExtension.actuallyCreateDriver() and
    JupiterTestBase.prepareEnvironment().

  • Relevant error logs:
    1:  ##[group]Operating System
    2:  Ubuntu
    ...
    
    939:  Package 'php-symfony-asset' is not installed, so not removed
    940:  Package 'php-symfony-asset-mapper' is not installed, so not removed
    941:  Package 'php-symfony-browser-kit' is not installed, so not removed
    942:  Package 'php-symfony-clock' is not installed, so not removed
    943:  Package 'php-symfony-debug-bundle' is not installed, so not removed
    944:  Package 'php-symfony-doctrine-bridge' is not installed, so not removed
    945:  Package 'php-symfony-dom-crawler' is not installed, so not removed
    946:  Package 'php-symfony-dotenv' is not installed, so not removed
    947:  Package 'php-symfony-error-handler' is not installed, so not removed
    ...
    
    1133:  Package 'php-uopz-all-dev' is not installed, so not removed
    1134:  Package 'php8.3-uploadprogress' is not installed, so not removed
    1135:  Package 'php-uploadprogress-all-dev' is not installed, so not removed
    1136:  Package 'php8.3-uuid' is not installed, so not removed
    1137:  Package 'php-uuid-all-dev' is not installed, so not removed
    1138:  Package 'php-validate' is not installed, so not removed
    1139:  Package 'php-vlucas-phpdotenv' is not installed, so not removed
    1140:  Package 'php-voku-portable-ascii' is not installed, so not removed
    1141:  Package 'php-wmerrors' is not installed, so not removed
    ...
    
    1830:  (05:08:25) �[35mWARNING: �[0m/home/runner/work/selenium/selenium/javascript/atoms/BUILD.bazel:398: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
    1831:  (05:08:25) �[35mWARNING: �[0m/home/runner/work/selenium/selenium/javascript/atoms/BUILD.bazel:398: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
    1832:  (05:08:25) �[35mWARNING: �[0m/home/runner/work/selenium/selenium/javascript/atoms/BUILD.bazel:398: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
    1833:  (05:08:25) �[35mWARNING: �[0m/home/runner/work/selenium/selenium/javascript/atoms/BUILD.bazel:398: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
    1834:  (05:08:25) �[35mWARNING: �[0m/home/runner/work/selenium/selenium/javascript/atoms/BUILD.bazel:398: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
    1835:  (05:08:25) �[35mWARNING: �[0m/home/runner/work/selenium/selenium/javascript/atoms/BUILD.bazel:398: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
    1836:  (05:08:25) �[35mWARNING: �[0m/home/runner/work/selenium/selenium/javascript/atoms/BUILD.bazel:398: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
    1837:  (05:08:25) �[35mWARNING: �[0m/home/runner/work/selenium/selenium/javascript/atoms/BUILD.bazel:398: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
    1838:  (05:08:25) �[35mWARNING: �[0m/home/runner/work/selenium/selenium/javascript/atoms/BUILD.bazel:398: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
    ...
    
    1939:  (05:08:26) �[35mWARNING: �[0m/home/runner/work/selenium/selenium/javascript/webdriver/BUILD.bazel:66:19: runfiles symlink javascript/webdriver/test/logging_test.js -> javascript/webdriver/test/logging_test.js obscured by javascript/webdriver/test -> bazel-out/k8-fastbuild/bin/javascript/webdriver/test
    1940:  (05:08:26) �[35mWARNING: �[0m/home/runner/work/selenium/selenium/javascript/webdriver/BUILD.bazel:66:19: runfiles symlink javascript/webdriver/test/stacktrace_test.js -> javascript/webdriver/test/stacktrace_test.js obscured by javascript/webdriver/test -> bazel-out/k8-fastbuild/bin/javascript/webdriver/test
    1941:  (05:08:26) �[35mWARNING: �[0m/home/runner/work/selenium/selenium/javascript/webdriver/BUILD.bazel:66:19: runfiles symlink javascript/webdriver/test/test_bootstrap.js -> javascript/webdriver/test/test_bootstrap.js obscured by javascript/webdriver/test -> bazel-out/k8-fastbuild/bin/javascript/webdriver/test
    1942:  (05:08:26) �[35mWARNING: �[0m/home/runner/work/selenium/selenium/javascript/webdriver/BUILD.bazel:66:19: runfiles symlink javascript/webdriver/test/testutil.js -> javascript/webdriver/test/testutil.js obscured by javascript/webdriver/test -> bazel-out/k8-fastbuild/bin/javascript/webdriver/test
    1943:  (05:08:26) �[35mWARNING: �[0m/home/runner/work/selenium/selenium/javascript/webdriver/BUILD.bazel:66:19: runfiles symlink javascript/webdriver/test/testutil_test.js -> javascript/webdriver/test/testutil_test.js obscured by javascript/webdriver/test -> bazel-out/k8-fastbuild/bin/javascript/webdriver/test
    1944:  (05:08:26) �[32mAnalyzing:�[0m 2177 targets (1608 packages loaded, 53883 targets configured)
    1945:  �[32m[6,253 / 7,800]�[0m 6 / 1055 tests;�[0m Extracting npm package @mui/icons-material@5.15.18_60647716; 5s remote, remote-cache ... (44 actions, 6 running)
    1946:  (05:08:29) �[32mINFO: �[0mFrom Building java/src/org/openqa/selenium/remote/libapi-class.jar (71 source files):
    1947:  java/src/org/openqa/selenium/remote/ErrorHandler.java:46: warning: [removal] ErrorCodes in org.openqa.selenium.remote has been deprecated and marked for removal
    1948:  private final ErrorCodes errorCodes;
    1949:  ^
    1950:  java/src/org/openqa/selenium/remote/ErrorHandler.java:60: warning: [removal] ErrorCodes in org.openqa.selenium.remote has been deprecated and marked for removal
    1951:  this.errorCodes = new ErrorCodes();
    1952:  ^
    1953:  java/src/org/openqa/selenium/remote/ErrorHandler.java:68: warning: [removal] ErrorCodes in org.openqa.selenium.remote has been deprecated and marked for removal
    1954:  public ErrorHandler(ErrorCodes codes, boolean includeServerErrors) {
    1955:  ^
    1956:  java/src/org/openqa/selenium/remote/Response.java:97: warning: [removal] ErrorCodes in org.openqa.selenium.remote has been deprecated and marked for removal
    1957:  ErrorCodes errorCodes = new ErrorCodes();
    1958:  ^
    1959:  java/src/org/openqa/selenium/remote/Response.java:97: warning: [removal] ErrorCodes in org.openqa.selenium.remote has been deprecated and marked for removal
    1960:  ErrorCodes errorCodes = new ErrorCodes();
    1961:  ^
    1962:  java/src/org/openqa/selenium/remote/ProtocolHandshake.java:181: warning: [removal] ErrorCodes in org.openqa.selenium.remote has been deprecated and marked for removal
    1963:  response.setStatus(ErrorCodes.SUCCESS);
    1964:  ^
    1965:  java/src/org/openqa/selenium/remote/ProtocolHandshake.java:182: warning: [removal] ErrorCodes in org.openqa.selenium.remote has been deprecated and marked for removal
    1966:  response.setState(ErrorCodes.SUCCESS_STRING);
    1967:  ^
    1968:  java/src/org/openqa/selenium/remote/W3CHandshakeResponse.java:53: warning: [removal] ErrorCodes in org.openqa.selenium.remote has been deprecated and marked for removal
    1969:  new ErrorCodes().toStatus((String) rawError, Optional.of(tuple.getStatusCode())));
    1970:  ^
    1971:  java/src/org/openqa/selenium/remote/W3CHandshakeResponse.java:56: warning: [removal] ErrorCodes in org.openqa.selenium.remote has been deprecated and marked for removal
    1972:  new ErrorCodes().getExceptionType((String) rawError);
    1973:  ^
    1974:  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
    1975:  private final ErrorCodes errorCodes = new ErrorCodes();
    1976:  ^
    1977:  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
    1978:  private final ErrorCodes errorCodes = new ErrorCodes();
    1979:  ^
    1980:  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
    1981:  int status = response.getStatus() == ErrorCodes.SUCCESS ? HTTP_OK : HTTP_INTERNAL_ERROR;
    1982:  ^
    1983:  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
    1984:  response.setStatus(ErrorCodes.UNKNOWN_COMMAND);
    1985:  ^
    1986:  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
    1987:  response.setStatus(ErrorCodes.UNHANDLED_ERROR);
    1988:  ^
    1989:  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
    1990:  response.setStatus(ErrorCodes.SUCCESS);
    1991:  ^
    1992:  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
    1993:  response.setState(errorCodes.toState(ErrorCodes.SUCCESS));
    1994:  ^
    1995:  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
    1996:  response.setState(errorCodes.toState(ErrorCodes.SUCCESS));
    1997:  ^
    1998:  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
    1999:  private final ErrorCodes errorCodes = new ErrorCodes();
    2000:  ^
    2001:  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
    2002:  private final ErrorCodes errorCodes = new ErrorCodes();
    2003:  ^
    2004:  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
    2005:  response.setStatus(ErrorCodes.UNKNOWN_COMMAND);
    2006:  ^
    2007:  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
    2008:  response.setStatus(ErrorCodes.UNHANDLED_ERROR);
    2009:  ^
    2010:  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
    2011:  response.setStatus(ErrorCodes.SUCCESS);
    ...
    
    2151:  external/protobuf~/java/core/src/main/java/com/google/protobuf/RepeatedFieldBuilderV3.java:28: warning: [dep-ann] deprecated item is not annotated with @Deprecated
    2152:  public class RepeatedFieldBuilderV3<
    2153:  ^
    2154:  (05:08:41) �[32mAnalyzing:�[0m 2177 targets (1634 packages loaded, 59630 targets configured)
    2155:  �[32m[10,798 / 11,806]�[0m 81 / 1896 tests;�[0m [Prepa] Compiling Java headers external/io_bazel_rules_closure/java/com/google/javascript/jscomp/libjscomp-hjar.jar (14 source files) and running annotation processors (ComponentProcessor) [for tool] ... (2 actions, 0 running)
    2156:  (05:08:45) �[32mINFO: �[0mFrom Compiling webdriver-netstandard2.0:
    2157:  dotnet/src/webdriver/BiDi/Modules/Script/RemoteValue.cs(252,35): warning CS8766: Nullability of reference types in return type of 'string? Node.SharedId.get' doesn't match implicitly implemented member 'string ISharedReference.SharedId.get' (possibly because of nullability attributes).
    2158:  dotnet/src/webdriver/CookieJar.cs(129,46): warning CS8600: Converting null literal or possible null value to non-nullable type.
    2159:  dotnet/src/webdriver/WebDriver.cs(765,30): warning CS0618: 'WebDriverResult.ElementNotDisplayed' is obsolete: 'This error status is no longer returned by the WebDriver Specification https://www.w3.org/TR/webdriver2/#errors. Will be removed in 4.30'
    2160:  (05:08:45) �[32mINFO: �[0mFrom Compiling webdriver-netstandard2.0 (internals ref-only dll):
    2161:  dotnet/src/webdriver/WebDriver.cs(769,30): warning CS0618: 'WebDriverResult.ElementNotSelectable' is obsolete: 'This error status is no longer returned by the WebDriver Specification https://www.w3.org/TR/webdriver2/#errors. Will be removed in 4.30'
    2162:  dotnet/src/webdriver/WebDriver.cs(772,30): warning CS0618: 'WebDriverResult.NoSuchDocument' is obsolete: 'This error status is no longer returned by the WebDriver Specification https://www.w3.org/TR/webdriver2/#errors. Will be removed in 4.30'
    2163:  dotnet/src/webdriver/VirtualAuth/Credential.cs(120,61): warning CS8604: Possible null reference argument for parameter 'rpId' in 'Credential.Credential(byte[] id, bool isResidentCredential, string rpId, string privateKey, byte[]? userHandle, int signCount)'.
    2164:  dotnet/src/webdriver/Response.cs(121,33): warning CS8602: Dereference of a possibly null reference.
    2165:  dotnet/src/webdriver/BiDi/Modules/Script/RemoteValue.cs(252,35): warning CS8766: Nullability of reference types in return type of 'string? Node.SharedId.get' doesn't match implicitly implemented member 'string ISharedReference.SharedId.get' (possibly because of nullability attributes).
    2166:  (05:08:45) �[32mINFO: �[0mFrom Compiling webdriver-net8.0 (internals ref-only dll):
    2167:  dotnet/src/webdriver/BiDi/Modules/Script/RemoteValue.cs(252,35): warning CS8766: Nullability of reference types in return type of 'string? Node.SharedId.get' doesn't match implicitly implemented member 'string ISharedReference.SharedId.get' (possibly because of nullability attributes).
    2168:  (05:08:45) �[32mINFO: �[0mFrom Compiling webdriver-net8.0:
    2169:  dotnet/src/webdriver/BiDi/Modules/Script/RemoteValue.cs(252,35): warning CS8766: Nullability of reference types in return type of 'string? Node.SharedId.get' doesn't match implicitly implemented member 'string ISharedReference.SharedId.get' (possibly because of nullability attributes).
    2170:  dotnet/src/webdriver/VirtualAuth/Credential.cs(120,61): warning CS8604: Possible null reference argument for parameter 'rpId' in 'Credential.Credential(byte[] id, bool isResidentCredential, string rpId, string privateKey, byte[]? userHandle, int signCount)'.
    2171:  dotnet/src/webdriver/WebDriver.cs(765,30): warning CS0618: 'WebDriverResult.ElementNotDisplayed' is obsolete: 'This error status is no longer returned by the WebDriver Specification https://www.w3.org/TR/webdriver2/#errors. Will be removed in 4.30'
    2172:  dotnet/src/webdriver/WebDriver.cs(769,30): warning CS0618: 'WebDriverResult.ElementNotSelectable' is obsolete: 'This error status is no longer returned by the WebDriver Specification https://www.w3.org/TR/webdriver2/#errors. Will be removed in 4.30'
    2173:  dotnet/src/webdriver/WebDriver.cs(772,30): warning CS0618: 'WebDriverResult.NoSuchDocument' is obsolete: 'This error status is no longer returned by the WebDriver Specification https://www.w3.org/TR/webdriver2/#errors. Will be removed in 4.30'
    ...
    
    2195:  �[32m[11,964 / 13,490]�[0m 336 / 2174 tests;�[0m [Sched] Building java/src/org/openqa/selenium/support/ui/libwait.jar (5 source files); 26s ... (50 actions, 0 running)
    2196:  (05:09:31) �[32mAnalyzing:�[0m 2177 targets (1634 packages loaded, 62942 targets configured)
    2197:  �[32m[12,285 / 13,703]�[0m 443 / 2174 tests;�[0m [Sched] Building java/src/org/openqa/selenium/support/ui/libwait.jar (5 source files); 31s ... (50 actions, 2 running)
    2198:  (05:09:36) �[32mAnalyzing:�[0m 2177 targets (1634 packages loaded, 62942 targets configured)
    2199:  �[32m[12,575 / 13,859]�[0m 582 / 2174 tests;�[0m [Sched] Building java/src/org/openqa/selenium/support/ui/libwait.jar (5 source files); 36s ... (50 actions, 2 running)
    2200:  (05:09:41) �[32mAnalyzing:�[0m 2177 targets (1634 packages loaded, 62942 targets configured)
    2201:  �[32m[12,880 / 14,064]�[0m 688 / 2174 tests;�[0m [Sched] Building java/src/org/openqa/selenium/support/ui/libwait.jar (5 source files); 41s ... (50 actions, 1 running)
    2202:  (05:09:45) �[32mINFO: �[0mFrom Building java/test/org/openqa/selenium/json/JsonTest.jar (1 source file):
    2203:  java/test/org/openqa/selenium/json/JsonTest.java:430: warning: [removal] ErrorCodes in org.openqa.selenium.remote has been deprecated and marked for removal
    2204:  assertThat(response.getState()).isEqualTo(new ErrorCodes().toState(0));
    2205:  ^
    2206:  java/test/org/openqa/selenium/json/JsonTest.java:441: warning: [removal] ErrorCodes in org.openqa.selenium.remote has been deprecated and marked for removal
    2207:  assertThat(response.getState()).isEqualTo(new ErrorCodes().toState(0));
    2208:  ^
    2209:  java/test/org/openqa/selenium/json/JsonTest.java:454: warning: [removal] ErrorCodes in org.openqa.selenium.remote has been deprecated and marked for removal
    2210:  assertThat(response.getState()).isEqualTo(new ErrorCodes().toState(32));
    2211:  ^
    2212:  (05:09:46) �[32mINFO: �[0mAnalyzed 2177 targets (1635 packages loaded, 62999 targets configured).
    2213:  (05:09:46) �[32m[13,173 / 14,239]�[0m 823 / 2177 tests;�[0m [Sched] Building java/src/org/openqa/selenium/support/ui/libwait.jar (5 source files); 46s ... (48 actions, 1 running)
    2214:  (05:09:49) �[32mINFO: �[0mFrom Building java/test/org/openqa/selenium/remote/codec/w3c/W3CHttpResponseCodecTest.jar (1 source file):
    2215:  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
    2216:  import static org.openqa.selenium.remote.ErrorCodes.METHOD_NOT_ALLOWED;
    2217:  ^
    2218:  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
    2219:  assertThat(decoded.getStatus()).isEqualTo(ErrorCodes.SUCCESS);
    2220:  ^
    2221:  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
    2222:  assertThat(decoded.getStatus()).isEqualTo(ErrorCodes.UNHANDLED_ERROR);
    2223:  ^
    2224:  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
    2225:  assertThat(decoded.getStatus()).isEqualTo(ErrorCodes.UNHANDLED_ERROR);
    ...
    
    2248:  (05:12:20) �[32m[14,024 / 14,691]�[0m 1239 / 2177 tests;�[0m [Sched] Building java/test/org/openqa/selenium/grid/graphql/GraphqlHandlerTest.jar (1 source file); 51s ... (50 actions, 13 running)
    2249:  (05:12:25) �[32m[14,034 / 14,704]�[0m 1241 / 2177 tests;�[0m [Sched] Building java/test/org/openqa/selenium/grid/node/config/DriverServiceSessionFactoryTest.jar (1 source file); 55s ... (50 actions, 11 running)
    2250:  (05:12:30) �[32m[14,037 / 14,711]�[0m 1241 / 2177 tests;�[0m [Sched] Building java/test/org/openqa/selenium/grid/node/config/NodeOptionsTest.jar (1 source file); 60s ... (50 actions, 11 running)
    2251:  (05:12:35) �[32m[14,040 / 14,713]�[0m 1243 / 2177 tests;�[0m [Sched] Building java/test/org/openqa/selenium/grid/node/local/CreateSessionTest.jar (1 source file); 65s ... (50 actions, 11 running)
    2252:  (05:12:40) �[32m[14,058 / 14,719]�[0m 1256 / 2177 tests;�[0m [Sched] Testing //java/test/org/openqa/selenium/support:ThreadGuardTest; 63s ... (50 actions, 15 running)
    2253:  (05:12:46) �[32m[14,068 / 14,724]�[0m 1263 / 2177 tests;�[0m [Sched] Testing //java/test/org/openqa/selenium/support/pagefactory:internal/LocatingElementListHandlerTest; 63s ... (50 actions, 14 running)
    2254:  (05:12:51) �[32m[14,074 / 14,728]�[0m 1267 / 2177 tests;�[0m [Sched] Testing //java/test/org/openqa/selenium/support/pagefactory:internal/LocatingElementListHandlerTest; 68s ... (48 actions, 12 running)
    2255:  (05:12:56) �[32m[14,077 / 14,729]�[0m 1269 / 2177 tests;�[0m [Sched] Building java/test/org/openqa/selenium/grid/distributor/DistributorDrainingTest.jar (1 source file); 73s ... (46 actions, 15 running)
    2256:  (05:12:58) �[32mINFO: �[0mFrom Building java/test/org/openqa/selenium/remote/ErrorHandlerTest.jar (1 source file) and running annotation processors (AutoServiceProcessor):
    2257:  java/test/org/openqa/selenium/remote/ErrorHandlerTest.java:79: warning: [removal] ErrorCodes in org.openqa.selenium.remote has been deprecated and marked for removal
    2258:  handler.throwIfResponseFailed(createResponse(ErrorCodes.SUCCESS), 100);
    2259:  ^
    2260:  java/test/org/openqa/selenium/remote/ErrorHandlerTest.java:85: warning: [removal] ErrorCodes in org.openqa.selenium.remote has been deprecated and marked for removal
    2261:  assertThrowsCorrectExceptionType(ErrorCodes.NO_SUCH_WINDOW, NoSuchWindowException.class);
    2262:  ^
    2263:  java/test/org/openqa/selenium/remote/ErrorHandlerTest.java:86: warning: [removal] ErrorCodes in org.openqa.selenium.remote has been deprecated and marked for removal
    2264:  assertThrowsCorrectExceptionType(ErrorCodes.NO_SUCH_FRAME, NoSuchFrameException.class);
    2265:  ^
    2266:  java/test/org/openqa/selenium/remote/ErrorHandlerTest.java:87: warning: [removal] ErrorCodes in org.openqa.selenium.remote has been deprecated and marked for removal
    2267:  assertThrowsCorrectExceptionType(ErrorCodes.NO_SUCH_ELEMENT, NoSuchElementException.class);
    2268:  ^
    2269:  java/test/org/openqa/selenium/remote/ErrorHandlerTest.java:88: warning: [removal] ErrorCodes in org.openqa.selenium.remote has been deprecated and marked for removal
    2270:  assertThrowsCorrectExceptionType(ErrorCodes.UNKNOWN_COMMAND, UnsupportedCommandException.class);
    2271:  ^
    2272:  java/test/org/openqa/selenium/remote/ErrorHandlerTest.java:90: warning: [removal] ErrorCodes in org.openqa.selenium.remote has been deprecated and marked for removal
    2273:  ErrorCodes.METHOD_NOT_ALLOWED, UnsupportedCommandException.class);
    2274:  ^
    2275:  java/test/org/openqa/selenium/remote/ErrorHandlerTest.java:92: warning: [removal] ErrorCodes in org.openqa.selenium.remote has been deprecated and marked for removal
    2276:  ErrorCodes.STALE_ELEMENT_REFERENCE, StaleElementReferenceException.class);
    2277:  ^
    2278:  java/test/org/openqa/selenium/remote/ErrorHandlerTest.java:94: warning: [removal] ErrorCodes in org.openqa.selenium.remote has been deprecated and marked for removal
    2279:  ErrorCodes.INVALID_ELEMENT_STATE, InvalidElementStateException.class);
    2280:  ^
    2281:  java/test/org/openqa/selenium/remote/ErrorHandlerTest.java:95: warning: [removal] ErrorCodes in org.openqa.selenium.remote has been deprecated and marked for removal
    2282:  assertThrowsCorrectExceptionType(ErrorCodes.XPATH_LOOKUP_ERROR, InvalidSelectorException.class);
    2283:  ^
    2284:  java/test/org/openqa/selenium/remote/ErrorHandlerTest.java:107: warning: [removal] ErrorCodes in org.openqa.selenium.remote has been deprecated and marked for removal
    2285:  Response response = createResponse(ErrorCodes.UNHANDLED_ERROR);
    2286:  ^
    2287:  java/test/org/openqa/selenium/remote/ErrorHandlerTest.java:120: warning: [removal] ErrorCodes in org.openqa.selenium.remote has been deprecated and marked for removal
    2288:  createResponse(ErrorCodes.UNHANDLED_ERROR, "boom"), 123))
    2289:  ^
    2290:  java/test/org/openqa/selenium/remote/ErrorHandlerTest.java:133: warning: [removal] ErrorCodes in org.openqa.selenium.remote has been deprecated and marked for removal
    2291:  createResponse(ErrorCodes.UNHANDLED_ERROR, ImmutableMap.of("message", "boom")),
    2292:  ^
    2293:  java/test/org/openqa/selenium/remote/ErrorHandlerTest.java:147: warning: [removal] ErrorCodes in org.openqa.selenium.remote has been deprecated and marked for removal
    2294:  ErrorCodes.UNHANDLED_ERROR,
    2295:  ^
    2296:  java/test/org/openqa/selenium/remote/ErrorHandlerTest.java:167: warning: [removal] ErrorCodes in org.openqa.selenium.remote has been deprecated and marked for removal
    2297:  ErrorCodes.UNHANDLED_ERROR,
    2298:  ^
    2299:  java/test/org/openqa/selenium/remote/ErrorHandlerTest.java:193: warning: [removal] ErrorCodes in org.openqa.selenium.remote has been deprecated and marked for removal
    2300:  createResponse(ErrorCodes.UNHANDLED_ERROR, toMap(serverError)), 123))
    2301:  ^
    2302:  java/test/org/openqa/selenium/remote/ErrorHandlerTest.java:214: warning: [removal] ErrorCodes in org.openqa.selenium.remote has been deprecated and marked for removal
    2303:  createResponse(ErrorCodes.UNHANDLED_ERROR, data), 123))
    2304:  ^
    2305:  java/test/org/openqa/selenium/remote/ErrorHandlerTest.java:248: warning: [removal] ErrorCodes in org.openqa.selenium.remote has been deprecated and marked for removal
    2306:  createResponse(ErrorCodes.UNHANDLED_ERROR, data), 123))
    2307:  ^
    2308:  java/test/org/openqa/selenium/remote/ErrorHandlerTest.java:280: warning: [removal] ErrorCodes in org.openqa.selenium.remote has been deprecated and marked for removal
    2309:  createResponse(ErrorCodes.UNHANDLED_ERROR, data), 123))
    2310:  ^
    2311:  java/test/org/openqa/selenium/remote/ErrorHandlerTest.java:308: warning: [removal] ErrorCodes in org.openqa.selenium.remote has been deprecated and marked for removal
    2312:  createResponse(ErrorCodes.UNHANDLED_ERROR, data), 123))
    2313:  ^
    2314:  java/test/org/openqa/selenium/remote/ErrorHandlerTest.java:327: warning: [removal] ErrorCodes in org.openqa.selenium.remote has been deprecated and marked for removal
    2315:  createResponse(ErrorCodes.UNHANDLED_ERROR, data), 123))
    2316:  ^
    2317:  java/test/org/openqa/selenium/remote/ErrorHandlerTest.java:355: warning: [removal] ErrorCodes in org.openqa.selenium.remote has been deprecated and marked for removal
    2318:  createResponse(ErrorCodes.UNHANDLED_ERROR, data), 123))
    2319:  ^
    2320:  java/test/org/openqa/selenium/remote/ErrorHandlerTest.java:394: warning: [removal] ErrorCodes in org.openqa.selenium.remote has been deprecated and marked for removal
    2321:  createResponse(ErrorCodes.UNHANDLED_ERROR, data), 123))
    2322:  ^
    2323:  java/test/org/openqa/selenium/remote/ErrorHandlerTest.java:426: warning: [removal] ErrorCodes in org.openqa.selenium.remote has been deprecated and marked for removal
    2324:  createResponse(ErrorCodes.UNHANDLED_ERROR, toMap(serverError)), 123))
    2325:  ^
    2326:  java/test/org/openqa/selenium/remote/ErrorHandlerTest.java:435: warning: [removal] ErrorCodes in org.openqa.selenium.remote has been deprecated and marked for removal
    2327:  exceptions.put(ErrorCodes.NO_SUCH_SESSION, NoSuchSessionException.class);
    2328:  ^
    2329:  java/test/org/openqa/selenium/remote/ErrorHandlerTest.java:436: warning: [removal] ErrorCodes in org.openqa.selenium.remote has been deprecated and marked for removal
    2330:  exceptions.put(ErrorCodes.NO_SUCH_ELEMENT, NoSuchElementException.class);
    2331:  ^
    2332:  java/test/org/openqa/selenium/remote/ErrorHandlerTest.java:437: warning: [removal] ErrorCodes in org.openqa.selenium.remote has been deprecated and marked for removal
    2333:  exceptions.put(ErrorCodes.NO_SUCH_FRAME, NoSuchFrameException.class);
    2334:  ^
    2335:  java/test/org/openqa/selenium/remote/ErrorHandlerTest.java:438: warning: [removal] ErrorCodes in org.openqa.selenium.remote has been deprecated and marked for removal
    2336:  exceptions.put(ErrorCodes.UNKNOWN_COMMAND, UnsupportedCommandException.class);
    2337:  ^
    2338:  java/test/org/openqa/selenium/remote/ErrorHandlerTest.java:439: warning: [removal] ErrorCodes in org.openqa.selenium.remote has been deprecated and marked for removal
    2339:  exceptions.put(ErrorCodes.STALE_ELEMENT_REFERENCE, StaleElementReferenceException.class);
    2340:  ^
    2341:  java/test/org/openqa/selenium/remote/ErrorHandlerTest.java:440: warning: [removal] ErrorCodes in org.openqa.selenium.remote has been deprecated and marked for removal
    2342:  exceptions.put(ErrorCodes.INVALID_ELEMENT_STATE, InvalidElementStateException.class);
    2343:  ^
    2344:  java/test/org/openqa/selenium/remote/ErrorHandlerTest.java:441: warning: [removal] ErrorCodes in org.openqa.selenium.remote has been deprecated and marked for removal
    2345:  exceptions.put(ErrorCodes.UNHANDLED_ERROR, WebDriverException.class);
    2346:  ^
    2347:  java/test/org/openqa/selenium/remote/ErrorHandlerTest.java:442: warning: [removal] ErrorCodes in org.openqa.selenium.remote has been deprecated and marked for removal
    2348:  exceptions.put(ErrorCodes.JAVASCRIPT_ERROR, JavascriptException.class);
    2349:  ^
    2350:  java/test/org/openqa/selenium/remote/ErrorHandlerTest.java:443: warning: [removal] ErrorCodes in org.openqa.selenium.remote has been deprecated and marked for removal
    2351:  exceptions.put(ErrorCodes.XPATH_LOOKUP_ERROR, InvalidSelectorException.class);
    2352:  ^
    2353:  java/test/org/openqa/selenium/remote/ErrorHandlerTest.java:444: warning: [removal] ErrorCodes in org.openqa.selenium.remote has been deprecated and marked for removal
    2354:  exceptions.put(ErrorCodes.TIMEOUT, TimeoutException.class);
    2355:  ^
    2356:  java/test/org/openqa/selenium/remote/ErrorHandlerTest.java:445: warning: [removal] ErrorCodes in org.openqa.selenium.remote has been deprecated and marked for removal
    2357:  exceptions.put(ErrorCodes.NO_SUCH_WINDOW, NoSuchWindowException.class);
    2358:  ^
    2359:  java/test/org/openqa/selenium/remote/ErrorHandlerTest.java:446: warning: [removal] ErrorCodes in org.openqa.selenium.remote has been deprecated and marked for removal
    2360:  exceptions.put(ErrorCodes.INVALID_COOKIE_DOMAIN, InvalidCookieDomainException.class);
    2361:  ^
    2362:  java/test/org/openqa/selenium/remote/ErrorHandlerTest.java:447: warning: [removal] ErrorCodes in org.openqa.selenium.remote has been deprecated and marked for removal
    2363:  exceptions.put(ErrorCodes.UNABLE_TO_SET_COOKIE, UnableToSetCookieException.class);
    2364:  ^
    2365:  java/test/org/openqa/selenium/remote/ErrorHandlerTest.java:448: warning: [removal] ErrorCodes in org.openqa.selenium.remote has been deprecated and marked for removal
    2366:  exceptions.put(ErrorCodes.UNEXPECTED_ALERT_PRESENT, UnhandledAlertException.class);
    2367:  ^
    2368:  java/test/org/openqa/selenium/remote/ErrorHandlerTest.java:449: warning: [removal] ErrorCodes in org.openqa.selenium.remote has been deprecated and marked for removal
    2369:  exceptions.put(ErrorCodes.NO_ALERT_PRESENT, NoAlertPresentException.class);
    2370:  ^
    2371:  java/test/org/openqa/selenium/remote/ErrorHandlerTest.java:450: warning: [removal] ErrorCodes in org.openqa.selenium.remote has been deprecated and marked for removal
    2372:  exceptions.put(ErrorCodes.ASYNC_SCRIPT_TIMEOUT, ScriptTimeoutException.class);
    2373:  ^
    2374:  java/test/org/openqa/selenium/remote/ErrorHandlerTest.java:451: warning: [removal] ErrorCodes in org.openqa.selenium.remote has been deprecated and marked for removal
    2375:  exceptions.put(ErrorCodes.INVALID_SELECTOR_ERROR, InvalidSelectorException.class);
    2376:  ^
    2377:  java/test/org/openqa/selenium/remote/ErrorHandlerTest.java:452: warning: [removal] ErrorCodes in org.openqa.selenium.remote has been deprecated and marked for removal
    2378:  exceptions.put(ErrorCodes.SESSION_NOT_CREATED, SessionNotCreatedException.class);
    2379:  ^
    2380:  java/test/org/openqa/selenium/remote/ErrorHandlerTest.java:453: warning: [removal] ErrorCodes in org.openqa.selenium.remote has been deprecated and marked for removal
    2381:  exceptions.put(ErrorCodes.MOVE_TARGET_OUT_OF_BOUNDS, MoveTargetOutOfBoundsException.class);
    2382:  ^
    2383:  java/test/org/openqa/selenium/remote/ErrorHandlerTest.java:454: warning: [removal] ErrorCodes in org.openqa.selenium.remote has been deprecated and marked for removal
    2384:  exceptions.put(ErrorCodes.INVALID_XPATH_SELECTOR, InvalidSelectorException.class);
    2385:  ^
    2386:  java/test/org/openqa/selenium/remote/ErrorHandlerTest.java:455: warning: [removal] ErrorCodes in org.openqa.selenium.remote has been deprecated and marked for removal
    2387:  exceptions.put(ErrorCodes.INVALID_XPATH_SELECTOR_RETURN_TYPER, InvalidSelectorException.class);
    2388:  ^
    2389:  java/test/org/openqa/selenium/remote/ErrorHandlerTest.java:469: warning: [removal] ErrorCodes in org.openqa.selenium.remote has been deprecated and marked for removal
    2390:  ? ErrorCodes.INVALID_SELECTOR_ERROR
    2391:  ^
    2392:  java/test/org/openqa/selenium/remote/ErrorHandlerTest.java:471: warning: [removal] ErrorCodes in org.openqa.selenium.remote has been deprecated and marked for removal
    2393:  assertThat(new ErrorCodes().toStatusCode(e)).isEqualTo(expected);
    2394:  ^
    2395:  java/test/org/openqa/selenium/remote/ErrorHandlerTest.java:483: warning: [removal] ErrorCodes in org.openqa.selenium.remote has been deprecated and marked for removal
    2396:  response.setState(new ErrorCodes().toState(status));
    2397:  ^
    2398:  (05:12:58) �[32mINFO: �[0mFrom Building java/test/org/openqa/selenium/remote/libsmall-tests-test-lib.jar (5 source files) and running annotation processors (AutoServiceProcessor):
    2399:  java/test/org/openqa/selenium/remote/WebDriverFixture.java:170: warning: [removal] ErrorCodes in org.openqa.selenium.remote has been deprecated and marked for removal
    2400:  response.setStatus(new ErrorCodes().toStatus(state, Optional.of(400)));
    2401:  ^
    2402:  (05:13:00) �[32mINFO: �[0mFrom Building java/test/org/openqa/selenium/remote/RemotableByTest.jar (1 source file) and running annotation processors (AutoServiceProcessor):
    2403:  java/test/org/openqa/selenium/remote/RemotableByTest.java:23: warning: [removal] ErrorCodes in org.openqa.selenium.remote has been deprecated and marked for removal
    2404:  import static org.openqa.selenium.remote.ErrorCodes.SUCCESS_STRING;
    2405:  ^
    2406:  java/test/org/openqa/selenium/remote/RemotableByTest.java:23: warning: [removal] ErrorCodes in org.openqa.selenium.remote has been deprecated and marked for removal
    2407:  import static org.openqa.selenium.remote.ErrorCodes.SUCCESS_STRING;
    2408:  ^
    2409:  java/test/org/openqa/selenium/remote/RemotableByTest.java:23: warning: [removal] ErrorCodes in org.openqa.selenium.remote has been deprecated and marked for removal
    2410:  import static org.openqa.selenium.remote.ErrorCodes.SUCCESS_STRING;
    2411:  ^
    2412:  java/test/org/openqa/selenium/remote/RemotableByTest.java:45: warning: [removal] ErrorCodes in org.openqa.selenium.remote has been deprecated and marked for removal
    2413:  private final ErrorCodes errorCodes = new ErrorCodes();
    2414:  ^
    2415:  java/test/org/openqa/selenium/remote/RemotableByTest.java:45: warning: [removal] ErrorCodes in org.openqa.selenium.remote has been deprecated and marked for removal
    2416:  private final ErrorCodes errorCodes = new ErrorCodes();
    2417:  ^
    2418:  java/test/org/openqa/selenium/remote/RemotableByTest.java:45: warning: [removal] ErrorCodes in org.openqa.selenium.remote has been deprecated and marked for removal
    2419:  private final ErrorCodes errorCodes = new ErrorCodes();
    2420:  ^
    2421:  java/test/org/openqa/selenium/remote/RemotableByTest.java:45: warning: [removal] ErrorCodes in org.openqa.selenium.remote has been deprecated and marked for removal
    2422:  private final ErrorCodes errorCodes = new ErrorCodes();
    ...
    
    2893:  (05:49:51) �[32m[15,189 / 15,608]�[0m 1755 / 2177 tests;�[0m [Sched] Testing //java/test/org/openqa/selenium:ElementFindingTest; 469s ... (50 actions, 6 running)
    2894:  (05:49:57) �[32m[15,189 / 15,608]�[0m 1755 / 2177 tests;�[0m [Sched] Testing //java/test/org/openqa/selenium/bidi/browsingcontext:BrowsingContextTest-chrome; 445s ... (50 actions, 7 running)
    2895:  (05:50:08) �[32m[15,189 / 15,608]�[0m 1756 / 2177 tests;�[0m [Sched] Testing //java/test/org/openqa/selenium/bidi/browsingcontext:BrowsingContextTest-chrome; 456s ... (50 actions, 7 running)
    2896:  (05:50:13) �[32m[15,192 / 15,608]�[0m 1758 / 2177 tests;�[0m [Sched] Testing //java/test/org/openqa/selenium:JavascriptEnabledDriverTest-chrome; 439s ... (50 actions, 6 running)
    2897:  (05:50:21) �[32m[15,195 / 15,608]�[0m 1761 / 2177 tests;�[0m [Sched] Testing //java/test/org/openqa/selenium:JavascriptEnabledDriverTest-chrome; 446s ... (50 actions, 6 running)
    2898:  (05:50:26) �[32m[15,197 / 15,608]�[0m 1763 / 2177 tests;�[0m [Sched] Testing //java/test/org/openqa/selenium:ContextSwitchingTest-edge; 440s ... (50 actions, 7 running)
    2899:  (05:50:34) �[32m[15,198 / 15,609]�[0m 1763 / 2177 tests;�[0m [Sched] Testing //java/test/org/openqa/selenium/bidi/input:DefaultWheelTest-edge; 423s ... (50 actions, 9 running)
    2900:  (05:50:37) �[31m�[1mFAIL: �[0m//java/test/org/openqa/selenium:JavascriptEnabledDriverTest-chrome (see /home/runner/.bazel/execroot/_main/bazel-out/k8-fastbuild/testlogs/java/test/org/openqa/selenium/JavascriptEnabledDriverTest-chrome/test_attempts/attempt_1.log)
    2901:  (05:50:40) �[32m[15,201 / 15,610]�[0m 1767 / 2177 tests;�[0m [Sched] Testing //java/test/org/openqa/selenium:ErrorsTest; 361s ... (50 actions, 14 running)
    2902:  (05:50:46) �[32m[15,205 / 15,611]�[0m 1769 / 2177 tests;�[0m [Sched] Testing //java/test/org/openqa/selenium:ErrorsTest; 366s ... (50 actions, 11 running)
    2903:  (05:50:51) �[32m[15,206 / 15,611]�[0m 1770 / 2177 tests;�[0m [Sched] Testing //java/test/org/openqa/selenium:ErrorsTest; 371s ... (50 actions, 11 running)
    ...
    
    2918:  Capabilities {acceptInsecureCerts: false, browserName: chrome, browserVersion: 131.0.6778.204, chrome: {chromedriverVersion: 131.0.6778.204 (52183f9e99a..., userDataDir: /tmp/.org.chromium.Chromium...}, fedcm:accounts: true, goog:chromeOptions: {debuggerAddress: localhost:36923}, networkConnectionEnabled: false, pageLoadStrategy: normal, platformName: linux, proxy: Proxy(), se:cdp: ws://localhost:36923/devtoo..., se:cdpVersion: 131.0.6778.204, setWindowRect: true, strictFileInteractability: false, timeouts: {implicit: 0, pageLoad: 300000, script: 30000}, unhandledPromptBehavior: ignore, webSocketUrl: ws://localhost:18717/sessio..., webauthn:extension:credBlob: true, webauthn:extension:largeBlob: true, webauthn:extension:minPinLength: true, webauthn:extension:prf: true, webauthn:virtualAuthenticators: true}
    2919:  Element: [[ChromeDriver: chrome on linux (f0316c14dddda4ce47e8d63a7771274c)] -> id: changeme]
    2920:  Session ID: f0316c14dddda4ce47e8d63a7771274c
    2921:  at java.base/jdk.internal.reflect.NativeConstructorAccessorImpl.newInstance0(Native Method)
    2922:  at java.base/jdk.internal.reflect.NativeConstructorAccessorImpl.newInstance(NativeConstructorAccessorImpl.java:77)
    2923:  at java.base/jdk.internal.reflect.DelegatingConstructorAccessorImpl.newInstance(DelegatingConstructorAccessorImpl.java:45)
    2924:  at java.base/java.lang.reflect.Constructor.newInstanceWithCaller(Constructor.java:499)
    2925:  at java.base/java.lang.reflect.Constructor.newInstance(Constructor.java:480)
    2926:  at org.openqa.selenium.remote.ErrorCodec.decode(ErrorCodec.java:167)
    ...
    
    2938:  (05:51:01) �[32m[15,212 / 15,613]�[0m 1775 / 2177 tests;�[0m [Sched] Testing //java/test/org/openqa/selenium:WebScriptTest-chrome; 361s ... (50 actions, 13 running)
    2939:  (05:51:06) �[32m[15,222 / 15,615]�[0m 1784 / 2177 tests;�[0m [Sched] Testing //java/test/org/openqa/selenium/remote:RemoteWebDriverScreenshotTest-chrome; 351s ... (50 actions, 10 running)
    2940:  (05:51:11) �[32m[15,225 / 15,615]�[0m 1787 / 2177 tests;�[0m [Sched] Testing //java/test/org/openqa/selenium/bidi/browsingcontext:LocateNodesTest; 356s ... (50 actions, 12 running)
    2941:  (05:51:16) �[32m[15,231 / 15,615]�[0m 1793 / 2177 tests;�[0m [Sched] Testing //java/test/org/openqa/selenium/bidi:BiDiSessionCleanUpTest; 357s ... (50 actions, 10 running)
    2942:  (05:51:25) �[32m[15,233 / 15,615]�[0m 1795 / 2177 tests;�[0m [Sched] Testing //java/test/org/openqa/selenium:WebElementTest-edge; 360s ... (50 actions, 11 running)
    2943:  (05:51:31) �[32m[15,234 / 15,615]�[0m 1796 / 2177 tests;�[0m [Sched] Testing //java/test/org/openqa/selenium:JavascriptEnabledDriverTest-firefox-beta; 359s ... (50 actions, 11 running)
    2944:  (05:51:36) �[32m[15,234 / 15,615]�[0m 1796 / 2177 tests;�[0m [Sched] Testing //java/test/org/openqa/selenium:JavascriptEnabledDriverTest-firefox-beta; 365s ... (50 actions, 12 running)
    2945:  (05:51:46) �[32m[15,236 / 15,615]�[0m 1798 / 2177 tests;�[0m [Sched] Testing //java/test/org/openqa/selenium:JavascriptEnabledDriverTest-firefox-beta; 374s ... (50 actions, 10 running)
    2946:  (05:51:53) �[32m[15,236 / 15,615]�[0m 1798 / 2177 tests;�[0m [Sched] Testing //java/test/org/openqa/selenium:ErrorsTest-edge; 364s ... (50 actions, 11 running)
    2947:  (05:52:01) �[32m[15,238 / 15,615]�[0m 1800 / 2177 tests;�[0m [Sched] Testing //java/test/org/openqa/selenium:ErrorsTest-edge; 371s ... (50 actions, 9 running)
    2948:  (05:52:06) �[32m[15,244 / 15,615]�[0m 1806 / 2177 tests;�[0m [Sched] Testing //java/test/org/openqa/selenium:ErrorsTest-edge; 376s ... (50 actions, 7 running)
    2949:  (05:52:13) �[32m[15,245 / 15,615]�[0m 1808 / 2177 tests;�[0m [Sched] Testing //java/test/org/openqa/selenium:ErrorsTest-edge; 384s ... (50 actions, 7 running)
    ...
    
    3250:  (05:59:31) �[32m[15,319 / 15,615]�[0m 1881 / 2177 tests;�[0m [Sched] Testing //java/test/org/openqa/selenium/remote/http:HttpClientFactoryTest; 407s ... (50 actions, 22 running)
    3251:  (05:59:36) �[32m[15,321 / 15,615]�[0m 1883 / 2177 tests;�[0m [Sched] Testing //java/test/org/openqa/selenium/remote/http:HttpClientFactoryTest; 412s ... (50 actions, 21 running)
    3252:  (05:59:43) �[32m[15,321 / 15,615]�[0m 1884 / 2177 tests;�[0m [Sched] Testing //java/test/org/openqa/selenium/remote/http:HttpClientFactoryTest; 419s ... (50 actions, 22 running)
    3253:  (05:59:50) �[32m[15,322 / 15,615]�[0m 1884 / 2177 tests;�[0m [Sched] Testing //java/test/org/openqa/selenium/remote/http:HttpClientFactoryTest; 426s ... (50 actions, 22 running)
    3254:  (05:59:55) �[32m[15,322 / 15,615]�[0m 1884 / 2177 tests;�[0m [Sched] Testing //java/test/org/openqa/selenium/remote/http:HttpClientFactoryTest; 431s ... (50 actions, 22 running)
    3255:  (06:00:09) �[32m[15,322 / 15,615]�[0m 1884 / 2177 tests;�[0m [Sched] Testing //java/test/org/openqa/selenium/remote/http:HttpClientFactoryTest; 445s ... (50 actions, 22 running)
    3256:  (06:00:14) �[32m[15,328 / 15,615]�[0m 1890 / 2177 tests;�[0m [Sched] Testing //java/test/org/openqa/selenium:ClickTest-edge; 401s ... (50 actions, 18 running)
    3257:  (06:00:19) �[31m�[1mFAIL: �[0m//java/test/org/openqa/selenium/bidi/browsingcontext:LocateNodesTest-chrome-remote (see /home/runner/.bazel/execroot/_main/bazel-out/k8-fastbuild/testlogs/java/test/org/openqa/selenium/bidi/browsingcontext/LocateNodesTest-chrome-remote/test.log)
    3258:  �[31m�[1mFAILED: �[0m//java/test/org/openqa/selenium/bidi/browsingcontext:LocateNodesTest-chrome-remote (Summary)
    ...
    
    4784:  Jan 13, 2025 6:00:17 AM org.openqa.selenium.grid.node.local.SessionSlot stop
    4785:  INFO: Stopping session ae82001d1cf29060ae87aac813e2f531
    4786:  Jan 13, 2025 6:00:17 AM org.openqa.selenium.grid.distributor.GridModel setAvailability
    4787:  INFO: Switching Node 2d74d97a-b12c-424a-92f6-69a70f314069 (uri: http://127.0.0.1:2562) from UP to DRAINING
    4788:  Jan 13, 2025 6:00:17 AM org.openqa.selenium.grid.node.local.LocalNode drain
    4789:  INFO: Firing node drain complete message
    4790:  Execution result: https://gypsum.cluster.engflow.com/actions/executions/ChCgHfMQ0UNCiqLjEC0JFA-PEgdkZWZhdWx0GiUKIFIOrny3ibMG57Pbb6rn6rSy9YjRc9nA9e0oZa-OVR_gEJ8D
    4791:  ================================================================================
    4792:  (06:00:19) �[32m[15,334 / 15,615]�[0m 1896 / 2177 tests, �[31m�[1m1 failed�[0m;�[0m [Sched] Testing //java/test/org/openqa/selenium:ClickTest-edge; 406s ... (50 actions, 18 running)
    4793:  (06:00:24) �[32m[15,334 / 15,615]�[0m 1897 / 2177 tests, �[31m�[1m1 failed�[0m;�[0m [Sched] Testing //java/test/org/openqa/selenium:ClickTest-edge; 411s ... (50 actions, 18 running)
    4794:  (06:00:31) �[32m[15,335 / 15,615]�[0m 1897 / 2177 tests, �[31m�[1m1 failed�[0m;�[0m [Sched] Testing //java/test/org/openqa/selenium/bidi/input:DefaultWheelTest; 404s ... (50 actions, 19 running)
    4795:  (06:00:38) �[32m[15,337 / 15,615]�[0m 1899 / 2177 tests, �[31m�[1m1 failed�[0m;�[0m Testing //java/test/org/openqa/selenium/bidi/script:ScriptEventsTest-chrome-remote; 408s remote, remote-cache ... (50 actions, 20 running)
    4796:  (06:00:43) �[32m[15,339 / 15,615]�[0m 1901 / 2177 tests, �[31m�[1m1 failed�[0m;�[0m Testing //java/test/org/openqa/selenium/bidi/script:ScriptEventsTest-chrome-remote; 413s remote, remote-cache ... (50 actions, 19 running)
    4797:  (06:00:49) �[32m[15,339 / 15,615]�[0m 1901 / 2177 tests, �[31m�[1m1 failed�[0m;�[0m Testing //java/test/org/openqa/selenium/bidi/script:ScriptEventsTest-chrome-remote; 419s remote, remote-cache ... (50 actions, 19 running)
    4798:  (06:00:54) �[32m[15,343 / 15,615]�[0m 1905 / 2177 tests, �[31m�[1m1 failed�[0m;�[0m Testing //java/test/org/openqa/selenium/bidi/script:ScriptEventsTest-chrome-remote; 424s remote, remote-cache ... (50 actions, 21 running)
    4799:  (06:00:59) �[32m[15,344 / 15,615]�[0m 1907 / 2177 tests, �[31m�[1m1 failed�[0m;�[0m Testing //java/test/org/openqa/selenium/bidi/script:ScriptEventsTest-chrome-remote; 429s remote, remote-cache ... (50 actions, 20 running)
    4800:  (06:01:04) �[32m[15,345 / 15,615]�[0m 1908 / 2177 tests, �[31m�[1m1 failed�[0m;�[0m Testing //java/test/org/openqa/selenium/bidi/script:ScriptEventsTest-chrome-remote; 434s remote, remote-cache ... (50 actions, 19 running)
    4801:  (06:01:10) �[32m[15,348 / 15,615]�[0m 1910 / 2177 tests, �[31m�[1m1 failed�[0m;�[0m Testing //java/test/org/openqa/selenium/bidi/script:ScriptEventsTest-chrome-remote; 440s remote, remote-cache ... (50 actions, 17 running)
    ...
    
    5078:  at org.openqa.selenium.testing.SeleniumExtension.actuallyCreateDriver(SeleniumExtension.java:265)
    5079:  at org.openqa.selenium.testing.SeleniumExtension.getDriver(SeleniumExtension.java:254)
    5080:  at org.openqa.selenium.testing.JupiterTestBase.prepareEnvironment(JupiterTestBase.java:84)
    5081:  at java.base/java.lang.reflect.Method.invoke(Method.java:568)
    5082:  at java.base/java.util.ArrayList.forEach(ArrayList.java:1511)
    5083:  at java.base/java.util.ArrayList.forEach(ArrayList.java:1511)
    5084:  Execution result: https://gypsum.cluster.engflow.com/actions/executions/ChCgHfMQ0UNCiqLjEC0JFA-PEgdkZWZhdWx0GiUKIFAnFBspUcmG9ydOijuD1l3EltTCP6UKpUlJx0tTh2YVEJ8D
    5085:  ================================================================================
    5086:  (06:01:16) �[32m[15,350 / 15,615]�[0m 1913 / 2177 tests, �[31m�[1m1 failed�[0m;�[0m Testing //rb/spec/integration/selenium/webdriver:select-edge-remote; 410s remote, remote-cache ... (50 actions, 17 running)
    5087:  (06:01:21) �[32m[15,353 / 15,615]�[0m 1915 / 2177 tests, �[31m�[1m1 failed�[0m;�[0m Testing //rb/spec/integration/selenium/webdriver:select-edge-remote; 416s remote, remote-cache ... (50 actions, 15 running)
    5088:  (06:01:26) �[32m[15,353 / 15,615]�[0m 1915 / 2177 tests, �[31m�[1m1 failed�[0m;�[0m Testing //rb/spec/integration/selenium/webdriver:select-edge-remote; 421s remote, remote-cache ... (50 actions, 16 running)
    5089:  (06:01:32) �[32m[15,354 / 15,615]�[0m 1916 / 2177 tests, �[31m�[1m1 failed�[0m;�[0m Testing //rb/spec/integration/selenium/webdriver:select-edge-remote; 427s remote, remote-cache ... (50 actions, 15 running)
    5090:  (06:01:38) �[32m[15,360 / 15,615]�[0m 1923 / 2177 tests, �[31m�[1m1 failed�[0m;�[0m [Sched] Testing //java/test/org/openqa/selenium/bidi/input:DefaultKeyboardTest-chrome; 360s ... (50 actions, 14 running)
    5091:  (06:01:43) �[32m[15,362 / 15,615]�[0m 1925 / 2177 tests, �[31m�[1m1 failed�[0m;�[0m [Sched] Testing //java/test/org/openqa/selenium/bidi/input:DefaultKeyboardTest-chrome; 365s ... (50 actions, 13 running)
    5092:  (06:01:51) �[32m[15,364 / 15,615]�[0m 1926 / 2177 tests, �[31m�[1m1 failed�[0m;�[0m Testing //rb/spec/integration/selenium/webdriver:zipper-firefox-remote; 362s remote, remote-cache ... (50 actions, 13 running)
    5093:  (06:02:01) �[32m[15,364 / 15,615]�[0m 1926 / 2177 tests, �[31m�[1m1 failed�[0m;�[0m Testing //rb/spec/integration/selenium/webdriver:zipper-firefox-remote; 372s remote, remote-cache ... (50 actions, 13 running)
    5094:  (06:02:06) �[32m[15,364 / 15,615]�[0m 1927 / 2177 tests, �[31m�[1m1 failed�[0m;�[0m Testing //rb/spec/integration/selenium/webdriver:zipper-firefox-remote; 377s remote, remote-cache ... (50 actions, 13 running)
    5095:  (06:02:16) �[32m[15,365 / 15,615]�[0m 1927 / 2177 tests, �[31m�[1m1 failed�[0m;�[0m Testing //rb/spec/integration/selenium/webdriver:zipper-firefox-remote; 387s remote, remote-cache ... (50 actions, 13 running)
    5096:  (06:02:21) �[32m[15,366 / 15,615]�[0m 1928 / 2177 tests, �[31m�[1m1 failed�[0m;�[0m Testing //rb/spec/integration/selenium/webdriver:zipper-firefox-remote; 392s remote, remote-cache ... (50 actions, 12 running)
    5097:  (06:02:28) �[32m[15,366 / 15,615]�[0m 1928 / 2177 tests, �[31m�[1m1 failed�[0m;�[0m Testing //rb/spec/integration/selenium/webdriver:zipper-firefox-remote; 399s remote, remote-cache ... (50 actions, 13 running)
    5098:  (06:02:35) �[32m[15,368 / 15,615]�[0m 1930 / 2177 tests, �[31m�[1m1 failed�[0m;�[0m Testing //rb/spec/integration/selenium/webdriver:zipper-firefox-remote; 406s remote, remote-cache ... (50 actions, 12 running)
    5099:  (06:02:41) �[32m[15,369 / 15,615]�[0m 1931 / 2177 tests, �[31m�[1m1 failed�[0m;�[0m Testing //rb/spec/integration/selenium/webdriver:zipper-firefox-remote; 412s remote, remote-cache ... (50 actions, 13 running)
    5100:  (06:02:46) �[32m[15,369 / 15,615]�[0m 1931 / 2177 tests, �[31m�[1m1 failed�[0m;�[0m Testing //rb/spec/integration/selenium/webdriver:zipper-firefox-remote; 417s remote, remote-cache ... (50 actions, 13 running)
    5101:  (06:02:56) �[32m[15,370 / 15,615]�[0m 1932 / 2177 tests, �[31m�[1m1 failed�[0m;�[0m Testing //rb/spec/integration/selenium/webdriver:zipper-firefox-remote; 427s remote, remote-cache ... (50 actions, 13 running)
    5102:  (06:03:06) �[32m[15,373 / 15,615]�[0m 1935 / 2177 tests, �[31m�[1m1 failed�[0m;�[0m Testing //rb/spec/integration/selenium/webdriver:virtual_authenticator-chrome-remote; 432s remote, remote-cache ... (50 actions, 11 running)
    5103:  (06:03:13) �[32m[15,373 / 15,615]�[0m 1935 / 2177 tests, �[31m�[1m1 failed�[0m;�[0m Testing //rb/spec/integration/selenium/webdriver:virtual_authenticator-chrome-remote; 440s remote, remote-cache ... (50 actions, 12 running)
    5104:  (06:03:20) �[32m[15,373 / 15,615]�[0m 1936 / 2177 tests, �[31m�[1m1 failed�[0m;�[0m Testing //rb/spec/integration/selenium/webdriver:virtual_authenticator-chrome-remote; 446s remote, remote-cache ... (50 actions, 12 running)
    5105:  (06:03:26) �[32m[15,377 / 15,615]�[0m 1939 / 2177 tests, �[31m�[1m1 failed�[0m;�[0m Testing //rb/spec/integration/selenium/webdriver:virtual_authenticator-chrome-remote; 452s remote, remote-cache ... (50 actions, 11 running)
    5106:  (06:03:31) �[32m[15,377 / 15,615]�[0m 1939 / 2177 tests, �[31m�[1m1 failed�[0m;�[0m Testing //rb/spec/integration/selenium/webdriver:virtual_authenticator-chrome-remote; 458s remote, remote-cache ... (50 actions, 11 running)
    5107:  (06:03:41) �[32m[15,377 / 15,615]�[0m 1939 / 2177 tests, �[31m�[1m1 failed�[0m;�[0m Testing //rb/spec/integration/selenium/webdriver:virtual_authenticator-chrome-remote; 467s remote, remote-cache ... (50 actions, 12 running)
    5108:  (06:03:53) �[31m�[1mFAIL: �[0m//java/test/org/openqa/selenium/devtools:CdpFacadeTest-chrome-remote (see /home/runner/.bazel/execroot/_main/bazel-out/k8-fastbuild/testlogs/java/test/org/openqa/selenium/devtools/CdpFacadeTest-chrome-remote/test_attempts/attempt_1.log)
    5109:  (06:03:53) �[32m[15,377 / 15,615]�[0m 1939 / 2177 tests, �[31m�[1m1 failed�[0m;�[0m Testing //rb/spec/integration/selenium/webdriver:virtual_authenticator-chrome-remote; 479s remote, remote-cache ... (50 actions, 12 running)
    5110:  (06:04:01) �[32m[15,378 / 15,615]�[0m 1940 / 2177 tests, �[31m�[1m1 failed�[0m;�[0m [Sched] Testing //java/test/org/openqa/selenium/bidi/input:CombinedInputActionsTest-edge; 463s ... (50 actions, 12 running)
    5111:  (06:04:06) �[32m[15,378 / 15,615]�[0m 1940 / 2177 tests, �[31m�[1m1 failed�[0m;�[0m [Sched] Testing //java/test/org/openqa/selenium:ExecutingJavascriptTest-edge; 468s ... (50 actions, 13 running)
    5112:  (06:04:12) �[32m[15,378 / 15,615]�[0m 1940 / 2177 tests, �[31m�[1m1 failed�[0m;�[0m [Sched] Testing //rb/spec/integration/selenium/webdriver:shadow_root-firefox-beta-remote; 463s ... (50 actions, 15 running)
    5113:  (06:04:19) �[31m�[1mFAIL: �[0m//java/test/org/openqa/selenium/bidi/input:DefaultMouseTest-remote (see /home/runner/.bazel/execroot/_main/bazel-out/k8-fastbuild/testlogs/java/test/org/openqa/selenium/bidi/input/DefaultMouseTest-remote/test_attempts/attempt_1.log)
    5114:  (06:04:19) �[32m[15,378 / 15,615]�[0m 1940 / 2177 tests, �[31m�[1m1 failed�[0m;�[0m [Sched] Testing //rb/spec/integration/selenium/webdriver:shadow_root-firefox-beta-remote; 469s ... (50 actions, 15 running)
    5115:  (06:04:26) �[32m[15,378 / 15,615]�[0m 1940 / 2177 tests, �[31m�[1m1 failed�[0m;�[0m [Sched] Testing //rb/spec/integration/selenium/webdriver:shadow_root-firefox-beta-remote; 477s ... (50 actions, 15 running)
    5116:  (06:04:35) �[31m�[1mFAIL: �[0m//java/test/org/openqa/selenium/devtools:CdpFacadeTest-chrome-remote (see /home/runner/.bazel/execroot/_main/bazel-out/k8-fastbuild/testlogs/java/test/org/openqa/selenium/devtools/CdpFacadeTest-chrome-remote/test.log)
    5117:  �[31m�[1mFAILED: �[0m//java/test/org/openqa/selenium/devtools:CdpFacadeTest-chrome-remote (Summary)
    ...
    
    5487:  at org.openqa.selenium.testing.SeleniumExtension.actuallyCreateDriver(SeleniumExtension.java:265)
    5488:  at org.openqa.selenium.testing.SeleniumExtension.getDriver(SeleniumExtension.java:254)
    5489:  at org.openqa.selenium.testing.JupiterTestBase.prepareEnvironment(JupiterTestBase.java:84)
    5490:  at java.base/java.lang.reflect.Method.invoke(Method.java:568)
    5491:  at java.base/java.util.ArrayList.forEach(ArrayList.java:1511)
    5492:  at java.base/java.util.ArrayList.forEach(ArrayList.java:1511)
    5493:  Execution result: https://gypsum.cluster.engflow.com/actions/executions/ChCgHfMQ0UNCiqLjEC0JFA-PEgdkZWZhdWx0GiUKID9FvGet-kUQz5yZQtoX-QohcXPhTnc3w5dYIYWksyEjEJ8D
    5494:  ================================================================================
    5495:  (06:04:35) �[32m[15,379 / 15,615]�[0m 1941 / 2177 tests, �[31m�[1m2 failed�[0m;�[0m [Sched] Testing //java/test/org/openqa/selenium/bidi/browsingcontext:BrowsingContextInspectorTest-edge; 461s ... (50 actions, 15 running)
    5496:  (06:04:41) �[32m[15,379 / 15,615]�[0m 1941 / 2177 tests, �[31m�[1m2 failed�[0m;�[0m [Sched] Testing //java/test/org/openqa/selenium/bidi/browsingcontext:BrowsingContextInspectorTest-edge; 467s ... (50 actions, 15 running)
    5497:  (06:04:46) �[32m[15,379 / 15,615]�[0m 1941 / 2177 tests, �[31m�[1m2 failed�[0m;�[0m [Sched] Testing //java/test/org/openqa/selenium/bidi/browsingcontext:BrowsingContextInspectorTest-edge; 472s ... (50 actions, 15 running)
    5498:  (06:04:52) �[32m[15,379 / 15,615]�[0m 1941 / 2177 tests, �[31m�[1m2 failed�[0m;�[0m [Sched] Testing //java/test/org/openqa/selenium/bidi/browsingcontext:BrowsingContextInspectorTest-edge; 478s ... (50 actions, 16 running)
    5499:  (06:04:59) �[32m[15,379 / 15,615]�[0m 1941 / 2177 tests, �[31m�[1m2 failed�[0m;�[0m [Sched] Testing //java/test/org/openqa/selenium/bidi/browsingcontext:BrowsingContextInspectorTest-edge; 485s ... (50 actions, 16 running)
    5500:  (06:05:06) �[32m[15,379 / 15,615]�[0m 1941 / 2177 tests, �[31m�[1m2 failed�[0m;�[0m [Sched] Testing //java/test/org/openqa/selenium/bidi/log:LogInspectorTest-chrome-remote; 491s ... (50 actions, 17 running)
    5501:  (06:05:14) �[32m[15,379 / 15,615]�[0m 1941 / 2177 tests, �[31m�[1m2 failed�[0m;�[0m [Sched] Testing //java/test/org/openqa/selenium/firefox:RemoteFirefoxDriverTest-remote; 469s ... (50 actions, 18 running)
    5502:  (06:05:20) �[31m�[1mFAIL: �[0m//java/test/org/openqa/selenium/bidi/input:DefaultWheelTest-chrome-remote (see /home/runner/.bazel/execroot/_main/bazel-out/k8-fastbuild/testlogs/java/test/org/openqa/selenium/bidi/input/DefaultWheelTest-chrome-remote/test_attempts/attempt_1.log)
    5503:  (06:05:20) �[32m[15,380 / 15,615]�[0m 1942 / 2177 tests, �[31m�[1m2 failed�[0m;�[0m [Sched] Testing //java/test/org/openqa/selenium/firefox:RemoteFirefoxDriverTest-remote; 475s ... (50 actions, 17 running)
    5504:  (06:05:25) �[32m[15,381 / 15,615]�[0m 1944 / 2177 tests, �[31m�[1m2 failed�[0m;�[0m Testing //rb/spec/integration/selenium/webdriver:select-firefox-remote; 480s remote, remote-cache ... (50 actions, 17 running)
    5505:  (06:05:26) �[31m�[1mFAIL: �[0m//java/test/org/openqa/selenium/bidi/input:DefaultMouseTest-remote (see /home/runner/.bazel/execroot/_main/bazel-out/k8-fastbuild/testlogs/java/test/org/openqa/selenium/bidi/input/DefaultMouseTest-remote/test.log)
    5506:  �[31m�[1mFAILED: �[0m//java/test/org/openqa/selenium/bidi/input:DefaultMouseTest-remote (Summary)
    ...
    
    7188:  Jan 13, 2025 6:05:25 AM org.openqa.selenium.grid.node.local.SessionSlot stop
    7189:  INFO: Stopping session 944f0bf5-aef6-4250-a5d6-b5e11c4a0b09
    7190:  Jan 13, 2025 6:05:25 AM org.openqa.selenium.grid.distributor.GridModel setAvailability
    7191:  INFO: Switching Node 27ae3a7e-c234-45d5-9733-53975adbb9e8 (uri: http://127.0.0.1:16453) from UP to DRAINING
    7192:  Jan 13, 2025 6:05:25 AM org.openqa.selenium.grid.node.local.LocalNode drain
    7193:  INFO: Firing node drain complete message
    7194:  Execution result: https://gypsum.cluster.engflow.com/actions/executions/ChCgHfMQ0UNCiqLjEC0JFA-PEgdkZWZhdWx0GiUKIGQ4R9t3e7A9eOwkgfF5lQ4h2H0ysHc5xUciHCxDpRYjEJ8D
    7195:  ================================================================================
    7196:  (06:05:31) �[32m[15,384 / 15,615]�[0m 1946 / 2177 tests, �[31m�[1m3 failed�[0m;�[0m Testing //rb/spec/integration/selenium/webdriver:select-firefox-remote; 485s remote, remote-cache ... (50 actions, 15 running)
    7197:  (06:05:36) �[32m[15,384 / 15,615]�[0m 1947 / 2177 tests, �[31m�[1m3 failed�[0m;�[0m Testing //rb/spec/integration/selenium/webdriver:select-firefox-remote; 491s remote, remote-cache ... (50 actions, 16 running)
    7198:  (06:05:41) �[32m[15,385 / 15,615]�[0m 1948 / 2177 tests, �[31m�[1m3 failed�[0m;�[0m Testing //rb/spec/integration/selenium/webdriver:select-firefox-remote; 496s remote, remote-cache ... (50 actions, 16 running)
    7199:  (06:05:47) �[32m[15,388 / 15,615]�[0m 1950 / 2177 tests, �[31m�[1m3 failed�[0m;�[0m Testing //rb/spec/integration/selenium/webdriver:select-firefox-remote; 502s remote, remote-cache ... (50 actions, 18 running)
    7200:  (06:05:52) �[32m[15,389 / 15,615]�[0m 1951 / 2177 tests, �[31m�[1m3 failed�[0m;�[0m Testing //rb/spec/integration/selenium/webdriver:select-firefox-remote; 507s remote, remote-cache ... (50 actions, 18 running)
    7201:  (06:06:01) �[32m[15,389 / 15,615]�[0m 1951 / 2177 tests, �[31m�[1m3 failed�[0m;�[0m Testing //rb/spec/integration/selenium/webdriver:select-firefox-remote; 515s remote, remote-cache ... (50 actions, 20 running)
    7202:  (06:06:06) �[32m[15,392 / 15,615]�[0m 1954 / 2177 tests, �[31m�[1m3 failed�[0m;�[0m Testing //rb/spec/integration/selenium/webdriver:driver-firefox-beta-remote; 442s remote, remote-cache ... (50 actions, 19 running)
    7203:  (06:06:12) �[32m[15,392 / 15,615]�[0m 1955 / 2177 tests, �[31m�[1m3 failed�[0m;�[0m Testing //rb/spec/integration/selenium/webdriver:driver-firefox-beta-remote; 448s remote, remote-cache ... (50 actions, 19 running)
    7204:  (06:06:18) �[32m[15,395 / 15,615]�[0m 1957 / 2177 tests, �[31m�[1m3 failed�[0m;�[0m Testing //rb/spec/integration/selenium/webdriver:driver-firefox-beta-remote; 454s remote, remote-cache ... (50 actions, 21 running)
    7205:  (06:06:20) �[31m�[1mFAIL: �[0m//java/test/org/openqa/selenium/bidi/script:ScriptCommandsTest-edge-remote (see /home/runner/.bazel/execroot/_main/bazel-out/k8-fastbuild/testlogs/java/test/org/openqa/selenium/bidi/script/ScriptCommandsTest-edge-remote/test_attempts/attempt_1.log)
    7206:  (06:06:26) �[32m[15,396 / 15,615]�[0m 1958 / 2177 tests, �[31m�[1m3 failed�[0m;�[0m Testing //rb/spec/integration/selenium/webdriver:driver-firefox-beta-remote; 462s remote, remote-cache ... (50 actions, 21 running)
    7207:  (06:06:31) �[32m[15,396 / 15,615]�[0m 1958 / 2177 tests, �[31m�[1m3 failed�[0m;�[0m Testing //rb/spec/integration/selenium/webdriver:driver-firefox-beta-remote; 467s remote, remote-cache ... (50 actions, 21 running)
    7208:  (06:06:40) �[32m[15,396 / 15,615]�[0m 1958 / 2177 tests, �[31m�[1m3 failed�[0m;�[0m Testing //rb/spec/integration/selenium/webdriver:driver-firefox-beta-remote; 476s remote, remote-cache ... (50 actions, 22 running)
    7209:  (06:06:46) �[32m[15,397 / 15,615]�[0m 1959 / 2177 tests, �[31m�[1m3 failed�[0m;�[0m Testing //rb/spec/integration/selenium/webdriver:driver-firefox-beta-remote; 482s remote, remote-cache ... (50 actions, 21 running)
    7210:  (06:06:51) �[32m[15,397 / 15,615]�[0m 1959 / 2177 tests, �[31m�[1m3 failed�[0m;�[0m Testing //rb/spec/integration/selenium/webdriver:driver-firefox-beta-remote; 488s remote, remote-cache ... (50 actions, 22 running)
    7211:  (06:06:56) �[31m�[1mFAIL: �[0m//java/test/org/openqa/selenium/bidi/script:ScriptCommandsTest-remote (see /home/runner/.bazel/execroot/_main/bazel-out/k8-fastbuild/testlogs/java/test/org/openqa/selenium/bidi/script/ScriptCommandsTest-remote/test_attempts/attempt_1.log)
    7212:  (06:07:01) �[32m[15,398 / 15,615]�[0m 1960 / 2177 tests, �[31m�[1m3 failed�[0m;�[0m Testing //rb/spec/integration/selenium/webdriver:driver-firefox-beta-remote; 497s remote, remote-cache ... (50 actions, 21 running)
    7213:  (06:07:06) �[32m[15,400 / 15,615]�[0m 1962 / 2177 tests, �[31m�[1m3 failed�[0m;�[0m Testing //rb/spec/integration/selenium/webdriver:driver-firefox-beta-remote; 502s remote, remote-cache ... (50 actions, 21 running)
    7214:  (06:07:14) �[32m[15,400 / 15,615]�[0m 1963 / 2177 tests, �[31m�[1m3 failed�[0m;�[0m Testing //rb/spec/integration/selenium/webdriver:driver-firefox-beta-remote; 511s remote, remote-cache ... (50 actions, 21 running)
    7215:  (06:07:21) �[32m[15,402 / 15,615]�[0m 1965 / 2177 tests, �[31m�[1m3 failed�[0m;�[0m Testing //rb/spec/integration/selenium/webdriver:driver-firefox-beta-remote; 517s remote, remote-cache ... (50 actions, 19 running)
    7216:  (06:07:26) �[32m[15,403 / 15,615]�[0m 1965 / 2177 tests, �[31m�[1m3 failed�[0m;�[0m Testing //rb/spec/integration/selenium/webdriver:driver-firefox-beta-remote; 522s remote, remote-cache ... (50 actions, 18 running)
    7217:  (06:07:32) �[32m[15,403 / 15,615]�[0m 1965 / 2177 tests, �[31m�[1m3 failed�[0m;�[0m Testing //rb/spec/integration/selenium/webdriver:driver-firefox-beta-remote; 529s remote, remote-cache ... (50 actions, 18 running)
    7218:  (06:07:43) �[32m[15,403 / 15,615]�[0m 1965 / 2177 tests, �[31m�[1m3 failed�[0m;�[0m Testing //rb/spec/integration/selenium/webdriver:driver-firefox-beta-remote; 539s remote, remote-cache ... (50 actions, 19 running)
    7219:  (06:07:51) �[32m[15,404 / 15,615]�[0m 1966 / 2177 tests, �[31m�[1m3 failed�[0m;�[0m Testing //rb/spec/integration/selenium/webdriver:driver-firefox-beta-remote; 547s remote, remote-cache ... (50 actions, 19 running)
    7220:  (06:07:56) �[32m[15,406 / 15,615]�[0m 1968 / 2177 tests, �[31m�[1m3 failed�[0m;�[0m Testing //rb/spec/integration/selenium/webdriver:driver-firefox-beta-remote; 553s remote, remote-cache ... (50 actions, 18 running)
    7221:  (06:07:56) �[31m�[1mFAIL: �[0m//java/te...

    @AB-xdev

    AB-xdev commented Jun 13, 2025

    Copy link
    Copy Markdown
    Contributor

    So I just also ran into this issue.
    What is the state here after ~15 months have passed?

    Selenium 5 doesn't seem to be on the horizon yet and the changes here are absolutely tiny.

    Is it possible to ship this anyway in a minor version?

    @diemol

    diemol commented Jun 13, 2025

    Copy link
    Copy Markdown
    Member

    At this point it is a matter of creating a blog post, showing people how to migrate, wait a couple of months tops, and then do it.

    The problem is that maintainers are having less and less time to do this minor things.

    @AB-xdev

    AB-xdev commented Jun 13, 2025

    Copy link
    Copy Markdown
    Contributor

    At this point it is a matter of creating a blog post, showing people how to migrate, wait a couple of months tops, and then do it.

    That sound a bit overkill to me, considering that java.util.function.Function is around since Java 8 (released 2014, out of support since 2022 - Selenium itself uses Java 11) and com.google.common.base.Function also extends from it with nearly 0 changes...

    Please note that I (and likely most other people or dependency update bots like dependabot or renovate) also don't read random blog posts that are not mentioned in release notes.

    If I had to do this change I would include a short "breaking changes"-section in the release notes, like this:

    ⚠Breaking changes

    • Java
      • selenium-support
        • Removed guava dependency
          • If you extended from ExpectedCondition you may have to migrate from com.google.common.base.Function to java.util.function.Function

    and I think that should be enough.

    The problem is that maintainers are having less and less time to do this minor things.

    Okay, if I can help somehow let me know.

    @diemol

    diemol commented Jun 13, 2025

    Copy link
    Copy Markdown
    Member

    I agree. But from experience, we have learned that we need to show how users can migrate in detail. A breaking change needs to be announced because people don't expect their code to not compile after a version bump. We care about informing people in advance in those cases.

    @asolntsev asolntsev left a comment

    Copy link
    Copy Markdown
    Contributor

    Choose a reason for hiding this comment

    The reason will be displayed to describe this comment to others. Learn more.

    LGTM

    @joerg1985 joerg1985 force-pushed the removed-guava-from-the-client branch from 3fb20c2 to 78b7153 Compare December 4, 2025 19:25
    @qodo-code-review

    Copy link
    Copy Markdown
    Contributor

    CI Feedback 🧐

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

    Action: Ruby / Local Tests (chrome, macos) / Local Tests (chrome, macos)

    Failed stage: Run Bazel [❌]

    Failed test name: Selenium::WebDriver::Element raises if different element receives click

    Failure summary:

    The action failed because one integration test consistently failed:
    - Test target
    //rb/spec/integration/selenium/webdriver:element-chrome failed in 3 out of 3 attempts.
    - Specific
    failing example: Selenium::WebDriver::Element raises if different element receives click (rspec at
    ./rb/spec/integration/selenium/webdriver/element_spec.rb:32).
    - Expected error:
    Selenium::WebDriver::Error::ElementClickInterceptedError, but got
    Selenium::WebDriver::Error::NoSuchElementError when executing driver.find_element(id:
    contents).click.
    - Stack trace points to element lookup and click flow:
    -
    ./rb/lib/selenium/webdriver/remote/bridge.rb:493:in find_element_by'
    -
    ./rb/lib/selenium/webdriver/common/search_context.rb:71:in find_element'
    -
    ./rb/spec/integration/selenium/webdriver/element_spec.rb:34
    - Another test
    //rb/spec/integration/selenium/webdriver:navigation-chrome was flaky but eventually passed; the
    overall build failed due to the persistent failure above.
    - Final outcome: "Build completed, 1 test
    FAILED" and process exited with code 3.

    Relevant error logs:
    1:  ##[group]Runner Image Provisioner
    2:  Hosted Compute Agent
    ...
    
    338:  ]
    339:  }
    340:  }
    341:  ##[endgroup]
    342:  ##[group]Restore cache for bazelisk
    343:  Cache hit for: setup-bazel-2-darwin-bazelisk-f5f884b6af011b7b5194329ff462343da417842d8de319f232cfbf477f444994
    344:  Received 4194304 of 104094956 (4.0%), 4.0 MBs/sec
    345:  Received 88080384 of 104094956 (84.6%), 41.9 MBs/sec
    346:  Received 104094956 of 104094956 (100.0%), 43.9 MBs/sec
    347:  Cache Size: ~99 MB (104094956 B)
    348:  [command]/opt/homebrew/bin/gtar -xf /Users/runner/work/_temp/a42e3db2-ea21-423e-9dd5-b45b1ac73827/cache.tzst -P -C /Users/runner/work/selenium/selenium --delay-directory-restore --use-compress-program unzstd
    349:  Cache restored successfully
    350:  Successfully restored cache from setup-bazel-2-darwin-bazelisk-f5f884b6af011b7b5194329ff462343da417842d8de319f232cfbf477f444994
    351:  ##[endgroup]
    352:  ##[group]Restore cache for disk-rb-chrome-macos-test
    353:  Failed to restore disk-rb-chrome-macos-test cache
    354:  ##[endgroup]
    ...
    
    359:  Received 159383552 of 663919776 (24.0%), 50.6 MBs/sec
    360:  Received 234881024 of 663919776 (35.4%), 55.9 MBs/sec
    361:  Received 297795584 of 663919776 (44.9%), 56.7 MBs/sec
    362:  Received 385875968 of 663919776 (58.1%), 61.2 MBs/sec
    363:  Received 440401920 of 663919776 (66.3%), 59.9 MBs/sec
    364:  Received 515899392 of 663919776 (77.7%), 61.4 MBs/sec
    365:  Received 578813952 of 663919776 (87.2%), 61.2 MBs/sec
    366:  Received 659725472 of 663919776 (99.4%), 62.8 MBs/sec
    367:  Received 663919776 of 663919776 (100.0%), 62.9 MBs/sec
    368:  Cache Size: ~633 MB (663919776 B)
    369:  [command]/opt/homebrew/bin/gtar -xf /Users/runner/work/_temp/da1b5920-0712-47ea-92a0-e154922bf9a4/cache.tzst -P -C /Users/runner/work/selenium/selenium --delay-directory-restore --use-compress-program unzstd
    370:  Cache restored successfully
    371:  Successfully restored cache from setup-bazel-2-darwin-repository-4278331a99727ad58bf4d6402a14e7492dabf30c30bc3d96fc11d72028fb097c
    372:  ##[endgroup]
    373:  ##[group]Restore cache for external-rb-chrome-macos-test-manifest
    374:  Failed to restore external-rb-chrome-macos-test-manifest cache
    375:  ##[endgroup]
    ...
    
    735:  �[32m[1,288 / 1,309]�[0m 2 / 28 tests;�[0m Testing //rb/spec/integration/selenium/webdriver:navigation-chrome; 197s local, disk-cache ... (3 actions, 1 running)
    736:  �[32m[1,288 / 1,309]�[0m 2 / 28 tests;�[0m Testing //rb/spec/integration/selenium/webdriver:navigation-chrome; 208s local, disk-cache ... (3 actions, 2 running)
    737:  �[35mFLAKY: �[0m//rb/spec/integration/selenium/webdriver:navigation-chrome (Summary)
    738:  ==================== Test output for //rb/spec/integration/selenium/webdriver:navigation-chrome:
    739:  /Users/runner/.bazel/execroot/_main/bazel-out/darwin_arm64-fastbuild/testlogs/rb/spec/integration/selenium/webdriver/navigation-chrome/test_attempts/attempt_1.log
    740:  �[32mINFO: �[0mFrom Testing //rb/spec/integration/selenium/webdriver:navigation-chrome:
    741:  Running Ruby specs:
    742:  browser: chrome
    743:  driver: chrome
    744:  version: stable
    745:  platform: macosx
    746:  ci: github
    747:  rbe: false
    748:  ruby: ruby 3.2.8 (2025-03-26 revision 13f495dc2c) [arm64-darwin24]
    749:  Selenium::WebDriver::Navigation
    750:  navigates back and forward (FAILED - 1)
    751:  refreshes the page
    752:  Failures:
    753:  1) Selenium::WebDriver::Navigation navigates back and forward
    754:  Failure/Error: driver.navigate.to form_url
    755:  Net::ReadTimeout:
    ...
    
    759:  # ./rb/lib/selenium/webdriver/remote/http/common.rb:68:in `call'
    760:  # ./rb/lib/selenium/webdriver/remote/bridge.rb:625:in `execute'
    761:  # ./rb/lib/selenium/webdriver/remote/bridge.rb:76:in `create_session'
    762:  # ./rb/lib/selenium/webdriver/common/driver.rb:325:in `block in create_bridge'
    763:  # ./rb/lib/selenium/webdriver/common/driver.rb:324:in `create_bridge'
    764:  # ./rb/lib/selenium/webdriver/common/driver.rb:73:in `initialize'
    765:  # ./rb/lib/selenium/webdriver/chrome/driver.rb:35:in `initialize'
    766:  # ./rb/lib/selenium/webdriver/common/driver.rb:47:in `new'
    767:  # ./rb/lib/selenium/webdriver/common/driver.rb:47:in `for'
    768:  # /Users/runner/work/selenium/selenium/rb/spec/integration/selenium/webdriver/spec_support/test_environment.rb:243:in `chrome_driver'
    769:  # /Users/runner/work/selenium/selenium/rb/spec/integration/selenium/webdriver/spec_support/test_environment.rb:176:in `create_driver!'
    770:  # /Users/runner/work/selenium/selenium/rb/spec/integration/selenium/webdriver/spec_support/test_environment.rb:65:in `driver_instance'
    771:  # /Users/runner/work/selenium/selenium/rb/spec/integration/selenium/webdriver/spec_support/helpers.rb:25:in `driver'
    772:  # ./rb/spec/integration/selenium/webdriver/navigation_spec.rb:30:in `block (2 levels) in <module:WebDriver>'
    773:  Finished in 1 minute 35.03 seconds (files took 0.32828 seconds to load)
    774:  2 examples, 1 failure
    775:  Failed examples:
    776:  rspec ./rb/spec/integration/selenium/webdriver/navigation_spec.rb:24 # Selenium::WebDriver::Navigation navigates back and forward
    777:  ================================================================================
    778:  �[32m[1,289 / 1,309]�[0m 3 / 28 tests;�[0m [Sched] Testing //rb/spec/integration/selenium/webdriver:fedcm-chrome; 11s ... (3 actions, 1 running)
    779:  �[32m[1,289 / 1,309]�[0m 3 / 28 tests;�[0m Testing //rb/spec/integration/selenium/webdriver:manager-chrome; 10s local, disk-cache ... (3 actions, 2 running)
    780:  �[32m[1,290 / 1,309]�[0m 4 / 28 tests;�[0m [Sched] Testing //rb/spec/integration/selenium/webdriver:window-chrome; 10s ... (3 actions, 1 running)
    781:  �[32m[1,290 / 1,309]�[0m 4 / 28 tests;�[0m [Sched] Testing //rb/spec/integration/selenium/webdriver:window-chrome; 22s ... (3 actions, 1 running)
    782:  �[32m[1,290 / 1,309]�[0m 4 / 28 tests;�[0m [Sched] Testing //rb/spec/integration/selenium/webdriver:window-chrome; 55s ... (3 actions, 1 running)
    783:  �[32m[1,290 / 1,309]�[0m 4 / 28 tests;�[0m Testing //rb/spec/integration/selenium/webdriver:fedcm-chrome; 92s local, disk-cache ... (3 actions, 2 running)
    784:  �[32m[1,291 / 1,309]�[0m 5 / 28 tests;�[0m [Sched] Testing //rb/spec/integration/selenium/webdriver:error-chrome; 93s ... (3 actions, 1 running)
    785:  �[32m[1,291 / 1,309]�[0m 5 / 28 tests;�[0m [Sched] Testing //rb/spec/integration/selenium/webdriver:error-chrome; 104s ... (3 actions, 1 running)
    786:  �[32m[1,291 / 1,309]�[0m 5 / 28 tests;�[0m Testing //rb/spec/integration/selenium/webdriver:window-chrome; 15s local, disk-cache ... (3 actions, 2 running)
    787:  �[32m[1,292 / 1,309]�[0m 6 / 28 tests;�[0m [Sched] Testing //rb/spec/integration/selenium/webdriver/chrome:options-chrome; 16s ... (3 actions, 1 running)
    788:  �[32m[1,292 / 1,309]�[0m 6 / 28 tests;�[0m [Sched] Testing //rb/spec/integration/selenium/webdriver/chrome:options-chrome; 27s ... (3 actions, 1 running)
    789:  �[32m[1,292 / 1,309]�[0m 6 / 28 tests;�[0m Testing //rb/spec/integration/selenium/webdriver:error-chrome; 15s local, disk-cache ... (3 actions, 2 running)
    790:  �[32m[1,293 / 1,309]�[0m 7 / 28 tests;�[0m [Sched] Testing //rb/spec/integration/selenium/webdriver/chrome:profile-chrome; 17s ... (3 actions, 1 running)
    ...
    
    809:  �[32m[1,300 / 1,309]�[0m 14 / 28 tests;�[0m Testing //rb/spec/integration/selenium/webdriver:element-chrome; 37s local, disk-cache ... (3 actions running)
    810:  �[32m[1,301 / 1,309]�[0m 15 / 28 tests;�[0m Testing //rb/spec/integration/selenium/webdriver:element-chrome; 39s local, disk-cache ... (3 actions, 2 running)
    811:  �[32m[1,301 / 1,309]�[0m 15 / 28 tests;�[0m Testing //rb/spec/integration/selenium/webdriver:element-chrome; 50s local, disk-cache ... (3 actions, 2 running)
    812:  �[32m[1,301 / 1,309]�[0m 15 / 28 tests;�[0m Testing //rb/spec/integration/selenium/webdriver:element-chrome; 68s local, disk-cache ... (3 actions, 2 running)
    813:  �[32m[1,302 / 1,309]�[0m 16 / 28 tests;�[0m Testing //rb/spec/integration/selenium/webdriver:element-chrome; 69s local, disk-cache ... (3 actions, 1 running)
    814:  �[32m[1,302 / 1,309]�[0m 16 / 28 tests;�[0m Testing //rb/spec/integration/selenium/webdriver:element-chrome; 80s local, disk-cache ... (3 actions, 1 running)
    815:  �[32m[1,302 / 1,309]�[0m 16 / 28 tests;�[0m Testing //rb/spec/integration/selenium/webdriver:element-chrome; 98s local, disk-cache ... (3 actions, 2 running)
    816:  �[31m�[1mFAIL: �[0m//rb/spec/integration/selenium/webdriver:element-chrome (see /Users/runner/.bazel/execroot/_main/bazel-out/darwin_arm64-fastbuild/testlogs/rb/spec/integration/selenium/webdriver/element-chrome/test_attempts/attempt_2.log)
    817:  �[32m[1,302 / 1,309]�[0m 16 / 28 tests;�[0m Testing //rb/spec/integration/selenium/webdriver:element-chrome; 99s local, disk-cache ... (3 actions, 2 running)
    818:  �[32m[1,302 / 1,309]�[0m 16 / 28 tests;�[0m Testing //rb/spec/integration/selenium/webdriver:element-chrome; 105s local, disk-cache ... (3 actions running)
    819:  �[32m[1,304 / 1,309]�[0m 18 / 28 tests;�[0m Testing //rb/spec/integration/selenium/webdriver:element-chrome; 106s local, disk-cache ... (3 actions, 1 running)
    820:  �[32m[1,304 / 1,309]�[0m 18 / 28 tests;�[0m Testing //rb/spec/integration/selenium/webdriver:element-chrome; 117s local, disk-cache ... (3 actions, 1 running)
    821:  �[32m[1,304 / 1,309]�[0m 18 / 28 tests;�[0m Testing //rb/spec/integration/selenium/webdriver:element-chrome; 135s local, disk-cache ... (3 actions, 2 running)
    822:  �[31m�[1mFAIL: �[0m//rb/spec/integration/selenium/webdriver:element-chrome (see /Users/runner/.bazel/execroot/_main/bazel-out/darwin_arm64-fastbuild/testlogs/rb/spec/integration/selenium/webdriver/element-chrome/test.log)
    823:  ==================== Test output for //rb/spec/integration/selenium/webdriver:element-chrome:
    824:  �[31m�[1mFAILED: �[0m//rb/spec/integration/selenium/webdriver:element-chrome (Summary)
    825:  /Users/runner/.bazel/execroot/_main/bazel-out/darwin_arm64-fastbuild/testlogs/rb/spec/integration/selenium/webdriver/element-chrome/test.log
    826:  Running Ruby specs:
    827:  /Users/runner/.bazel/execroot/_main/bazel-out/darwin_arm64-fastbuild/testlogs/rb/spec/integration/selenium/webdriver/element-chrome/test_attempts/attempt_1.log
    828:  /Users/runner/.bazel/execroot/_main/bazel-out/darwin_arm64-fastbuild/testlogs/rb/spec/integration/selenium/webdriver/element-chrome/test_attempts/attempt_2.log
    829:  browser: chrome
    830:  �[32mINFO: �[0mFrom Testing //rb/spec/integration/selenium/webdriver:element-chrome:
    831:  driver: chrome
    832:  version: stable
    833:  platform: macosx
    834:  ci: github
    835:  rbe: false
    836:  ruby: ruby 3.2.8 (2025-03-26 revision 13f495dc2c) [arm64-darwin24]
    837:  Selenium::WebDriver::Element
    838:  clicks
    839:  raises if different element receives click (FAILED - 1)
    840:  raises if element is partially covered
    ...
    
    852:  gets text
    853:  gets displayed
    854:  drags and drop
    855:  gets css property
    856:  knows when two elements are equal
    857:  knows when element arrays are equal
    858:  knows when two elements are not equal
    859:  returns the same #hash for equal elements when found by Driver#find_element
    860:  returns the same #hash for equal elements when found by Driver#find_elements
    861:  #submit
    862:  valid submit button
    863:  any input element in form
    864:  any element in form
    865:  button with id submit
    866:  button with name submit
    867:  errors with button outside form
    868:  properties and attributes
    ...
    
    925:  property attribute name difference with property naming
    926:  #dom_attribute returns nil
    927:  #property returns property value
    928:  #attribute returns property value
    929:  property attribute value difference
    930:  #dom_attribute returns attribute value
    931:  #property returns property value
    932:  #attribute returns property value
    933:  size and location
    934:  gets current location
    935:  gets location once scrolled into view
    936:  gets size
    937:  gets rect
    938:  Failures:
    939:  1) Selenium::WebDriver::Element raises if different element receives click
    940:  Failure/Error: expect { driver.find_element(id: 'contents').click }.to raise_error(Error::ElementClickInterceptedError)
    941:  expected Selenium::WebDriver::Error::ElementClickInterceptedError, got #<Selenium::WebDriver::Error::NoSuchElementError:"no such element: Unable to locate element: {\"metho...it: https://www.selenium.dev/documentation/webdriver/troubleshooting/errors#nosuchelementexception"> with backtrace:
    942:  # ./rb/lib/selenium/webdriver/remote/response.rb:63:in `add_cause'
    943:  # ./rb/lib/selenium/webdriver/remote/response.rb:41:in `error'
    944:  # ./rb/lib/selenium/webdriver/remote/response.rb:52:in `assert_ok'
    945:  # ./rb/lib/selenium/webdriver/remote/response.rb:34:in `initialize'
    946:  # ./rb/lib/selenium/webdriver/remote/http/common.rb:103:in `new'
    947:  # ./rb/lib/selenium/webdriver/remote/http/common.rb:103:in `create_response'
    948:  # ./rb/lib/selenium/webdriver/remote/http/default.rb:103:in `request'
    949:  # ./rb/lib/selenium/webdriver/remote/http/common.rb:68:in `call'
    950:  # ./rb/lib/selenium/webdriver/remote/bridge.rb:625:in `execute'
    951:  # ./rb/lib/selenium/webdriver/remote/bridge.rb:493:in `find_element_by'
    952:  # ./rb/lib/selenium/webdriver/common/search_context.rb:71:in `find_element'
    953:  # ./rb/spec/integration/selenium/webdriver/element_spec.rb:34:in `block (3 levels) in <module:WebDriver>'
    954:  # ./rb/spec/integration/selenium/webdriver/element_spec.rb:34:in `block (2 levels) in <module:WebDriver>'
    955:  # ./rb/spec/integration/selenium/webdriver/element_spec.rb:34:in `block (2 levels) in <module:WebDriver>'
    956:  Finished in 30.48 seconds (files took 0.16395 seconds to load)
    957:  83 examples, 1 failure
    958:  Failed examples:
    959:  rspec ./rb/spec/integration/selenium/webdriver/element_spec.rb:32 # Selenium::WebDriver::Element raises if different element receives click
    960:  ================================================================================
    961:  ==================== Test output for //rb/spec/integration/selenium/webdriver:element-chrome:
    962:  Running Ruby specs:
    963:  browser: chrome
    964:  driver: chrome
    965:  version: stable
    966:  platform: macosx
    967:  ci: github
    968:  rbe: false
    969:  ruby: ruby 3.2.8 (2025-03-26 revision 13f495dc2c) [arm64-darwin24]
    970:  Selenium::WebDriver::Element
    971:  clicks
    972:  raises if different element receives click (FAILED - 1)
    973:  raises if element is partially covered
    ...
    
    985:  gets text
    986:  gets displayed
    987:  drags and drop
    988:  gets css property
    989:  knows when two elements are equal
    990:  knows when element arrays are equal
    991:  knows when two elements are not equal
    992:  returns the same #hash for equal elements when found by Driver#find_element
    993:  returns the same #hash for equal elements when found by Driver#find_elements
    994:  #submit
    995:  valid submit button
    996:  any input element in form
    997:  any element in form
    998:  button with id submit
    999:  button with name submit
    1000:  errors with button outside form
    1001:  properties and attributes
    ...
    
    1058:  property attribute name difference with property naming
    1059:  #dom_attribute returns nil
    1060:  #property returns property value
    1061:  #attribute returns property value
    1062:  property attribute value difference
    1063:  #dom_attribute returns attribute value
    1064:  #property returns property value
    1065:  #attribute returns property value
    1066:  size and location
    1067:  gets current location
    1068:  gets location once scrolled into view
    1069:  gets size
    1070:  gets rect
    1071:  Failures:
    1072:  1) Selenium::WebDriver::Element raises if different element receives click
    1073:  Failure/Error: expect { driver.find_element(id: 'contents').click }.to raise_error(Error::ElementClickInterceptedError)
    1074:  expected Selenium::WebDriver::Error::ElementClickInterceptedError, got #<Selenium::WebDriver::Error::NoSuchElementError:"no such element: Unable to locate element: {\"metho...it: https://www.selenium.dev/documentation/webdriver/troubleshooting/errors#nosuchelementexception"> with backtrace:
    1075:  # ./rb/lib/selenium/webdriver/remote/response.rb:63:in `add_cause'
    1076:  # ./rb/lib/selenium/webdriver/remote/response.rb:41:in `error'
    1077:  # ./rb/lib/selenium/webdriver/remote/response.rb:52:in `assert_ok'
    1078:  # ./rb/lib/selenium/webdriver/remote/response.rb:34:in `initialize'
    1079:  # ./rb/lib/selenium/webdriver/remote/http/common.rb:103:in `new'
    1080:  # ./rb/lib/selenium/webdriver/remote/http/common.rb:103:in `create_response'
    1081:  # ./rb/lib/selenium/webdriver/remote/http/default.rb:103:in `request'
    1082:  # ./rb/lib/selenium/webdriver/remote/http/common.rb:68:in `call'
    1083:  # ./rb/lib/selenium/webdriver/remote/bridge.rb:625:in `execute'
    1084:  # ./rb/lib/selenium/webdriver/remote/bridge.rb:493:in `find_element_by'
    1085:  # ./rb/lib/selenium/webdriver/common/search_context.rb:71:in `find_element'
    1086:  # ./rb/spec/integration/selenium/webdriver/element_spec.rb:34:in `block (3 levels) in <module:WebDriver>'
    1087:  # ./rb/spec/integration/selenium/webdriver/element_spec.rb:34:in `block (2 levels) in <module:WebDriver>'
    1088:  # ./rb/spec/integration/selenium/webdriver/element_spec.rb:34:in `block (2 levels) in <module:WebDriver>'
    1089:  Finished in 28.78 seconds (files took 0.30306 seconds to load)
    1090:  83 examples, 1 failure
    1091:  Failed examples:
    1092:  rspec ./rb/spec/integration/selenium/webdriver/element_spec.rb:32 # Selenium::WebDriver::Element raises if different element receives click
    1093:  ================================================================================
    1094:  ==================== Test output for //rb/spec/integration/selenium/webdriver:element-chrome:
    1095:  Running Ruby specs:
    1096:  browser: chrome
    1097:  driver: chrome
    1098:  version: stable
    1099:  platform: macosx
    1100:  ci: github
    1101:  rbe: false
    1102:  ruby: ruby 3.2.8 (2025-03-26 revision 13f495dc2c) [arm64-darwin24]
    1103:  Selenium::WebDriver::Element
    1104:  clicks
    1105:  raises if different element receives click (FAILED - 1)
    1106:  raises if element is partially covered
    ...
    
    1118:  gets text
    1119:  gets displayed
    1120:  drags and drop
    1121:  gets css property
    1122:  knows when two elements are equal
    1123:  knows when element arrays are equal
    1124:  knows when two elements are not equal
    1125:  returns the same #hash for equal elements when found by Driver#find_element
    1126:  returns the same #hash for equal elements when found by Driver#find_elements
    1127:  #submit
    1128:  valid submit button
    1129:  any input element in form
    1130:  any element in form
    1131:  button with id submit
    1132:  button with name submit
    1133:  errors with button outside form
    1134:  properties and attributes
    ...
    
    1191:  property attribute name difference with property naming
    1192:  #dom_attribute returns nil
    1193:  #property returns property value
    1194:  #attribute returns property value
    1195:  property attribute value difference
    1196:  #dom_attribute returns attribute value
    1197:  #property returns property value
    1198:  #attribute returns property value
    1199:  size and location
    1200:  gets current location
    1201:  gets location once scrolled into view
    1202:  gets size
    1203:  gets rect
    1204:  Failures:
    1205:  1) Selenium::WebDriver::Element raises if different element receives click
    1206:  Failure/Error: expect { driver.find_element(id: 'contents').click }.to raise_error(Error::ElementClickInterceptedError)
    1207:  expected Selenium::WebDriver::Error::ElementClickInterceptedError, got #<Selenium::WebDriver::Error::NoSuchElementError:"no such element: Unable to locate element: {\"metho...it: https://www.selenium.dev/documentation/webdriver/troubleshooting/errors#nosuchelementexception"> with backtrace:
    1208:  # ./rb/lib/selenium/webdriver/remote/response.rb:63:in `add_cause'
    1209:  # ./rb/lib/selenium/webdriver/remote/response.rb:41:in `error'
    1210:  # ./rb/lib/selenium/webdriver/remote/response.rb:52:in `assert_ok'
    1211:  # ./rb/lib/selenium/webdriver/remote/response.rb:34:in `initialize'
    1212:  # ./rb/lib/selenium/webdriver/remote/http/common.rb:103:in `new'
    1213:  # ./rb/lib/selenium/webdriver/remote/http/common.rb:103:in `create_response'
    1214:  # ./rb/lib/selenium/webdriver/remote/http/default.rb:103:in `request'
    1215:  # ./rb/lib/selenium/webdriver/remote/http/common.rb:68:in `call'
    1216:  # ./rb/lib/selenium/webdriver/remote/bridge.rb:625:in `execute'
    1217:  # ./rb/lib/selenium/webdriver/remote/bridge.rb:493:in `find_element_by'
    1218:  # ./rb/lib/selenium/webdriver/common/search_context.rb:71:in `find_element'
    1219:  # ./rb/spec/integration/selenium/webdriver/element_spec.rb:34:in `block (3 levels) in <module:WebDriver>'
    1220:  # ./rb/spec/integration/selenium/webdriver/element_spec.rb:34:in `block (2 levels) in <module:WebDriver>'
    1221:  # ./rb/spec/integration/selenium/webdriver/element_spec.rb:34:in `block (2 levels) in <module:WebDriver>'
    1222:  Finished in 28.37 seconds (files took 0.19827 seconds to load)
    1223:  83 examples, 1 failure
    1224:  Failed examples:
    1225:  rspec ./rb/spec/integration/selenium/webdriver/element_spec.rb:32 # Selenium::WebDriver::Element raises if different element receives click
    1226:  ================================================================================
    1227:  �[32m[1,305 / 1,309]�[0m 19 / 28 tests, �[31m�[1m1 failed�[0m;�[0m [Sched] Testing //rb/spec/integration/selenium/webdriver:virtual_authenticator-chrome; 30s ... (3 actions, 1 running)
    1228:  �[32m[1,305 / 1,309]�[0m 19 / 28 tests, �[31m�[1m1 failed�[0m;�[0m [Sched] Testing //rb/spec/integration/selenium/webdriver:virtual_authenticator-chrome; 41s ... (3 actions, 1 running)
    1229:  �[32m[1,305 / 1,309]�[0m 19 / 28 tests, �[31m�[1m1 failed�[0m;�[0m Testing //rb/spec/integration/selenium/webdriver:driver-chrome; 42s local, disk-cache ... (3 actions, 2 running)
    1230:  �[32m[1,306 / 1,309]�[0m 20 / 28 tests, �[31m�[1m1 failed�[0m;�[0m [Sched] Testing //rb/spec/integration/selenium/webdriver/chrome:service-chrome; 44s ... (3 actions, 1 running)
    1231:  �[32m[1,306 / 1,309]�[0m 20 / 28 tests, �[31m�[1m1 failed�[0m;�[0m Testing //rb/spec/integration/selenium/webdriver:virtual_authenticator-chrome; 9s local, disk-cache ... (3 actions, 2 running)
    1232:  �[32m[1,307 / 1,309]�[0m 21 / 28 tests, �[31m�[1m1 failed�[0m;�[0m [Sched] Testing //rb/spec/integration/selenium/webdriver:select-chrome; 10s ... (2 actions, 1 running)
    1233:  �[32m[1,308 / 1,309]�[0m 22 / 28 tests, �[31m�[1m1 failed�[0m;�[0m Testing //rb/spec/integration/selenium/webdriver:select-chrome; 0s local, disk-cache
    1234:  �[32m[1,308 / 1,309]�[0m 22 / 28 tests, �[31m�[1m1 failed�[0m;�[0m Testing //rb/spec/integration/selenium/webdriver:select-chrome; 12s local, disk-cache
    1235:  �[32m[1,308 / 1,309]�[0m 22 / 28 tests, �[31m�[1m1 failed�[0m;�[0m Testing //rb/spec/integration/selenium/webdriver:select-chrome; 17s local, disk-cache
    1236:  �[32m[1,309 / 1,310]�[0m 23 / 28 tests, �[31m�[1m1 failed�[0m;�[0m Testing //rb/spec/integration/selenium/webdriver/bidi:browsing_context-chrome; 0s local, disk-cache
    1237:  �[32m[1,311 / 1,312]�[0m 25 / 28 tests, �[31m�[1m1 failed�[0m;�[0m Testing //rb/spec/integration/selenium/webdriver:devtools-chrome; 0s disk-cache
    1238:  �[32m[1,311 / 1,312]�[0m 25 / 28 tests, �[31m�[1m1 failed�[0m;�[0m Testing //rb/spec/integration/selenium/webdriver:devtools-chrome; 1s local, disk-cache
    1239:  �[32m[1,311 / 1,312]�[0m 25 / 28 tests, �[31m�[1m1 failed�[0m;�[0m Testing //rb/spec/integration/selenium/webdriver:devtools-chrome; 200s local, disk-cache
    1240:  �[32m[1,312 / 1,313]�[0m 26 / 28 tests, �[31m�[1m1 failed�[0m;�[0m Testing //rb/spec/integration/selenium/webdriver/bidi:browser-chrome; 0s local, disk-cache
    1241:  �[32m[1,313 / 1,314]�[0m 27 / 28 tests, �[31m�[1m1 failed�[0m;�[0m Testing //rb/spec/integration/selenium/webdriver/bidi:script-chrome; 0s local, disk-cache
    1242:  �[32mINFO: �[0mFound 28 test targets...
    1243:  �[32mINFO: �[0mElapsed time: 1272.273s, Critical Path: 266.24s
    1244:  �[32mINFO: �[0m1314 processes: 1 disk cache hit, 674 internal, 504 darwin-sandbox, 61 local, 74 worker.
    1245:  �[32mINFO: �[0mBuild completed, 1 test FAILED, 1314 total actions
    1246:  //rb/spec/integration/selenium/webdriver:action_builder-chrome           �[0m�[32mPASSED�[0m in 30.4s
    1247:  //rb/spec/integration/selenium/webdriver:bidi-chrome                     �[0m�[32mPASSED�[0m in 0.6s
    1248:  //rb/spec/integration/selenium/webdriver:devtools-chrome                 �[0m�[32mPASSED�[0m in 200.3s
    1249:  //rb/spec/integration/selenium/webdriver:driver-chrome                   �[0m�[32mPASSED�[0m in 42.8s
    1250:  //rb/spec/integration/selenium/webdriver:error-chrome                    �[0m�[32mPASSED�[0m in 15.8s
    1251:  //rb/spec/integration/selenium/webdriver:fedcm-chrome                    �[0m�[32mPASSED�[0m in 92.8s
    ...
    
    1258:  //rb/spec/integration/selenium/webdriver:takes_screenshot-chrome         �[0m�[32mPASSED�[0m in 11.0s
    1259:  //rb/spec/integration/selenium/webdriver:target_locator-chrome           �[0m�[32mPASSED�[0m in 25.8s
    1260:  //rb/spec/integration/selenium/webdriver:timeout-chrome                  �[0m�[32mPASSED�[0m in 18.3s
    1261:  //rb/spec/integration/selenium/webdriver:virtual_authenticator-chrome    �[0m�[32mPASSED�[0m in 9.9s
    1262:  //rb/spec/integration/selenium/webdriver:window-chrome                   �[0m�[32mPASSED�[0m in 15.9s
    1263:  //rb/spec/integration/selenium/webdriver/bidi:browser-chrome             �[0m�[32mPASSED�[0m in 0.7s
    1264:  //rb/spec/integration/selenium/webdriver/bidi:browsing_context-chrome    �[0m�[32mPASSED�[0m in 0.5s
    1265:  //rb/spec/integration/selenium/webdriver/bidi:network-chrome             �[0m�[32mPASSED�[0m in 0.5s
    1266:  //rb/spec/integration/selenium/webdriver/bidi:script-chrome              �[0m�[32mPASSED�[0m in 0.6s
    1267:  //rb/spec/integration/selenium/webdriver/chrome:driver-chrome            �[0m�[32mPASSED�[0m in 99.7s
    1268:  //rb/spec/integration/selenium/webdriver/chrome:options-chrome           �[0m�[32mPASSED�[0m in 20.8s
    1269:  //rb/spec/integration/selenium/webdriver/chrome:profile-chrome           �[0m�[32mPASSED�[0m in 0.6s
    1270:  //rb/spec/integration/selenium/webdriver/chrome:service-chrome           �[0m�[32mPASSED�[0m in 2.3s
    1271:  //rb/spec/integration/selenium/webdriver/remote:driver-chrome            �[0m�[32mPASSED�[0m in 0.7s
    1272:  //rb/spec/integration/selenium/webdriver/remote:element-chrome           �[0m�[32mPASSED�[0m in 7.2s
    1273:  //rb/spec/integration/selenium/webdriver:navigation-chrome                �[0m�[35mFLAKY�[0m, failed in 1 out of 2 in 96.4s
    1274:  Stats over 2 runs: max = 96.4s, min = 11.4s, avg = 53.9s, dev = 42.5s
    1275:  /Users/runner/.bazel/execroot/_main/bazel-out/darwin_arm64-fastbuild/testlogs/rb/spec/integration/selenium/webdriver/navigation-chrome/test_attempts/attempt_1.log
    1276:  //rb/spec/integration/selenium/webdriver:element-chrome                  �[0m�[31m�[1mFAILED�[0m in 3 out of 3 in 31.1s
    1277:  Stats over 3 runs: max = 31.1s, min = 29.3s, avg = 30.1s, dev = 0.7s
    1278:  /Users/runner/.bazel/execroot/_main/bazel-out/darwin_arm64-fastbuild/testlogs/rb/spec/integration/selenium/webdriver/element-chrome/test.log
    1279:  /Users/runner/.bazel/execroot/_main/bazel-out/darwin_arm64-fastbuild/testlogs/rb/spec/integration/selenium/webdriver/element-chrome/test_attempts/attempt_1.log
    1280:  /Users/runner/.bazel/execroot/_main/bazel-out/darwin_arm64-fastbuild/testlogs/rb/spec/integration/selenium/webdriver/element-chrome/test_attempts/attempt_2.log
    1281:  Executed 28 out of 28 tests: 27 tests pass and �[0m�[31m�[1m1 fails locally�[0m.
    1282:  There were tests whose specified size is too big. Use the --test_verbose_timeout_warnings command line option to see which ones these are.
    1283:  ##[error]Process completed with exit code 3.
    1284:  ##[group]Run actions/upload-artifact@v5
    ...
    
    1310:  SHA256 digest of uploaded artifact zip is 413c76e79d22af6c37c1ea9110d28fe6d734580eed984cb0afe8d6fda4508b41
    1311:  Finalizing artifact upload
    1312:  Artifact test-logs-macos-Local Tests (chrome, macos)-chrome.zip successfully finalized. Artifact ID 4785500434
    1313:  Artifact test-logs-macos-Local Tests (chrome, macos)-chrome has been successfully uploaded! Final size is 6946421 bytes. Artifact ID is 4785500434
    1314:  Artifact download URL: https://github.com/SeleniumHQ/selenium/actions/runs/19987626355/artifacts/4785500434
    1315:  Post job cleanup.
    1316:  ##[group]Save cache for disk-rb-chrome-macos-test
    1317:  [command]/opt/homebrew/bin/gtar --posix -cf cache.tzst --exclude cache.tzst -P -C /Users/runner/work/selenium/selenium --files-from manifest.txt --delay-directory-restore --use-compress-program zstdmt
    1318:  Sent 17825792 of 77125180 (23.1%), 17.0 MBs/sec
    1319:  Sent 57475072 of 77125180 (74.5%), 27.4 MBs/sec
    1320:  Sent 77125180 of 77125180 (100.0%), 25.6 MBs/sec
    1321:  Successfully saved cache
    1322:  ##[endgroup]
    1323:  ##[group]Save cache for external-+pin_browsers_extension+mac_chrome
    1324:  [command]/opt/homebrew/bin/gtar --posix -cf cache.tzst --exclude cache.tzst -P -C /Users/runner/work/selenium/selenium --files-from manifest.txt --delay-directory-restore --use-compress-program zstdmt
    1325:  Failed to save: Unable to reserve cache with key setup-bazel-2-darwin-external-+pin_browsers_extension+mac_chrome-4278331a99727ad58bf4d6402a14e7492dabf30c30bc3d96fc11d72028fb097c, another job may be creating this cache.
    1326:  Successfully saved cache
    1327:  ##[endgroup]
    1328:  ##[group]Save cache for external-+pin_browsers_extension+mac_chromedriver
    1329:  [command]/opt/homebrew/bin/gtar --posix -cf cache.tzst --exclude cache.tzst -P -C /Users/runner/work/selenium/selenium --files-from manifest.txt --delay-directory-restore --use-compress-program zstdmt
    1330:  Failed to save: Unable to reserve cache with key setup-bazel-2-darwin-external-+pin_browsers_extension+mac_chromedriver-4278331a99727ad58bf4d6402a14e7492dabf30c30bc3d96fc11d72028fb097c, another job may be creating this cache.
    1331:  Successfully saved cache
    1332:  ##[endgroup]
    1333:  ##[group]Save cache for external-aspect_rules_js++pnpm+pnpm
    1334:  [command]/opt/homebrew/bin/gtar --posix -cf cache.tzst --exclude cache.tzst -P -C /Users/runner/work/selenium/selenium --files-from manifest.txt --delay-directory-restore --use-compress-program zstdmt
    1335:  Failed to save: Unable to reserve cache with key setup-bazel-2-darwin-external-aspect_rules_js++pnpm+pnpm-4278331a99727ad58bf4d6402a14e7492dabf30c30bc3d96fc11d72028fb097c, another job may be creating this cache.
    1336:  Successfully saved cache
    1337:  ##[endgroup]
    1338:  ##[group]Save cache for external-com_google_javascript_closure_library
    1339:  [command]/opt/homebrew/bin/gtar --posix -cf cache.tzst --exclude cache.tzst -P -C /Users/runner/work/selenium/selenium --files-from manifest.txt --delay-directory-restore --use-compress-program zstdmt
    1340:  Failed to save: Unable to reserve cache with key setup-bazel-2-darwin-external-com_google_javascript_closure_library-4278331a99727ad58bf4d6402a14e7492dabf30c30bc3d96fc11d72028fb097c, another job may be creating this cache.
    1341:  Successfully saved cache
    1342:  ##[endgroup]
    1343:  ##[group]Save cache for external-protobuf+
    1344:  [command]/opt/homebrew/bin/gtar --posix -cf cache.tzst --exclude cache.tzst -P -C /Users/runner/work/selenium/selenium --files-from manifest.txt --delay-directory-restore --use-compress-program zstdmt
    1345:  Failed to save: Unable to reserve cache with key setup-bazel-2-darwin-external-protobuf+-4278331a99727ad58bf4d6402a14e7492dabf30c30bc3d96fc11d72028fb097c, another job may be creating this cache.
    1346:  Successfully saved cache
    1347:  ##[endgroup]
    1348:  ##[group]Save cache for external-rules_java++toolchains+remote_java_tools
    1349:  [command]/opt/homebrew/bin/gtar --posix -cf cache.tzst --exclude cache.tzst -P -C /Users/runner/work/selenium/selenium --files-from manifest.txt --delay-directory-restore --use-compress-program zstdmt
    1350:  Failed to save: Unable to reserve cache with key setup-bazel-2-darwin-external-rules_java++toolchains+remote_java_tools-4278331a99727ad58bf4d6402a14e7492dabf30c30bc3d96fc11d72028fb097c, another job may be creating this cache.
    1351:  Successfully saved cache
    1352:  ##[endgroup]
    1353:  ##[group]Save cache for external-rules_java++toolchains+remote_java_tools_darwin_arm64
    1354:  [command]/opt/homebrew/bin/gtar --posix -cf cache.tzst --exclude cache.tzst -P -C /Users/runner/work/selenium/selenium --files-from manifest.txt --delay-directory-restore --use-compress-program zstdmt
    1355:  Failed to save: Unable to reserve cache with key setup-bazel-2-darwin-external-rules_java++toolchains+remote_java_tools_darwin_arm64-4278331a99727ad58bf4d6402a14e7492dabf30c30bc3d96fc11d72028fb097c, another job may be creating this cache.
    1356:  Successfully saved cache
    1357:  ##[endgroup]
    1358:  ##[group]Save cache for external-rules_java++toolchains+remotejdk21_macos_aarch64
    1359:  [command]/opt/homebrew/bin/gtar --posix -cf cache.tzst --exclude cache.tzst -P -C /Users/runner/work/selenium/selenium --files-from manifest.txt --delay-directory-restore --use-compress-program zstdmt
    1360:  Failed to save: Unable to reserve cache with key setup-bazel-2-darwin-external-rules_java++toolchains+remotejdk21_macos_aarch64-4278331a99727ad58bf4d6402a14e7492dabf30c30bc3d96fc11d72028fb097c, another job may be creating this cache.
    1361:  Successfully saved cache
    1362:  ##[endgroup]
    1363:  ##[group]Save cache for external-rules_kotlin+
    1364:  [command]/opt/homebrew/bin/gtar --posix -cf cache.tzst --exclude cache.tzst -P -C /Users/runner/work/selenium/selenium --files-from manifest.txt --delay-directory-restore --use-compress-program zstdmt
    1365:  Failed to save: Unable to reserve cache with key setup-bazel-2-darwin-external-rules_kotlin+-4278331a99727ad58bf4d6402a14e7492dabf30c30bc3d96fc11d72028fb097c, another job may be creating this cache.
    1366:  Successfully saved cache
    1367:  ##[endgroup]
    1368:  ##[group]Save cache for external-rules_nodejs++node+nodejs_darwin_arm64
    1369:  [command]/opt/homebrew/bin/gtar --posix -cf cache.tzst --exclude cache.tzst -P -C /Users/runner/work/selenium/selenium --files-from manifest.txt --delay-directory-restore --use-compress-program zstdmt
    1370:  Failed to save: Unable to reserve cache with key setup-bazel-2-darwin-external-rules_nodejs++node+nodejs_darwin_arm64-4278331a99727ad58bf4d6402a14e7492dabf30c30bc3d96fc11d72028fb097c, another job may be creating this cache.
    1371:  Successfully saved cache
    1372:  ##[endgroup]
    1373:  ##[group]Save cache for external-rules_python++python+python_3_10_aarch64-apple-darwin
    1374:  [command]/opt/homebrew/bin/gtar --posix -cf cache.tzst --exclude cache.tzst -P -C /Users/runner/work/selenium/selenium --files-from manifest.txt --delay-directory-restore --use-compress-program zstdmt
    1375:  Failed to save: Unable to reserve cache with key setup-bazel-2-darwin-external-rules_python++python+python_3_10_aarch64-apple-darwin-4278331a99727ad58bf4d6402a14e7492dabf30c30bc3d96fc11d72028fb097c, another job may be creating this cache.
    1376:  Successfully saved cache
    1377:  ##[endgroup]
    1378:  ##[group]Save cache for external-rules_ruby++ruby+bundle
    1379:  [command]/opt/homebrew/bin/gtar --posix -cf cache.tzst --exclude cache.tzst -P -C /Users/runner/work/selenium/selenium --files-from manifest.txt --delay-directory-restore --use-compress-program zstdmt
    1380:  Failed to save: Unable to reserve cache with key setup-bazel-2-darwin-external-rules_ruby++ruby+bundle-4278331a99727ad58bf4d6402a14e7492dabf30c30bc3d96fc11d72028fb097c, another job may be creating this cache.
    1381:  Successfully saved cache
    1382:  ##[endgroup]
    1383:  ##[group]Save cache for external-rules_ruby++ruby+ruby
    1384:  [command]/opt/homebrew/bin/gtar --posix -cf cache.tzst --exclude cache.tzst -P -C /Users/runner/work/selenium/selenium --files-from manifest.txt --delay-directory-restore --use-compress-program zstdmt
    1385:  Failed to save: Unable to reserve cache with key setup-bazel-2-darwin-external-rules_ruby++ruby+ruby-4be0147ef94768ccd6bd41f3696f827feed7fb2abc081d610529c22099162b56, another job may be creating this cache.
    1386:  Successfully saved cache
    1387:  ##[endgroup]
    1388:  ##[group]Save cache for external-rules_rust+
    1389:  [command]/opt/homebrew/bin/gtar --posix -cf cache.tzst --exclude cache.tzst -P -C /Users/runner/work/selenium/selenium --files-from manifest.txt --delay-directory-restore --use-compress-program zstdmt
    1390:  Failed to save: Unable to reserve cache with key setup-bazel-2-darwin-external-rules_rust+-4278331a99727ad58bf4d6402a14e7492dabf30c30bc3d96fc11d72028fb097c, another job may be creating this cache.
    1391:  Successfully saved cache
    

    @asolntsev asolntsev added this to the 5.0 milestone Feb 1, 2026
    Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment

    Labels

    P-breaking change PR is not backwards compatible P-enhancement PR with a new feature Review effort [1-5]: 2

    Projects

    None yet

    Development

    Successfully merging this pull request may close these issues.

    7 participants