Skip to content

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

New issue

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

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

Already on GitHub? Sign in to your account

Open
wants to merge 3 commits into
base: trunk
Choose a base branch
from

Conversation

joerg1985
Copy link
Member

@joerg1985 joerg1985 commented Mar 26, 2024

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-merge-pro qodo-merge-pro bot added P-enhancement PR with a new feature P-breaking change PR is not backwards compatible labels Mar 26, 2024
    Copy link
    Contributor

    PR Description updated to latest commit (e358e2c)

    Copy link
    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.

    Copy link
    Contributor

    qodo-merge-pro bot commented Mar 26, 2024

    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.

    Copy link
    Contributor

    qodo-merge-pro bot commented Mar 26, 2024

    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/[email protected]/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/[email protected]/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/[email protected]/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/[email protected]/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/[email protected]/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/[email protected]/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/[email protected]/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/[email protected]/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/[email protected]/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/[email protected]/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/[email protected]_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/[email protected]/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/[email protected]/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/[email protected]/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/[email protected]/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/[email protected]/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/[email protected]/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/[email protected]/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/@[email protected]/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

    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
    Member Author

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

    @titusfortner
    Copy link
    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
    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
    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
    Copy link
    Member

    diemol commented May 22, 2024

    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
    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
    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
    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
    Copy link
    Contributor

    qodo-merge-pro bot commented Nov 22, 2024

    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/[email protected]_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
    Copy link
    Contributor

    AB-xdev commented Jun 13, 2025

    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
    Copy link
    Member

    diemol commented Jun 13, 2025

    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
    Copy link
    Contributor

    AB-xdev commented Jun 13, 2025

    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
    Copy link
    Member

    diemol commented Jun 13, 2025

    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.

    Copy link
    Contributor

    CI Feedback 🧐

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

    Action: Test / All RBE tests

    Failed stage: Run Bazel [❌]

    Failed test name: canGetAllCookies

    Failure summary:

    The action failed because 2 tests failed:

    //java/test/org/openqa/selenium/bidi/storage:StorageCommandsTest-edge - The test canGetAllCookies()
    failed with an AssertionFailedError at line 283 in StorageCommandsTest.java. The assertion expected
    true but got false.
    //java/test/org/openqa/selenium/bidi/storage:StorageCommandsTest-edge-remote -
    The same test canGetAllCookies() failed with the same AssertionFailedError at line 283 in
    StorageCommandsTest.java.

    Both failures occurred in the BiDi storage commands test suite when testing cookie retrieval
    functionality with Microsoft Edge browser.

    Relevant error logs:
    1:  ##[group]Runner Image Provisioner
    2:  Hosted Compute Agent
    ...
    
    947:  Package 'php-sql-formatter' is not installed, so not removed
    948:  Package 'php8.3-ssh2' is not installed, so not removed
    949:  Package 'php-ssh2-all-dev' is not installed, so not removed
    950:  Package 'php8.3-stomp' is not installed, so not removed
    951:  Package 'php-stomp-all-dev' is not installed, so not removed
    952:  Package 'php-swiftmailer' is not installed, so not removed
    953:  Package 'php-symfony' is not installed, so not removed
    954:  Package 'php-symfony-asset' is not installed, so not removed
    955:  Package 'php-symfony-asset-mapper' is not installed, so not removed
    956:  Package 'php-symfony-browser-kit' is not installed, so not removed
    957:  Package 'php-symfony-clock' is not installed, so not removed
    958:  Package 'php-symfony-debug-bundle' is not installed, so not removed
    959:  Package 'php-symfony-doctrine-bridge' is not installed, so not removed
    960:  Package 'php-symfony-dom-crawler' is not installed, so not removed
    961:  Package 'php-symfony-dotenv' is not installed, so not removed
    962:  Package 'php-symfony-error-handler' is not installed, so not removed
    963:  Package 'php-symfony-event-dispatcher' is not installed, so not removed
    ...
    
    1141:  Package 'php-twig-html-extra' is not installed, so not removed
    1142:  Package 'php-twig-i18n-extension' is not installed, so not removed
    1143:  Package 'php-twig-inky-extra' is not installed, so not removed
    1144:  Package 'php-twig-intl-extra' is not installed, so not removed
    1145:  Package 'php-twig-markdown-extra' is not installed, so not removed
    1146:  Package 'php-twig-string-extra' is not installed, so not removed
    1147:  Package 'php8.3-uopz' is not installed, so not removed
    1148:  Package 'php-uopz-all-dev' is not installed, so not removed
    1149:  Package 'php8.3-uploadprogress' is not installed, so not removed
    1150:  Package 'php-uploadprogress-all-dev' is not installed, so not removed
    1151:  Package 'php8.3-uuid' is not installed, so not removed
    1152:  Package 'php-uuid-all-dev' is not installed, so not removed
    1153:  Package 'php-validate' is not installed, so not removed
    1154:  Package 'php-vlucas-phpdotenv' is not installed, so not removed
    1155:  Package 'php-voku-portable-ascii' is not installed, so not removed
    1156:  Package 'php-wmerrors' is not installed, so not removed
    1157:  Package 'php-xdebug-all-dev' is not installed, so not removed
    ...
    
    1840:  �[32m[5,804 / 7,294]�[0m 79 / 707 tests;�[0m checking cached actions
    1841:  (09:42:36) �[32mINFO: �[0mFrom Compiling src/google/protobuf/compiler/java/lite/enum.cc [for tool]:
    1842:  external/protobuf+/src/google/protobuf/compiler/java/lite/enum.cc: In member function ‘virtual void google::protobuf::compiler::java::EnumLiteGenerator::Generate(google::protobuf::io::Printer*)’:
    1843:  external/protobuf+/src/google/protobuf/compiler/java/lite/enum.cc:70:21: warning: comparison of integer expressions of different signedness: ‘int’ and ‘std::vector<const google::protobuf::EnumValueDescriptor*>::size_type’ {aka ‘long unsigned int’} [-Wsign-compare]
    1844:  70 |   for (int i = 0; i < canonical_values_.size(); i++) {
    1845:  |                   ~~^~~~~~~~~~~~~~~~~~~~~~~~~~
    1846:  external/protobuf+/src/google/protobuf/compiler/java/lite/enum.cc:94:21: warning: comparison of integer expressions of different signedness: ‘int’ and ‘std::vector<google::protobuf::compiler::java::EnumLiteGenerator::Alias>::size_type’ {aka ‘long unsigned int’} [-Wsign-compare]
    1847:  94 |   for (int i = 0; i < aliases_.size(); i++) {
    1848:  |                   ~~^~~~~~~~~~~~~~~~~
    1849:  external/protobuf+/src/google/protobuf/compiler/java/lite/enum.cc:165:21: warning: comparison of integer expressions of different signedness: ‘int’ and ‘std::vector<const google::protobuf::EnumValueDescriptor*>::size_type’ {aka ‘long unsigned int’} [-Wsign-compare]
    1850:  165 |   for (int i = 0; i < canonical_values_.size(); i++) {
    1851:  |                   ~~^~~~~~~~~~~~~~~~~~~~~~~~~~
    1852:  (09:42:37) �[32mAnalyzing:�[0m 2367 targets (1616 packages loaded, 51712 targets configured)
    1853:  �[32m[6,471 / 7,869]�[0m 79 / 864 tests;�[0m Creating source manifest for //rb/spec/integration/selenium/webdriver:target_locator-edge-bidi; 0s local ... (4 actions, 1 running)
    1854:  (09:42:39) �[32mINFO: �[0mFrom Building java/src/org/openqa/selenium/remote/libapi-class.jar (69 source files):
    1855:  java/src/org/openqa/selenium/remote/ErrorHandler.java:46: warning: [removal] ErrorCodes in org.openqa.selenium.remote has been deprecated and marked for removal
    1856:  private final ErrorCodes errorCodes;
    1857:  ^
    1858:  java/src/org/openqa/selenium/remote/ErrorHandler.java:60: warning: [removal] ErrorCodes in org.openqa.selenium.remote has been deprecated and marked for removal
    1859:  this.errorCodes = new ErrorCodes();
    1860:  ^
    1861:  java/src/org/openqa/selenium/remote/ErrorHandler.java:68: warning: [removal] ErrorCodes in org.openqa.selenium.remote has been deprecated and marked for removal
    1862:  public ErrorHandler(ErrorCodes codes, boolean includeServerErrors) {
    1863:  ^
    1864:  java/src/org/openqa/selenium/remote/Response.java:97: warning: [removal] ErrorCodes in org.openqa.selenium.remote has been deprecated and marked for removal
    1865:  ErrorCodes errorCodes = new ErrorCodes();
    1866:  ^
    1867:  java/src/org/openqa/selenium/remote/Response.java:97: warning: [removal] ErrorCodes in org.openqa.selenium.remote has been deprecated and marked for removal
    1868:  ErrorCodes errorCodes = new ErrorCodes();
    1869:  ^
    1870:  java/src/org/openqa/selenium/remote/ProtocolHandshake.java:181: warning: [removal] ErrorCodes in org.openqa.selenium.remote has been deprecated and marked for removal
    1871:  response.setStatus(ErrorCodes.SUCCESS);
    1872:  ^
    1873:  java/src/org/openqa/selenium/remote/ProtocolHandshake.java:182: warning: [removal] ErrorCodes in org.openqa.selenium.remote has been deprecated and marked for removal
    1874:  response.setState(ErrorCodes.SUCCESS_STRING);
    1875:  ^
    1876:  java/src/org/openqa/selenium/remote/W3CHandshakeResponse.java:53: warning: [removal] ErrorCodes in org.openqa.selenium.remote has been deprecated and marked for removal
    1877:  new ErrorCodes().toStatus((String) rawError, Optional.of(tuple.getStatusCode())));
    1878:  ^
    1879:  java/src/org/openqa/selenium/remote/W3CHandshakeResponse.java:56: warning: [removal] ErrorCodes in org.openqa.selenium.remote has been deprecated and marked for removal
    1880:  new ErrorCodes().getExceptionType((String) rawError);
    1881:  ^
    1882:  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
    1883:  private final ErrorCodes errorCodes = new ErrorCodes();
    1884:  ^
    1885:  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
    1886:  private final ErrorCodes errorCodes = new ErrorCodes();
    1887:  ^
    1888:  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
    1889:  int status = response.getStatus() == ErrorCodes.SUCCESS ? HTTP_OK : HTTP_INTERNAL_ERROR;
    1890:  ^
    1891:  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
    1892:  response.setStatus(ErrorCodes.UNKNOWN_COMMAND);
    1893:  ^
    1894:  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
    1895:  response.setStatus(ErrorCodes.UNHANDLED_ERROR);
    1896:  ^
    1897:  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
    1898:  response.setStatus(ErrorCodes.SUCCESS);
    1899:  ^
    1900:  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
    1901:  response.setState(errorCodes.toState(ErrorCodes.SUCCESS));
    1902:  ^
    1903:  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
    1904:  response.setState(errorCodes.toState(ErrorCodes.SUCCESS));
    1905:  ^
    1906:  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
    1907:  private final ErrorCodes errorCodes = new ErrorCodes();
    1908:  ^
    1909:  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
    1910:  private final ErrorCodes errorCodes = new ErrorCodes();
    1911:  ^
    1912:  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
    1913:  response.setStatus(ErrorCodes.UNKNOWN_COMMAND);
    1914:  ^
    1915:  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
    1916:  response.setStatus(ErrorCodes.UNHANDLED_ERROR);
    1917:  ^
    1918:  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
    1919:  response.setStatus(ErrorCodes.SUCCESS);
    1920:  ^
    ...
    
    1977:  Successfully installed bundler-2.6.3
    1978:  1 gem installed
    1979:  (09:42:41) �[35mWARNING: �[0m/home/runner/work/selenium/selenium/javascript/atoms/BUILD.bazel:397:19: runfiles symlink javascript/atoms/test/action_test.html -> javascript/atoms/test/action_test.html obscured by javascript/atoms/test -> bazel-out/k8-fastbuild/bin/javascript/atoms/test
    1980:  (09:42:41) �[35mWARNING: �[0m/home/runner/work/selenium/selenium/javascript/atoms/BUILD.bazel:397:19: runfiles symlink javascript/atoms/test/attribute_test.html -> javascript/atoms/test/attribute_test.html obscured by javascript/atoms/test -> bazel-out/k8-fastbuild/bin/javascript/atoms/test
    1981:  (09:42:41) �[35mWARNING: �[0m/home/runner/work/selenium/selenium/javascript/atoms/BUILD.bazel:397:19: runfiles symlink javascript/atoms/test/child_locator_test.html -> javascript/atoms/test/child_locator_test.html obscured by javascript/atoms/test -> bazel-out/k8-fastbuild/bin/javascript/atoms/test
    1982:  (09:42:41) �[35mWARNING: �[0m/home/runner/work/selenium/selenium/javascript/atoms/BUILD.bazel:397:19: runfiles symlink javascript/atoms/test/click_link_test.html -> javascript/atoms/test/click_link_test.html obscured by javascript/atoms/test -> bazel-out/k8-fastbuild/bin/javascript/atoms/test
    1983:  (09:42:41) �[35mWARNING: �[0m/home/runner/work/selenium/selenium/javascript/atoms/BUILD.bazel:397:19: runfiles symlink javascript/atoms/test/click_submit_test.html -> javascript/atoms/test/click_submit_test.html obscured by javascript/atoms/test -> bazel-out/k8-fastbuild/bin/javascript/atoms/test
    1984:  (09:42:41) �[35mWARNING: �[0m/home/runner/work/selenium/selenium/javascript/atoms/BUILD.bazel:397:19: runfiles symlink javascript/atoms/test/click_test.html -> javascript/atoms/test/click_test.html obscured by javascript/atoms/test -> bazel-out/k8-fastbuild/bin/javascript/atoms/test
    1985:  (09:42:41) �[35mWARNING: �[0m/home/runner/work/selenium/selenium/javascript/atoms/BUILD.bazel:397:19: runfiles symlink javascript/atoms/test/clientrect_test.html -> javascript/atoms/test/clientrect_test.html obscured by javascript/atoms/test -> bazel-out/k8-fastbuild/bin/javascript/atoms/test
    1986:  (09:42:41) �[35mWARNING: �[0m/home/runner/work/selenium/selenium/javascript/atoms/BUILD.bazel:397:19: runfiles symlink javascript/atoms/test/color_test.html -> javascript/atoms/test/color_test.html obscured by javascript/atoms/test -> bazel-out/k8-fastbuild/bin/javascript/atoms/test
    1987:  (09:42:41) �[35mWARNING: �[0m/home/runner/work/selenium/selenium/javascript/atoms/BUILD.bazel:397:19: runfiles symlink javascript/atoms/test/deps.js -> javascript/atoms/test/deps.js obscured by javascript/atoms/test -> bazel-out/k8-fastbuild/bin/javascript/atoms/test
    1988:  (09:42:41) �[35mWARNING: �[0m/home/runner/work/selenium/selenium/javascript/atoms/BUILD.bazel:397:19: runfiles symlink javascript/atoms/test/dom_test.html -> javascript/atoms/test/dom_test.html obscured by javascript/atoms/test -> bazel-out/k8-fastbuild/bin/javascript/atoms/test
    1989:  (09:42:41) �[35mWARNING: �[0m/home/runner/work/selenium/selenium/javascript/atoms/BUILD.bazel:397:19: runfiles symlink javascript/atoms/test/drag_test.html -> javascript/atoms/test/drag_test.html obscured by javascript/atoms/test -> bazel-out/k8-fastbuild/bin/javascript/atoms/test
    1990:  (09:42:41) �[35mWARNING: �[0m/home/runner/work/selenium/selenium/javascript/atoms/BUILD.bazel:397:19: runfiles symlink javascript/atoms/test/enabled_test.html -> javascript/atoms/test/enabled_test.html obscured by javascript/atoms/test -> bazel-out/k8-fastbuild/bin/javascript/atoms/test
    1991:  (09:42:41) �[35mWARNING: �[0m/home/runner/work/selenium/selenium/javascript/atoms/BUILD.bazel:397:19: runfiles symlink javascript/atoms/test/enter_submit_test.html -> javascript/atoms/test/enter_submit_test.html obscured by javascript/atoms/test -> bazel-out/k8-fastbuild/bin/javascript/atoms/test
    1992:  (09:42:41) �[35mWARNING: �[0m/home/runner/work/selenium/selenium/javascript/atoms/BUILD.bazel:397:19: runfiles symlink javascript/atoms/test/error_test.html -> javascript/atoms/test/error_test.html obscured by javascript/atoms/test -> bazel-out/k8-fastbuild/bin/javascript/atoms/test
    1993:  (09:42:41) �[35mWARNING: �[0m/home/runner/work/selenium/selenium/javascript/atoms/BUILD.bazel:397:19: runfiles symlink javascript/atoms/test/events_test.html -> javascript/atoms/test/events_test.html obscured by javascript/atoms/test -> bazel-out/k8-fastbuild/bin/javascript/atoms/test
    ...
    
    2161:  See https://github.com/rubyzip/rubyzip for details. The Changelog also
    2162:  lists other enhancements and bugfixes that have been implemented since
    2163:  version 2.3.0.
    2164:  2 installed gems you directly depend on are looking for funding.
    2165:  Run `bundle fund` for details
    2166:  (09:42:42) �[32mINFO: �[0mFrom Building external/protobuf+/java/core/libcore.jar (43 source files, 1 source jar) [for tool]:
    2167:  external/protobuf+/java/core/src/main/java/com/google/protobuf/RepeatedFieldBuilderV3.java:28: warning: [dep-ann] deprecated item is not annotated with @Deprecated
    2168:  public class RepeatedFieldBuilderV3<
    2169:  ^
    2170:  (09:42:47) �[32mAnalyzing:�[0m 2367 targets (1635 packages loaded, 55232 targets configured)
    2171:  �[32m[9,941 / 10,880]�[0m 81 / 1701 tests;�[0m [Prepa] Splitting Javascript ../../../javascript/grid-ui/src/index.tsx [esbuild] ... (4 actions, 0 running)
    2172:  (09:42:47) �[32mINFO: �[0mFrom PackageZip javascript/grid-ui/react-zip.jar:
    2173:  /mnt/engflow/worker/work/1/exec/bazel-out/k8-opt-exec-ST-a934f86a68ba/bin/external/rules_pkg+/pkg/private/zip/build_zip.runfiles/rules_python++python+python_3_9_x86_64-unknown-linux-gnu/lib/python3.9/zipfile.py:1522: UserWarning: Duplicate name: 'grid-ui/'
    2174:  return self._open_to_write(zinfo, force_zip64=force_zip64)
    2175:  (09:42:50) �[32mINFO: �[0mFrom Building java/test/org/openqa/selenium/json/JsonTest.jar (1 source file):
    2176:  java/test/org/openqa/selenium/json/JsonTest.java:430: warning: [removal] ErrorCodes in org.openqa.selenium.remote has been deprecated and marked for removal
    2177:  assertThat(response.getState()).isEqualTo(new ErrorCodes().toState(0));
    2178:  ^
    2179:  java/test/org/openqa/selenium/json/JsonTest.java:441: warning: [removal] ErrorCodes in org.openqa.selenium.remote has been deprecated and marked for removal
    2180:  assertThat(response.getState()).isEqualTo(new ErrorCodes().toState(0));
    2181:  ^
    2182:  java/test/org/openqa/selenium/json/JsonTest.java:454: warning: [removal] ErrorCodes in org.openqa.selenium.remote has been deprecated and marked for removal
    2183:  assertThat(response.getState()).isEqualTo(new ErrorCodes().toState(32));
    2184:  ^
    2185:  (09:42:50) �[32mINFO: �[0mFrom Building java/test/org/openqa/selenium/remote/codec/w3c/W3CHttpResponseCodecTest.jar (1 source file):
    2186:  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
    2187:  import static org.openqa.selenium.remote.ErrorCodes.METHOD_NOT_ALLOWED;
    2188:  ^
    2189:  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
    2190:  assertThat(decoded.getStatus()).isEqualTo(ErrorCodes.SUCCESS);
    2191:  ^
    2192:  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
    2193:  assertThat(decoded.getStatus()).isEqualTo(ErrorCodes.UNHANDLED_ERROR);
    2194:  ^
    2195:  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
    2196:  assertThat(decoded.getStatus()).isEqualTo(ErrorCodes.UNHANDLED_ERROR);
    2197:  ^
    ...
    
    2268:  dotnet/src/webdriver/DevTools/v135/V135Network.cs(320,90): warning CS8601: Possible null reference assignment.
    2269:  dotnet/src/webdriver/DevTools/v136/V136Network.cs(149,25): warning CS8601: Possible null reference assignment.
    2270:  dotnet/src/webdriver/DevTools/v136/V136Network.cs(194,25): warning CS8601: Possible null reference assignment.
    2271:  dotnet/src/webdriver/DevTools/v136/V136Network.cs(235,88): warning CS8601: Possible null reference assignment.
    2272:  dotnet/src/webdriver/DevTools/v136/V136Network.cs(292,117): warning CS8601: Possible null reference assignment.
    2273:  dotnet/src/webdriver/DevTools/v136/V136Network.cs(320,90): warning CS8601: Possible null reference assignment.
    2274:  (09:43:58) �[32m[14,082 / 15,135]�[0m 928 / 2367 tests;�[0m Testing //java/src/org/openqa/selenium/support/ui:wait-spotbugs; 29s remote, remote-cache ... (50 actions, 5 running)
    2275:  (09:44:03) �[32m[14,255 / 15,196]�[0m 1050 / 2367 tests;�[0m Testing //java/src/org/openqa/selenium/support/ui:wait-spotbugs; 34s remote, remote-cache ... (48 actions, 5 running)
    2276:  (09:44:08) �[32m[14,444 / 15,348]�[0m 1090 / 2367 tests;�[0m [Sched] Building java/test/org/openqa/selenium/environment/libtest-base.jar (1 source file); 21s ... (48 actions, 4 running)
    2277:  (09:44:13) �[32m[14,607 / 15,439]�[0m 1166 / 2367 tests;�[0m [Sched] Building java/test/org/openqa/selenium/support/ui/ExpectedConditionsTest.jar (1 source file); 25s ... (50 actions, 4 running)
    2278:  (09:44:18) �[32m[14,769 / 15,443]�[0m 1325 / 2367 tests;�[0m [Sched] Building java/test/org/openqa/selenium/support/ui/FluentWaitTest.jar (1 source file); 27s ... (50 actions, 4 running)
    2279:  (09:44:24) �[32m[14,783 / 15,445]�[0m 1337 / 2367 tests;�[0m [Sched] Building java/test/org/openqa/selenium/support/ui/QuotesTest.jar (1 source file); 30s ... (41 actions, 5 running)
    2280:  (09:44:31) �[32m[14,792 / 15,452]�[0m 1341 / 2367 tests;�[0m [Sched] Building java/test/org/openqa/selenium/remote/libsmall-tests-test-lib.jar (5 source files) and running annotation processors (AutoServiceProcessor); 32s ... (45 actions, 5 running)
    2281:  (09:44:37) �[32m[14,801 / 15,458]�[0m 1344 / 2367 tests;�[0m [Sched] Building java/test/org/openqa/selenium/environment/webserver/NettyAppServerTest.jar (1 source file); 38s ... (50 actions, 4 running)
    2282:  (09:44:38) �[32mINFO: �[0mFrom Building java/test/org/openqa/selenium/remote/libsmall-tests-test-lib.jar (5 source files) and running annotation processors (AutoServiceProcessor):
    2283:  java/test/org/openqa/selenium/remote/WebDriverFixture.java:170: warning: [removal] ErrorCodes in org.openqa.selenium.remote has been deprecated and marked for removal
    2284:  response.setStatus(new ErrorCodes().toStatus(state, Optional.of(400)));
    2285:  ^
    ...
    
    2300:  (09:46:00) �[32m[14,883 / 15,521]�[0m 1384 / 2367 tests;�[0m [Sched] Testing //java/test/org/openqa/selenium/grid/node:CustomLocatorHandlerTest; 59s ... (50 actions, 6 running)
    2301:  (09:46:05) �[32m[14,886 / 15,527]�[0m 1384 / 2367 tests;�[0m [Sched] Building java/test/org/openqa/selenium/remote/http/jdk/JdkHttpClientTest.jar (1 source file) and running annotation processors (AutoServiceProcessor); 59s ... (50 actions, 6 running)
    2302:  (09:46:11) �[32m[14,898 / 15,531]�[0m 1394 / 2367 tests;�[0m [Sched] Testing //java/test/org/openqa/selenium/grid/distributor/selector:DefaultSlotSelectorTest; 54s ... (50 actions, 7 running)
    2303:  (09:46:16) �[32m[14,907 / 15,537]�[0m 1400 / 2367 tests;�[0m [Sched] Building java/test/org/openqa/selenium/remote/http/DumpHttpExchangeFilterTest.jar (1 source file) and running annotation processors (AutoServiceProcessor); 55s ... (50 actions, 7 running)
    2304:  (09:46:22) �[32m[14,914 / 15,540]�[0m 1405 / 2367 tests;�[0m [Sched] Building java/test/org/openqa/selenium/net/UrlCheckerTest.jar (1 source file); 53s ... (50 actions, 7 running)
    2305:  (09:46:27) �[32m[14,919 / 15,546]�[0m 1407 / 2367 tests;�[0m [Sched] Building java/test/org/openqa/selenium/ExecutingJavascriptTest-chrome.jar (1 source file); 54s ... (50 actions, 6 running)
    2306:  (09:46:32) �[32m[14,926 / 15,548]�[0m 1414 / 2367 tests;�[0m [Sched] Building java/test/org/openqa/selenium/bidi/network/NetworkEventsTest-edge-remote.jar (1 source file); 51s ... (50 actions, 7 running)
    2307:  (09:46:38) �[32m[14,933 / 15,550]�[0m 1419 / 2367 tests;�[0m [Sched] Building java/test/org/openqa/selenium/net/LinuxEphemeralPortRangeDetectorTest.jar (1 source file); 52s ... (50 actions, 7 running)
    2308:  (09:46:43) �[32m[14,938 / 15,555]�[0m 1419 / 2367 tests;�[0m [Sched] Building java/test/org/openqa/selenium/MiscTest-firefox-beta.jar (1 source file); 53s ... (50 actions, 6 running)
    2309:  (09:46:49) �[32m[14,943 / 15,563]�[0m 1420 / 2367 tests;�[0m [Sched] Building java/test/org/openqa/selenium/ImplicitWaitTest-firefox-beta.jar (1 source file); 50s ... (50 actions, 7 running)
    2310:  (09:46:54) �[32m[14,948 / 15,568]�[0m 1420 / 2367 tests;�[0m [Sched] Building java/test/org/openqa/selenium/remote/AugmenterTest.jar (1 source file) and running annotation processors (AutoServiceProcessor); 49s ... (50 actions, 7 running)
    2311:  (09:46:59) �[32m[14,950 / 15,572]�[0m 1420 / 2367 tests;�[0m [Sched] Building java/test/org/openqa/selenium/ElementEqualityTest-chrome.jar (1 source file); 51s ... (50 actions, 8 running)
    2312:  (09:47:04) �[32m[14,954 / 15,578]�[0m 1420 / 2367 tests;�[0m [Sched] Building java/test/org/openqa/selenium/I18nTest-firefox-beta.jar (1 source file); 51s ... (50 actions, 9 running)
    2313:  (09:47:10) �[32m[14,959 / 15,581]�[0m 1423 / 2367 tests;�[0m [Sched] Testing //java/test/org/openqa/selenium/remote/http:RouteTest; 52s ... (50 actions, 9 running)
    2314:  (09:47:12) �[32mINFO: �[0mFrom Building java/test/org/openqa/selenium/remote/RemotableByTest.jar (1 source file) and running annotation processors (AutoServiceProcessor):
    2315:  java/test/org/openqa/selenium/remote/RemotableByTest.java:23: warning: [removal] ErrorCodes in org.openqa.selenium.remote has been deprecated and marked for removal
    2316:  import static org.openqa.selenium.remote.ErrorCodes.SUCCESS_STRING;
    2317:  ^
    2318:  java/test/org/openqa/selenium/remote/RemotableByTest.java:23: warning: [removal] ErrorCodes in org.openqa.selenium.remote has been deprecated and marked for removal
    2319:  import static org.openqa.selenium.remote.ErrorCodes.SUCCESS_STRING;
    2320:  ^
    2321:  java/test/org/openqa/selenium/remote/RemotableByTest.java:23: warning: [removal] ErrorCodes in org.openqa.selenium.remote has been deprecated and marked for removal
    2322:  import static org.openqa.selenium.remote.ErrorCodes.SUCCESS_STRING;
    2323:  ^
    2324:  java/test/org/openqa/selenium/remote/RemotableByTest.java:45: warning: [removal] ErrorCodes in org.openqa.selenium.remote has been deprecated and marked for removal
    2325:  private final ErrorCodes errorCodes = new ErrorCodes();
    2326:  ^
    2327:  java/test/org/openqa/selenium/remote/RemotableByTest.java:45: warning: [removal] ErrorCodes in org.openqa.selenium.remote has been deprecated and marked for removal
    2328:  private final ErrorCodes errorCodes = new ErrorCodes();
    2329:  ^
    2330:  java/test/org/openqa/selenium/remote/RemotableByTest.java:45: warning: [removal] ErrorCodes in org.openqa.selenium.remote has been deprecated and marked for removal
    2331:  private final ErrorCodes errorCodes = new ErrorCodes();
    2332:  ^
    2333:  java/test/org/openqa/selenium/remote/RemotableByTest.java:45: warning: [removal] ErrorCodes in org.openqa.selenium.remote has been deprecated and marked for removal
    2334:  private final ErrorCodes errorCodes = new ErrorCodes();
    2335:  ^
    2336:  (09:47:16) �[32m[14,974 / 15,588]�[0m 1434 / 2367 tests;�[0m [Sched] Testing //java/test/org/openqa/selenium/remote/http:UrlTemplateTest; 48s ... (50 actions, 9 running)
    2337:  (09:47:22) �[32m[14,980 / 15,589]�[0m 1439 / 2367 tests;�[0m [Sched] Building java/test/org/openqa/selenium/ElementDomPropertyTest.jar (1 source file); 47s ... (50 actions, 9 running)
    2338:  (09:47:27) �[32m[14,986 / 15,592]�[0m 1443 / 2367 tests;�[0m [Sched] Testing //java/test/org/openqa/selenium/remote:DesiredCapabilitiesTest; 42s ... (50 actions, 10 running)
    2339:  (09:47:32) �[32m[14,990 / 15,594]�[0m 1446 / 2367 tests;�[0m [Sched] Building java/test/org/openqa/selenium/ElementSelectingTest-edge.jar (1 source file); 44s ... (50 actions, 11 running)
    2340:  (09:47:37) �[32m[14,998 / 15,598]�[0m 1449 / 2367 tests;�[0m [Sched] Building java/test/org/openqa/selenium/remote/TracedCommandExecutorTest.jar (1 source file) and running annotation processors (AutoServiceProcessor); 39s ... (50 actions, 11 running)
    2341:  (09:47:44) �[32m[15,003 / 15,601]�[0m 1449 / 2367 tests;�[0m [Sched] Building java/test/org/openqa/selenium/html5/LocalStorageTest-edge.jar (1 source file); 41s ... (50 actions, 11 running)
    2342:  (09:47:49) �[32m[15,012 / 15,607]�[0m 1453 / 2367 tests;�[0m [Sched] Testing //java/test/org/openqa/selenium/net:HostIdentifierTest; 37s ... (50 actions, 10 running)
    2343:  (09:47:52) �[32mINFO: �[0mFrom Building java/test/org/openqa/selenium/remote/ErrorHandlerTest.jar (1 source file) and running annotation processors (AutoServiceProcessor):
    2344:  java/test/org/openqa/selenium/remote/ErrorHandlerTest.java:79: warning: [removal] ErrorCodes in org.openqa.selenium.remote has been deprecated and marked for removal
    2345:  handler.throwIfResponseFailed(createResponse(ErrorCodes.SUCCESS), 100);
    2346:  ^
    2347:  java/test/org/openqa/selenium/remote/ErrorHandlerTest.java:85: warning: [removal] ErrorCodes in org.openqa.selenium.remote has been deprecated and marked for removal
    2348:  assertThrowsCorrectExceptionType(ErrorCodes.NO_SUCH_WINDOW, NoSuchWindowException.class);
    2349:  ^
    2350:  java/test/org/openqa/selenium/remote/ErrorHandlerTest.java:86: warning: [removal] ErrorCodes in org.openqa.selenium.remote has been deprecated and marked for removal
    2351:  assertThrowsCorrectExceptionType(ErrorCodes.NO_SUCH_FRAME, NoSuchFrameException.class);
    2352:  ^
    2353:  java/test/org/openqa/selenium/remote/ErrorHandlerTest.java:87: warning: [removal] ErrorCodes in org.openqa.selenium.remote has been deprecated and marked for removal
    2354:  assertThrowsCorrectExceptionType(ErrorCodes.NO_SUCH_ELEMENT, NoSuchElementException.class);
    2355:  ^
    2356:  java/test/org/openqa/selenium/remote/ErrorHandlerTest.java:88: warning: [removal] ErrorCodes in org.openqa.selenium.remote has been deprecated and marked for removal
    2357:  assertThrowsCorrectExceptionType(ErrorCodes.UNKNOWN_COMMAND, UnsupportedCommandException.class);
    2358:  ^
    2359:  java/test/org/openqa/selenium/remote/ErrorHandlerTest.java:90: warning: [removal] ErrorCodes in org.openqa.selenium.remote has been deprecated and marked for removal
    2360:  ErrorCodes.METHOD_NOT_ALLOWED, UnsupportedCommandException.class);
    2361:  ^
    2362:  java/test/org/openqa/selenium/remote/ErrorHandlerTest.java:92: warning: [removal] ErrorCodes in org.openqa.selenium.remote has been deprecated and marked for removal
    2363:  ErrorCodes.STALE_ELEMENT_REFERENCE, StaleElementReferenceException.class);
    2364:  ^
    2365:  java/test/org/openqa/selenium/remote/ErrorHandlerTest.java:94: warning: [removal] ErrorCodes in org.openqa.selenium.remote has been deprecated and marked for removal
    2366:  ErrorCodes.INVALID_ELEMENT_STATE, InvalidElementStateException.class);
    2367:  ^
    2368:  java/test/org/openqa/selenium/remote/ErrorHandlerTest.java:95: warning: [removal] ErrorCodes in org.openqa.selenium.remote has been deprecated and marked for removal
    2369:  assertThrowsCorrectExceptionType(ErrorCodes.XPATH_LOOKUP_ERROR, InvalidSelectorException.class);
    2370:  ^
    2371:  java/test/org/openqa/selenium/remote/ErrorHandlerTest.java:107: warning: [removal] ErrorCodes in org.openqa.selenium.remote has been deprecated and marked for removal
    2372:  Response response = createResponse(ErrorCodes.UNHANDLED_ERROR);
    2373:  ^
    2374:  java/test/org/openqa/selenium/remote/ErrorHandlerTest.java:120: warning: [removal] ErrorCodes in org.openqa.selenium.remote has been deprecated and marked for removal
    2375:  createResponse(ErrorCodes.UNHANDLED_ERROR, "boom"), 123))
    2376:  ^
    2377:  java/test/org/openqa/selenium/remote/ErrorHandlerTest.java:133: warning: [removal] ErrorCodes in org.openqa.selenium.remote has been deprecated and marked for removal
    2378:  createResponse(ErrorCodes.UNHANDLED_ERROR, ImmutableMap.of("message", "boom")),
    2379:  ^
    2380:  java/test/org/openqa/selenium/remote/ErrorHandlerTest.java:147: warning: [removal] ErrorCodes in org.openqa.selenium.remote has been deprecated and marked for removal
    2381:  ErrorCodes.UNHANDLED_ERROR,
    2382:  ^
    2383:  java/test/org/openqa/selenium/remote/ErrorHandlerTest.java:167: warning: [removal] ErrorCodes in org.openqa.selenium.remote has been deprecated and marked for removal
    2384:  ErrorCodes.UNHANDLED_ERROR,
    2385:  ^
    2386:  java/test/org/openqa/selenium/remote/ErrorHandlerTest.java:193: warning: [removal] ErrorCodes in org.openqa.selenium.remote has been deprecated and marked for removal
    2387:  createResponse(ErrorCodes.UNHANDLED_ERROR, toMap(serverError)), 123))
    2388:  ^
    2389:  java/test/org/openqa/selenium/remote/ErrorHandlerTest.java:214: warning: [removal] ErrorCodes in org.openqa.selenium.remote has been deprecated and marked for removal
    2390:  createResponse(ErrorCodes.UNHANDLED_ERROR, data), 123))
    2391:  ^
    2392:  java/test/org/openqa/selenium/remote/ErrorHandlerTest.java:248: warning: [removal] ErrorCodes in org.openqa.selenium.remote has been deprecated and marked for removal
    2393:  createResponse(ErrorCodes.UNHANDLED_ERROR, data), 123))
    2394:  ^
    2395:  java/test/org/openqa/selenium/remote/ErrorHandlerTest.java:280: warning: [removal] ErrorCodes in org.openqa.selenium.remote has been deprecated and marked for removal
    2396:  createResponse(ErrorCodes.UNHANDLED_ERROR, data), 123))
    2397:  ^
    2398:  java/test/org/openqa/selenium/remote/ErrorHandlerTest.java:308: warning: [removal] ErrorCodes in org.openqa.selenium.remote has been deprecated and marked for removal
    2399:  createResponse(ErrorCodes.UNHANDLED_ERROR, data), 123))
    2400:  ^
    2401:  java/test/org/openqa/selenium/remote/ErrorHandlerTest.java:327: warning: [removal] ErrorCodes in org.openqa.selenium.remote has been deprecated and marked for removal
    2402:  createResponse(ErrorCodes.UNHANDLED_ERROR, data), 123))
    2403:  ^
    2404:  java/test/org/openqa/selenium/remote/ErrorHandlerTest.java:355: warning: [removal] ErrorCodes in org.openqa.selenium.remote has been deprecated and marked for removal
    2405:  createResponse(ErrorCodes.UNHANDLED_ERROR, data), 123))
    2406:  ^
    2407:  java/test/org/openqa/selenium/remote/ErrorHandlerTest.java:394: warning: [removal] ErrorCodes in org.openqa.selenium.remote has been deprecated and marked for removal
    2408:  createResponse(ErrorCodes.UNHANDLED_ERROR, data), 123))
    2409:  ^
    2410:  java/test/org/openqa/selenium/remote/ErrorHandlerTest.java:426: warning: [removal] ErrorCodes in org.openqa.selenium.remote has been deprecated and marked for removal
    2411:  createResponse(ErrorCodes.UNHANDLED_ERROR, toMap(serverError)), 123))
    2412:  ^
    2413:  java/test/org/openqa/selenium/remote/ErrorHandlerTest.java:435: warning: [removal] ErrorCodes in org.openqa.selenium.remote has been deprecated and marked for removal
    2414:  exceptions.put(ErrorCodes.NO_SUCH_SESSION, NoSuchSessionException.class);
    2415:  ^
    2416:  java/test/org/openqa/selenium/remote/ErrorHandlerTest.java:436: warning: [removal] ErrorCodes in org.openqa.selenium.remote has been deprecated and marked for removal
    2417:  exceptions.put(ErrorCodes.NO_SUCH_ELEMENT, NoSuchElementException.class);
    2418:  ^
    2419:  java/test/org/openqa/selenium/remote/ErrorHandlerTest.java:437: warning: [removal] ErrorCodes in org.openqa.selenium.remote has been deprecated and marked for removal
    2420:  exceptions.put(ErrorCodes.NO_SUCH_FRAME, NoSuchFrameException.class);
    2421:  ^
    2422:  java/test/org/openqa/selenium/remote/ErrorHandlerTest.java:438: warning: [removal] ErrorCodes in org.openqa.selenium.remote has been deprecated and marked for removal
    2423:  exceptions.put(ErrorCodes.UNKNOWN_COMMAND, UnsupportedCommandException.class);
    2424:  ^
    2425:  java/test/org/openqa/selenium/remote/ErrorHandlerTest.java:439: warning: [removal] ErrorCodes in org.openqa.selenium.remote has been deprecated and marked for removal
    2426:  exceptions.put(ErrorCodes.STALE_ELEMENT_REFERENCE, StaleElementReferenceException.class);
    2427:  ^
    2428:  java/test/org/openqa/selenium/remote/ErrorHandlerTest.java:440: warning: [removal] ErrorCodes in org.openqa.selenium.remote has been deprecated and marked for removal
    2429:  exceptions.put(ErrorCodes.INVALID_ELEMENT_STATE, InvalidElementStateException.class);
    2430:  ^
    2431:  java/test/org/openqa/selenium/remote/ErrorHandlerTest.java:441: warning: [removal] ErrorCodes in org.openqa.selenium.remote has been deprecated and marked for removal
    2432:  exceptions.put(ErrorCodes.UNHANDLED_ERROR, WebDriverException.class);
    2433:  ^
    2434:  java/test/org/openqa/selenium/remote/ErrorHandlerTest.java:442: warning: [removal] ErrorCodes in org.openqa.selenium.remote has been deprecated and marked for removal
    2435:  exceptions.put(ErrorCodes.JAVASCRIPT_ERROR, JavascriptException.class);
    2436:  ^
    2437:  java/test/org/openqa/selenium/remote/ErrorHandlerTest.java:443: warning: [removal] ErrorCodes in org.openqa.selenium.remote has been deprecated and marked for removal
    2438:  exceptions.put(ErrorCodes.XPATH_LOOKUP_ERROR, InvalidSelectorException.class);
    2439:  ^
    2440:  java/test/org/openqa/selenium/remote/ErrorHandlerTest.java:444: warning: [removal] ErrorCodes in org.openqa.selenium.remote has been deprecated and marked for removal
    2441:  exceptions.put(ErrorCodes.TIMEOUT, TimeoutException.class);
    2442:  ^
    2443:  java/test/org/openqa/selenium/remote/ErrorHandlerTest.java:445: warning: [removal] ErrorCodes in org.openqa.selenium.remote has been deprecated and marked for removal
    2444:  exceptions.put(ErrorCodes.NO_SUCH_WINDOW, NoSuchWindowException.class);
    2445:  ^
    2446:  java/test/org/openqa/selenium/remote/ErrorHandlerTest.java:446: warning: [removal] ErrorCodes in org.openqa.selenium.remote has been deprecated and marked for removal
    2447:  exceptions.put(ErrorCodes.INVALID_COOKIE_DOMAIN, InvalidCookieDomainException.class);
    2448:  ^
    2449:  java/test/org/openqa/selenium/remote/ErrorHandlerTest.java:447: warning: [removal] ErrorCodes in org.openqa.selenium.remote has been deprecated and marked for removal
    2450:  exceptions.put(ErrorCodes.UNABLE_TO_SET_COOKIE, UnableToSetCookieException.class);
    2451:  ^
    2452:  java/test/org/openqa/selenium/remote/ErrorHandlerTest.java:448: warning: [removal] ErrorCodes in org.openqa.selenium.remote has been deprecated and marked for removal
    2453:  exceptions.put(ErrorCodes.UNEXPECTED_ALERT_PRESENT, UnhandledAlertException.class);
    2454:  ^
    2455:  java/test/org/openqa/selenium/remote/ErrorHandlerTest.java:449: warning: [removal] ErrorCodes in org.openqa.selenium.remote has been deprecated and marked for removal
    2456:  exceptions.put(ErrorCodes.NO_ALERT_PRESENT, NoAlertPresentException.class);
    2457:  ^
    2458:  java/test/org/openqa/selenium/remote/ErrorHandlerTest.java:450: warning: [removal] ErrorCodes in org.openqa.selenium.remote has been deprecated and marked for removal
    2459:  exceptions.put(ErrorCodes.ASYNC_SCRIPT_TIMEOUT, ScriptTimeoutException.class);
    2460:  ^
    2461:  java/test/org/openqa/selenium/remote/ErrorHandlerTest.java:451: warning: [removal] ErrorCodes in org.openqa.selenium.remote has been deprecated and marked for removal
    2462:  exceptions.put(ErrorCodes.INVALID_SELECTOR_ERROR, InvalidSelectorException.class);
    2463:  ^
    2464:  java/test/org/openqa/selenium/remote/ErrorHandlerTest.java:452: warning: [removal] ErrorCodes in org.openqa.selenium.remote has been deprecated and marked for removal
    2465:  exceptions.put(ErrorCodes.SESSION_NOT_CREATED, SessionNotCreatedException.class);
    2466:  ^
    2467:  java/test/org/openqa/selenium/remote/ErrorHandlerTest.java:453: warning: [removal] ErrorCodes in org.openqa.selenium.remote has been deprecated and marked for removal
    2468:  exceptions.put(ErrorCodes.MOVE_TARGET_OUT_OF_BOUNDS, MoveTargetOutOfBoundsException.class);
    2469:  ^
    2470:  java/test/org/openqa/selenium/remote/ErrorHandlerTest.java:454: warning: [removal] ErrorCodes in org.openqa.selenium.remote has been deprecated and marked for removal
    2471:  exceptions.put(ErrorCodes.INVALID_XPATH_SELECTOR, InvalidSelectorException.class);
    2472:  ^
    2473:  java/test/org/openqa/selenium/remote/ErrorHandlerTest.java:455: warning: [removal] ErrorCodes in org.openqa.selenium.remote has been deprecated and marked for removal
    2474:  exceptions.put(ErrorCodes.INVALID_XPATH_SELECTOR_RETURN_TYPER, InvalidSelectorException.class);
    2475:  ^
    2476:  java/test/org/openqa/selenium/remote/ErrorHandlerTest.java:469: warning: [removal] ErrorCodes in org.openqa.selenium.remote has been deprecated and marked for removal
    2477:  ? ErrorCodes.INVALID_SELECTOR_ERROR
    2478:  ^
    2479:  java/test/org/openqa/selenium/remote/ErrorHandlerTest.java:471: warning: [removal] ErrorCodes in org.openqa.selenium.remote has been deprecated and marked for removal
    2480:  assertThat(new ErrorCodes().toStatusCode(e)).isEqualTo(expected);
    2481:  ^
    2482:  java/test/org/openqa/selenium/remote/ErrorHandlerTest.java:483: warning: [removal] ErrorCodes in org.openqa.selenium.remote has been deprecated and marked for removal
    2483:  response.setState(new ErrorCodes().toState(status));
    2484:  ^
    ...
    
    2529:  (09:51:50) �[31m�[1mFAIL: �[0m//java/test/org/openqa/selenium/bidi/storage:StorageCommandsTest-edge (see /home/runner/.bazel/execroot/_main/bazel-out/k8-fastbuild/testlogs/java/test/org/openqa/selenium/bidi/storage/StorageCommandsTest-edge/test_attempts/attempt_1.log)
    2530:  (09:51:55) �[32m[15,338 / 15,936]�[0m 1581 / 2367 tests;�[0m Testing //java/test/org/openqa/selenium/bidi/storage:StorageCommandsTest-edge; 51s remote, remote-cache ... (50 actions, 34 running)
    2531:  (09:52:00) �[32m[15,345 / 15,944]�[0m 1581 / 2367 tests;�[0m Testing //java/test/org/openqa/selenium/bidi/storage:StorageCommandsTest-edge; 56s remote, remote-cache ... (50 actions, 35 running)
    2532:  (09:52:05) �[32m[15,358 / 15,957]�[0m 1585 / 2367 tests;�[0m Testing //java/test/org/openqa/selenium/bidi/storage:StorageCommandsTest-edge; 61s remote, remote-cache ... (50 actions, 36 running)
    2533:  (09:52:10) �[32m[15,367 / 15,964]�[0m 1588 / 2367 tests;�[0m Testing //java/test/org/openqa/selenium/bidi/storage:StorageCommandsTest-edge; 66s remote, remote-cache ... (50 actions, 38 running)
    2534:  (09:52:15) �[32m[15,387 / 15,977]�[0m 1597 / 2367 tests;�[0m Testing //java/test/org/openqa/selenium/bidi/storage:StorageCommandsTest-edge; 71s remote, remote-cache ... (50 actions, 37 running)
    2535:  (09:52:20) �[32m[15,403 / 15,986]�[0m 1603 / 2367 tests;�[0m Testing //java/test/org/openqa/selenium/bidi/storage:StorageCommandsTest-edge; 76s remote, remote-cache ... (50 actions, 36 running)
    2536:  (09:52:26) �[32m[15,418 / 16,006]�[0m 1607 / 2367 tests;�[0m Testing //java/test/org/openqa/selenium/bidi/storage:StorageCommandsTest-edge; 81s remote, remote-cache ... (50 actions, 37 running)
    2537:  (09:52:31) �[32m[15,432 / 16,016]�[0m 1611 / 2367 tests;�[0m Testing //java/test/org/openqa/selenium/bidi/storage:StorageCommandsTest-edge; 87s remote, remote-cache ... (50 actions, 37 running)
    2538:  (09:52:36) �[32m[15,442 / 16,027]�[0m 1612 / 2367 tests;�[0m Testing //java/test/org/openqa/selenium/bidi/storage:StorageCommandsTest-edge; 92s remote, remote-cache ... (50 actions, 37 running)
    2539:  (09:52:42) �[32m[15,459 / 16,038]�[0m 1619 / 2367 tests;�[0m Testing //java/test/org/openqa/selenium/bidi/storage:StorageCommandsTest-edge; 97s remote, remote-cache ... (50 actions, 36 running)
    2540:  (09:52:47) �[32m[15,474 / 16,051]�[0m 1623 / 2367 tests;�[0m Testing //java/test/org/openqa/selenium/bidi/storage:StorageCommandsTest-edge; 102s remote, remote-cache ... (50 actions, 36 running)
    2541:  (09:52:52) �[32m[15,485 / 16,060]�[0m 1626 / 2367 tests;�[0m Testing //java/test/org/openqa/selenium/bidi/storage:StorageCommandsTest-edge; 107s remote, remote-cache ... (50 actions, 37 running)
    2542:  (09:52:57) �[32m[15,497 / 16,070]�[0m 1629 / 2367 tests;�[0m Testing //java/test/org/openqa/selenium/bidi/storage:StorageCommandsTest-edge; 112s remote, remote-cache ... (50 actions, 40 running)
    2543:  (09:53:01) �[31m�[1mFAIL: �[0m//java/test/org/openqa/selenium/bidi/storage:StorageCommandsTest-edge (see /home/runner/.bazel/execroot/_main/bazel-out/k8-fastbuild/testlogs/java/test/org/openqa/selenium/bidi/storage/StorageCommandsTest-edge/test.log)
    2544:  �[31m�[1mFAILED: �[0m//java/test/org/openqa/selenium/bidi/storage:StorageCommandsTest-edge (Summary)
    2545:  /home/runner/.bazel/execroot/_main/bazel-out/k8-fastbuild/testlogs/java/test/org/openqa/selenium/bidi/storage/StorageCommandsTest-edge/test.log
    2546:  /home/runner/.bazel/execroot/_main/bazel-out/k8-fastbuild/testlogs/java/test/org/openqa/selenium/bidi/storage/StorageCommandsTest-edge/test_attempts/attempt_1.log
    2547:  (09:53:01) �[32mINFO: �[0mFrom Testing //java/test/org/openqa/selenium/bidi/storage:StorageCommandsTest-edge:
    2548:  ==================== Test output for //java/test/org/openqa/selenium/bidi/storage:StorageCommandsTest-edge:
    2549:  Failures: 1
    2550:  1) canGetAllCookies() (org.openqa.selenium.bidi.storage.StorageCommandsTest)
    2551:  org.opentest4j.AssertionFailedError: 
    2552:  Expecting value to be true but was false
    2553:  at org.openqa.selenium.bidi.storage.StorageCommandsTest.canGetAllCookies(StorageCommandsTest.java:283)
    2554:  Execution result: https://gypsum.cluster.engflow.com/actions/executions/ChBfX3pYI41Sy7j9SHf-rmnOEgdkZWZhdWx0GiUKIKmFCLh69X9C1inn5JIuBggqZ_Q2c-fcFBn08JW-1CsxELwD
    2555:  ================================================================================
    2556:  ==================== Test output for //java/test/org/openqa/selenium/bidi/storage:StorageCommandsTest-edge:
    2557:  Failures: 1
    2558:  1) canGetAllCookies() (org.openqa.selenium.bidi.storage.StorageCommandsTest)
    2559:  org.opentest4j.AssertionFailedError: 
    2560:  Expecting value to be true but was false
    2561:  at org.openqa.selenium.bidi.storage.StorageCommandsTest.canGetAllCookies(StorageCommandsTest.java:283)
    2562:  Execution result: https://gypsum.cluster.engflow.com/actions/executions/ChBfX3pYI41Sy7j9SHf-rmnOEgdkZWZhdWx0GiUKIKmFCLh69X9C1inn5JIuBggqZ_Q2c-fcFBn08JW-1CsxELwD
    2563:  ================================================================================
    2564:  (09:53:02) �[32m[15,512 / 16,086]�[0m 1631 / 2367 tests, �[31m�[1m1 failed�[0m;�[0m Testing //java/test/org/openqa/selenium:WebNetworkTest; 92s remote, remote-cache ... (50 actions, 44 running)
    2565:  (09:53:07) �[32m[15,521 / 16,094]�[0m 1634 / 2367 tests, �[31m�[1m1 failed�[0m;�[0m Testing //java/test/org/openqa/selenium:WebNetworkTest; 97s remote, remote-cache ... (50 actions, 46 running)
    2566:  (09:53:13) �[32m[15,537 / 16,110]�[0m 1637 / 2367 tests, �[31m�[1m1 failed�[0m;�[0m Testing //java/test/org/openqa/selenium:WebNetworkTest; 103s remote, remote-cache ... (50 actions, 49 running)
    2567:  (09:53:18) �[32m[15,551 / 16,125]�[0m 1641 / 2367 tests, �[31m�[1m1 failed�[0m;�[0m Testing //java/test/org/openqa/selenium:WebNetworkTest; 108s remote, remote-cache ... (50 actions, 48 running)
    2568:  (09:53:24) �[32m[15,566 / 16,141]�[0m 1641 / 2367 tests, �[31m�[1m1 failed�[0m;�[0m Testing //java/test/org/openqa/selenium:WebNetworkTest; 113s remote, remote-cache ... (50 actions, 49 running)
    2569:  (09:53:29) �[32m[15,580 / 16,159]�[0m 1643 / 2367 tests, �[31m�[1m1 failed�[0m;�[0m Testing //java/test/org/openqa/selenium:WebNetworkTest; 118s remote, remote-cache ... (50 actions running)
    2570:  (09:53:34) �[32m[15,596 / 16,180]�[0m 1645 / 2367 tests, �[31m�[1m1 failed�[0m;�[0m Testing //java/test/org/openqa/selenium:WebNetworkTest; 123s remote, remote-cache ... (50 actions, 48 running)
    2571:  (09:53:39) �[32m[15,619 / 16,205]�[0m 1648 / 2367 tests, �[31m�[1m1 failed�[0m;�[0m Testing //java/test/org/openqa/selenium:WebNetworkTest; 129s remote, remote-cache ... (50 actions running)
    2572:  (09:53:44) �[32m[15,642 / 16,232]�[0m 1651 / 2367 tests, �[31m�[1m1 failed�[0m;�[0m Testing //java/test/org/openqa/selenium:WebNetworkTest; 134s remote, remote-cache ... (50 actions, 48 running)
    2573:  (09:53:49) �[32m[15,662 / 16,256]�[0m 1656 / 2367 tests, �[31m�[1m1 failed�[0m;�[0m Testing //java/test/org/openqa/selenium:WebNetworkTest; 139s remote, remote-cache ... (50 actions, 48 running)
    2574:  (09:53:54) �[32m[15,680 / 16,283]�[0m 1658 / 2367 tests, �[31m�[1m1 failed�[0m;�[0m Testing //java/test/org/openqa/selenium:WebNetworkTest; 144s remote, remote-cache ... (50 actions, 49 running)
    2575:  (09:53:59) �[32m[15,699 / 16,303]�[0m 1662 / 2367 tests, �[31m�[1m1 failed�[0m;�[0m Testing //java/test/org/openqa/selenium:WebNetworkTest; 149s remote, remote-cache ... (50 actions, 48 running)
    2576:  (09:54:04) �[32m[15,723 / 16,324]�[0m 1667 / 2367 tests, �[31m�[1m1 failed�[0m;�[0m Testing //java/test/org/openqa/selenium:WebNetworkTest; 154s remote, remote-cache ... (50 actions, 48 running)
    2577:  (09:54:09) �[32m[15,746 / 16,346]�[0m 1672 / 2367 tests, �[31m�[1m1 failed�[0m;�[0m Testing //rb/spec/integration/selenium/webdriver:driver-chrome-beta-remote; 108s remote, remote-cache ... (50 actions, 49 running)
    2578:  (09:54:15) �[32m[15,764 / 16,362]�[0m 1676 / 2367 tests, �[31m�[1m1 failed�[0m;�[0m Testing //rb/spec/integration/selenium/webdriver:driver-chrome-beta-remote; 113s remote, remote-cache ... (50 actions, 43 running)
    2579:  (09:54:20) �[32m[15,770 / 16,370]�[0m 1677 / 2367 tests, �[31m�[1m1 failed�[0m;�[0m Testing //rb/spec/integration/selenium/webdriver:driver-chrome-beta-remote; 119s remote, remote-cache ... (50 actions, 48 running)
    2580:  (09:54:25) �[32m[15,777 / 16,370]�[0m 1684 / 2367 tests, �[31m�[1m1 failed�[0m;�[0m Testing //rb/spec/integration/selenium/webdriver:driver-chrome-beta-remote; 124s remote, remote-cache ... (50 actions, 46 running)
    2581:  (09:54:31) �[32m[15,782 / 16,370]�[0m 1690 / 2367 tests, �[31m�[1m1 failed�[0m;�[0m Testing //rb/spec/integration/selenium/webdriver:driver-chrome-beta-remote; 129s remote, remote-cache ... (50 actions running)
    2582:  (09:54:36) �[32m[15,785 / 16,370]�[0m 1692 / 2367 tests, �[31m�[1m1 failed�[0m;�[0m Testing //rb/spec/integration/selenium/webdriver:driver-chrome-beta-remote; 134s remote, remote-cache ... (50 actions running)
    2583:  (09:54:41) �[32m[15,793 / 16,370]�[0m 1700 / 2367 tests, �[31m�[1m1 failed�[0m;�[0m Testing //rb/spec/integration/selenium/webdriver:driver-chrome-beta-remote; 140s remote, remote-cache ... (50 actions running)
    2584:  (09:54:46) �[32m[15,799 / 16,370]�[0m 1706 / 2367 tests, �[31m�[1m1 failed�[0m;�[0m Testing //rb/spec/integration/selenium/webdriver:driver-chrome-beta-remote; 145s remote, remote-cache ... (50 actions running)
    2585:  (09:54:52) �[32m[15,806 / 16,370]�[0m 1713 / 2367 tests, �[31m�[1m1 failed�[0m;�[0m Testing //rb/spec/integration/selenium/webdriver:driver-chrome-beta-remote; 150s remote, remote-cache ... (50 actions, 49 running)
    2586:  (09:54:57) �[32m[15,819 / 16,370]�[0m 1726 / 2367 tests, �[31m�[1m1 failed�[0m;�[0m Testing //java/test/org/openqa/selenium/grid/distributor:DrainTest-edge-remote; 133s remote, remote-cache ... (50 actions, 49 running)
    2587:  (09:55:02) �[32m[15,828 / 16,370]�[0m 1735 / 2367 tests, �[31m�[1m1 failed�[0m;�[0m Testing //java/test/org/openqa/selenium/grid/distributor:DrainTest-edge-remote; 138s remote, remote-cache ... (50 actions running)
    2588:  (09:55:09) �[32m[15,833 / 16,370]�[0m 1741 / 2367 tests, �[31m�[1m1 failed�[0m;�[0m Testing //java/test/org/openqa/selenium/grid/distributor:DrainTest-edge; 123s remote, remote-cache ... (50 actions running)
    2589:  (09:55:14) �[32m[15,843 / 16,370]�[0m 1750 / 2367 tests, �[31m�[1m1 failed�[0m;�[0m Testing //java/test/org/openqa/selenium/grid/distributor:DrainTest-edge; 128s remote, remote-cache ... (50 actions, 49 running)
    2590:  (09:55:19) �[32m[15,847 / 16,370]�[0m 1754 / 2367 tests, �[31m�[1m1 failed�[0m;�[0m Testing //java/test/org/openqa/selenium/grid/distributor:DrainTest-edge; 133s remote, remote-cache ... (50 actions running)
    2591:  (09:55:24) �[32m[15,855 / 16,370]�[0m 1763 / 2367 tests, �[31m�[1m1 failed�[0m;�[0m Testing //java/test/org/openqa/selenium/grid/distributor:DrainTest-edge; 139s remote, remote-cache ... (50 actions running)
    2592:  (09:55:29) �[32m[15,864 / 16,370]�[0m 1771 / 2367 tests, �[31m�[1m1 failed�[0m;�[0m Testing //java/test/org/openqa/selenium/grid/distributor:DrainTest-edge; 144s remote, remote-cache ... (50 actions, 49 running)
    2593:  (09:55:34) �[32m[15,869 / 16,370]�[0m 1777 / 2367 tests, �[31m�[1m1 failed�[0m;�[0m Testing //java/test/org/openqa/selenium/grid/distributor:DrainTest-edge; 149s remote, remote-cache ... (50 actions running)
    2594:  (09:55:39) �[32m[15,889 / 16,370]�[0m 1796 / 2367 tests, �[31m�[1m1 failed�[0m;�[0m Testing //java/test/org/openqa/selenium/grid/distributor:DrainTest-edge; 154s remote, remote-cache ... (50 actions, 48 running)
    2595:  (09:55:45) �[32m[15,893 / 16,370]�[0m 1801 / 2367 tests, �[31m�[1m1 failed�[0m;�[0m Testing //java/test/org/openqa/selenium/grid/distributor:DrainTest-edge; 159s remote, remote-cache ... (50 actions running)
    2596:  (09:55:50) �[32m[15,905 / 16,370]�[0m 1812 / 2367 tests, �[31m�[1m1 failed�[0m;�[0m Testing //java/test/org/openqa/selenium/grid/distributor:DrainTest-edge; 164s remote, remote-cache ... (50 actions running)
    2597:  (09:55:55) �[32m[15,916 / 16,370]�[0m 1823 / 2367 tests, �[31m�[1m1 failed�[0m;�[0m Testing //java/test/org/openqa/selenium/grid/distributor:DrainTest-edge; 170s remote, remote-cache ... (50 actions, 48 running)
    2598:  (09:56:00) �[32m[15,935 / 16,370]�[0m 1843 / 2367 tests, �[31m�[1m1 failed�[0m;�[0m Testing //rb/spec/integration/selenium/webdriver:driver-chrome-remote; 112s remote, remote-cache ... (50 actions running)
    2599:  (09:56:06) �[32m[15,941 / 16,370]�[0m 1849 / 2367 tests, �[31m�[1m1 failed�[0m;�[0m Testing //rb/spec/integration/selenium/webdriver:select-chrome-beta-remote; 83s remote, remote-cache ... (50 actions running)
    2600:  (09:56:11) �[32m[15,950 / 16,370]�[0m 1857 / 2367 tests, �[31m�[1m1 failed�[0m;�[0m Testing //rb/spec/integration/selenium/webdriver:select-chrome-beta-remote; 88s remote, remote-cache ... (50 actions running)
    2601:  (09:56:16) �[32m[15,957 / 16,370]�[0m 1865 / 2367 tests, �[31m�[1m1 failed�[0m;�[0m Testing //rb/spec/integration/selenium/webdriver:select-chrome-beta-remote; 93s remote, remote-cache ... (50 actions running)
    2602:  (09:56:21) �[32m[15,969 / 16,370]�[0m 1876 / 2367 tests, �[31m�[1m1 failed�[0m;�[0m Testing //rb/spec/integration/selenium/webdriver:select-chrome-beta-remote; 98s remote, remote-cache ... (50 actions, 49 running)
    2603:  (09:56:26) �[32m[15,979 / 16,370]�[0m 1886 / 2367 tests, �[31m�[1m1 failed�[0m;�[0m Testing //rb/spec/integration/selenium/webdriver:select-chrome-beta-remote; 103s remote, remote-cache ... (50 actions running)
    2604:  (09:56:31) �[32m[15,988 / 16,370]�[0m 1895 / 2367 tests, �[31m�[1m1 failed�[0m;�[0m Testing //rb/spec/integration/selenium/webdriver:select-chrome-beta-remote; 109s remote, remote-cache ... (50 actions running)
    2605:  (09:56:37) �[32m[15,997 / 16,370]�[0m 1905 / 2367 tests, �[31m�[1m1 failed�[0m;�[0m Testing //rb/spec/integration/selenium/webdriver:select-chrome-beta-remote; 114s remote, remote-cache ... (50 actions running)
    2606:  (09:56:42) �[32m[16,003 / 16,370]�[0m 1910 / 2367 tests, �[31m�[1m1 failed�[0m;�[0m Testing //rb/spec/integration/selenium/webdriver:select-chrome-beta-remote; 119s remote, remote-cache ... (50 actions running)
    2607:  (09:56:47) �[32m[16,013 / 16,370]�[0m 1920 / 2367 tests, �[31m�[1m1 failed�[0m;�[0m Testing //rb/spec/integration/selenium/webdriver:select-chrome-beta-remote; 124s remote, remote-cache ... (50 actions, 47 running)
    2608:  (09:56:52) �[32m[16,018 / 16,370]�[0m 1926 / 2367 tests, �[31m�[1m1 failed�[0m;�[0m Testing //java/test/org/openqa/selenium/bidi/browsingcontext:BrowsingContextTest-edge-remote; 111s remote, remote-cache ... (50 actions running)
    2609:  (09:56:58) �[32m[16,020 / 16,370]�[0m 1928 / 2367 tests, �[31m�[1m1 failed�[0m;�[0m Testing //java/test/org/openqa/selenium/bidi/browsingcontext:BrowsingContextTest-edge-remote; 116s remote, remote-cache ... (50 actions running)
    2610:  (09:57:03) �[32m[16,026 / 16,370]�[0m 1933 / 2367 tests, �[31m�[1m1 failed�[0m;�[0m Testing //java/test/org/openqa/selenium/bidi/browsingcontext:BrowsingContextTest-edge-remote; 121s remote, remote-cache ... (50 actions running)
    2611:  (09:57:04) �[31m�[1mFAIL: �[0m//java/test/org/openqa/selenium/bidi/input:DefaultWheelTest (see /home/runner/.bazel/execroot/_main/bazel-out/k8-fastbuild/testlogs/java/test/org/openqa/selenium/bidi/input/DefaultWheelTest/test_attempts/attempt_1.log)
    2612:  (09:57:08) �[32m[16,028 / 16,370]�[0m 1936 / 2367 tests, �[31m�[1m1 failed�[0m;�[0m Testing //java/test/org/openqa/selenium/bidi/browsingcontext:BrowsingContextTest-edge-remote; 126s remote, remote-cache ... (50 actions running)
    2613:  (09:57:14) �[32m[16,032 / 16,370]�[0m 1940 / 2367 tests, �[31m�[1m1 failed�[0m;�[0m Testing //java/test/org/openqa/selenium/bidi/browsingcontext:BrowsingContextTest-edge-remote; 132s remote, remote-cache ... (50 actions running)
    2614:  (09:57:19) �[32m[16,040 / 16,370]�[0m 1947 / 2367 tests, �[31m�[1m1 failed�[0m;�[0m Testing //java/test/org/openqa/selenium/bidi/browsingcontext:BrowsingContextTest-edge-remote; 137s remote, remote-cache ... (50 actions, 49 running)
    2615:  (09:57:24) �[32m[16,048 / 16,370]�[0m 1955 / 2367 tests, �[31m�[1m1 failed�[0m;�[0m Testing //java/test/org/openqa/selenium/grid/router:StressTest-chrome-remote; 99s remote, remote-cache ... (50 actions running)
    2616:  (09:57:30) �[32m[16,056 / 16,370]�[0m 1963 / 2367 tests, �[31m�[1m1 failed�[0m;�[0m Testing //java/test/org/openqa/selenium/grid/router:StressTest-chrome-remote; 104s remote, remote-cache ... (50 actions running)
    2617:  (09:57:35) �[32m[16,062 / 16,370]�[0m 1970 / 2367 tests, �[31m�[1m1 failed�[0m;�[0m Testing //java/test/org/openqa/selenium/grid/router:StressTest-chrome-remote; 110s remote, remote-cache ... (50 actions running)
    2618:  (09:57:37) �[31m�[1mFAIL: �[0m//java/test/org/openqa/selenium/bidi/storage:StorageCommandsTest-edge-remote (see /home/runner/.bazel/execroot/_main/bazel-out/k8-fastbuild/testlogs/java/test/org/openqa/selenium/bidi/storage/StorageCommandsTest-edge-remote/test_attempts/attempt_1.log)
    2619:  (09:57:42) �[32m[16,071 / 16,370]�[0m 1979 / 2367 tests, �[31m�[1m1 failed�[0m;�[0m Testing //java/test/org/openqa/selenium/grid/router:StressTest-chrome-remote; 116s remote, remote-cache ... (50 actions running)
    2620:  �[35mFLAKY: �[0m//java/test/org/openqa/selenium/bidi/input:DefaultWheelTest (Summary)
    2621:  /home/runner/.bazel/execroot/_main/bazel-out/k8-fastbuild/testlogs/java/test/org/openqa/selenium/bidi/input/DefaultWheelTest/test_attempts/attempt_1.log
    2622:  (09:57:43) �[32mINFO: �[0mFrom Testing //java/test/org/openqa/selenium/bidi/input:DefaultWheelTest:
    2623:  ==================== Test output for //java/test/org/openqa/selenium/bidi/input:DefaultWheelTest:
    2624:  Failures: 1
    2625:  1) shouldScrollFromViewportByGivenAmount() (org.openqa.selenium.bidi.input.DefaultWheelTest)
    2626:  org.opentest4j.AssertionFailedError: expected: <true> but was: <false>
    2627:  at org.junit.jupiter.api.AssertionFailureBuilder.build(AssertionFailureBuilder.java:151)
    2628:  at org.junit.jupiter.api.AssertionFailureBuilder.buildAndThrow(AssertionFailureBuilder.java:132)
    2629:  at org.junit.jupiter.api.AssertTrue.failNotTrue(AssertTrue.java:63)
    2630:  at org.junit.jupiter.api.AssertTrue.assertTrue(AssertTrue.java:36)
    2631:  at org.junit.jupiter.api.AssertTrue.assertTrue(AssertTrue.java:31)
    2632:  at org.junit.jupiter.api.Assertions.assertTrue(Assertions.java:183)
    2633:  at org.openqa.selenium.bidi.input.DefaultWheelTest.shouldScrollFromViewportByGivenAmount(DefaultWheelTest.java:151)
    2634:  Execution result: https://gypsum.cluster.engflow.com/actions/executions/ChC-v17CgexZ_6f9xVll8t6tEgdkZWZhdWx0GiUKIFxo5aBAx4lpCakZXSBNpbobnaX1bI4HXtuCxCKy1v3NELwD
    2635:  ================================================================================
    2636:  (09:57:47) �[32m[16,075 / 16,370]�[0m 1982 / 2367 tests, �[31m�[1m1 failed�[0m;�[0m Testing //java/test/org/openqa/selenium/grid/router:StressTest-chrome-remote; 121s remote, remote-cache ... (50 actions running)
    2637:  (09:57:52) �[32m[16,079 / 16,370]�[0m 1986 / 2367 tests, �[31m�[1m1 failed�[0m;�[0m Testing //java/test/org/openqa/selenium/grid/router:StressTest-chrome-remote; 126s remote, remote-cache ... (50 actions running)
    2638:  (09:57:57) �[32m[16,087 / 16,370]�[0m 1995 / 2367 tests, �[31m�[1m1 failed�[0m;�[0m Testing //java/test/org/openqa/selenium/grid/router:StressTest-chrome-remote; 131s remote, remote-cache ... (50 actions running)
    2639:  (09:58:02) �[32m[16,100 / 16,370]�[0m 2007 / 2367 tests, �[31m�[1m1 failed�[0m;�[0m Testing //java/test/org/openqa/selenium/grid/router:StressTest-chrome-remote; 137s remote, remote-cache ... (50 actions, 49 running)
    2640:  (09:58:09) �[32m[16,109 / 16,370]�[0m 2017 / 2367 tests, �[31m�[1m1 failed�[0m;�[0m Testing //java/test/org/openqa/selenium/grid/router:StressTest-chrome-remote; 144s remote, remote-cache ... (50 actions running)
    2641:  (09:58:14) �[32m[16,123 / 16,370]�[0m 2030 / 2367 tests, �[31m�[1m1 failed�[0m;�[0m Testing //java/test/org/openqa/selenium/grid/router:StressTest-chrome-remote; 149s remote, remote-cache ... (50 actions, 48 running)
    2642:  (09:58:20) �[32m[16,129 / 16,370]�[0m 2037 / 2367 tests, �[31m�[1m1 failed�[0m;�[0m Testing //java/test/org/openqa/selenium/grid/router:StressTest-chrome-remote; 155s remote, remote-cache ... (50 actions running)
    2643:  (09:58:25) �[32m[16,139 / 16,370]�[0m 2046 / 2367 tests, �[31m�[1m1 failed�[0m;�[0m Testing //java/test/org/openqa/selenium/grid/router:StressTest-chrome-remote; 160s remote, remote-cache ... (50 actions, 49 running)
    2644:  (09:58:30) �[32m[16,151 / 16,370]�[0m 2058 / 2367 tests, �[31m�[1m1 failed�[0m;�[0m Testing //java/test/org/openqa/selenium/grid/router:StressTest-chrome-remote; 165s remote, remote-cache ... (50 actions running)
    2645:  (09:58:35) �[32m[16,161 / 16,370]�[0m 2068 / 2367 tests, �[31m�[1m1 failed�[0m;�[0m Testing //java/test/org/openqa/selenium/grid/router:StressTest-chrome-remote; 170s remote, remote-cache ... (50 actions, 49 running)
    2646:  (09:58:37) �[31m�[1mFAIL: �[0m//java/test/org/openqa/selenium/bidi/storage:StorageCommandsTest-edge-remote (see /home/runner/.bazel/execroot/_main/bazel-out/k8-fastbuild/testlogs/java/test/org/openqa/selenium/bidi/storage/StorageCommandsTest-edge-remote/test.log)
    2647:  �[31m�[1mFAILED: �[0m//java/test/org/openqa/selenium/bidi/storage:StorageCommandsTest-edge-remote (Summary)
    2648:  /home/runner/.bazel/execroot/_main/bazel-out/k8-fastbuild/testlogs/java/test/org/openqa/selenium/bidi/storage/StorageCommandsTest-edge-remote/test.log
    ...
    
    2753:  09:57:31.458 INFO [GridModel.release] - Releasing slot for session id e3622e9e8e36085c69ef2139a2fcb22f
    2754:  09:57:31.458 INFO [SessionSlot.stop] - Stopping session e3622e9e8e36085c69ef2139a2fcb22f
    2755:  09:57:31.527 INFO [LocalDistributor.newSession] - Session request received by the Distributor: 
    2756:  [Capabilities {browserName: MicrosoftEdge, ms:edgeOptions: {args: [disable-extensions, disable-infobars, disable-breakpad, disable-dev-shm-usage, no-sandbox], binary: external/+pin_browsers_exte..., extensions: [], prefs: {exit_type: None, exited_cleanly: true}}, unhandledPromptBehavior: ignore, webSocketUrl: true}]
    2757:  09:57:33.755 INFO [LocalNode.newSession] - Session created by the Node. Id: e5ad9912843ef7ff14887eb2708c4df2, Caps: Capabilities {acceptInsecureCerts: false, browserName: MicrosoftEdge, browserVersion: 137.0.3296.68, fedcm:accounts: true, ms:edgeOptions: {debuggerAddress: localhost:46199}, msedge: {msedgedriverVersion: 137.0.3296.68 (f3affdcf267b..., userDataDir: /tmp/.com.microsoft.Edge.MB...}, networkConnectionEnabled: false, pageLoadStrategy: normal, platformName: linux, proxy: Proxy(), se:cdp: ws://127.0.0.1:30829/sessio..., se:cdpVersion: 137.0.3296.68, se:gridWebSocketUrl: ws://localhost:1145/session..., setWindowRect: true, strictFileInteractability: false, timeouts: {implicit: 0, pageLoad: 300000, script: 30000}, unhandledPromptBehavior: ignore, webSocketUrl: ws://127.0.0.1:30829/sessio..., webauthn:extension:credBlob: true, webauthn:extension:largeBlob: true, webauthn:extension:minPinLength: true, webauthn:extension:prf: true, webauthn:virtualAuthenticators: true}
    2758:  09:57:33.773 INFO [LocalDistributor.newSession] - Session created by the Distributor. Id: e5ad9912843ef7ff14887eb2708c4df2 
    2759:  Caps: Capabilities {acceptInsecureCerts: false, browserName: MicrosoftEdge, browserVersion: 137.0.3296.68, fedcm:accounts: true, ms:edgeOptions: {debuggerAddress: localhost:46199}, msedge: {msedgedriverVersion: 137.0.3296.68 (f3affdcf267b..., userDataDir: /tmp/.com.microsoft.Edge.MB...}, networkConnectionEnabled: false, pageLoadStrategy: normal, platformName: linux, proxy: Proxy(), se:cdp: ws://127.0.0.1:30829/sessio..., se:cdpVersion: 137.0.3296.68, se:gridWebSocketUrl: ws://localhost:1145/session..., setWindowRect: true, strictFileInteractability: false, timeouts: {implicit: 0, pageLoad: 300000, script: 30000}, unhandledPromptBehavior: ignore, webSocketUrl: ws://127.0.0.1:30829/sessio..., webauthn:extension:credBlob: true, webauthn:extension:largeBlob: true, webauthn:extension:minPinLength: true, webauthn:extension:prf: true, webauthn:virtualAuthenticators: true}
    2760:  09:57:33.890 INFO [ProxyNodeWebsockets.createWsEndPoint] - Establishing connection to ws://localhost:46199/devtools/browser/1d6cab0a-d453-45bf-9941-fab20a1c9753
    2761:  09:57:33.923 INFO [ProxyNodeWebsockets.createWsEndPoint] - Establishing connection to ws://localhost:1145/session/e5a...

    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