Skip to content
New issue

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

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

Already on GitHub? Sign in to your account

[grid] handle baseRoute like the hubRoute and the graphqlRoute #13772

Merged
merged 4 commits into from
Apr 6, 2024
Merged

Conversation

joerg1985
Copy link
Member

@joerg1985 joerg1985 commented Apr 3, 2024

User description

Description

Reworked the TemplateGridServerCommand.baseRoute to handle the subPath like TemplateGridServerCommand.hubRoute and TemplateGridServerCommand.graphqlRoute are handling it.

Motivation and Context

Makes the code better readable and reduces the danger of calling TemplateGridServerCommand.baseRoute incorrect.

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


Description

  • Enhanced baseRoute in TemplateGridServerCommand to directly return the route for empty prefixes, simplifying route handling.
  • Simplified route handling in Hub, Standalone, and RouterServer by integrating baseRoute directly, removing the need for conditional logic based on subPath.
  • These changes improve code readability and reduce the risk of incorrect baseRoute usage across different server commands.

Changes walkthrough

Relevant files
Enhancement
TemplateGridServerCommand.java
Enhance baseRoute Handling for Empty Prefix                           

java/src/org/openqa/selenium/grid/TemplateGridServerCommand.java

  • Modified baseRoute to handle empty prefix by returning the route
    directly.
  • Combined the route with a prefixed route if prefix is not empty.
  • +4/-1     
    Hub.java
    Simplify Hub Command Route Handling                                           

    java/src/org/openqa/selenium/grid/commands/Hub.java

  • Simplified appendRoute by integrating baseRoute directly with subPath
    and routerWithSpecChecks.
  • Removed conditional baseRoute addition based on subPath emptiness.
  • +1/-5     
    Standalone.java
    Streamline Standalone Command Route Configuration               

    java/src/org/openqa/selenium/grid/commands/Standalone.java

  • Integrated baseRoute directly into appendRoute for cleaner handling.
  • Removed conditional addition of baseRoute based on subPath.
  • +1/-5     
    RouterServer.java
    Refactor RouterServer Route Setup                                               

    java/src/org/openqa/selenium/grid/router/httpd/RouterServer.java

  • Utilized baseRoute in appendRoute for a more straightforward approach.
  • Eliminated conditional logic for adding baseRoute based on subPath
    presence.
  • +1/-5     

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

    Copy link

    PR Description updated to latest commit (05cfe37)

    Copy link

    PR Review

    ⏱️ Estimated effort to review [1-5]

    2, because the changes are straightforward and localized to specific methods in a few files. The logic is not complex, but understanding the context and impact of the changes on the overall routing behavior requires some familiarity with the existing codebase.

    🧪 Relevant tests

    No

    🔍 Possible issues

    Simplification Assumption: The change assumes that combining the route with a prefix and without a prefix (when the prefix is empty) will not introduce side effects or alter the expected behavior. This needs to be verified across different use cases.

    Regression Risk: While the refactoring aims to simplify route handling, there's a risk of regression in scenarios where the original behavior depended on the nuances of the previous implementation. It would be beneficial to ensure thorough testing, especially in edge cases where subPaths might be manipulated or expected to behave in a specific manner.

    🔒 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

    PR Code Suggestions

    CategorySuggestions                                                                                                                                                       
    Possible issue
    Add a null check for the prefix parameter.

    Consider checking for null in addition to isEmpty() for the prefix parameter to avoid
    potential NullPointerExceptions. This ensures that the method is robust against null
    inputs.

    java/src/org/openqa/selenium/grid/TemplateGridServerCommand.java [72-73]

    -if (prefix.isEmpty()) {
    +if (prefix == null || prefix.isEmpty()) {
       return route;
     }
     
    Enhancement
    Verify baseRoute handles empty or null subPath as expected.

    Since baseRoute is now included in the stream of routes to be combined, ensure that its
    behavior aligns with the expected behavior when subPath is empty or null, especially since
    it now directly returns the route without prefixing if subPath is empty.

    java/src/org/openqa/selenium/grid/commands/Hub.java [190]

    -baseRoute(subPath, combine(routerWithSpecChecks)),
    +baseRoute(subPath, combine(routerWithSpecChecks)), // Ensure baseRoute handles null or empty subPath appropriately
     
    Ensure baseRoute behaves correctly with empty or null subPath.

    Similar to the suggestion for Hub.java, confirm that including baseRoute in the stream
    does not alter the expected behavior when subPath is empty or null, given the new direct
    return logic in baseRoute.

    java/src/org/openqa/selenium/grid/commands/Standalone.java [195]

    -baseRoute(subPath, combine(router)),
    +baseRoute(subPath, combine(router)), // Confirm baseRoute's behavior with null or empty subPath
     
    Check for correct baseRoute behavior with potentially empty or null subPath.

    As with the other files, it's crucial to verify that the inclusion of baseRoute in the
    route combination process does not introduce unexpected behavior, especially in scenarios
    where subPath might be empty or null.

    java/src/org/openqa/selenium/grid/router/httpd/RouterServer.java [152]

    -baseRoute(subPath, combine(routerWithSpecChecks)),
    +baseRoute(subPath, combine(routerWithSpecChecks)), // Check for correct behavior with potentially empty or null subPath
     
    Maintainability
    Refactor baseRoute logic into a separate method for clarity.

    To improve code readability and maintainability, consider extracting the logic within
    baseRoute into a separate method. This method could handle the prefix check and route
    combination, making the baseRoute method more concise and its purpose clearer.

    java/src/org/openqa/selenium/grid/TemplateGridServerCommand.java [72-75]

    -if (prefix.isEmpty()) {
    -  return route;
    +return combineRouteWithPrefix(prefix, route);
    +
    +// Elsewhere in your class
    +private static Routable combineRouteWithPrefix(String prefix, Route route) {
    +  if (prefix == null || prefix.isEmpty()) {
    +    return route;
    +  }
    +  return Route.combine(route, Route.prefix(prefix).to(route));
     }
    -return Route.combine(route, Route.prefix(prefix).to(route));
     

    ✨ 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

    codiumai-pr-agent-pro bot commented Apr 3, 2024

    CI Failure Feedback

    (Checks updated until commit 507ef30)

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

    Failed stage: Run Bazel [❌]

    Failure summary:

    All tests failed due to a common error: "Permission denied - java". This indicates that the test
    environment was unable to execute the Java command, likely due to insufficient permissions or Java
    not being properly installed or accessible in the path for the execution context of the tests.

    Relevant error logs:
    1:  ##[group]Operating System
    2:  Microsoft Windows Server 2022
    ...
    
    706:  �[32m[1,524 / 2,884]�[0m Copying files; 0s local ... (4 actions, 1 running)
    707:  �[35mWARNING: �[0mD:/a/selenium/selenium/BUILD.bazel:13:22: input 'package' to //:.aspect_rules_js/node_modules/chalk@2.4.2/pkg is a directory; dependency checking of directories is unsound
    708:  �[35mWARNING: �[0mD:/a/selenium/selenium/BUILD.bazel:13:22: input 'package' to //:.aspect_rules_js/node_modules/color-convert@1.9.3/pkg is a directory; dependency checking of directories is unsound
    709:  �[35mWARNING: �[0mD:/a/selenium/selenium/BUILD.bazel:13:22: input 'package' to //:.aspect_rules_js/node_modules/color-name@1.1.3/pkg is a directory; dependency checking of directories is unsound
    710:  �[35mWARNING: �[0mD:/a/selenium/selenium/BUILD.bazel:13:22: input 'package' to //:.aspect_rules_js/node_modules/convert-source-map@1.9.0/pkg is a directory; dependency checking of directories is unsound
    711:  �[35mWARNING: �[0mD:/a/selenium/selenium/BUILD.bazel:13:22: input 'package' to //:.aspect_rules_js/node_modules/cosmiconfig@6.0.0/pkg is a directory; dependency checking of directories is unsound
    712:  �[35mWARNING: �[0mD:/a/selenium/selenium/BUILD.bazel:13:22: input 'package' to //:.aspect_rules_js/node_modules/debug@4.3.4_supports-color_8.1.1/pkg is a directory; dependency checking of directories is unsound
    713:  �[35mWARNING: �[0mD:/a/selenium/selenium/BUILD.bazel:13:22: input 'package' to //:.aspect_rules_js/node_modules/electron-to-chromium@1.4.284/pkg is a directory; dependency checking of directories is unsound
    714:  �[35mWARNING: �[0mD:/a/selenium/selenium/BUILD.bazel:13:22: input 'package' to //:.aspect_rules_js/node_modules/error-ex@1.3.2/pkg is a directory; dependency checking of directories is unsound
    ...
    
    721:  �[35mWARNING: �[0mD:/a/selenium/selenium/BUILD.bazel:13:22: input 'package' to //:.aspect_rules_js/node_modules/graphql-tag@2.12.6_graphql_16.8.1/pkg is a directory; dependency checking of directories is unsound
    722:  �[35mWARNING: �[0mD:/a/selenium/selenium/BUILD.bazel:13:22: input 'package' to //:.aspect_rules_js/node_modules/has@1.0.3/pkg is a directory; dependency checking of directories is unsound
    723:  �[35mWARNING: �[0mD:/a/selenium/selenium/BUILD.bazel:13:22: input 'package' to //:.aspect_rules_js/node_modules/has-flag@3.0.0/pkg is a directory; dependency checking of directories is unsound
    724:  �[35mWARNING: �[0mD:/a/selenium/selenium/BUILD.bazel:13:22: input 'package' to //:.aspect_rules_js/node_modules/has-flag@4.0.0/pkg is a directory; dependency checking of directories is unsound
    725:  �[35mWARNING: �[0mD:/a/selenium/selenium/BUILD.bazel:13:22: input 'package' to //:.aspect_rules_js/node_modules/import-fresh@3.3.0/pkg is a directory; dependency checking of directories is unsound
    726:  �[35mWARNING: �[0mD:/a/selenium/selenium/BUILD.bazel:13:22: input 'package' to //:.aspect_rules_js/node_modules/is-arrayish@0.2.1/pkg is a directory; dependency checking of directories is unsound
    727:  �[35mWARNING: �[0mD:/a/selenium/selenium/BUILD.bazel:13:22: input 'package' to //:.aspect_rules_js/node_modules/is-core-module@2.11.0/pkg is a directory; dependency checking of directories is unsound
    728:  �[35mWARNING: �[0mD:/a/selenium/selenium/BUILD.bazel:13:22: input 'package' to //:.aspect_rules_js/node_modules/jsesc@2.5.2/pkg is a directory; dependency checking of directories is unsound
    729:  �[35mWARNING: �[0mD:/a/selenium/selenium/BUILD.bazel:13:22: input 'package' to //:.aspect_rules_js/node_modules/json-parse-even-better-errors@2.3.1/pkg is a directory; dependency checking of directories is unsound
    ...
    
    824:  �[35mWARNING: �[0mD:/a/selenium/selenium/BUILD.bazel:13:22: input 'package' to //:.aspect_rules_js/node_modules/optimism@0.18.0/pkg is a directory; dependency checking of directories is unsound
    825:  �[35mWARNING: �[0mD:/a/selenium/selenium/BUILD.bazel:13:22: input 'package' to //:.aspect_rules_js/node_modules/@wry+trie@0.4.3/pkg is a directory; dependency checking of directories is unsound
    826:  �[35mWARNING: �[0mD:/a/selenium/selenium/BUILD.bazel:13:22: input 'package' to //:.aspect_rules_js/node_modules/@wry+context@0.7.4/pkg is a directory; dependency checking of directories is unsound
    827:  �[32m[2,646 / 2,887]�[0m [Prepa] Copying directory npm__at_mui_icons-material__5.15.8__-554584225/package; 6s ... (4 actions, 2 running)
    828:  �[32mINFO: �[0mFrom Installing external/bundle/rb/vendor/cache/bundler-2.4.19.gem (@@bundle//:bundler-2.4.19):
    829:  Successfully installed bundler-2.4.19
    830:  1 gem installed
    831:  �[32mINFO: �[0mFrom Building java/src/org/openqa/selenium/remote/libapi-class.jar (66 source files):
    832:  java\src\org\openqa\selenium\remote\ErrorHandler.java:46: warning: [removal] ErrorCodes in org.openqa.selenium.remote has been deprecated and marked for removal
    833:  private final ErrorCodes errorCodes;
    834:  ^
    835:  java\src\org\openqa\selenium\remote\ErrorHandler.java:60: warning: [removal] ErrorCodes in org.openqa.selenium.remote has been deprecated and marked for removal
    836:  this.errorCodes = new ErrorCodes();
    837:  ^
    838:  java\src\org\openqa\selenium\remote\ErrorHandler.java:68: warning: [removal] ErrorCodes in org.openqa.selenium.remote has been deprecated and marked for removal
    839:  public ErrorHandler(ErrorCodes codes, boolean includeServerErrors) {
    840:  ^
    841:  java\src\org\openqa\selenium\remote\Response.java:97: warning: [removal] ErrorCodes in org.openqa.selenium.remote has been deprecated and marked for removal
    842:  ErrorCodes errorCodes = new ErrorCodes();
    843:  ^
    844:  java\src\org\openqa\selenium\remote\Response.java:97: warning: [removal] ErrorCodes in org.openqa.selenium.remote has been deprecated and marked for removal
    845:  ErrorCodes errorCodes = new ErrorCodes();
    846:  ^
    847:  java\src\org\openqa\selenium\remote\ProtocolHandshake.java:181: warning: [removal] ErrorCodes in org.openqa.selenium.remote has been deprecated and marked for removal
    848:  response.setStatus(ErrorCodes.SUCCESS);
    849:  ^
    850:  java\src\org\openqa\selenium\remote\ProtocolHandshake.java:182: warning: [removal] ErrorCodes in org.openqa.selenium.remote has been deprecated and marked for removal
    851:  response.setState(ErrorCodes.SUCCESS_STRING);
    852:  ^
    853:  java\src\org\openqa\selenium\remote\W3CHandshakeResponse.java:53: warning: [removal] ErrorCodes in org.openqa.selenium.remote has been deprecated and marked for removal
    854:  new ErrorCodes().toStatus((String) rawError, Optional.of(tuple.getStatusCode())));
    855:  ^
    856:  java\src\org\openqa\selenium\remote\W3CHandshakeResponse.java:56: warning: [removal] ErrorCodes in org.openqa.selenium.remote has been deprecated and marked for removal
    857:  new ErrorCodes().getExceptionType((String) rawError);
    858:  ^
    859:  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
    860:  private final ErrorCodes errorCodes = new ErrorCodes();
    861:  ^
    862:  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
    863:  private final ErrorCodes errorCodes = new ErrorCodes();
    864:  ^
    865:  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
    866:  int status = response.getStatus() == ErrorCodes.SUCCESS ? HTTP_OK : HTTP_INTERNAL_ERROR;
    867:  ^
    868:  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
    869:  response.setStatus(ErrorCodes.UNKNOWN_COMMAND);
    870:  ^
    871:  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
    872:  response.setStatus(ErrorCodes.UNHANDLED_ERROR);
    873:  ^
    874:  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
    875:  response.setStatus(ErrorCodes.SUCCESS);
    876:  ^
    877:  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
    878:  response.setState(errorCodes.toState(ErrorCodes.SUCCESS));
    879:  ^
    880:  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
    881:  response.setState(errorCodes.toState(ErrorCodes.SUCCESS));
    882:  ^
    883:  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
    884:  private final ErrorCodes errorCodes = new ErrorCodes();
    885:  ^
    886:  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
    887:  private final ErrorCodes errorCodes = new ErrorCodes();
    888:  ^
    889:  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
    890:  response.setStatus(ErrorCodes.UNKNOWN_COMMAND);
    891:  ^
    892:  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
    893:  response.setStatus(ErrorCodes.UNHANDLED_ERROR);
    894:  ^
    895:  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
    896:  response.setStatus(ErrorCodes.SUCCESS);
    ...
    
    1034:  �[32m[2,887 / 2,910]�[0m Testing //rb/spec/integration/selenium/webdriver:navigation-edge-remote; 47s local, disk-cache ... (4 actions running)
    1035:  �[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)
    1036:  �[32m[2,887 / 2,910]�[0m Testing //rb/spec/integration/selenium/webdriver:navigation-edge-remote; 48s local, disk-cache ... (4 actions running)
    1037:  �[32m[2,887 / 2,910]�[0m Testing //rb/spec/integration/selenium/webdriver:navigation-edge-remote; 54s local, disk-cache ... (4 actions running)
    1038:  �[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)
    1039:  �[32m[2,887 / 2,910]�[0m Testing //rb/spec/integration/selenium/webdriver:navigation-edge-remote; 55s local, disk-cache ... (4 actions running)
    1040:  �[32m[2,887 / 2,910]�[0m Testing //rb/spec/integration/selenium/webdriver:navigation-edge-remote; 61s local, disk-cache ... (4 actions running)
    1041:  �[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)
    1042:  �[31m�[1mFAILED: �[0m//rb/spec/integration/selenium/webdriver:navigation-edge-remote (Summary)
    1043:  D:/_bazel/execroot/selenium/bazel-out/x64_windows-fastbuild/testlogs/rb/spec/integration/selenium/webdriver/navigation-edge-remote/test.log
    1044:  D:/_bazel/execroot/selenium/bazel-out/x64_windows-fastbuild/testlogs/rb/spec/integration/selenium/webdriver/navigation-edge-remote/test_attempts/attempt_1.log
    1045:  D:/_bazel/execroot/selenium/bazel-out/x64_windows-fastbuild/testlogs/rb/spec/integration/selenium/webdriver/navigation-edge-remote/test_attempts/attempt_2.log
    1046:  �[32mINFO: �[0mFrom Testing //rb/spec/integration/selenium/webdriver:navigation-edge-remote:
    1047:  ==================== Test output for //rb/spec/integration/selenium/webdriver:navigation-edge-remote:
    1048:  2024-04-06 13:52: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
    1049:  An error occurred in a `before(:suite)` hook.
    1050:  Failure/Error: @pid = Process.spawn(*@command, options)
    1051:  Errno::EACCES:
    1052:  Permission denied - java
    1053:  # ./rb/lib/selenium/webdriver/common/child_process.rb:57:in `spawn'
    1054:  # ./rb/lib/selenium/webdriver/common/child_process.rb:57:in `start'
    1055:  # ./rb/lib/selenium/server.rb:204:in `start'
    1056:  # //?/D:/a/selenium/selenium/rb/spec/integration/selenium/webdriver/spec_helper.rb:40:in `block (2 levels) in <top (required)>'
    1057:  Finished in 0.04729 seconds (files took 0.59471 seconds to load)
    1058:  0 examples, 0 failures, 1 error occurred outside of examples
    1059:  ================================================================================
    1060:  ==================== Test output for //rb/spec/integration/selenium/webdriver:navigation-edge-remote:
    1061:  2024-04-06 13:52:44 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
    1062:  An error occurred in a `before(:suite)` hook.
    1063:  Failure/Error: @pid = Process.spawn(*@command, options)
    1064:  Errno::EACCES:
    1065:  Permission denied - java
    1066:  # ./rb/lib/selenium/webdriver/common/child_process.rb:57:in `spawn'
    1067:  # ./rb/lib/selenium/webdriver/common/child_process.rb:57:in `start'
    1068:  # ./rb/lib/selenium/server.rb:204:in `start'
    1069:  # //?/D:/a/selenium/selenium/rb/spec/integration/selenium/webdriver/spec_helper.rb:40:in `block (2 levels) in <top (required)>'
    1070:  Finished in 0.04501 seconds (files took 0.64059 seconds to load)
    1071:  0 examples, 0 failures, 1 error occurred outside of examples
    1072:  ================================================================================
    1073:  ==================== Test output for //rb/spec/integration/selenium/webdriver:navigation-edge-remote:
    1074:  2024-04-06 13:53:11 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
    1075:  An error occurred in a `before(:suite)` hook.
    1076:  Failure/Error: @pid = Process.spawn(*@command, options)
    1077:  Errno::EACCES:
    1078:  Permission denied - java
    1079:  # ./rb/lib/selenium/webdriver/common/child_process.rb:57:in `spawn'
    1080:  # ./rb/lib/selenium/webdriver/common/child_process.rb:57:in `start'
    1081:  # ./rb/lib/selenium/server.rb:204:in `start'
    1082:  # //?/D:/a/selenium/selenium/rb/spec/integration/selenium/webdriver/spec_helper.rb:40:in `block (2 levels) in <top (required)>'
    1083:  Finished in 0.04499 seconds (files took 0.60519 seconds to load)
    1084:  0 examples, 0 failures, 1 error occurred outside of examples
    1085:  ================================================================================
    1086:  �[32m[2,888 / 2,910]�[0m 1 / 27 tests, �[31m�[1m1 failed�[0m;�[0m Testing //rb/spec/integration/selenium/webdriver:target_locator-edge-remote; 56s local, disk-cache ... (4 actions, 3 running)
    1087:  �[32m[2,888 / 2,910]�[0m 1 / 27 tests, �[31m�[1m1 failed�[0m;�[0m Testing //rb/spec/integration/selenium/webdriver:target_locator-edge-remote; 61s local, disk-cache ... (4 actions, 3 running)
    1088:  �[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)
    1089:  �[31m�[1mFAILED: �[0m//rb/spec/integration/selenium/webdriver:target_locator-edge-remote (Summary)
    1090:  D:/_bazel/execroot/selenium/bazel-out/x64_windows-fastbuild/testlogs/rb/spec/integration/selenium/webdriver/target_locator-edge-remote/test.log
    1091:  D:/_bazel/execroot/selenium/bazel-out/x64_windows-fastbuild/testlogs/rb/spec/integration/selenium/webdriver/target_locator-edge-remote/test_attempts/attempt_1.log
    1092:  ==================== Test output for //rb/spec/integration/selenium/webdriver:target_locator-edge-remote:
    1093:  D:/_bazel/execroot/selenium/bazel-out/x64_windows-fastbuild/testlogs/rb/spec/integration/selenium/webdriver/target_locator-edge-remote/test_attempts/attempt_2.log
    1094:  �[32mINFO: �[0mFrom Testing //rb/spec/integration/selenium/webdriver:target_locator-edge-remote:
    1095:  2024-04-06 13:52:24 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
    1096:  An error occurred in a `before(:suite)` hook.
    1097:  Failure/Error: @pid = Process.spawn(*@command, options)
    1098:  Errno::EACCES:
    1099:  Permission denied - java
    1100:  # ./rb/lib/selenium/webdriver/common/child_process.rb:57:in `spawn'
    1101:  # ./rb/lib/selenium/webdriver/common/child_process.rb:57:in `start'
    1102:  # ./rb/lib/selenium/server.rb:204:in `start'
    1103:  # //?/D:/a/selenium/selenium/rb/spec/integration/selenium/webdriver/spec_helper.rb:40:in `block (2 levels) in <top (required)>'
    1104:  Finished in 0.04763 seconds (files took 0.63599 seconds to load)
    1105:  0 examples, 0 failures, 1 error occurred outside of examples
    1106:  ================================================================================
    1107:  ==================== Test output for //rb/spec/integration/selenium/webdriver:target_locator-edge-remote:
    1108:  2024-04-06 13:52:51 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
    1109:  An error occurred in a `before(:suite)` hook.
    1110:  Failure/Error: @pid = Process.spawn(*@command, options)
    1111:  Errno::EACCES:
    1112:  Permission denied - java
    1113:  # ./rb/lib/selenium/webdriver/common/child_process.rb:57:in `spawn'
    1114:  # ./rb/lib/selenium/webdriver/common/child_process.rb:57:in `start'
    1115:  # ./rb/lib/selenium/server.rb:204:in `start'
    1116:  # //?/D:/a/selenium/selenium/rb/spec/integration/selenium/webdriver/spec_helper.rb:40:in `block (2 levels) in <top (required)>'
    1117:  Finished in 0.04555 seconds (files took 0.61148 seconds to load)
    1118:  0 examples, 0 failures, 1 error occurred outside of examples
    1119:  ================================================================================
    1120:  ==================== Test output for //rb/spec/integration/selenium/webdriver:target_locator-edge-remote:
    1121:  2024-04-06 13:53:18 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
    1122:  An error occurred in a `before(:suite)` hook.
    1123:  Failure/Error: @pid = Process.spawn(*@command, options)
    1124:  Errno::EACCES:
    1125:  Permission denied - java
    1126:  # ./rb/lib/selenium/webdriver/common/child_process.rb:57:in `spawn'
    1127:  # ./rb/lib/selenium/webdriver/common/child_process.rb:57:in `start'
    1128:  # ./rb/lib/selenium/server.rb:204:in `start'
    1129:  # //?/D:/a/selenium/selenium/rb/spec/integration/selenium/webdriver/spec_helper.rb:40:in `block (2 levels) in <top (required)>'
    1130:  Finished in 0.04853 seconds (files took 0.71073 seconds to load)
    1131:  0 examples, 0 failures, 1 error occurred outside of examples
    1132:  ================================================================================
    1133:  �[32m[2,889 / 2,910]�[0m 2 / 27 tests, �[31m�[1m2 failed�[0m;�[0m Testing //rb/spec/integration/selenium/webdriver/remote:driver-edge-remote; 56s local, disk-cache ... (4 actions, 2 running)
    1134:  �[32m[2,889 / 2,910]�[0m 2 / 27 tests, �[31m�[1m2 failed�[0m;�[0m Testing //rb/spec/integration/selenium/webdriver/remote:driver-edge-remote; 61s local, disk-cache ... (4 actions, 2 running)
    1135:  �[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)
    1136:  ==================== Test output for //rb/spec/integration/selenium/webdriver/remote:driver-edge-remote:
    1137:  2024-04-06 13:52:30 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
    1138:  �[31m�[1mFAILED: �[0m//rb/spec/integration/selenium/webdriver/remote:driver-edge-remote (Summary)
    1139:  An error occurred in a `before(:suite)` hook.
    1140:  Failure/Error: @pid = Process.spawn(*@command, options)
    ...
    
    1144:  D:/_bazel/execroot/selenium/bazel-out/x64_windows-fastbuild/testlogs/rb/spec/integration/selenium/webdriver/remote/driver-edge-remote/test_attempts/attempt_2.log
    1145:  Permission denied - java
    1146:  �[32mINFO: �[0mFrom Testing //rb/spec/integration/selenium/webdriver/remote:driver-edge-remote:
    1147:  # ./rb/lib/selenium/webdriver/common/child_process.rb:57:in `spawn'
    1148:  # ./rb/lib/selenium/webdriver/common/child_process.rb:57:in `start'
    1149:  # ./rb/lib/selenium/server.rb:204:in `start'
    1150:  # //?/D:/a/selenium/selenium/rb/spec/integration/selenium/webdriver/spec_helper.rb:40:in `block (2 levels) in <top (required)>'
    1151:  Finished in 0.04513 seconds (files took 0.63157 seconds to load)
    1152:  0 examples, 0 failures, 1 error occurred outside of examples
    1153:  ================================================================================
    1154:  ==================== Test output for //rb/spec/integration/selenium/webdriver/remote:driver-edge-remote:
    1155:  2024-04-06 13:52:58 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
    1156:  An error occurred in a `before(:suite)` hook.
    1157:  Failure/Error: @pid = Process.spawn(*@command, options)
    1158:  Errno::EACCES:
    1159:  Permission denied - java
    1160:  # ./rb/lib/selenium/webdriver/common/child_process.rb:57:in `spawn'
    1161:  # ./rb/lib/selenium/webdriver/common/child_process.rb:57:in `start'
    1162:  # ./rb/lib/selenium/server.rb:204:in `start'
    1163:  # //?/D:/a/selenium/selenium/rb/spec/integration/selenium/webdriver/spec_helper.rb:40:in `block (2 levels) in <top (required)>'
    1164:  Finished in 0.04359 seconds (files took 0.63915 seconds to load)
    1165:  0 examples, 0 failures, 1 error occurred outside of examples
    1166:  ================================================================================
    1167:  ==================== Test output for //rb/spec/integration/selenium/webdriver/remote:driver-edge-remote:
    1168:  2024-04-06 13:53:25 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
    1169:  An error occurred in a `before(:suite)` hook.
    1170:  Failure/Error: @pid = Process.spawn(*@command, options)
    1171:  Errno::EACCES:
    1172:  Permission denied - java
    1173:  # ./rb/lib/selenium/webdriver/common/child_process.rb:57:in `spawn'
    1174:  # ./rb/lib/selenium/webdriver/common/child_process.rb:57:in `start'
    1175:  # ./rb/lib/selenium/server.rb:204:in `start'
    1176:  # //?/D:/a/selenium/selenium/rb/spec/integration/selenium/webdriver/spec_helper.rb:40:in `block (2 levels) in <top (required)>'
    1177:  Finished in 0.06481 seconds (files took 0.80411 seconds to load)
    1178:  0 examples, 0 failures, 1 error occurred outside of examples
    1179:  ================================================================================
    1180:  �[32m[2,890 / 2,910]�[0m 3 / 27 tests, �[31m�[1m3 failed�[0m;�[0m Testing //rb/spec/integration/selenium/webdriver:guard-edge-remote; 55s local, disk-cache ... (4 actions, 1 running)
    1181:  �[32m[2,890 / 2,910]�[0m 3 / 27 tests, �[31m�[1m3 failed�[0m;�[0m Testing //rb/spec/integration/selenium/webdriver:guard-edge-remote; 56s local, disk-cache ... (4 actions, 1 running)
    1182:  �[32m[2,890 / 2,910]�[0m 3 / 27 tests, �[31m�[1m3 failed�[0m;�[0m Testing //rb/spec/integration/selenium/webdriver:guard-edge-remote; 62s local, disk-cache ... (4 actions, 2 running)
    1183:  �[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)
    1184:  ==================== Test output for //rb/spec/integration/selenium/webdriver:guard-edge-remote:
    1185:  2024-04-06 13:52:37 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
    1186:  �[31m�[1mFAILED: �[0m//rb/spec/integration/selenium/webdriver:guard-edge-remote (Summary)
    1187:  D:/_bazel/execroot/selenium/bazel-out/x64_windows-fastbuild/testlogs/rb/spec/integration/selenium/webdriver/guard-edge-remote/test.log
    1188:  An error occurred in a `before(:suite)` hook.
    1189:  D:/_bazel/execroot/selenium/bazel-out/x64_windows-fastbuild/testlogs/rb/spec/integration/selenium/webdriver/guard-edge-remote/test_attempts/attempt_1.log
    1190:  Failure/Error: @pid = Process.spawn(*@command, options)
    ...
    
    1192:  �[32mINFO: �[0mFrom Testing //rb/spec/integration/selenium/webdriver:guard-edge-remote:
    1193:  Errno::EACCES:
    1194:  Permission denied - java
    1195:  # ./rb/lib/selenium/webdriver/common/child_process.rb:57:in `spawn'
    1196:  # ./rb/lib/selenium/webdriver/common/child_process.rb:57:in `start'
    1197:  # ./rb/lib/selenium/server.rb:204:in `start'
    1198:  # //?/D:/a/selenium/selenium/rb/spec/integration/selenium/webdriver/spec_helper.rb:40:in `block (2 levels) in <top (required)>'
    1199:  Finished in 0.04513 seconds (files took 0.58688 seconds to load)
    1200:  0 examples, 0 failures, 1 error occurred outside of examples
    1201:  ================================================================================
    1202:  ==================== Test output for //rb/spec/integration/selenium/webdriver:guard-edge-remote:
    1203:  2024-04-06 13:53:04 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
    1204:  An error occurred in a `before(:suite)` hook.
    1205:  Failure/Error: @pid = Process.spawn(*@command, options)
    1206:  Errno::EACCES:
    1207:  Permission denied - java
    1208:  # ./rb/lib/selenium/webdriver/common/child_process.rb:57:in `spawn'
    1209:  # ./rb/lib/selenium/webdriver/common/child_process.rb:57:in `start'
    1210:  # ./rb/lib/selenium/server.rb:204:in `start'
    1211:  # //?/D:/a/selenium/selenium/rb/spec/integration/selenium/webdriver/spec_helper.rb:40:in `block (2 levels) in <top (required)>'
    1212:  Finished in 0.04426 seconds (files took 0.58086 seconds to load)
    1213:  0 examples, 0 failures, 1 error occurred outside of examples
    1214:  ================================================================================
    1215:  ==================== Test output for //rb/spec/integration/selenium/webdriver:guard-edge-remote:
    1216:  2024-04-06 13:53:33 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
    1217:  An error occurred in a `before(:suite)` hook.
    1218:  Failure/Error: @pid = Process.spawn(*@command, options)
    1219:  Errno::EACCES:
    1220:  Permission denied - java
    1221:  # ./rb/lib/selenium/webdriver/common/child_process.rb:57:in `spawn'
    1222:  # ./rb/lib/selenium/webdriver/common/child_process.rb:57:in `start'
    1223:  # ./rb/lib/selenium/server.rb:204:in `start'
    1224:  # //?/D:/a/selenium/selenium/rb/spec/integration/selenium/webdriver/spec_helper.rb:40:in `block (2 levels) in <top (required)>'
    1225:  Finished in 0.06834 seconds (files took 0.90241 seconds to load)
    1226:  0 examples, 0 failures, 1 error occurred outside of examples
    1227:  ================================================================================
    1228:  �[32m[2,891 / 2,910]�[0m 4 / 27 tests, �[31m�[1m4 failed�[0m;�[0m Testing //rb/spec/integration/selenium/webdriver:action_builder-edge-remote; 15s disk-cache ... (4 actions, 1 running)
    1229:  �[32m[2,891 / 2,910]�[0m 4 / 27 tests, �[31m�[1m4 failed�[0m;�[0m Testing //rb/spec/integration/selenium/webdriver/edge:service-edge-remote; 8s disk-cache ... (4 actions, 1 running)
    1230:  �[32m[2,891 / 2,910]�[0m 4 / 27 tests, �[31m�[1m4 failed�[0m;�[0m Testing //rb/spec/integration/selenium/webdriver/edge:service-edge-remote; 14s disk-cache ... (4 actions, 2 running)
    1231:  �[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_attempts/attempt_1.log)
    1232:  �[32m[2,891 / 2,910]�[0m 4 / 27 tests, �[31m�[1m4 failed�[0m;�[0m Testing //rb/spec/integration/selenium/webdriver/edge:service-edge-remote; 15s disk-cache ... (4 actions, 2 running)
    1233:  �[32m[2,891 / 2,910]�[0m 4 / 27 tests, �[31m�[1m4 failed�[0m;�[0m Testing //rb/spec/integration/selenium/webdriver:zipper-edge-remote; 11s local, disk-cache ... (4 actions, 2 running)
    1234:  �[32m[2,891 / 2,910]�[0m 4 / 27 tests, �[31m�[1m4 failed�[0m;�[0m Testing //rb/spec/integration/selenium/webdriver:zipper-edge-remote; 12s local, disk-cache ... (4 actions, 2 running)
    1235:  �[32m[2,891 / 2,910]�[0m 4 / 27 tests, �[31m�[1m4 failed�[0m;�[0m Testing //rb/spec/integration/selenium/webdriver:zipper-edge-remote; 14s local, disk-cache ... (4 actions, 2 running)
    1236:  �[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)
    1237:  �[32m[2,891 / 2,910]�[0m 4 / 27 tests, �[31m�[1m4 failed�[0m;�[0m Testing //rb/spec/integration/selenium/webdriver:zipper-edge-remote; 15s local, disk-cache ... (4 actions, 2 running)
    1238:  �[32m[2,891 / 2,910]�[0m 4 / 27 tests, �[31m�[1m4 failed�[0m;�[0m Testing //rb/spec/integration/selenium/webdriver:zipper-edge-remote; 17s local, disk-cache ... (4 actions, 2 running)
    1239:  �[32m[2,891 / 2,910]�[0m 4 / 27 tests, �[31m�[1m4 failed�[0m;�[0m Testing //rb/spec/integration/selenium/webdriver:zipper-edge-remote; 21s local, disk-cache ... (4 actions, 3 running)
    1240:  �[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_attempts/attempt_2.log)
    1241:  �[32m[2,891 / 2,910]�[0m 4 / 27 tests, �[31m�[1m4 failed�[0m;�[0m Testing //rb/spec/integration/selenium/webdriver:zipper-edge-remote; 23s local, disk-cache ... (4 actions, 3 running)
    1242:  �[32m[2,891 / 2,910]�[0m 4 / 27 tests, �[31m�[1m4 failed�[0m;�[0m Testing //rb/spec/integration/selenium/webdriver:zipper-edge-remote; 28s local, disk-cache ... (4 actions running)
    1243:  �[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_1.log)
    1244:  �[32m[2,891 / 2,910]�[0m 4 / 27 tests, �[31m�[1m4 failed�[0m;�[0m Testing //rb/spec/integration/selenium/webdriver:zipper-edge-remote; 30s local, disk-cache ... (4 actions running)
    1245:  �[32m[2,891 / 2,910]�[0m 4 / 27 tests, �[31m�[1m4 failed�[0m;�[0m Testing //rb/spec/integration/selenium/webdriver:zipper-edge-remote; 35s local, disk-cache ... (4 actions running)
    1246:  �[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)
    1247:  �[32m[2,891 / 2,910]�[0m 4 / 27 tests, �[31m�[1m4 failed�[0m;�[0m Testing //rb/spec/integration/selenium/webdriver:zipper-edge-remote; 37s local, disk-cache ... (4 actions running)
    1248:  �[32m[2,891 / 2,910]�[0m 4 / 27 tests, �[31m�[1m4 failed�[0m;�[0m Testing //rb/spec/integration/selenium/webdriver:zipper-edge-remote; 42s local, disk-cache ... (4 actions running)
    1249:  �[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)
    1250:  �[32m[2,891 / 2,910]�[0m 4 / 27 tests, �[31m�[1m4 failed�[0m;�[0m Testing //rb/spec/integration/selenium/webdriver:zipper-edge-remote; 43s local, disk-cache ... (4 actions running)
    1251:  �[32m[2,891 / 2,910]�[0m 4 / 27 tests, �[31m�[1m4 failed�[0m;�[0m Testing //rb/spec/integration/selenium/webdriver:zipper-edge-remote; 49s local, disk-cache ... (4 actions running)
    1252:  �[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)
    1253:  �[31m�[1mFAILED: �[0m//rb/spec/integration/selenium/webdriver:zipper-edge-remote (Summary)
    1254:  D:/_bazel/execroot/selenium/bazel-out/x64_windows-fastbuild/testlogs/rb/spec/integration/selenium/webdriver/zipper-edge-remote/test.log
    1255:  D:/_bazel/execroot/selenium/bazel-out/x64_windows-fastbuild/testlogs/rb/spec/integration/selenium/webdriver/zipper-edge-remote/test_attempts/attempt_1.log
    1256:  D:/_bazel/execroot/selenium/bazel-out/x64_windows-fastbuild/testlogs/rb/spec/integration/selenium/webdriver/zipper-edge-remote/test_attempts/attempt_2.log
    1257:  �[32mINFO: �[0mFrom Testing //rb/spec/integration/selenium/webdriver:zipper-edge-remote:
    1258:  ==================== Test output for //rb/spec/integration/selenium/webdriver:zipper-edge-remote:
    1259:  2024-04-06 13:53:40 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
    1260:  An error occurred in a `before(:suite)` hook.
    1261:  Failure/Error: @pid = Process.spawn(*@command, options)
    1262:  Errno::EACCES:
    1263:  Permission denied - java
    1264:  # ./rb/lib/selenium/webdriver/common/child_process.rb:57:in `spawn'
    1265:  # ./rb/lib/selenium/webdriver/common/child_process.rb:57:in `start'
    1266:  # ./rb/lib/selenium/server.rb:204:in `start'
    1267:  # //?/D:/a/selenium/selenium/rb/spec/integration/selenium/webdriver/spec_helper.rb:40:in `block (2 levels) in <top (required)>'
    1268:  Finished in 0.05111 seconds (files took 0.79566 seconds to load)
    1269:  0 examples, 0 failures, 1 error occurred outside of examples
    1270:  ================================================================================
    1271:  ==================== Test output for //rb/spec/integration/selenium/webdriver:zipper-edge-remote:
    1272:  2024-04-06 13:53:55 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
    1273:  An error occurred in a `before(:suite)` hook.
    1274:  Failure/Error: @pid = Process.spawn(*@command, options)
    1275:  Errno::EACCES:
    1276:  Permission denied - java
    1277:  # ./rb/lib/selenium/webdriver/common/child_process.rb:57:in `spawn'
    1278:  # ./rb/lib/selenium/webdriver/common/child_process.rb:57:in `start'
    1279:  # ./rb/lib/selenium/server.rb:204:in `start'
    1280:  # //?/D:/a/selenium/selenium/rb/spec/integration/selenium/webdriver/spec_helper.rb:40:in `block (2 levels) in <top (required)>'
    1281:  Finished in 0.04422 seconds (files took 0.59792 seconds to load)
    1282:  0 examples, 0 failures, 1 error occurred outside of examples
    1283:  ================================================================================
    1284:  ==================== Test output for //rb/spec/integration/selenium/webdriver:zipper-edge-remote:
    1285:  2024-04-06 13:54:22 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
    1286:  An error occurred in a `before(:suite)` hook.
    1287:  Failure/Error: @pid = Process.spawn(*@command, options)
    1288:  Errno::EACCES:
    1289:  Permission denied - java
    1290:  # ./rb/lib/selenium/webdriver/common/child_process.rb:57:in `spawn'
    1291:  # ./rb/lib/selenium/webdriver/common/child_process.rb:57:in `start'
    1292:  # ./rb/lib/selenium/server.rb:204:in `start'
    1293:  # //?/D:/a/selenium/selenium/rb/spec/integration/selenium/webdriver/spec_helper.rb:40:in `block (2 levels) in <top (required)>'
    1294:  Finished in 0.0439 seconds (files took 0.68819 seconds to load)
    1295:  0 examples, 0 failures, 1 error occurred outside of examples
    1296:  ================================================================================
    1297:  �[32m[2,892 / 2,910]�[0m 5 / 27 tests, �[31m�[1m5 failed�[0m;�[0m Testing //rb/spec/integration/selenium/webdriver:action_builder-edge-remote; 42s local, disk-cache ... (4 actions, 3 running)
    1298:  �[32m[2,892 / 2,910]�[0m 5 / 27 tests, �[31m�[1m5 failed�[0m;�[0m Testing //rb/spec/integration/selenium/webdriver:action_builder-edge-remote; 48s local, disk-cache ... (4 actions, 3 running)
    1299:  �[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)
    1300:  �[32m[2,892 / 2,910]�[0m 5 / 27 tests, �[31m�[1m5 failed�[0m;�[0m Testing //rb/spec/integration/selenium/webdriver:action_builder-edge-remote; 49s local, disk-cache ... (4 actions, 3 running)
    1301:  �[32m[2,892 / 2,910]�[0m 5 / 27 tests, �[31m�[1m5 failed�[0m;�[0m Testing //rb/spec/integration/selenium/webdriver:action_builder-edge-remote; 52s local, disk-cache ... (4 actions, 3 running)
    1302:  �[32m[2,892 / 2,910]�[0m 5 / 27 tests, �[31m�[1m5 failed�[0m;�[0m Testing //rb/spec/integration/selenium/webdriver:action_builder-edge-remote; 54s local, disk-cache ... (4 actions, 3 running)
    1303:  �[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)
    1304:  �[32m[2,892 / 2,910]�[0m 5 / 27 tests, �[31m�[1m5 failed�[0m;�[0m Testing //rb/spec/integration/selenium/webdriver:action_builder-edge-remote; 55s local, disk-cache ... (4 actions, 3 running)
    1305:  �[32m[2,892 / 2,910]�[0m 5 / 27 tests, �[31m�[1m5 failed�[0m;�[0m Testing //rb/spec/integration/selenium/webdriver:action_builder-edge-remote; 56s local, disk-cache ... (4 actions, 3 running)
    1306:  �[32m[2,892 / 2,910]�[0m 5 / 27 tests, �[31m�[1m5 failed�[0m;�[0m Testing //rb/spec/integration/selenium/webdriver:action_builder-edge-remote; 62s local, disk-cache ... (4 actions, 3 running)
    1307:  �[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)
    1308:  �[31m�[1mFAILED: �[0m//rb/spec/integration/selenium/webdriver:action_builder-edge-remote (Summary)
    1309:  D:/_bazel/execroot/selenium/bazel-out/x64_windows-fastbuild/testlogs/rb/spec/integration/selenium/webdriver/action_builder-edge-remote/test.log
    1310:  D:/_bazel/execroot/selenium/bazel-out/x64_windows-fastbuild/testlogs/rb/spec/integration/selenium/webdriver/action_builder-edge-remote/test_attempts/attempt_1.log
    1311:  D:/_bazel/execroot/selenium/bazel-out/x64_windows-fastbuild/testlogs/rb/spec/integration/selenium/webdriver/action_builder-edge-remote/test_attempts/attempt_2.log
    1312:  �[32mINFO: �[0mFrom Testing //rb/spec/integration/selenium/webdriver:action_builder-edge-remote:
    1313:  ==================== Test output for //rb/spec/integration/selenium/webdriver:action_builder-edge-remote:
    1314:  2024-04-06 13:53:48 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
    1315:  An error occurred in a `before(:suite)` hook.
    1316:  Failure/Error: @pid = Process.spawn(*@command, options)
    1317:  Errno::EACCES:
    1318:  Permission denied - java
    1319:  # ./rb/lib/selenium/webdriver/common/child_process.rb:57:in `spawn'
    1320:  # ./rb/lib/selenium/webdriver/common/child_process.rb:57:in `start'
    1321:  # ./rb/lib/selenium/server.rb:204:in `start'
    1322:  # //?/D:/a/selenium/selenium/rb/spec/integration/selenium/webdriver/spec_helper.rb:40:in `block (2 levels) in <top (required)>'
    1323:  Finished in 0.06409 seconds (files took 0.82274 seconds to load)
    1324:  0 examples, 0 failures, 1 error occurred outside of examples
    1325:  ================================================================================
    1326:  ==================== Test output for //rb/spec/integration/selenium/webdriver:action_builder-edge-remote:
    1327:  2024-04-06 13:54:15 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
    1328:  An error occurred in a `before(:suite)` hook.
    1329:  Failure/Error: @pid = Process.spawn(*@command, options)
    1330:  Errno::EACCES:
    1331:  Permission denied - java
    1332:  # ./rb/lib/selenium/webdriver/common/child_process.rb:57:in `spawn'
    1333:  # ./rb/lib/selenium/webdriver/common/child_process.rb:57:in `start'
    1334:  # ./rb/lib/selenium/server.rb:204:in `start'
    1335:  # //?/D:/a/selenium/selenium/rb/spec/integration/selenium/webdriver/spec_helper.rb:40:in `block (2 levels) in <top (required)>'
    1336:  Finished in 0.04552 seconds (files took 0.61794 seconds to load)
    1337:  0 examples, 0 failures, 1 error occurred outside of examples
    1338:  ================================================================================
    1339:  ==================== Test output for //rb/spec/integration/selenium/webdriver:action_builder-edge-remote:
    1340:  2024-04-06 13:54:43 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
    1341:  An error occurred in a `before(:suite)` hook.
    1342:  Failure/Error: @pid = Process.spawn(*@command, options)
    1343:  Errno::EACCES:
    1344:  Permission denied - java
    1345:  # ./rb/lib/selenium/webdriver/common/child_process.rb:57:in `spawn'
    1346:  # ./rb/lib/selenium/webdriver/common/child_process.rb:57:in `start'
    1347:  # ./rb/lib/selenium/server.rb:204:in `start'
    1348:  # //?/D:/a/selenium/selenium/rb/spec/integration/selenium/webdriver/spec_helper.rb:40:in `block (2 levels) in <top (required)>'
    1349:  Finished in 0.0465 seconds (files took 0.60958 seconds to load)
    1350:  0 examples, 0 failures, 1 error occurred outside of examples
    1351:  ================================================================================
    1352:  �[32m[2,893 / 2,910]�[0m 6 / 27 tests, �[31m�[1m6 failed�[0m;�[0m Testing //rb/spec/integration/selenium/webdriver/edge:service-edge-remote; 49s local, disk-cache ... (4 actions, 2 running)
    1353:  �[32m[2,893 / 2,910]�[0m 6 / 27 tests, �[31m�[1m6 failed�[0m;�[0m Testing //rb/spec/integration/selenium/webdriver/edge:service-edge-remote; 54s local, disk-cache ... (4 actions, 3 running)
    1354:  �[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)
    1355:  ==================== Test output for //rb/spec/integration/selenium/webdriver/edge:service-edge-remote:
    1356:  �[31m�[1mFAILED: �[0m//rb/spec/integration/selenium/webdriver/edge:service-edge-remote (Summary)
    1357:  2024-04-06 13:54:02 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
    1358:  D:/_bazel/execroot/selenium/bazel-out/x64_windows-fastbuild/testlogs/rb/spec/integration/selenium/webdriver/edge/service-edge-remote/test.log
    1359:  D:/_bazel/execroot/selenium/bazel-out/x64_windows-fastbuild/testlogs/rb/spec/integration/selenium/webdriver/edge/service-edge-remote/test_attempts/attempt_1.log
    1360:  An error occurred in a `before(:suite)` hook.
    1361:  D:/_bazel/execroot/selenium/bazel-out/x64_windows-fastbuild/testlogs/rb/spec/integration/selenium/webdriver/edge/service-edge-remote/test_attempts/attempt_2.log
    1362:  �[32mINFO: �[0mFrom Testing //rb/spec/integration/selenium/webdriver/edge:service-edge-remote:
    1363:  Failure/Error: @pid = Process.spawn(*@command, options)
    1364:  Errno::EACCES:
    1365:  Permission denied - java
    1366:  # ./rb/lib/selenium/webdriver/common/child_process.rb:57:in `spawn'
    1367:  # ./rb/lib/selenium/webdriver/common/child_process.rb:57:in `start'
    1368:  # ./rb/lib/selenium/server.rb:204:in `start'
    1369:  # //?/D:/a/selenium/selenium/rb/spec/integration/selenium/webdriver/spec_helper.rb:40:in `block (2 levels) in <top (required)>'
    1370:  Finished in 0.04534 seconds (files took 0.59592 seconds to load)
    1371:  0 examples, 0 failures, 1 error occurred outside of examples
    1372:  ================================================================================
    1373:  ==================== Test output for //rb/spec/integration/selenium/webdriver/edge:service-edge-remote:
    1374:  2024-04-06 13:54:29 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
    1375:  An error occurred in a `before(:suite)` hook.
    1376:  Failure/Error: @pid = Process.spawn(*@command, options)
    1377:  Errno::EACCES:
    1378:  Permission denied - java
    1379:  # ./rb/lib/selenium/webdriver/common/child_process.rb:57:in `spawn'
    1380:  # ./rb/lib/selenium/webdriver/common/child_process.rb:57:in `start'
    1381:  # ./rb/lib/selenium/server.rb:204:in `start'
    1382:  # //?/D:/a/selenium/selenium/rb/spec/integration/selenium/webdriver/spec_helper.rb:40:in `block (2 levels) in <top (required)>'
    1383:  Finished in 0.0551 seconds (files took 0.64 seconds to load)
    1384:  0 examples, 0 failures, 1 error occurred outside of examples
    1385:  ================================================================================
    1386:  ==================== Test output for //rb/spec/integration/selenium/webdriver/edge:service-edge-remote:
    1387:  2024-04-06 13:54:49 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
    1388:  An error occurred in a `before(:suite)` hook.
    1389:  Failure/Error: @pid = Process.spawn(*@command, options)
    1390:  Errno::EACCES:
    1391:  Permission denied - java
    1392:  # ./rb/lib/selenium/webdriver/common/child_process.rb:57:in `spawn'
    1393:  # ./rb/lib/selenium/webdriver/common/child_process.rb:57:in `start'
    1394:  # ./rb/lib/selenium/server.rb:204:in `start'
    1395:  # //?/D:/a/selenium/selenium/rb/spec/integration/selenium/webdriver/spec_helper.rb:40:in `block (2 levels) in <top (required)>'
    1396:  Finished in 0.04535 seconds (files took 0.65817 seconds to load)
    1397:  0 examples, 0 failures, 1 error occurred outside of examples
    1398:  ================================================================================
    1399:  �[32m[2,894 / 2,910]�[0m 7 / 27 tests, �[31m�[1m7 failed�[0m;�[0m Testing //rb/spec/integration/selenium/webdriver:takes_screenshot-edge-remote; 49s local, disk-cache ... (4 actions, 2 running)
    1400:  �[32m[2,894 / 2,910]�[0m 7 / 27 tests, �[31m�[1m7 failed�[0m;�[0m Testing //rb/spec/integration/selenium/webdriver:takes_screenshot-edge-remote; 54s local, disk-cache ... (4 actions, 2 running)
    1401:  �[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)
    1402:  �[32m[2,894 / 2,910]�[0m 7 / 27 tests, �[31m�[1m7 failed�[0m;�[0m Testing //rb/spec/integration/selenium/webdriver:takes_screenshot-edge-remote; 55s local, disk-cache ... (4 actions, 2 running)
    1403:  �[32m[2,894 / 2,910]�[0m 7 / 27 tests, �[31m�[1m7 failed�[0m;�[0m Testing //rb/spec/integration/selenium/webdriver:takes_screenshot-edge-remote; 56s local, disk-cache ... (4 actions, 2 running)
    1404:  �[32m[2,894 / 2,910]�[0m 7 / 27 tests, �[31m�[1m7 failed�[0m;�[0m Testing //rb/spec/integration/selenium/webdriver:takes_screenshot-edge-remote; 59s local, disk-cache ... (4 actions, 2 running)
    1405:  �[32m[2,894 / 2,910]�[0m 7 / 27 tests, �[31m�[1m7 failed�[0m;�[0m Testing //rb/spec/integration/selenium/webdriver:takes_screenshot-edge-remote; 61s local, disk-cache ... (4 actions, 2 running)
    1406:  �[32m[2,894 / 2,910]�[0m 7 / 27 tests, �[31m�[1m7 failed�[0m;�[0m Testing //rb/spec/integration/selenium/webdriver:takes_screenshot-edge-remote; 62s local, disk-cache ... (4 actions, 3 running)
    1407:  �[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)
    1408:  �[31m�[1mFAILED: �[0m//rb/spec/integration/selenium/webdriver:takes_screenshot-edge-remote (Summary)
    1409:  D:/_bazel/execroot/selenium/bazel-out/x64_windows-fastbuild/testlogs/rb/spec/integration/selenium/webdriver/takes_screenshot-edge-remote/test.log
    1410:  D:/_bazel/execroot/selenium/bazel-out/x64_windows-fastbuild/testlogs/rb/spec/integration/selenium/webdriver/takes_screenshot-edge-remote/test_attempts/attempt_1.log
    1411:  D:/_bazel/execroot/selenium/bazel-out/x64_windows-fastbuild/testlogs/rb/spec/integration/selenium/webdriver/takes_screenshot-edge-remote/test_attempts/attempt_2.log
    1412:  �[32mINFO: �[0mFrom Testing //rb/spec/integration/selenium/webdriver:takes_screenshot-edge-remote:
    1413:  ==================== Test output for //rb/spec/integration/selenium/webdriver:takes_screenshot-edge-remote:
    1414:  2024-04-06 13:54:08 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
    1415:  An error occurred in a `before(:suite)` hook.
    1416:  Failure/Error: @pid = Process.spawn(*@command, options)
    1417:  Errno::EACCES:
    1418:  Permission denied - java
    1419:  # ./rb/lib/selenium/webdriver/common/child_process.rb:57:in `spawn'
    1420:  # ./rb/lib/selenium/webdriver/common/child_process.rb:57:in `start'
    1421:  # ./rb/lib/selenium/server.rb:204:in `start'
    1422:  # //?/D:/a/selenium/selenium/rb/spec/integration/selenium/webdriver/spec_helper.rb:40:in `block (2 levels) in <top (required)>'
    1423:  Finished in 0.04432 seconds (files took 0.6301 seconds to load)
    1424:  0 examples, 0 failures, 1 error occurred outside of examples
    1425:  ================================================================================
    1426:  ==================== Test output for //rb/spec/integration/selenium/webdriver:takes_screenshot-edge-remote:
    1427:  2024-04-06 13:54:36 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
    1428:  An error occurred in a `before(:suite)` hook.
    1429:  Failure/Error: @pid = Process.spawn(*@command, options)
    1430:  Errno::EACCES:
    1431:  Permission denied - java
    1432:  # ./rb/lib/selenium/webdriver/common/child_process.rb:57:in `spawn'
    1433:  # ./rb/lib/selenium/webdriver/common/child_process.rb:57:in `start'
    1434:  # ./rb/lib/selenium/server.rb:204:in `start'
    1435:  # //?/D:/a/selenium/selenium/rb/spec/integration/selenium/webdriver/spec_helper.rb:40:in `block (2 levels) in <top (required)>'
    1436:  Finished in 0.04719 seconds (files took 0.64017 seconds to load)
    1437:  0 examples, 0 failures, 1 error occurred outside of examples
    1438:  ================================================================================
    1439:  ==================== Test output for //rb/spec/integration/selenium/webdriver:takes_screenshot-edge-remote:
    1440:  2024-04-06 13:55:04 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
    1441:  An error occurred in a `before(:suite)` hook.
    1442:  Failure/Error: @pid = Process.spawn(*@command, options)
    1443:  Errno::EACCES:
    1444:  Permission denied - java
    1445:  # ./rb/lib/selenium/webdriver/common/child_process.rb:57:in `spawn'
    1446:  # ./rb/lib/selenium/webdriver/common/child_process.rb:57:in `start'
    1447:  # ./rb/lib/selenium/server.rb:204:in `start'
    1448:  # //?/D:/a/selenium/selenium/rb/spec/integration/selenium/webdriver/spec_helper.rb:40:in `block (2 levels) in <top (required)>'
    1449:  Finished in 0.04757 seconds (files took 0.66389 seconds to load)
    1450:  0 examples, 0 failures, 1 error occurred outside of examples
    1451:  ================================================================================
    1452:  �[32m[2,895 / 2,910]�[0m 8 / 27 tests, �[31m�[1m8 failed�[0m;�[0m Testing //rb/spec/integration/selenium/webdriver:element-edge-remote; 15s local, disk-cache ... (4 actions, 2 running)
    1453:  �[32m[2,895 / 2,910]�[0m 8 / 27 tests, �[31m�[1m8 failed�[0m;�[0m Testing //rb/spec/integration/selenium/webdriver:element-edge-remote; 21s local, disk-cache ... (4 actions, 2 running)
    1454:  �[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)
    1455:  �[32m[2,895 / 2,910]�[0m 8 / 27 tests, �[31m�[1m8 failed�[0m;�[0m Testing //rb/spec/integration/selenium/webdriver:element-edge-remote; 22s local, disk-cache ... (4 actions, 2 running)
    1456:  �[32m[2,895 / 2,910]�[0m 8 / 27 tests, �[31m�[1m8 failed�[0m;�[0m Testing //rb/spec/integration/selenium/webdriver:element-edge-remote; 25s local, disk-cache ... (4 actions, 2 running)
    1457:  �[32m[2,895 / 2,910]�[0m 8 / 27 tests, �[31m�[1m8 failed�[0m;�[0m Testing //rb/spec/integration/selenium/webdriver:element-edge-remote; 26s local, disk-cache ... (4 actions, 2 running)
    1458:  �[32m[2,895 / 2,910]�[0m 8 / 27 tests, �[31m�[1m8 failed�[0m;�[0m Testing //rb/spec/integration/selenium/webdriver:element-edge-remote; 28s local, disk-cache ... (4 actions, 3 running)
    1459:  �[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)
    1460:  �[32m[2,895 / 2,910]�[0m 8 / 27 tests, �[31m�[1m8 failed�[0m;�[0m Testing //rb/spec/integration/selenium/webdriver:element-edge-remote; 29s local, disk-cache ... (4 actions, 3 running)
    1461:  �[32m[2,895 / 2,910]�[0m 8 / 27 tests, �[31m�[1m8 failed�[0m;�[0m Testing //rb/spec/integration/selenium/webdriver:element-edge-remote; 35s 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,895 / 2,910]�[0m 8 / 27 tests, �[31m�[1m8 failed�[0m;�[0m Testing //rb/spec/integration/selenium/webdriver:element-edge-remote; 36s local, disk-cache ... (4 actions, 3 running)
    1464:  �[32m[2,895 / 2,910]�[0m 8 / 27 tests, �[31m�[1m8 failed�[0m;�[0m Testing //rb/spec/integration/selenium/webdriver:element-edge-remote; 41s local, disk-cache ... (4 actions running)
    1465:  �[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)
    1466:  �[32m[2,895 / 2,910]�[0m 8 / 27 tests, �[31m�[1m8 failed�[0m;�[0m Testing //rb/spec/integration/selenium/webdriver:element-edge-remote; 43s local, disk-cache ... (4 actions running)
    1467:  �[32m[2,895 / 2,910]�[0m 8 / 27 tests, �[31m�[1m8 failed�[0m;�[0m Testing //rb/spec/integration/selenium/webdriver:element-edge-remote; 48s local, disk-cache ... (4 actions running)
    1468:  �[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)
    1469:  �[32m[2,895 / 2,910]�[0m 8 / 27 tests, �[31m�[1m8 failed�[0m;�[0m Testing //rb/spec/integration/selenium/webdriver:element-edge-remote; 49s local, disk-cache ... (4 actions running)
    1470:  �[32m[2,895 / 2,910]�[0m 8 / 27 tests, �[31m�[1m8 failed�[0m;�[0m Testing //rb/spec/integration/selenium/webdriver:element-edge-remote; 55s local, disk-cache ... (4 actions running)
    1471:  �[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)
    1472:  ==================== Test output for //rb/spec/integration/selenium/webdriver:element-edge-remote:
    1473:  2024-04-06 13:54:57 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
    1474:  �[31m�[1mFAILED: �[0m//rb/spec/integration/selenium/webdriver:element-edge-remote (Summary)
    1475:  D:/_bazel/execroot/selenium/bazel-out/x64_windows-fastbuild/testlogs/rb/spec/integration/selenium/webdriver/element-edge-remote/test.log
    1476:  An error occurred in a `before(:suite)` hook.
    1477:  D:/_bazel/execroot/selenium/bazel-out/x64_windows-fastbuild/testlogs/rb/spec/integration/selenium/webdriver/element-edge-remote/test_attempts/attempt_1.log
    1478:  Failure/Error: @pid = Process.spawn(*@command, options)
    ...
    
    1480:  �[32mINFO: �[0mFrom Testing //rb/spec/integration/selenium/webdriver:element-edge-remote:
    1481:  Errno::EACCES:
    1482:  Permission denied - java
    1483:  # ./rb/lib/selenium/webdriver/common/child_process.rb:57:in `spawn'
    1484:  # ./rb/lib/selenium/webdriver/common/child_process.rb:57:in `start'
    1485:  # ./rb/lib/selenium/server.rb:204:in `start'
    1486:  # //?/D:/a/selenium/selenium/rb/spec/integration/selenium/webdriver/spec_helper.rb:40:in `block (2 levels) in <top (required)>'
    1487:  Finished in 0.06154 seconds (files took 0.77917 seconds to load)
    1488:  0 examples, 0 failures, 1 error occurred outside of examples
    1489:  ================================================================================
    1490:  ==================== Test output for //rb/spec/integration/selenium/webdriver:element-edge-remote:
    1491:  2024-04-06 13:55:18 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
    1492:  An error occurred in a `before(:suite)` hook.
    1493:  Failure/Error: @pid = Process.spawn(*@command, options)
    1494:  Errno::EACCES:
    1495:  Permission denied - java
    1496:  # ./rb/lib/selenium/webdriver/common/child_process.rb:57:in `spawn'
    1497:  # ./rb/lib/selenium/webdriver/common/child_process.rb:57:in `start'
    1498:  # ./rb/lib/selenium/server.rb:204:in `start'
    1499:  # //?/D:/a/selenium/selenium/rb/spec/integration/selenium/webdriver/spec_helper.rb:40:in `block (2 levels) in <top (required)>'
    1500:  Finished in 0.05095 seconds (files took 0.64917 seconds to load)
    1501:  0 examples, 0 failures, 1 error occurred outside of examples
    1502:  ================================================================================
    1503:  ==================== Test output for //rb/spec/integration/selenium/webdriver:element-edge-remote:
    1504:  2024-04-06 13:55:45 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
    1505:  An error occurred in a `before(:suite)` hook.
    1506:  Failure/Error: @pid = Process.spawn(*@command, options)
    1507:  Errno::EACCES:
    1508:  Permission denied - java
    1509:  # ./rb/lib/selenium/webdriver/common/child_process.rb:57:in `spawn'
    1510:  # ./rb/lib/selenium/webdriver/common/child_process.rb:57:in `start'
    1511:  # ./rb/lib/selenium/server.rb:204:in `start'
    1512:  # //?/D:/a/selenium/selenium/rb/spec/integration/selenium/webdriver/spec_helper.rb:40:in `block (2 levels) in <top (required)>'
    1513:  Finished in 0.04426 seconds (files took 0.62391 seconds to load)
    1514:  0 examples, 0 failures, 1 error occurred outside of examples
    1515:  ================================================================================
    1516:  �[32m[2,896 / 2,910]�[0m 9 / 27 tests, �[31m�[1m9 failed�[0m;�[0m Testing //rb/spec/integration/selenium/webdriver/remote:element-edge-remote; 42s local, disk-cache ... (4 actions, 3 running)
    1517:  �[32m[2,896 / 2,910]�[0m 9 / 27 tests, �[31m�[1m9 failed�[0m;�[0m Testing //rb/spec/integration/selenium/webdriver/remote:element-edge-remote; 48s local, disk-cache ... (4 actions, 3 running)
    1518:  �[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)
    1519:  �[32m[2,896 / 2,910]�[0m 9 / 27 tests, �[31m�[1m9 failed�[0m;�[0m Testing //rb/spec/integration/selenium/webdriver/remote:element-edge-remote; 49s local, disk-cache ... (4 actions, 3 running)
    1520:  �[32m[2,896 / 2,910]�[0m 9 / 27 tests, �[31m�[1m9 failed�[0m;�[0m Testing //rb/spec/integration/selenium/webdriver/remote:element-edge-remote; 50s local, disk-cache ... (4 actions, 3 running)
    1521:  �[32m[2,896 / 2,910]�[0m 9 / 27 tests, �[31m�[1m9 failed�[0m;�[0m Testing //rb/spec/integration/selenium/webdriver/remote:element-edge-remote; 52s local, disk-cache ... (4 actions, 3 running)
    1522:  �[32m[2,896 / 2,910]�[0m 9 / 27 tests, �[31m�[1m9 failed�[0m;�[0m Testing //rb/spec/integration/selenium/webdriver/remote:element-edge-remote; 53s local, disk-cache ... (4 actions, 3 running)
    1523:  �[32m[2,896 / 2,910]�[0m 9 / 27 tests, �[31m�[1m9 failed�[0m;�[0m Testing //rb/spec/integration/selenium/webdriver/remote:element-edge-remote; 55s local, disk-cache ... (4 actions, 3 running)
    1524:  �[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)
    1525:  �[31m�[1mFAILED: �[0m//rb/spec/integration/selenium/webdriver/remote:element-edge-remote (Summary)
    1526:  D:/_bazel/execroot/selenium/bazel-out/x64_windows-fastbuild/testlogs/rb/spec/integration/selenium/webdriver/remote/element-edge-remote/test.log
    1527:  D:/_bazel/execroot/selenium/bazel-out/x64_windows-fastbuild/testlogs/rb/spec/integration/selenium/webdriver/remote/element-edge-remote/test_attempts/attempt_1.log
    1528:  D:/_bazel/execroot/selenium/bazel-out/x64_windows-fastbuild/testlogs/rb/spec/integration/selenium/webdriver/remote/element-edge-remote/test_attempts/attempt_2.log
    1529:  �[32mINFO: �[0mFrom Testing //rb/spec/integration/selenium/webdriver/remote:element-edge-remote:
    1530:  ==================== Test output for //rb/spec/integration/selenium/webdriver/remote:element-edge-remote:
    1531:  2024-04-06 13:55:11 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
    1532:  An error occurred in a `before(:suite)` hook.
    1533:  Failure/Error: @pid = Process.spawn(*@command, options)
    1534:  Errno::EACCES:
    1535:  Permission denied - java
    1536:  # ./rb/lib/selenium/webdriver/common/child_process.rb:57:in `spawn'
    1537:  # ./rb/lib/selenium/webdriver/common/child_process.rb:57:in `start'
    1538:  # ./rb/lib/selenium/server.rb:204:in `start'
    1539:  # //?/D:/a/selenium/selenium/rb/spec/integration/selenium/webdriver/spec_helper.rb:40:in `block (2 levels) in <top (required)>'
    1540:  Finished in 0.05344 seconds (files took 0.78763 seconds to load)
    1541:  0 examples, 0 failures, 1 error occurred outside of examples
    1542:  ================================================================================
    1543:  ==================== Test output for //rb/spec/integration/selenium/webdriver/remote:element-edge-remote:
    1544:  2024-04-06 13:55:31 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
    1545:  An error occurred in a `before(:suite)` hook.
    1546:  Failure/Error: @pid = Process.spawn(*@command, options)
    1547:  Errno::EACCES:
    1548:  Permission denied - java
    1549:  # ./rb/lib/selenium/webdriver/common/child_process.rb:57:in `spawn'
    1550:  # ./rb/lib/selenium/webdriver/common/child_process.rb:57:in `start'
    1551:  # ./rb/lib/selenium/server.rb:204:in `start'
    1552:  # //?/D:/a/selenium/selenium/rb/spec/integration/selenium/webdriver/spec_helper.rb:40:in `block (2 levels) in <top (required)>'
    1553:  Finished in 0.04368 seconds (files took 0.59329 seconds to load)
    1554:  0 examples, 0 failures, 1 error occurred outside of examples
    1555:  ================================================================================
    1556:  ==================== Test output for //rb/spec/integration/selenium/webdriver/remote:element-edge-remote:
    1557:  2024-04-06 13:55:59 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
    1558:  An error occurred in a `before(:suite)` hook.
    1559:  Failure/Error: @pid = Process.spawn(*@command, options)
    1560:  Errno::EACCES:
    1561:  Permission denied - java
    1562:  # ./rb/lib/selenium/webdriver/common/child_process.rb:57:in `spawn'
    1563:  # ./rb/lib/selenium/webdriver/common/child_process.rb:57:in `start'
    1564:  # ./rb/lib/selenium/server.rb:204:in `start'
    1565:  # //?/D:/a/selenium/selenium/rb/spec/integration/selenium/webdriver/spec_helper.rb:40:in `block (2 levels) in <top (required)>'
    1566:  Finished in 0.05379 seconds (files took 0.69149 seconds to load)
    1567:  0 examples, 0 failures, 1 error occurred outside of examples
    1568:  ================================================================================
    1569:  �[32m[2,897 / 2,910]�[0m 10 / 27 tests, �[31m�[1m10 failed�[0m;�[0m Testing //rb/spec/integration/selenium/webdriver:select-edge-remote; 42s local, disk-cache ... (4 actions, 2 running)
    1570:  �[32m[2,897 / 2,910]�[0m 10 / 27 tests, �[31m�[1m10 failed�[0m;�[0m Testing //rb/spec/integration/selenium/webdriver:select-edge-remote; 48s local, disk-cache ... (4 actions, 2 running)
    1571:  �[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)
    1572:  �[32m[2,897 / 2,910]�[0m 10 / 27 tests, �[31m�[1m10 failed�[0m;�[0m Testing //rb/spec/integration/selenium/webdriver:select-edge-remote; 49s local, disk-cache ... (4 actions, 2 running)
    1573:  �[32m[2,897 / 2,910]�[0m 10 / 27 tests, �[31m�[1m10 failed�[0m;�[0m Testing //rb/spec/integration/selenium/webdriver:select-edge-remote; 52s local, disk-cache ... (4 actions, 2 running)
    1574:  �[32m[2,897 / 2,910]�[0m 10 / 27 tests, �[31m�[1m10 failed�[0m;�[0m Testing //rb/spec/integration/selenium/webdriver:select-edge-remote; 53s local, disk-cache ... (4 actions, 2 running)
    1575:  �[32m[2,897 / 2,910]�[0m 10 / 27 tests, �[31m�[1m10 failed�[0m;�[0m Testing //rb/spec/integration/selenium/webdriver:select-edge-remote; 55s local, disk-cache ... (4 actions, 3 running)
    1576:  �[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)
    1577:  ==================== Test output for //rb/spec/integration/selenium/webdriver:select-edge-remote:
    1578:  �[31m�[1mFAILED: �[0m//rb/spec/integration/selenium/webdriver:select-edge-remote (Summary)
    1579:  D:/_bazel/execroot/selenium/bazel-out/x64_windows-fastbuild/testlogs/rb/spec/integration/selenium/webdriver/select-edge-remote/test.log
    1580:  D:/_bazel/execroot/selenium/bazel-out/x64_windows-fastbuild/testlogs/rb/spec/integration/selenium/webdriver/select-edge-remote/test_attempts/attempt_1.log
    1581:  D:/_bazel/execroot/selenium/bazel-out/x64_windows-fastbuild/testlogs/rb/spec/integration/selenium/webdriver/select-edge-remote/test_attempts/attempt_2.log
    1582:  �[32mINFO: �[0mFrom Testing //rb/spec/integration/selenium/webdriver:select-edge-remote:
    1583:  2024-04-06 13:55:25 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
    1584:  An error occurred in a `before(:suite)` hook.
    1585:  Failure/Error: @pid = Process.spawn(*@command, options)
    1586:  Errno::EACCES:
    1587:  Permission denied - java
    1588:  # ./rb/lib/selenium/webdriver/common/child_process.rb:57:in `spawn'
    1589:  # ./rb/lib/selenium/webdriver/common/child_process.rb:57:in `start'
    1590:  # ./rb/lib/selenium/server.rb:204:in `start'
    1591:  # //?/D:/a/selenium/selenium/rb/spec/integration/selenium/webdriver/spec_helper.rb:40:in `block (2 levels) in <top (required)>'
    1592:  Finished in 0.04552 seconds (files took 0.60341 seconds to load)
    1593:  0 examples, 0 failures, 1 error occurred outside of examples
    1594:  ================================================================================
    1595:  ==================== Test output for //rb/spec/integration/selenium/webdriver:select-edge-remote:
    1596:  2024-04-06 13:55:52 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
    1597:  An error occurred in a `before(:suite)` hook.
    1598:  Failure/Error: @pid = Process.spawn(*@command, options)
    1599:  Errno::EACCES:
    1600:  Permission denied - java
    1601:  # ./rb/lib/selenium/webdriver/common/child_process.rb:57:in `spawn'
    1602:  # ./rb/lib/selenium/webdriver/common/child_process.rb:57:in `start'
    1603:  # ./rb/lib/selenium/server.rb:204:in `start'
    1604:  # //?/D:/a/selenium/selenium/rb/spec/integration/selenium/webdriver/spec_helper.rb:40:in `block (2 levels) in <top (required)>'
    1605:  Finished in 0.04691 seconds (files took 0.68435 seconds to load)
    1606:  0 examples, 0 failures, 1 error occurred outside of examples
    1607:  ================================================================================
    1608:  ==================== Test output for //rb/spec/integration/selenium/webdriver:select-edge-remote:
    1609:  2024-04-06 13:56:13 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
    1610:  An error occurred in a `before(:suite)` hook.
    1611:  Failure/Error: @pid = Process.spawn(*@command, options)
    1612:  Errno::EACCES:
    1613:  Permission denied - java
    1614:  # ./rb/lib/selenium/webdriver/common/child_process.rb:57:in `spawn'
    1615:  # ./rb/lib/selenium/webdriver/common/child_process.rb:57:in `start'
    1616:  # ./rb/lib/selenium/server.rb:204:in `start'
    1617:  # //?/D:/a/selenium/selenium/rb/spec/integration/selenium/webdriver/spec_helper.rb:40:in `block (2 levels) in <top (required)>'
    1618:  Finished in 0.04837 seconds (files took 0.64425 seconds to load)
    1619:  0 examples, 0 failures, 1 error occurred outside of examples
    1620:  ================================================================================
    1621:  �[32m[2,898 / 2,910]�[0m 11 / 27 tests, �[31m�[1m11 failed�[0m;�[0m Testing //rb/spec/integration/selenium/webdriver:virtual_authenticator-edge-remote; 42s local, disk-cache ... (4 actions, 2 running)
    1622:  �[32m[2,898 / 2,910]�[0m 11 / 27 tests, �[31m�[1m11 failed�[0m;�[0m Testing //rb/spec/integration/selenium/webdriver:virtual_authenticator-edge-remote; 48s local, disk-cache ... (4 actions, 2 running)
    1623:  �[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)
    1624:  �[32m[2,898 / 2,910]�[0m 11 / 27 tests, �[31m�[1m11 failed�[0m;�[0m Testing //rb/spec/integration/selenium/webdriver:virtual_authenticator-edge-remote; 49s local, disk-cache ... (4 actions, 2 running)
    1625:  �[32m[2,898 / 2,910]�[0m 11 / 27 tests, �[31m�[1m11 failed�[0m;�[0m Testing //rb/spec/integration/selenium/webdriver:virtual_authenticator-edge-remote; 52s local, disk-cache ... (4 actions, 2 running)
    1626:  �[32m[2,898 / 2,910]�[0m 11 / 27 tests, �[31m�[1m11 failed�[0m;�[0m Testing //rb/spec/integration/selenium/webdriver:virtual_authenticator-edge-remote; 53s local, disk-cache ... (4 actions, 2 running)
    1627:  �[32m[2,898 / 2,910]�[0m 11 / 27 tests, �[31m�[1m11 failed�[0m;�[0m Testing //rb/spec/integration/selenium/webdriver:virtual_authenticator-edge-remote; 55s local, disk-cache ... (4 actions, 3 running)
    1628:  �[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)
    1629:  ==================== Test output for //rb/spec/integration/selenium/webdriver:virtual_authenticator-edge-remote:
    1630:  �[31m�[1mFAILED: �[0m//rb/spec/integration/selenium/webdriver:virtual_authenticator-edge-remote (Summary)
    1631:  2024-04-06 13:55:38 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
    1632:  D:/_bazel/execroot/selenium/bazel-out/x64_windows-fastbuild/testlogs/rb/spec/integration/selenium/webdriver/virtual_authenticator-edge-remote/test.log
    1633:  An error occurred in a `before(:suite)` hook.
    1634:  Failure/Error: @pid = Process.spawn(*@command, options)
    1635:  Errno::EACCES:
    1636:  Permission denied - java
    1637:  # ./rb/lib/selenium/webdriver/common/child_process.rb:57:in `spawn'
    1638:  # ./rb/lib/selenium/webdriver/common/child_process.rb:57:in `start'
    1639:  # ./rb/lib/selenium/server.rb:204:in `start'
    1640:  # //?/D:/a/selenium/selenium/rb/spec/integration/selenium/webdriver/spec_helper.rb:40:in `block (2 levels) in <top (required)>'
    1641:  Finished in 0.04456 seconds (files took 0.59006 seconds to load)
    1642:  0 examples, 0 failures, 1 error occurred outside of examples
    1643:  ================================================================================
    1644:  ==================== Test output for //rb/spec/integration/selenium/webdriver:virtual_authenticator-edge-remote:
    1645:  2024-04-06 13:56:06 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
    1646:  An error occurred in a `before(:suite)` hook.
    1647:  Failure/Error: @pid = Process.spawn(*@command, options)
    1648:  Errno::EACCES:
    1649:  Permission denied - java
    1650:  # ./rb/lib/selenium/webdriver/common/child_process.rb:57:in `spawn'
    1651:  # ./rb/lib/selenium/webdriver/common/child_process.rb:57:in `start'
    1652:  # ./rb/lib/selenium/server.rb:204:in `start'
    1653:  # //?/D:/a/selenium/selenium/rb/spec/integration/selenium/webdriver/spec_helper.rb:40:in `block (2 levels) in <top (required)>'
    1654:  Finished in 0.04521 seconds (files took 0.70273 seconds to load)
    1655:  0 examples, 0 failures, 1 error occurred outside of examples
    1656:  ================================================================================
    1657:  ==================== Test output for //rb/spec/integration/selenium/webdriver:virtual_authenticator-edge-remote:
    1658:  2024-04-06 13:56:27 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
    1659:  An error occurred in a `before(:suite)` hook.
    1660:  Failure/Error: @pid = Process.spawn(*@command, options)
    1661:  Errno::EACCES:
    1662:  Permission denied - java
    1663:  # ./rb/lib/selenium/webdriver/common/child_process.rb:57:in `spawn'
    1664:  # ./rb/lib/selenium/webdriver/common/child_process.rb:57:in `start'
    1665:  # ./rb/lib/selenium/server.rb:204:in `start'
    1666:  # //?/D:/a/selenium/selenium/rb/spec/integration/selenium/webdriver/spec_helper.rb:40:in `block (2 levels) in <top (required)>'
    1667:  Finished in 0.05035 seconds (files took 0.63215 seconds to load)
    1668:  0 examples, 0 failures, 1 error occurred outside of examples
    1669:  ================================================================================
    1670:  D:/_bazel/execroot/selenium/bazel-out/x64_windows-fastbuild/testlogs/rb/spec/integration/selenium/webdriver/virtual_authenticator-edge-remote/test_attempts/attempt_1.log
    1671:  D:/_bazel/execroot/selenium/bazel-out/x64_windows-fastbuild/testlogs/rb/spec/integration/selenium/webdriver/virtual_authenticator-edge-remote/test_attempts/attempt_2.log
    1672:  �[32mINFO: �[0mFrom Testing //rb/spec/integration/selenium/webdriver:virtual_authenticator-edge-remote:
    1673:  �[32m[2,899 / 2,910]�[0m 12 / 27 tests, �[31m�[1m12 failed�[0m;�[0m Testing //rb/spec/integration/selenium/webdriver:listener-edge-remote; 15s local, disk-cache ... (4 actions, 2 running)
    1674:  �[32m[2,899 / 2,910]�[0m 12 / 27 tests, �[31m�[1m12 failed�[0m;�[0m Testing //rb/spec/integration/selenium/webdriver:listener-edge-remote; 20s local, disk-cache ... (4 actions, 2 running)
    1675:  �[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)
    1676:  �[32m[2,899 / 2,910]�[0m 12 / 27 tests, �[31m�[1m12 failed�[0m;�[0m Testing //rb/spec/integration/selenium/webdriver:listener-edge-remote; 22s local, disk-cache ... (4 actions, 2 running)
    1677:  �[32m[2,899 / 2,910]�[0m 12 / 27 tests, �[31m�[1m12 failed�[0m;�[0m Testing //rb/spec/integration/selenium/webdriver:listener-edge-remote; 25s local, disk-cache ... (4 actions, 2 running)
    1678:  �[32m[2,899 / 2,910]�[0m 12 / 27 tests, �[31m�[1m12 failed�[0m;�[0m Testing //rb/spec/integration/selenium/webdriver:listener-edge-remote; 26s local, disk-cache ... (4 actions, 2 running)
    1679:  �[32m[2,899 / 2,910]�[0m 12 / 27 tests, �[31m�[1m12 failed�[0m;�[0m Testing //rb/spec/integration/selenium/webdriver:listener-edge-remote; 27s local, disk-cache ... (4 actions, 3 running)
    1680:  �[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)
    1681:  �[32m[2,899 / 2,910]�[0m 12 / 27 tests, �[31m�[1m12 failed�[0m;�[0m Testing //rb/spec/integration/selenium/webdriver:listener-edge-remote; 29s local, disk-cache ... (4 actions, 3 running)
    1682:  �[32m[2,899 / 2,910]�[0m 12 / 27 tests, �[31m�[1m12 failed�[0m;�[0m Testing //rb/spec/integration/selenium/webdriver:listener-edge-remote; 34s local, disk-cache ... (4 actions, 3 running)
    1683:  �[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)
    1684:  �[32m[2,899 / 2,910]�[0m 12 / 27 tests, �[31m�[1m12 failed�[0m;�[0m Testing //rb/spec/integration/selenium/webdriver:listener-edge-remote; 36s local, disk-cache ... (4 actions, 3 running)
    1685:  �[32m[2,899 / 2,910]�[0m 12 / 27 tests, �[31m�[1m12 failed�[0m;�[0m Testing //rb/spec/integration/selenium/webdriver:listener-edge-remote; 41s local, disk-cache ... (4 actions running)
    1686:  �[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)
    1687:  �[32m[2,899 / 2,910]�[0m 12 / 27 tests, �[31m�[1m12 failed�[0m;�[0m Testing //rb/spec/integration/selenium/webdriver:listener-edge-remote; 43s local, disk-cache ... (4 actions running)
    1688:  �[32m[2,899 / 2,910]�[0m 12 / 27 tests, �[31m�[1m12 failed�[0m;�[0m Testing //rb/spec/integration/selenium/webdriver:listener-edge-remote; 48s local, disk-cache ... (4 actions running)
    1689:  �[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)
    1690:  �[32m[2,899 / 2,910]�[0m 12 / 27 tests, �[31m�[1m12 failed�[0m;�[0m Testing //rb/spec/integration/selenium/webdriver:listener-edge-remote; 50s local, disk-cache ... (4 actions running)
    1691:  �[32m[2,899 / 2,910]�[0m 12 / 27 tests, �[31m�[1m12 failed�[0m;�[0m Testing //rb/spec/integration/selenium/webdriver:listener-edge-remote; 55s local, disk-cache ... (4 actions running)
    1692:  �[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)
    1693:  ==================== Test output for //rb/spec/integration/selenium/webdriver:listener-edge-remote:
    1694:  �[31m�[1mFAILED: �[0m//rb/spec/integration/selenium/webdriver:listener-edge-remote (Summary)
    1695:  D:/_bazel/execroot/selenium/bazel-out/x64_windows-fastbuild/testlogs/rb/spec/integration/selenium/webdriver/listener-edge-remote/test.log
    1696:  2024-04-06 13:56:20 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
    1697:  D:/_bazel/execroot/selenium/bazel-out/x64_windows-fastbuild/testlogs/rb/spec/integration/selenium/webdriver/listener-edge-remote/test_attempts/attempt_1.log
    1698:  D:/_bazel/execroot/selenium/bazel-out/x64_windows-fastbuild/testlogs/rb/spec/integration/selenium/webdriver/listener-edge-remote/test_attempts/attempt_2.log
    1699:  �[32mINFO: �[0mFrom Testing //rb/spec/integration/selenium/webdriver:listener-edge-remote:
    1700:  An error occurred in a `before(:suite)` hook.
    1701:  Failure/Error: @pid = Process.spawn(*@command, options)
    1702:  Errno::EACCES:
    1703:  Permission denied - java
    1704:  # ./rb/lib/selenium/webdriver/common/child_process.rb:57:in `spawn'
    1705:  # ./rb/lib/selenium/webdriver/common/child_process.rb:57:in `start'
    1706:  # ./rb/lib/selenium/server.rb:204:in `start'
    1707:  # //?/D:/a/selenium/selenium/rb/spec/integration/selenium/webdriver/spec_helper.rb:40:in `block (2 levels) in <top (required)>'
    1708:  Finished in 0.0453 seconds (files took 0.67461 seconds to load)
    1709:  0 examples, 0 failures, 1 error occurred outside of examples
    1710:  ================================================================================
    1711:  ==================== Test output for //rb/spec/integration/selenium/webdriver:listener-edge-remote:
    1712:  2024-04-06 13:56:41 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
    1713:  An error occurred in a `before(:suite)` hook.
    1714:  Failure/Error: @pid = Process.spawn(*@command, options)
    1715:  Errno::EACCES:
    1716:  Permission denied - java
    1717:  # ./rb/lib/selenium/webdriver/common/child_process.rb:57:in `spawn'
    1718:  # ./rb/lib/selenium/webdriver/common/child_process.rb:57:in `start'
    1719:  # ./rb/lib/selenium/server.rb:204:in `start'
    1720:  # //?/D:/a/selenium/selenium/rb/spec/integration/selenium/webdriver/spec_helper.rb:40:in `block (2 levels) in <top (required)>'
    1721:  Finished in 0.04939 seconds (files took 0.65447 seconds to load)
    1722:  0 examples, 0 failures, 1 error occurred outside of examples
    1723:  ================================================================================
    1724:  ==================== Test output for //rb/spec/integration/selenium/webdriver:listener-edge-remote:
    1725:  2024-04-06 13:57:09 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
    1726:  An error occurred in a `before(:suite)` hook.
    1727:  Failure/Error: @pid = Process.spawn(*@command, options)
    1728:  Errno::EACCES:
    1729:  Permission denied - java
    1730:  # ./rb/lib/selenium/webdriver/common/child_process.rb:57:in `spawn'
    1731:  # ./rb/lib/selenium/webdriver/common/child_process.rb:57:in `start'
    1732:  # ./rb/lib/selenium/server.rb:204:in `start'
    1733:  # //?/D:/a/selenium/selenium/rb/spec/integration/selenium/webdriver/spec_helper.rb:40:in `block (2 levels) in <top (required)>'
    1734:  Finished in 0.04532 seconds (files took 0.62949 seconds to load)
    1735:  0 examples, 0 failures, 1 error occurred outside of examples
    1736:  ================================================================================
    1737:  �[32m[2,900 / 2,910]�[0m 13 / 27 tests, �[31m�[1m13 failed�[0m;�[0m Testing //rb/spec/integration/selenium/webdriver/edge:driver-edge-remote; 42s local, disk-cache ... (4 actions, 3 running)
    1738:  �[32m[2,900 / 2,910]�[0m 13 / 27 tests, �[31m�[1m13 failed�[0m;�[0m Testing //rb/spec/integration/selenium/webdriver/edge:driver-edge-remote; 48s local, disk-cache ... (4 actions, 3 running)
    1739:  �[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)
    1740:  �[32m[2,900 / 2,910]�[0m 13 / 27 tests, �[31m�[1m13 failed�[0m;�[0m Testing //rb/spec/integration/selenium/webdriver/edge:driver-edge-remote; 49s local, disk-cache ... (4 actions, 3 running)
    1741:  �[32m[2,900 / 2,910]�[0m 13 / 27 tests, �[31m�[1m13 failed�[0m;�[0m Testing //rb/spec/integration/selenium/webdriver/edge:driver-edge-remote; 50s local, disk-cache ... (4 actions, 3 running)
    1742:  �[32m[2,900 / 2,910]�[0m 13 / 27 tests, �[31m�[1m13 failed�[0m;�[0m Testing //rb/spec/integration/selenium/webdriver/edge:driver-edge-remote; 52s local, disk-cache ... (4 actions, 3 running)
    1743:  �[32m[2,900 / 2,910]�[0m 13 / 27 tests, �[31m�[1m13 failed�[0m;�[0m Testing //rb/spec/integration/selenium/webdriver/edge:driver-edge-remote; 54s local, disk-cache ... (4 actions, 3 running)
    1744:  �[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)
    1745:  �[31m�[1mFAILED: �[0m//rb/spec/integration/selenium/webdriver/edge:driver-edge-remote (Summary)
    1746:  D:/_bazel/execroot/selenium/bazel-out/x64_windows-fastbuild/testlogs/rb/spec/integration/selenium/webdriver/edge/driver-edge-remote/test.log
    1747:  D:/_bazel/execroot/selenium/bazel-out/x64_windows-fastbuild/testlogs/rb/spec/integration/selenium/webdriver/edge/driver-edge-remote/test_attempts/attempt_1.log
    1748:  D:/_bazel/execroot/selenium/bazel-out/x64_windows-fastbuild/testlogs/rb/spec/integration/selenium/webdriver/edge/driver-edge-remote/test_attempts/attempt_2.log
    1749:  �[32mINFO: �[0mFrom Testing //rb/spec/integration/selenium/webdriver/edge:driver-edge-remote:
    1750:  ==================== Test output for //rb/spec/integration/selenium/webdriver/edge:driver-edge-remote:
    1751:  2024-04-06 13:56:34 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
    1752:  An error occurred in a `before(:suite)` hook.
    1753:  Failure/Error: @pid = Process.spawn(*@command, options)
    1754:  Errno::EACCES:
    1755:  Permission denied - java
    1756:  # ./rb/lib/selenium/webdriver/common/child_process.rb:57:in `spawn'
    1757:  # ./rb/lib/selenium/webdriver/common/child_process.rb:57:in `start'
    1758:  # ./rb/lib/selenium/server.rb:204:in `start'
    1759:  # //?/D:/a/selenium/selenium/rb/spec/integration/selenium/webdriver/spec_helper.rb:40:in `block (2 levels) in <top (required)>'
    1760:  Finished in 0.04868 seconds (files took 0.6985 seconds to load)
    1761:  0 examples, 0 failures, 1 error occurred outside of examples
    1762:  ================================================================================
    1763:  ==================== Test output for //rb/spec/integration/selenium/webdriver/edge:driver-edge-remote:
    1764:  2024-04-06 13:56: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
    1765:  An error occurred in a `before(:suite)` hook.
    1766:  Failure/Error: @pid = Process.spawn(*@command, options)
    1767:  Errno::EACCES:
    1768:  Permission denied - java
    1769:  # ./rb/lib/selenium/webdriver/common/child_process.rb:57:in `spawn'
    1770:  # ./rb/lib/selenium/webdriver/common/child_process.rb:57:in `start'
    1771:  # ./rb/lib/selenium/server.rb:204:in `start'
    1772:  # //?/D:/a/selenium/selenium/rb/spec/integration/selenium/webdriver/spec_helper.rb:40:in `block (2 levels) in <top (required)>'
    1773:  Finished in 0.04411 seconds (files took 0.62407 seconds to load)
    1774:  0 examples, 0 failures, 1 error occurred outside of examples
    1775:  ================================================================================
    1776:  ==================== Test output for //rb/spec/integration/selenium/webdriver/edge:driver-edge-remote:
    1777:  2024-04-06 13:57: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
    1778:  An error occurred in a `before(:suite)` hook.
    1779:  Failure/Error: @pid = Process.spawn(*@command, options)
    1780:  Errno::EACCES:
    1781:  Permission denied - java
    1782:  # ./rb/lib/selenium/webdriver/common/child_process.rb:57:in `spawn'
    1783:  # ./rb/lib/selenium/webdriver/common/child_process.rb:57:in `start'
    1784:  # ./rb/lib/selenium/server.rb:204:in `start'
    1785:  # //?/D:/a/selenium/selenium/rb/spec/integration/selenium/webdriver/spec_helper.rb:40:in `block (2 levels) in <top (required)>'
    1786:  Finished in 0.04637 seconds (files took 0.63363 seconds to load)
    1787:  0 examples, 0 failures, 1 error occurred outside of examples
    1788:  ================================================================================
    1789:  �[32m[2,901 / 2,910]�[0m 14 / 27 tests, �[31m�[1m14 failed�[0m;�[0m Testing //rb/spec/integration/selenium/webdriver:timeout-edge-remote; 41s local, disk-cache ... (4 actions, 2 running)
    1790:  �[32m[2,901 / 2,910]�[0m 14 / 27 tests, �[31m�[1m14 failed�[0m;�[0m Testing //rb/spec/integration/selenium/webdriver:timeout-edge-remote; 42s local, disk-cache ... (4 actions, 2 running)
    1791:  �[32m[2,901 / 2,910]�[0m 14 / 27 tests, �[31m�[1m14 failed�[0m;�[0m Testing //rb/spec/integration/selenium/webdriver:timeout-edge-remote; 48s local, disk-cache ... (4 actions, 2 running)
    1792:  �[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)
    1793:  �[32m[2,901 / 2,910]�[0m 14 / 27 tests, �[31m�[1m14 failed�[0m;�[0m Testing //rb/spec/integration/selenium/webdriver:timeout-edge-remote; 49s local, disk-cache ... (4 actions, 2 running)
    1794:  �[32m[2,901 / 2,910]�[0m 14 / 27 tests, �[31m�[1m14 failed�[0m;�[0m Testing //rb/spec/integration/selenium/webdriver:timeout-edge-remote; 52s local, disk-cache ... (4 actions, 2 running)
    1795:  �[32m[2,901 / 2,910]�[0m 14 / 27 tests, �[31m�[1m14 failed�[0m;�[0m Testing //rb/spec/integration/selenium/webdriver:timeout-edge-remote; 54s local, disk-cache ... (4 actions, 2 running)
    1796:  �[32m[2,901 / 2,910]�[0m 14 / 27 tests, �[31m�[1m14 failed�[0m;�[0m Testing //rb/spec/integration/selenium/webdriver:timeout-edge-remote; 55s local, disk-cache ... (4 actions, 3 running)
    1797:  �[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)
    1798:  �[31m�[1mFAILED: �[0m//rb/spec/integration/selenium/webdriver:timeout-edge-remote (Summary)
    1799:  ==================== Test output for //rb/spec/integration/selenium/webdriver:timeout-edge-remote:
    1800:  D:/_bazel/execroot/selenium/bazel-out/x64_windows-fastbuild/testlogs/rb/spec/integration/selenium/webdriver/timeout-edge-remote/test.log
    1801:  2024-04-06 13:56:48 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
    1802:  D:/_bazel/execroot/selenium/bazel-out/x64_windows-fastbuild/testlogs/rb/spec/integration/selenium/webdriver/timeout-edge-remote/test_attempts/attempt_1.log
    1803:  D:/_bazel/execroot/selenium/bazel-out/x64_windows-fastbuild/testlogs/rb/spec/integration/selenium/webdriver/timeout-edge-remote/test_attempts/attempt_2.log
    1804:  �[32mINFO: �[0mFrom Testing //rb/spec/integration/selenium/webdriver:timeout-edge-remote:
    1805:  An error occurred in a `before(:suite)` hook.
    1806:  Failure/Error: @pid = Process.spawn(*@command, options)
    1807:  Errno::EACCES:
    1808:  Permission denied - java
    1809:  # ./rb/lib/selenium/webdriver/common/child_process.rb:57:in `spawn'
    1810:  # ./rb/lib/selenium/webdriver/common/child_process.rb:57:in `start'
    1811:  # ./rb/lib/selenium/server.rb:204:in `start'
    1812:  # //?/D:/a/selenium/selenium/rb/spec/integration/selenium/webdriver/spec_helper.rb:40:in `block (2 levels) in <top (required)>'
    1813:  Finished in 0.04468 seconds (files took 0.67585 seconds to load)
    1814:  0 examples, 0 failures, 1 error occurred outside of examples
    1815:  ================================================================================
    1816:  ==================== Test output for //rb/spec/integration/selenium/webdriver:timeout-edge-remote:
    1817:  2024-04-06 13:57:15 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
    1818:  An error occurred in a `before(:suite)` hook.
    1819:  Failure/Error: @pid = Process.spawn(*@command, options)
    1820:  Errno::EACCES:
    1821:  Permission denied - java
    1822:  # ./rb/lib/selenium/webdriver/common/child_process.rb:57:in `spawn'
    1823:  # ./rb/lib/selenium/webdriver/common/child_process.rb:57:in `start'
    1824:  # ./rb/lib/selenium/server.rb:204:in `start'
    1825:  # //?/D:/a/selenium/selenium/rb/spec/integration/selenium/webdriver/spec_helper.rb:40:in `block (2 levels) in <top (required)>'
    1826:  Finished in 0.04517 seconds (files took 0.67442 seconds to load)
    1827:  0 examples, 0 failures, 1 error occurred outside of examples
    1828:  ================================================================================
    1829:  ==================== Test output for //rb/spec/integration/selenium/webdriver:timeout-edge-remote:
    1830:  2024-04-06 13:57:37 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
    1831:  An error occurred in a `before(:suite)` hook.
    1832:  Failure/Error: @pid = Process.spawn(*@command, options)
    1833:  Errno::EACCES:
    1834:  Permission denied - java
    1835:  # ./rb/lib/selenium/webdriver/common/child_process.rb:57:in `spawn'
    1836:  # ./rb/lib/selenium/webdriver/common/child_process.rb:57:in `start'
    1837:  # ./rb/lib/selenium/server.rb:204:in `start'
    1838:  # //?/D:/a/selenium/selenium/rb/spec/integration/selenium/webdriver/spec_helper.rb:40:in `block (2 levels) in <top (required)>'
    1839:  Finished in 0.0688 seconds (files took 0.8365 seconds to load)
    1840:  0 examples, 0 failures, 1 error occurred outside of examples
    1841:  ================================================================================
    1842:  �[32m[2,902 / 2,910]�[0m 15 / 27 tests, �[31m�[1m15 failed�[0m;�[0m Testing //rb/spec/integration/selenium/webdriver/edge:options-edge-remote; 43s local, disk-cache ... (4 actions, 2 running)
    1843:  �[32m[2,902 / 2,910]�[0m 15 / 27 tests, �[31m�[1m15 failed�[0m;�[0m Testing //rb/spec/integration/selenium/webdriver/edge:options-edge-remote; 48s local, disk-cache ... (4 actions, 2 running)
    1844:  �[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)
    1845:  �[32m[2,902 / 2,910]�[0m 15 / 27 tests, �[31m�[1m15 failed�[0m;�[0m Testing //rb/spec/integration/selenium/webdriver/edge:options-edge-remote; 49s local, disk-cache ... (4 actions, 2 running)
    1846:  �[32m[2,902 / 2,910]�[0m 15 / 27 tests, �[31m�[1m15 failed�[0m;�[0m Testing //rb/spec/integration/selenium/webdriver/edge:options-edge-remote; 53s local, disk-cache ... (4 actions, 2 running)
    1847:  �[32m[2,902 / 2,910]�[0m 15 / 27 tests, �[31m�[1m15 failed�[0m;�[0m Testing //rb/spec/integration/selenium/webdriver/edge:options-edge-remote; 54s local, disk-cache ... (4 actions, 2 running)
    1848:  �[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)
    1849:  ==================== Test output for //rb/spec/integration/selenium/webdriver/edge:options-edge-remote:
    1850:  �[31m�[1mFAILED: �[0m//rb/spec/integration/selenium/webdriver/edge:options-edge-remote (Summary)
    1851:  2024-04-06 13:57:02 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
    1852:  D:/_bazel/execroot/selenium/bazel-out/x64_windows-fastbuild/testlogs/rb/spec/integration/selenium/webdriver/edge/options-edge-remote/test.log
    1853:  D:/_bazel/execroot/selenium/bazel-out/x64_windows-fastbuild/testlogs/rb/spec/integration/selenium/webdriver/edge/options-edge-remote/test_attempts/attempt_1.log
    1854:  D:/_bazel/execroot/selenium/bazel-out/x64_windows-fastbuild/testlogs/rb/spec/integration/selenium/webdriver/edge/options-edge-remote/test_attempts/attempt_2.log
    1855:  An error occurred in a `before(:suite)` hook.
    1856:  �[32mINFO: �[0mFrom Testing //rb/spec/integration/selenium/webdriver/edge:options-edge-remote:
    1857:  Failure/Error: @pid = Process.spawn(*@command, options)
    1858:  Errno::EACCES:
    1859:  Permission denied - java
    1860:  # ./rb/lib/selenium/webdriver/common/child_process.rb:57:in `spawn'
    1861:  # ./rb/lib/selenium/webdriver/common/child_process.rb:57:in `start'
    1862:  # ./rb/lib/selenium/server.rb:204:in `start'
    1863:  # //?/D:/a/selenium/selenium/rb/spec/integration/selenium/webdriver/spec_helper.rb:40:in `block (2 levels) in <top (required)>'
    1864:  Finished in 0.04573 seconds (files took 0.60201 seconds to load)
    1865:  0 examples, 0 failures, 1 error occurred outside of examples
    1866:  ================================================================================
    1867:  ==================== Test output for //rb/spec/integration/selenium/webdriver/edge:options-edge-remote:
    1868:  2024-04-06 13:57:29 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
    1869:  An error occurred in a `before(:suite)` hook.
    1870:  Failure/Error: @pid = Process.spawn(*@command, options)
    1871:  Errno::EACCES:
    1872:  Permission denied - java
    1873:  # ./rb/lib/selenium/webdriver/common/child_process.rb:57:in `spawn'
    1874:  # ./rb/lib/selenium/webdriver/common/child_process.rb:57:in `start'
    1875:  # ./rb/lib/selenium/server.rb:204:in `start'
    1876:  # //?/D:/a/selenium/selenium/rb/spec/integration/selenium/webdriver/spec_helper.rb:40:in `block (2 levels) in <top (required)>'
    1877:  Finished in 0.04684 seconds (files took 0.64712 seconds to load)
    1878:  0 examples, 0 failures, 1 error occurred outside of examples
    1879:  ================================================================================
    1880:  ==================== Test output for //rb/spec/integration/selenium/webdriver/edge:options-edge-remote:
    1881:  2024-04-06 13:57:50 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
    1882:  An error occurred in a `before(:suite)` hook.
    1883:  Failure/Error: @pid = Process.spawn(*@command, options)
    1884:  Errno::EACCES:
    1885:  Permission denied - java
    1886:  # ./rb/lib/selenium/webdriver/common/child_process.rb:57:in `spawn'
    1887:  # ./rb/lib/selenium/webdriver/common/child_process.rb:57:in `start'
    1888:  # ./rb/lib/selenium/server.rb:204:in `start'
    1889:  # //?/D:/a/selenium/selenium/rb/spec/integration/selenium/webdriver/spec_helper.rb:40:in `block (2 levels) in <top (required)>'
    1890:  Finished in 0.0454 seconds (files took 0.63363 seconds to load)
    1891:  0 examples, 0 failures, 1 error occurred outside of examples
    1892:  ================================================================================
    1893:  �[32m[2,903 / 2,910]�[0m 16 / 27 tests, �[31m�[1m16 failed�[0m;�[0m Testing //rb/spec/integration/selenium/webdriver:window-edge-remote; 14s local, disk-cache ... (4 actions, 2 running)
    1894:  �[32m[2,903 / 2,910]�[0m 16 / 27 tests, �[31m�[1m16 failed�[0m;�[0m Testing //rb/spec/integration/selenium/webdriver:window-edge-remote; 20s local, disk-cache ... (4 actions, 2 running)
    1895:  �[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)
    1896:  �[32m[2,903 / 2,910]�[0m 16 / 27 tests, �[31m�[1m16 failed�[0m;�[0m Testing //rb/spec/integration/selenium/webdriver:window-edge-remote; 21s local, disk-cache ... (4 actions, 2 running)
    1897:  �[32m[2,903 / 2,910]�[0m 16 / 27 tests, �[31m�[1m16 failed�[0m;�[0m Testing //rb/spec/integration/selenium/webdriver:window-edge-remote; 24s local, disk-cache ... (4 actions, 2 running)
    1898:  �[32m[2,903 / 2,910]�[0m 16 / 27 tests, �[31m�[1m16 failed�[0m;�[0m Testing //rb/spec/integration/selenium/webdriver:window-edge-remote; 25s local, disk-cache ... (4 actions, 2 running)
    1899:  �[32m[2,903 / 2,910]�[0m 16 / 27 tests, �[31m�[1m16 failed�[0m;�[0m Testing //rb/spec/integration/selenium/webdriver:window-edge-remote; 27s local, disk-cache ... (4 actions, 3 running)
    1900:  �[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)
    1901:  �[32m[2,903 / 2,910]�[0m 16 / 27 tests, �[31m�[1m16 failed�[0m;�[0m Testing //rb/spec/integration/selenium/webdriver:window-edge-remote; 28s local, disk-cache ... (4 actions, 3 running)
    1902:  �[32m[2,903 / 2,910]�[0m 16 / 27 tests, �[31m�[1m16 failed�[0m;�[0m Testing //rb/spec/integration/selenium/webdriver:window-edge-remote; 34s local, disk-cache ... (4 actions, 3 running)
    1903:  �[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)
    1904:  �[32m[2,903 / 2,910]�[0m 16 / 27 tests, �[31m�[1m16 failed�[0m;�[0m Testing //rb/spec/integration/selenium/webdriver:window-edge-remote; 35s local, disk-cache ... (4 actions, 3 running)
    1905:  �[32m[2,903 / 2,910]�[0m 16 / 27 tests, �[31m�[1m16 failed�[0m;�[0m Testing //rb/spec/integration/selenium/webdriver:window-edge-remote; 41s local, disk-cache ... (4 actions running)
    1906:  �[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)
    1907:  �[32m[2,903 / 2,910]�[0m 16 / 27 tests, �[31m�[1m16 failed�[0m;�[0m Testing //rb/spec/integration/selenium/webdriver:window-edge-remote; 42s local, disk-cache ... (4 actions running)
    1908:  �[32m[2,903 / 2,910]�[0m 16 / 27 tests, �[31m�[1m16 failed�[0m;�[0m Testing //rb/spec/integration/selenium/webdriver:window-edge-remote; 48s local, disk-cache ... (4 actions running)
    1909:  �[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)
    1910:  �[32m[2,903 / 2,910]�[0m 16 / 27 tests, �[31m�[1m16 failed�[0m;�[0m Testing //rb/spec/integration/selenium/webdriver:window-edge-remote; 49s local, disk-cache ... (4 actions running)
    1911:  �[32m[2,903 / 2,910]�[0m 16 / 27 tests, �[31m�[1m16 failed�[0m;�[0m Testing //rb/spec/integration/selenium/webdriver:window-edge-remote; 54s local, disk-cache ... (4 actions running)
    1912:  �[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)
    1913:  �[31m�[1mFAILED: �[0m//rb/spec/integration/selenium/webdriver:window-edge-remote (Summary)
    1914:  D:/_bazel/execroot/selenium/bazel-out/x64_windows-fastbuild/testlogs/rb/spec/integration/selenium/webdriver/window-edge-remote/test.log
    1915:  D:/_bazel/execroot/selenium/bazel-out/x64_windows-fastbuild/testlogs/rb/spec/integration/selenium/webdriver/window-edge-remote/test_attempts/attempt_1.log
    1916:  D:/_bazel/execroot/selenium/bazel-out/x64_windows-fastbuild/testlogs/rb/spec/integration/selenium/webdriver/window-edge-remote/test_attempts/attempt_2.log
    1917:  �[32mINFO: �[0mFrom Testing //rb/spec/integration/selenium/webdriver:window-edge-remote:
    1918:  ==================== Test output for //rb/spec/integration/selenium/webdriver:window-edge-remote:
    1919:  2024-04-06 13:57:43 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
    1920:  An error occurred in a `before(:suite)` hook.
    1921:  Failure/Error: @pid = Process.spawn(*@command, options)
    1922:  Errno::EACCES:
    1923:  Permission denied - java
    1924:  # ./rb/lib/selenium/webdriver/common/child_process.rb:57:in `spawn'
    1925:  # ./rb/lib/selenium/webdriver/common/child_process.rb:57:in `start'
    1926:  # ./rb/lib/selenium/server.rb:204:in `start'
    1927:  # //?/D:/a/selenium/selenium/rb/spec/integration/selenium/webdriver/spec_helper.rb:40:in `block (2 levels) in <top (required)>'
    1928:  Finished in 0.05698 seconds (files took 0.6197 seconds to load)
    1929:  0 examples, 0 failures, 1 error occurred outside of examples
    1930:  ================================================================================
    1931:  ==================== Test output for //rb/spec/integration/selenium/webdriver:window-edge-remote:
    1932:  2024-04-06 13:58: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
    1933:  An error occurred in a `before(:suite)` hook.
    1934:  Failure/Error: @pid = Process.spawn(*@command, options)
    1935:  Errno::EACCES:
    1936:  Permission denied - java
    1937:  # ./rb/lib/selenium/webdriver/common/child_process.rb:57:in `spawn'
    1938:  # ./rb/lib/selenium/webdriver/common/child_process.rb:57:in `start'
    1939:  # ./rb/lib/selenium/server.rb:204:in `start'
    1940:  # //?/D:/a/selenium/selenium/rb/spec/integration/selenium/webdriver/spec_helper.rb:40:in `block (2 levels) in <top (required)>'
    1941:  Finished in 0.04647 seconds (files took 0.64703 seconds to load)
    1942:  0 examples, 0 failures, 1 error occurred outside of examples
    1943:  ================================================================================
    1944:  ==================== Test output for //rb/spec/integration/selenium/webdriver:window-edge-remote:
    1945:  2024-04-06 13:58:31 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
    1946:  An error occurred in a `before(:suite)` hook.
    1947:  Failure/Error: @pid = Process.spawn(*@command, options)
    1948:  Errno::EACCES:
    1949:  Permission denied - java
    1950:  # ./rb/lib/selenium/webdriver/common/child_process.rb:57:in `spawn'
    1951:  # ./rb/lib/selenium/webdriver/common/child_process.rb:57:in `start'
    1952:  # ./rb/lib/selenium/server.rb:204:in `start'
    1953:  # //?/D:/a/selenium/selenium/rb/spec/integration/selenium/webdriver/spec_helper.rb:40:in `block (2 levels) in <top (required)>'
    1954:  Finished in 0.04717 seconds (files took 0.58459 seconds to load)
    1955:  0 examples, 0 failures, 1 error occurred outside of examples
    1956:  ================================================================================
    1957:  �[32m[2,904 / 2,910]�[0m 17 / 27 tests, �[31m�[1m17 failed�[0m;�[0m Testing //rb/spec/integration/selenium/webdriver:storage-edge-remote; 42s local, disk-cache ... (4 actions, 3 running)
    1958:  �[32m[2,904 / 2,910]�[0m 17 / 27 tests, �[31m�[1m17 failed�[0m;�[0m Testing //rb/spec/integration/selenium/webdriver:storage-edge-remote; 47s local, disk-cache ... (4 actions, 3 running)
    1959:  �[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)
    1960:  �[32m[2,904 / 2,910]�[0m 17 / 27 tests, �[31m�[1m17 failed�[0m;�[0m Testing //rb/spec/integration/selenium/webdriver:storage-edge-remote; 49s local, disk-cache ... (4 actions, 3 running)
    1961:  �[32m[2,904 / 2,910]�[0m 17 / 27 tests, �[31m�[1m17 failed�[0m;�[0m Testing //rb/spec/integration/selenium/webdriver:storage-edge-remote; 52s local, disk-cache ... (4 actions, 3 running)
    1962:  �[32m[2,904 / 2,910]�[0m 17 / 27 tests, �[31m�[1m17 failed�[0m;�[0m Testing //rb/spec/integration/selenium/webdriver:storage-edge-remote; 53s local, disk-cache ... (4 actions, 3 running)
    1963:  �[32m[2,904 / 2,910]�[0m 17 / 27 tests, �[31m�[1m17 failed�[0m;�[0m Testing //rb/spec/integration/selenium/webdriver:storage-edge-remote; 54s local, disk-cache ... (4 actions, 3 running)
    1964:  �[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)
    1965:  ==================== Test output for //rb/spec/integration/selenium/webdriver:storage-edge-remote:
    1966:  2024-04-06 13:57:57 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
    1967:  An error occurred in a `before(:suite)` hook.
    1968:  Failure/Error: @pid = Process.spawn(*@command, options)
    1969:  Errno::EACCES:
    1970:  Permission denied - java
    1971:  # ./rb/lib/selenium/webdriver/common/child_process.rb:57:in `spawn'
    1972:  # ./rb/lib/selenium/webdriver/common/child_process.rb:57:in `start'
    1973:  # ./rb/lib/selenium/server.rb:204:in `start'
    1974:  # //?/D:/a/selenium/selenium/rb/spec/integration/selenium/webdriver/spec_helper.rb:40:in `block (2 levels) in <top (required)>'
    1975:  Finished in 0.04715 seconds (files took 0.64812 seconds to load)
    1976:  0 examples, 0 failures, 1 error occurred outside of examples
    1977:  ================================================================================
    1978:  ==================== Test output for //rb/spec/integration/selenium/webdriver:storage-edge-remote:
    1979:  2024-04-06 13:58:18 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:  �[31m�[1mFAILED: �[0m//rb/spec/integration/selenium/webdriver:storage-edge-remote (Summary)
    1982:  Failure/Error: @pid = Process.spawn(*@command, options)
    ...
    
    1986:  D:/_bazel/execroot/selenium/bazel-out/x64_windows-fastbuild/testlogs/rb/spec/integration/selenium/webdriver/storage-edge-remote/test_attempts/attempt_2.log
    1987:  Permission denied - java
    1988:  �[32mINFO: �[0mFrom Testing //rb/spec/integration/selenium/webdriver:storage-edge-remote:
    1989:  # ./rb/lib/selenium/webdriver/common/child_process.rb:57:in `spawn'
    1990:  # ./rb/lib/selenium/webdriver/common/child_process.rb:57:in `start'
    1991:  # ./rb/lib/selenium/server.rb:204:in `start'
    1992:  # //?/D:/a/selenium/selenium/rb/spec/integration/selenium/webdriver/spec_helper.rb:40:in `block (2 levels) in <top (required)>'
    1993:  Finished in 0.04647 seconds (files took 0.64242 seconds to load)
    1994:  0 examples, 0 failures, 1 error occurred outside of examples
    1995:  ================================================================================
    1996:  ==================== Test output for //rb/spec/integration/selenium/webdriver:storage-edge-remote:
    1997:  2024-04-06 13:58:45 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
    1998:  An error occurred in a `before(:suite)` hook.
    1999:  Failure/Error: @pid = Process.spawn(*@command, options)
    2000:  Errno::EACCES:
    2001:  Permission denied - java
    2002:  # ./rb/lib/selenium/webdriver/common/child_process.rb:57:in `spawn'
    2003:  # ./rb/lib/selenium/webdriver/common/child_process.rb:57:in `start'
    2004:  # ./rb/lib/selenium/server.rb:204:in `start'
    2005:  # //?/D:/a/selenium/selenium/rb/spec/integration/selenium/webdriver/spec_helper.rb:40:in `block (2 levels) in <top (required)>'
    2006:  Finished in 0.04616 seconds (files took 0.63168 seconds to load)
    2007:  0 examples, 0 failures, 1 error occurred outside of examples
    2008:  ================================================================================
    2009:  �[32m[2,905 / 2,910]�[0m 18 / 27 tests, �[31m�[1m18 failed�[0m;�[0m Testing //rb/spec/integration/selenium/webdriver:error-edge-remote; 42s local, disk-cache ... (4 actions, 2 running)
    2010:  �[32m[2,905 / 2,910]�[0m 18 / 27 tests, �[31m�[1m18 failed�[0m;�[0m Testing //rb/spec/integration/selenium/webdriver:error-edge-remote; 47s local, disk-cache ... (4 actions, 2 running)
    2011:  �[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)
    2012:  �[32m[2,905 / 2,910]�[0m 18 / 27 tests, �[31m�[1m18 failed�[0m;�[0m Testing //rb/spec/integration/selenium/webdriver:error-edge-remote; 49s local, disk-cache ... (4 actions, 2 running)
    2013:  �[32m[2,905 / 2,910]�[0m 18 / 27 tests, �[31m�[1m18 failed�[0m;�[0m Testing //rb/spec/integration/selenium/webdriver:error-edge-remote; 52s local, disk-cache ... (4 actions, 2 running)
    2014:  �[32m[2,905 / 2,910]�[0m 18 / 27 tests, �[31m�[1m18 failed�[0m;�[0m Testing //rb/spec/integration/selenium/webdriver:error-edge-remote; 53s local, disk-cache ... (4 actions, 2 running)
    2015:  �[32m[2,905 / 2,910]�[0m 18 / 27 tests, �[31m�[1m18 failed�[0m;�[0m Testing //rb/spec/integration/selenium/webdriver:error-edge-remote; 54s local, disk-cache ... (4 actions, 3 running)
    2016:  �[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)
    2017:  �[31m�[1mFAILED: �[0m//rb/spec/integration/selenium/webdriver:error-edge-remote (Summary)
    2018:  ==================== Test output for //rb/spec/integration/selenium/webdriver:error-edge-remote:
    2019:  D:/_bazel/execroot/selenium/bazel-out/x64_windows-fastbuild/testlogs/rb/spec/integration/selenium/webdriver/error-edge-remote/test.log
    2020:  D:/_bazel/execroot/selenium/bazel-out/x64_windows-fastbuild/testlogs/rb/spec/integration/selenium/webdriver/error-edge-remote/test_attempts/attempt_1.log
    2021:  2024-04-06 13: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
    2022:  D:/_bazel/execroot/selenium/bazel-out/x64_windows-fastbuild/testlogs/rb/spec/integration/selenium/webdriver/error-edge-remote/test_attempts/attempt_2.log
    2023:  �[32mINFO: �[0mFrom Testing //rb/spec/integration/selenium/webdriver:error-edge-remote:
    2024:  An error occurred in a `before(:suite)` hook.
    2025:  Failure/Error: @pid = Process.spawn(*@command, options)
    2026:  Errno::EACCES:
    2027:  Permission denied - java
    2028:  # ./rb/lib/selenium/webdriver/common/child_process.rb:57:in `spawn'
    2029:  # ./rb/lib/selenium/webdriver/common/child_process.rb:57:in `start'
    2030:  # ./rb/lib/selenium/server.rb:204:in `start'
    2031:  # //?/D:/a/selenium/selenium/rb/spec/integration/selenium/webdriver/spec_helper.rb:40:in `block (2 levels) in <top (required)>'
    2032:  Finished in 0.0457 seconds (files took 0.59629 seconds to load)
    2033:  0 examples, 0 failures, 1 error occurred outside of examples
    2034:  ================================================================================
    2035:  ==================== Test output for //rb/spec/integration/selenium/webdriver:error-edge-remote:
    2036:  2024-04-06 13: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
    2037:  An error occurred in a `before(:suite)` hook.
    2038:  Failure/Error: @pid = Process.spawn(*@command, options)
    2039:  Errno::EACCES:
    2040:  Permission denied - java
    2041:  # ./rb/lib/selenium/webdriver/common/child_process.rb:57:in `spawn'
    2042:  # ./rb/lib/selenium/webdriver/common/child_process.rb:57:in `start'
    2043:  # ./rb/lib/selenium/server.rb:204:in `start'
    2044:  # //?/D:/a/selenium/selenium/rb/spec/integration/selenium/webdriver/spec_helper.rb:40:in `block (2 levels) in <top (required)>'
    2045:  Finished in 0.04678 seconds (files took 0.6714 seconds to load)
    2046:  0 examples, 0 failures, 1 error occurred outside of examples
    2047:  ================================================================================
    2048:  ==================== Test output for //rb/spec/integration/selenium/webdriver:error-edge-remote:
    2049:  2024-04-06 13:58:59 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
    2050:  An error occurred in a `before(:suite)` hook.
    2051:  Failure/Error: @pid = Process.spawn(*@command, options)
    2052:  Errno::EACCES:
    2053:  Permission denied - java
    2054:  # ./rb/lib/selenium/webdriver/common/child_process.rb:57:in `spawn'
    2055:  # ./rb/lib/selenium/webdriver/common/child_process.rb:57:in `start'
    2056:  # ./rb/lib/selenium/server.rb:204:in `start'
    2057:  # //?/D:/a/selenium/selenium/rb/spec/integration/selenium/webdriver/spec_helper.rb:40:in `block (2 levels) in <top (required)>'
    2058:  Finished in 0.04651 seconds (files took 0.62976 seconds to load)
    2059:  0 examples, 0 failures, 1 error occurred outside of examples
    2060:  ================================================================================
    2061:  �[32m[2,906 / 2,910]�[0m 19 / 27 tests, �[31m�[1m19 failed�[0m;�[0m Testing //rb/spec/integration/selenium/webdriver/edge:profile-edge-remote; 42s local, disk-cache ... (4 actions, 2 running)
    2062:  �[32m[2,906 / 2,910]�[0m 19 / 27 tests, �[31m�[1m19 failed�[0m;�[0m Testing //rb/spec/integration/selenium/webdriver/edge:profile-edge-remote; 48s local, disk-cache ... (4 actions, 2 running)
    2063:  �[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)
    2064:  �[32m[2,906 / 2,910]�[0m 19 / 27 tests, �[31m�[1m19 failed�[0m;�[0m Testing //rb/spec/integration/selenium/webdriver/edge:profile-edge-remote; 49s local, disk-cache ... (4 actions, 2 running)
    2065:  �[32m[2,906 / 2,910]�[0m 19 / 27 tests, �[31m�[1m19 failed�[0m;�[0m Testing //rb/spec/integration/selenium/webdriver/edge:profile-edge-remote; 52s local, disk-cache ... (4 actions, 2 running)
    2066:  �[32m[2,906 / 2,910]�[0m 19 / 27 tests, �[31m�[1m19 failed�[0m;�[0m Testing //rb/spec/integration/selenium/webdriver/edge:profile-edge-remote; 53s local, disk-cache ... (4 actions, 2 running)
    2067:  �[32m[2,906 / 2,910]�[0m 19 / 27 tests, �[31m�[1m19 failed�[0m;�[0m Testing //rb/spec/integration/selenium/webdriver/edge:profile-edge-remote; 55s local, disk-cache ... (4 actions, 3 running)
    2068:  �[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)
    2069:  �[31m�[1mFAILED: �[0m//rb/spec/integration/selenium/webdriver/edge:profile-edge-remote (Summary)
    2070:  D:/_bazel/execroot/selenium/bazel-out/x64_windows-fastbuild/testlogs/rb/spec/integration/selenium/webdriver/edge/profile-edge-remote/test.log
    2071:  D:/_bazel/execroot/selenium/bazel-out/x64_windows-fastbuild/testlogs/rb/spec/integration/selenium/webdriver/edge/profile-edge-remote/test_attempts/attempt_1.log
    2072:  D:/_bazel/execroot/selenium/bazel-out/x64_windows-fastbuild/testlogs/rb/spec/integration/selenium/webdriver/edge/profile-edge-remote/test_attempts/attempt_2.log
    2073:  �[32mINFO: �[0mFrom Testing //rb/spec/integration/selenium/webdriver/edge:profile-edge-remote:
    2074:  ==================== Test output for //rb/spec/integration/selenium/webdriver/edge:profile-edge-remote:
    2075:  2024-04-06 13:58:25 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
    2076:  An error occurred in a `before(:suite)` hook.
    2077:  Failure/Error: @pid = Process.spawn(*@command, options)
    2078:  Errno::EACCES:
    2079:  Permission denied - java
    2080:  # ./rb/lib/selenium/webdriver/common/child_process.rb:57:in `spawn'
    2081:  # ./rb/lib/selenium/webdriver/common/child_process.rb:57:in `start'
    2082:  # ./rb/lib/selenium/server.rb:204:in `start'
    2083:  # //?/D:/a/selenium/selenium/rb/spec/integration/selenium/webdriver/spec_helper.rb:40:in `block (2 levels) in <top (required)>'
    2084:  Finished in 0.05239 seconds (files took 0.72031 seconds to load)
    2085:  0 examples, 0 failures, 1 error occurred outside of examples
    2086:  ================================================================================
    2087:  ==================== Test output for //rb/spec/integration/selenium/webdriver/edge:profile-edge-remote:
    2088:  2024-04-06 13:58:52 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
    2089:  An error occurred in a `before(:suite)` hook.
    2090:  Failure/Error: @pid = Process.spawn(*@command, options)
    2091:  Errno::EACCES:
    2092:  Permission denied - java
    2093:  # ./rb/lib/selenium/webdriver/common/child_process.rb:57:in `spawn'
    2094:  # ./rb/lib/selenium/webdriver/common/child_process.rb:57:in `start'
    2095:  # ./rb/lib/selenium/server.rb:204:in `start'
    2096:  # //?/D:/a/selenium/selenium/rb/spec/integration/selenium/webdriver/spec_helper.rb:40:in `block (2 levels) in <top (required)>'
    2097:  Finished in 0.04842 seconds (files took 0.68035 seconds to load)
    2098:  0 examples, 0 failures, 1 error occurred outside of examples
    2099:  ================================================================================
    2100:  ==================== Test output for //rb/spec/integration/selenium/webdriver/edge:profile-edge-remote:
    2101:  2024-04-06 13:59:13 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
    2102:  An error occurred in a `before(:suite)` hook.
    2103:  Failure/Error: @pid = Process.spawn(*@command, options)
    2104:  Errno::EACCES:
    2105:  Permission denied - java
    2106:  # ./rb/lib/selenium/webdriver/common/child_process.rb:57:in `spawn'
    2107:  # ./rb/lib/selenium/webdriver/common/child_process.rb:57:in `start'
    2108:  # ./rb/lib/selenium/server.rb:204:in `start'
    2109:  # //?/D:/a/selenium/selenium/rb/spec/integration/selenium/webdriver/spec_helper.rb:40:in `block (2 levels) in <top (required)>'
    2110:  Finished in 0.05788 seconds (files took 0.76957 seconds to load)
    2111:  0 examples, 0 failures, 1 error occurred outside of examples
    2112:  ================================================================================
    2113:  �[32m[2,907 / 2,910]�[0m 20 / 27 tests, �[31m�[1m20 failed�[0m;�[0m Testing //rb/spec/integration/selenium/webdriver:driver-edge-remote; 15s local, disk-cache ... (3 actions, 2 running)
    2114:  �[32m[2,907 / 2,910]�[0m 20 / 27 tests, �[31m�[1m20 failed�[0m;�[0m Testing //rb/spec/integration/selenium/webdriver:driver-edge-remote; 20s local, disk-cache ... (3 actions, 2 running)
    2115:  �[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)
    2116:  �[32m[2,907 / 2,910]�[0m 20 / 27 tests, �[31m�[1m20 failed�[0m;�[0m Testing //rb/spec/integration/selenium/webdriver:driver-edge-remote; 22s local, disk-cache ... (3 actions, 2 running)
    2117:  �[32m[2,907 / 2,910]�[0m 20 / 27 tests, �[31m�[1m20 failed�[0m;�[0m Testing //rb/spec/integration/selenium/webdriver:driver-edge-remote; 25s local, disk-cache ... (3 actions, 2 running)
    2118:  �[32m[2,907 / 2,910]�[0m 20 / 27 tests, �[31m�[1m20 failed�[0m;�[0m Testing //rb/spec/integration/selenium/webdriver:driver-edge-remote; 27s local, disk-cache ... (3 actions running)
    2119:  �[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)
    2120:  �[32m[2,907 / 2,910]�[0m 20 / 27 tests, �[31m�[1m20 failed�[0m;�[0m Testing //rb/spec/integration/selenium/webdriver:driver-edge-remote; 28s local, disk-cache ... (3 actions running)
    2121:  �[32m[2,907 / 2,910]�[0m 20 / 27 tests, �[31m�[1m20 failed�[0m;�[0m Testing //rb/spec/integration/selenium/webdriver:driver-edge-remote; 34s local, disk-cache ... (3 actions running)
    2122:  �[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_1.log)
    2123:  �[32m[2,907 / 2,910]�[0m 20 / 27 tests, �[31m�[1m20 failed�[0m;�[0m Testing //rb/spec/integration/selenium/webdriver:driver-edge-remote; 35s local, disk-cache ... (3 actions running)
    2124:  �[32m[2,907 / 2,910]�[0m 20 / 27 tests, �[31m�[1m20 failed�[0m;�[0m Testing //rb/spec/integration/selenium/webdriver:driver-edge-remote; 41s local, disk-cache ... (3 actions running)
    2125:  �[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)
    2126:  �[32m[2,907 / 2,910]�[0m 20 / 27 tests, �[31m�[1m20 failed�[0m;�[0m Testing //rb/spec/integration/selenium/webdriver:driver-edge-remote; 42s local, disk-cache ... (3 actions running)
    2127:  �[32m[2,907 / 2,910]�[0m 20 / 27 tests, �[31m�[1m20 failed�[0m;�[0m Testing //rb/spec/integration/selenium/webdriver:driver-edge-remote; 47s local, disk-cache ... (3 actions running)
    2128:  �[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)
    2129:  �[31m�[1mFAILED: �[0m//rb/spec/integration/selenium/webdriver:driver-edge-remote (Summary)
    2130:  D:/_bazel/execroot/selenium/bazel-out/x64_windows-fastbuild/testlogs/rb/spec/integration/selenium/webdriver/driver-edge-remote/test.log
    2131:  D:/_bazel/execroot/selenium/bazel-out/x64_windows-fastbuild/testlogs/rb/spec/integration/selenium/webdriver/driver-edge-remote/test_attempts/attempt_1.log
    2132:  D:/_bazel/execroot/selenium/bazel-out/x64_windows-fastbuild/testlogs/rb/spec/integration/selenium/webdriver/driver-edge-remote/test_attempts/attempt_2.log
    2133:  �[32mINFO: �[0mFrom Testing //rb/spec/integration/selenium/webdriver:driver-edge-remote:
    2134:  ==================== Test output for //rb/spec/integration/selenium/webdriver:driver-edge-remote:
    2135:  2024-04-06 13:59:06 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
    2136:  An error occurred in a `before(:suite)` hook.
    2137:  Failure/Error: @pid = Process.spawn(*@command, options)
    2138:  Errno::EACCES:
    2139:  Permission denied - java
    2140:  # ./rb/lib/selenium/webdriver/common/child_process.rb:57:in `spawn'
    2141:  # ./rb/lib/selenium/webdriver/common/child_process.rb:57:in `start'
    2142:  # ./rb/lib/selenium/server.rb:204:in `start'
    2143:  # //?/D:/a/selenium/selenium/rb/spec/integration/selenium/webdriver/spec_helper.rb:40:in `block (2 levels) in <top (required)>'
    2144:  Finished in 0.05554 seconds (files took 0.6554 seconds to load)
    2145:  0 examples, 0 failures, 1 error occurred outside of examples
    2146:  ================================================================================
    2147:  ==================== Test output for //rb/spec/integration/selenium/webdriver:driver-edge-remote:
    2148:  2024-04-06 13:59:26 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
    2149:  An error occurred in a `before(:suite)` hook.
    2150:  Failure/Error: @pid = Process.spawn(*@command, options)
    2151:  Errno::EACCES:
    2152:  Permission denied - java
    2153:  # ./rb/lib/selenium/webdriver/common/child_process.rb:57:in `spawn'
    2154:  # ./rb/lib/selenium/webdriver/common/child_process.rb:57:in `start'
    2155:  # ./rb/lib/selenium/server.rb:204:in `start'
    2156:  # //?/D:/a/selenium/selenium/rb/spec/integration/selenium/webdriver/spec_helper.rb:40:in `block (2 levels) in <top (required)>'
    2157:  Finished in 0.04725 seconds (files took 0.5929 seconds to load)
    2158:  0 examples, 0 failures, 1 error occurred outside of examples
    2159:  ================================================================================
    2160:  ==================== Test output for //rb/spec/integration/selenium/webdriver:driver-edge-remote:
    2161:  2024-04-06 13:59:47 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
    2162:  An error occurred in a `before(:suite)` hook.
    2163:  Failure/Error: @pid = Process.spawn(*@command, options)
    2164:  Errno::EACCES:
    2165:  Permission denied - java
    2166:  # ./rb/lib/selenium/webdriver/common/child_process.rb:57:in `spawn'
    2167:  # ./rb/lib/selenium/webdriver/common/child_process.rb:57:in `start'
    2168:  # ./rb/lib/selenium/server.rb:204:in `start'
    2169:  # //?/D:/a/selenium/selenium/rb/spec/integration/selenium/webdriver/spec_helper.rb:40:in `block (2 levels) in <top (required)>'
    2170:  Finished in 0.04359 seconds (files took 0.58102 seconds to load)
    2171:  0 examples, 0 failures, 1 error occurred outside of examples
    2172:  ================================================================================
    2173:  �[32m[2,908 / 2,910]�[0m 21 / 27 tests, �[31m�[1m21 failed�[0m;�[0m Testing //rb/spec/integration/selenium/webdriver:shadow_root-edge-remote; 35s local, disk-cache ... (2 actions running)
    2174:  �[32m[2,908 / 2,910]�[0m 21 / 27 tests, �[31m�[1m21 failed�[0m;�[0m Testing //rb/spec/integration/selenium/webdriver:shadow_root-edge-remote; 40s local, disk-cache ... (2 actions running)
    2175:  �[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)
    2176:  �[32m[2,908 / 2,910]�[0m 21 / 27 tests, �[31m�[1m21 failed�[0m;�[0m Testing //rb/spec/integration/selenium/webdriver:shadow_root-edge-remote; 41s local, disk-cache ... (2 actions running)
    2177:  �[32m[2,908 / 2,910]�[0m 21 / 27 tests, �[31m�[1m21 failed�[0m;�[0m Testing //rb/spec/integration/selenium/webdriver:shadow_root-edge-remote; 45s local, disk-cache ... (2 actions running)
    2178:  �[32m[2,908 / 2,910]�[0m 21 / 27 tests, �[31m�[1m21 failed�[0m;�[0m Testing //rb/spec/integration/selenium/webdriver:shadow_root-edge-remote; 47s local, disk-cache ... (2 actions running)
    2179:  �[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)
    2180:  �[31m�[1mFAILED: �[0m//rb/spec/integration/selenium/webdriver:shadow_root-edge-remote (Summary)
    2181:  D:/_bazel/execroot/selenium/bazel-out/x64_windows-fastbuild/testlogs/rb/spec/integration/selenium/webdriver/shadow_root-edge-remote/test.log
    2182:  D:/_bazel/execroot/selenium/bazel-out/x64_windows-fastbuild/testlogs/rb/spec/integration/selenium/webdriver/shadow_root-edge-remote/test_attempts/attempt_1.log
    2183:  D:/_bazel/execroot/selenium/bazel-out/x64_windows-fastbuild/testlogs/rb/spec/integration/selenium/webdriver/shadow_root-edge-remote/test_attempts/attempt_2.log
    2184:  �[32mINFO: �[0mFrom Testing //rb/spec/integration/selenium/webdriver:shadow_root-edge-remote:
    2185:  ==================== Test output for //rb/spec/integration/selenium/webdriver:shadow_root-edge-remote:
    2186:  2024-04-06 13:59:20 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
    2187:  An error occurred in a `before(:suite)` hook.
    2188:  Failure/Error: @pid = Process.spawn(*@command, options)
    2189:  Errno::EACCES:
    2190:  Permission denied - java
    2191:  # ./rb/lib/selenium/webdriver/common/child_process.rb:57:in `spawn'
    2192:  # ./rb/lib/selenium/webdriver/common/child_process.rb:57:in `start'
    2193:  # ./rb/lib/selenium/server.rb:204:in `start'
    2194:  # //?/D:/a/selenium/selenium/rb/spec/integration/selenium/webdriver/spec_helper.rb:40:in `block (2 levels) in <top (required)>'
    2195:  Finished in 0.04453 seconds (files took 0.59049 seconds to load)
    2196:  0 examples, 0 failures, 1 error occurred outside of examples
    2197:  ================================================================================
    2198:  ==================== Test output for //rb/spec/integration/selenium/webdriver:shadow_root-edge-remote:
    2199:  2024-04-06 13:59:40 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
    2200:  An error occurred in a `before(:suite)` hook.
    2201:  Failure/Error: @pid = Process.spawn(*@command, options)
    2202:  Errno::EACCES:
    2203:  Permission denied - java
    2204:  # ./rb/lib/selenium/webdriver/common/child_process.rb:57:in `spawn'
    2205:  # ./rb/lib/selenium/webdriver/common/child_process.rb:57:in `start'
    2206:  # ./rb/lib/selenium/server.rb:204:in `start'
    2207:  # //?/D:/a/selenium/selenium/rb/spec/integration/selenium/webdriver/spec_helper.rb:40:in `block (2 levels) in <top (required)>'
    2208:  Finished in 0.04385 seconds (files took 0.63453 seconds to load)
    2209:  0 examples, 0 failures, 1 error occurred outside of examples
    2210:  ================================================================================
    2211:  ==================== Test output for //rb/spec/integration/selenium/webdriver:shadow_root-edge-remote:
    2212:  2024-04-06 14:00:00 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
    2213:  An error occurred in a `before(:suite)` hook.
    2214:  Failure/Error: @pid = Process.spawn(*@command, options)
    2215:  Errno::EACCES:
    2216:  Permission denied - java
    2217:  # ./rb/lib/selenium/webdriver/common/child_process.rb:57:in `spawn'
    2218:  # ./rb/lib/selenium/webdriver/common/child_process.rb:57:in `start'
    2219:  # ./rb/lib/selenium/server.rb:204:in `start'
    2220:  # //?/D:/a/selenium/selenium/rb/spec/integration/selenium/webdriver/spec_helper.rb:40:in `block (2 levels) in <top (required)>'
    2221:  Finished in 0.04615 seconds (files took 0.62947 seconds to load)
    2222:  0 examples, 0 failures, 1 error occurred outside of examples
    2223:  ================================================================================
    2224:  �[32m[2,909 / 2,910]�[0m 22 / 27 tests, �[31m�[1m22 failed�[0m;�[0m Testing //rb/spec/integration/selenium/webdriver:manager-edge-remote; 35s local, disk-cache
    2225:  �[32m[2,909 / 2,910]�[0m 22 / 27 tests, �[31m�[1m22 failed�[0m;�[0m Testing //rb/spec/integration/selenium/webdriver:manager-edge-remote; 40s local, disk-cache
    2226:  �[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)
    2227:  �[31m�[1mFAILED: �[0m//rb/spec/integration/selenium/webdriver:manager-edge-remote (Summary)
    2228:  D:/_bazel/execroot/selenium/bazel-out/x64_windows-fastbuild/testlogs/rb/spec/integration/selenium/webdriver/manager-edge-remote/test.log
    2229:  D:/_bazel/execroot/selenium/bazel-out/x64_windows-fastbuild/testlogs/rb/spec/integration/selenium/webdriver/manager-edge-remote/test_attempts/attempt_1.log
    2230:  D:/_bazel/execroot/selenium/bazel-out/x64_windows-fastbuild/testlogs/rb/spec/integration/selenium/webdriver/manager-edge-remote/test_attempts/attempt_2.log
    2231:  �[32mINFO: �[0mFrom Testing //rb/spec/integration/selenium/webdriver:manager-edge-remote:
    2232:  ==================== Test output for //rb/spec/integration/selenium/webdriver:manager-edge-remote:
    2233:  2024-04-06 13:59:33 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
    2234:  An error occurred in a `before(:suite)` hook.
    2235:  Failure/Error: @pid = Process.spawn(*@command, options)
    2236:  Errno::EACCES:
    2237:  Permission denied - java
    2238:  # ./rb/lib/selenium/webdriver/common/child_process.rb:57:in `spawn'
    2239:  # ./rb/lib/selenium/webdriver/common/child_process.rb:57:in `start'
    2240:  # ./rb/lib/selenium/server.rb:204:in `start'
    2241:  # //?/D:/a/selenium/selenium/rb/spec/integration/selenium/webdriver/spec_helper.rb:40:in `block (2 levels) in <top (required)>'
    2242:  Finished in 0.04975 seconds (files took 0.64139 seconds to load)
    2243:  0 examples, 0 failures, 1 error occurred outside of examples
    2244:  ================================================================================
    2245:  ==================== Test output for //rb/spec/integration/selenium/webdriver:manager-edge-remote:
    2246:  2024-04-06 13:59:53 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
    2247:  An error occurred in a `before(:suite)` hook.
    2248:  Failure/Error: @pid = Process.spawn(*@command, options)
    2249:  Errno::EACCES:
    2250:  Permission denied - java
    2251:  # ./rb/lib/selenium/webdriver/common/child_process.rb:57:in `spawn'
    2252:  # ./rb/lib/selenium/webdriver/common/child_process.rb:57:in `start'
    2253:  # ./rb/lib/selenium/server.rb:204:in `start'
    2254:  # //?/D:/a/selenium/selenium/rb/spec/integration/selenium/webdriver/spec_helper.rb:40:in `block (2 levels) in <top (required)>'
    2255:  Finished in 0.04434 seconds (files took 0.58269 seconds to load)
    2256:  0 examples, 0 failures, 1 error occurred outside of examples
    2257:  ================================================================================
    2258:  ==================== Test output for //rb/spec/integration/selenium/webdriver:manager-edge-remote:
    2259:  2024-04-06 14:00:07 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
    2260:  An error occurred in a `before(:suite)` hook.
    2261:  Failure/Error: @pid = Process.spawn(*@command, options)
    2262:  Errno::EACCES:
    2263:  Permission denied - java
    2264:  # ./rb/lib/selenium/webdriver/common/child_process.rb:57:in `spawn'
    2265:  # ./rb/lib/selenium/webdriver/common/child_process.rb:57:in `start'
    2266:  # ./rb/lib/selenium/server.rb:204:in `start'
    2267:  # //?/D:/a/selenium/selenium/rb/spec/integration/selenium/webdriver/spec_helper.rb:40:in `block (2 levels) in <top (required)>'
    2268:  Finished in 0.04601 seconds (files took 0.63569 seconds to load)
    2269:  0 examples, 0 failures, 1 error occurred outside of examples
    2270:  ================================================================================
    2271:  �[32m[2,910 / 2,911]�[0m 23 / 27 tests, �[31m�[1m23 failed�[0m;�[0m Testing //rb/spec/integration/selenium/webdriver:devtools-edge-remote; 1s disk-cache
    2272:  �[32m[2,910 / 2,911]�[0m 23 / 27 tests, �[31m�[1m23 failed�[0m;�[0m [Sched] Testing //rb/spec/integration/selenium/webdriver:devtools-edge-remote
    2273:  �[32m[2,910 / 2,911]�[0m 23 / 27 tests, �[31m�[1m23 failed�[0m;�[0m Testing //rb/spec/integration/selenium/webdriver:devtools-edge-remote; 1s local, disk-cache
    2274:  �[32m[2,910 / 2,911]�[0m 23 / 27 tests, �[31m�[1m23 failed�[0m;�[0m Testing //rb/spec/integration/selenium/webdriver:devtools-edge-remote; 6s local, disk-cache
    2275:  �[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)
    2276:  �[32m[2,910 / 2,911]�[0m 23 / 27 tests, �[31m�[1m23 failed�[0m;�[0m Testing //rb/spec/integration/selenium/webdriver:devtools-edge-remote; 7s local, disk-cache
    2277:  �[32m[2,910 / 2,911]�[0m 23 / 27 tests, �[31m�[1m23 failed�[0m;�[0m Testing //rb/spec/integration/selenium/webdriver:devtools-edge-remote; 13s local, disk-cache
    2278:  �[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)
    2279:  �[32m[2,910 / 2,911]�[0m 23 / 27 tests, �[31m�[1m23 failed�[0m;�[0m Testing //rb/spec/integration/selenium/webdriver:devtools-edge-remote; 15s local, disk-cache
    2280:  �[32m[2,910 / 2,911]�[0m 23 / 27 tests, �[31m�[1m23 failed�[0m;�[0m Testing //rb/spec/integration/selenium/webdriver:devtools-edge-remote; 21s local, disk-cache
    2281:  �[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)
    2282:  �[31m�[1mFAILED: �[0m//rb/spec/integration/selenium/webdriver:devtools-edge-remote (Summary)
    2283:  D:/_bazel/execroot/selenium/bazel-out/x64_windows-fastbuild/testlogs/rb/spec/integration/selenium/webdriver/devtools-edge-remote/test.log
    2284:  D:/_bazel/execroot/selenium/bazel-out/x64_windows-fastbuild/testlogs/rb/spec/integration/selenium/webdriver/devtools-edge-remote/test_attempts/attempt_1.log
    2285:  D:/_bazel/execroot/selenium/bazel-out/x64_windows-fastbuild/testlogs/rb/spec/integration/selenium/webdriver/devtools-edge-remote/test_attempts/attempt_2.log
    2286:  �[32mINFO: �[0mFrom Testing //rb/spec/integration/selenium/webdriver:devtools-edge-remote:
    2287:  ==================== Test output for //rb/spec/integration/selenium/webdriver:devtools-edge-remote:
    2288:  2024-04-06 14:00:25 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
    2289:  An error occurred in a `before(:suite)` hook.
    2290:  Failure/Error: @pid = Process.spawn(*@command, options)
    2291:  Errno::EACCES:
    2292:  Permission denied - java
    2293:  # ./rb/lib/selenium/webdriver/common/child_process.rb:57:in `spawn'
    2294:  # ./rb/lib/selenium/webdriver/common/child_process.rb:57:in `start'
    2295:  # ./rb/lib/selenium/server.rb:204:in `start'
    2296:  # //?/D:/a/selenium/selenium/rb/spec/integration/selenium/webdriver/spec_helper.rb:40:in `block (2 levels) in <top (required)>'
    2297:  Finished in 0.04538 seconds (files took 0.60886 seconds to load)
    2298:  0 examples, 0 failures, 1 error occurred outside of examples
    2299:  ================================================================================
    2300:  ==================== Test output for //rb/spec/integration/selenium/webdriver:devtools-edge-remote:
    2301:  2024-04-06 14:00:32 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
    2302:  An error occurred in a `before(:suite)` hook.
    2303:  Failure/Error: @pid = Process.spawn(*@command, options)
    2304:  Errno::EACCES:
    2305:  Permission denied - java
    2306:  # ./rb/lib/selenium/webdriver/common/child_process.rb:57:in `spawn'
    2307:  # ./rb/lib/selenium/webdriver/common/child_process.rb:57:in `start'
    2308:  # ./rb/lib/selenium/server.rb:204:in `start'
    2309:  # //?/D:/a/selenium/selenium/rb/spec/integration/selenium/webdriver/spec_helper.rb:40:in `block (2 levels) in <top (required)>'
    2310:  Finished in 0.04653 seconds (files took 0.59158 seconds to load)
    2311:  0 examples, 0 failures, 1 error occurred outside of examples
    2312:  ================================================================================
    2313:  ==================== Test output for //rb/spec/integration/selenium/webdriver:devtools-edge-remote:
    2314:  2024-04-06 14:00:39 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
    2315:  An error occurred in a `before(:suite)` hook.
    2316:  Failure/Error: @pid = Process.spawn(*@command, options)
    2317:  Errno::EACCES:
    2318:  Permission denied - java
    2319:  # ./rb/lib/selenium/webdriver/common/child_process.rb:57:in `spawn'
    2320:  # ./rb/lib/selenium/webdriver/common/child_process.rb:57:in `start'
    2321:  # ./rb/lib/selenium/server.rb:204:in `start'
    2322:  # //?/D:/a/selenium/selenium/rb/spec/integration/selenium/webdriver/spec_helper.rb:40:in `block (2 levels) in <top (required)>'
    2323:  Finished in 0.04707 seconds (files took 0.64031 seconds to load)
    2324:  0 examples, 0 failures, 1 error occurred outside of examples
    2325:  ================================================================================
    2326:  �[32m[2,911 / 2,912]�[0m 24 / 27 tests, �[31m�[1m24 failed�[0m;�[0m Testing //rb/spec/integration/selenium/webdriver/bidi:log_inspector-edge-remote; 1s disk-cache
    2327:  �[32m[2,911 / 2,912]�[0m 24 / 27 tests, �[31m�[1m24 failed�[0m;�[0m [Sched] Testing //rb/spec/integration/selenium/webdriver/bidi:log_inspector-edge-remote
    2328:  �[32m[2,911 / 2,912]�[0m 24 / 27 tests, �[31m�[1m24 failed�[0m;�[0m Testing //rb/spec/integration/selenium/webdriver/bidi:log_inspector-edge-remote; 1s local, disk-cache
    2329:  �[32m[2,911 / 2,912]�[0m 24 / 27 tests, �[31m�[1m24 failed�[0m;�[0m Testing //rb/spec/integration/selenium/webdriver/bidi:log_inspector-edge-remote; 6s local, disk-cache
    2330:  �[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)
    2331:  �[32m[2,911 / 2,912]�[0m 24 / 27 tests, �[31m�[1m24 failed�[0m;�[0m Testing //rb/spec/integration/selenium/webdriver/bidi:log_inspector-edge-remote; 8s local, disk-cache
    2332:  �[32m[2,911 / 2,912]�[0m 24 / 27 tests, �[31m�[1m24 failed�[0m;�[0m Testing //rb/spec/integration/selenium/webdriver/bidi:log_inspector-edge-remote; 13s local, disk-cache
    2333:  �[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)
    2334:  �[32m[2,911 / 2,912]�[0m 24 / 27 tests, �[31m�[1m24 failed�[0m;�[0m Testing //rb/spec/integration/selenium/webdriver/bidi:log_inspector-edge-remote; 15s local, disk-cache
    2335:  �[32m[2,911 / 2,912]�[0m 24 / 27 tests, �[31m�[1m24 failed�[0m;�[0m Testing //rb/spec/integration/selenium/webdriver/bidi:log_inspector-edge-remote; 21s local, disk-cache
    2336:  �[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)
    2337:  �[31m�[1mFAILED: �[0m//rb/spec/integration/selenium/webdriver/bidi:log_inspector-edge-remote (Summary)
    2338:  D:/_bazel/execroot/selenium/bazel-out/x64_windows-fastbuild/testlogs/rb/spec/integration/selenium/webdriver/bidi/log_inspector-edge-remote/test.log
    2339:  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
    2340:  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
    2341:  �[32mINFO: �[0mFrom Testing //rb/spec/integration/selenium/webdriver/bidi:log_inspector-edge-remote:
    2342:  ==================== Test output for //rb/spec/integration/selenium/webdriver/bidi:log_inspector-edge-remote:
    2343:  2024-04-06 14:00:57 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
    2344:  An error occurred in a `before(:suite)` hook.
    2345:  Failure/Error: @pid = Process.spawn(*@command, options)
    2346:  Errno::EACCES:
    2347:  Permission denied - java
    2348:  # ./rb/lib/selenium/webdriver/common/child_process.rb:57:in `spawn'
    2349:  # ./rb/lib/selenium/webdriver/common/child_process.rb:57:in `start'
    2350:  # ./rb/lib/selenium/server.rb:204:in `start'
    2351:  # //?/D:/a/selenium/selenium/rb/spec/integration/selenium/webdriver/spec_helper.rb:40:in `block (2 levels) in <top (required)>'
    2352:  Finished in 0.04511 seconds (files took 0.60943 seconds to load)
    2353:  0 examples, 0 failures, 1 error occurred outside of examples
    2354:  ================================================================================
    2355:  ==================== Test output for //rb/spec/integration/selenium/webdriver/bidi:log_inspector-edge-remote:
    2356:  2024-04-06 14:01:04 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
    2357:  An error occurred in a `before(:suite)` hook.
    2358:  Failure/Error: @pid = Process.spawn(*@command, options)
    2359:  Errno::EACCES:
    2360:  Permission denied - java
    2361:  # ./rb/lib/selenium/webdriver/common/child_process.rb:57:in `spawn'
    2362:  # ./rb/lib/selenium/webdriver/common/child_process.rb:57:in `start'
    2363:  # ./rb/lib/selenium/server.rb:204:in `start'
    2364:  # //?/D:/a/selenium/selenium/rb/spec/integration/selenium/webdriver/spec_helper.rb:40:in `block (2 levels) in <top (required)>'
    2365:  Finished in 0.04864 seconds (files took 0.64868 seconds to load)
    2366:  0 examples, 0 failures, 1 error occurred outside of examples
    2367:  ================================================================================
    2368:  ==================== Test output for //rb/spec/integration/selenium/webdriver/bidi:log_inspector-edge-remote:
    2369:  2024-04-06 14:01:11 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
    2370:  An error occurred in a `before(:suite)` hook.
    2371:  Failure/Error: @pid = Process.spawn(*@command, options)
    2372:  Errno::EACCES:
    2373:  Permission denied - java
    2374:  # ./rb/lib/selenium/webdriver/common/child_process.rb:57:in `spawn'
    2375:  # ./rb/lib/selenium/webdriver/common/child_process.rb:57:in `start'
    2376:  # ./rb/lib/selenium/server.rb:204:in `start'
    2377:  # //?/D:/a/selenium/selenium/rb/spec/integration/selenium/webdriver/spec_helper.rb:40:in `block (2 levels) in <top (required)>'
    2378:  Finished in 0.04346 seconds (files took 0.60771 seconds to load)
    2379:  0 examples, 0 failures, 1 error occurred outside of examples
    2380:  ================================================================================
    2381:  �[32m[2,912 / 2,913]�[0m 25 / 27 tests, �[31m�[1m25 failed�[0m;�[0m Testing //rb/spec/integration/selenium/webdriver/bidi:browsing_context-edge-remote; 0s disk-cache
    2382:  �[32m[2,912 / 2,913]�[0m 25 / 27 tests, �[31m�[1m25 failed�[0m;�[0m [Sched] Testing //rb/spec/integration/selenium/webdriver/bidi:browsing_context-edge-remote
    2383:  �[32m[2,912 / 2,913]�[0m 25 / 27 tests, �[31m�[1m25 failed�[0m;�[0m Testing //rb/spec/integration/selenium/webdriver/bidi:browsing_context-edge-remote; 1s local, disk-cache
    2384:  �[32m[2,912 / 2,913]�[0m 25 / 27 tests, �[31m�[1m25 failed�[0m;�[0m Testing //rb/spec/integration/selenium/webdriver/bidi:browsing_context-edge-remote; 6s local, disk-cache
    2385:  �[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)
    2386:  �[32m[2,912 / 2,913]�[0m 25 / 27 tests, �[31m�[1m25 failed�[0m;�[0m Testing //rb/spec/integration/selenium/webdriver/bidi:browsing_context-edge-remote; 7s local, disk-cache
    2387:  �[32m[2,912 / 2,913]�[0m 25 / 27 tests, �[31m�[1m25 failed�[0m;�[0m Testing //rb/spec/integration/selenium/webdriver/bidi:browsing_context-edge-remote; 13s local, disk-cache
    2388:  �[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)
    2389:  �[32m[2,912 / 2,913]�[0m 25 / 27 tests, �[31m�[1m25 failed�[0m;�[0m Testing //rb/spec/integration/selenium/webdriver/bidi:browsing_context-edge-remote; 15s local, disk-cache
    2390:  �[32m[2,912 / 2,913]�[0m 25 / 27 tests, �[31m�[1m25 failed�[0m;�[0m Testing //rb/spec/integration/selenium/webdriver/bidi:browsing_context-edge-remote; 21s local, disk-cache
    2391:  �[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)
    2392:  �[31m�[1mFAILED: �[0m//rb/spec/integration/selenium/webdriver/bidi:browsing_context-edge-remote (Summary)
    2393:  D:/_bazel/execroot/selenium/bazel-out/x64_windows-fastbuild/testlogs/rb/spec/integration/selenium/webdriver/bidi/browsing_context-edge-remote/test.log
    2394:  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
    2395:  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
    2396:  �[32mINFO: �[0mFrom Testing //rb/spec/integration/selenium/webdriver/bidi:browsing_context-edge-remote:
    2397:  ==================== Test output for //rb/spec/integration/selenium/webdriver/bidi:browsing_context-edge-remote:
    2398:  2024-04-06 14:01:29 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
    2399:  An error occurred in a `before(:suite)` hook.
    2400:  Failure/Error: @pid = Process.spawn(*@command, options)
    2401:  Errno::EACCES:
    2402:  Permission denied - java
    2403:  # ./rb/lib/selenium/webdriver/common/child_process.rb:57:in `spawn'
    2404:  # ./rb/lib/selenium/webdriver/common/child_process.rb:57:in `start'
    2405:  # ./rb/lib/selenium/server.rb:204:in `start'
    2406:  # //?/D:/a/selenium/selenium/rb/spec/integration/selenium/webdriver/spec_helper.rb:40:in `block (2 levels) in <top (required)>'
    2407:  Finished in 0.04587 seconds (files took 0.59958 seconds to load)
    2408:  0 examples, 0 failures, 1 error occurred outside of examples
    2409:  ================================================================================
    2410:  ==================== Test output for //rb/spec/integration/selenium/webdriver/bidi:browsing_context-edge-remote:
    2411:  2024-04-06 14:01:36 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
    2412:  An error occurred in a `before(:suite)` hook.
    2413:  Failure/Error: @pid = Process.spawn(*@command, options)
    2414:  Errno::EACCES:
    2415:  Permission denied - java
    2416:  # ./rb/lib/selenium/webdriver/common/child_process.rb:57:in `spawn'
    2417:  # ./rb/lib/selenium/webdriver/common/child_process.rb:57:in `start'
    2418:  # ./rb/lib/selenium/server.rb:204:in `start'
    2419:  # //?/D:/a/selenium/selenium/rb/spec/integration/selenium/webdriver/spec_helper.rb:40:in `block (2 levels) in <top (required)>'
    2420:  Finished in 0.04863 seconds (files took 0.64309 seconds to load)
    2421:  0 examples, 0 failures, 1 error occurred outside of examples
    2422:  ================================================================================
    2423:  ==================== Test output for //rb/spec/integration/selenium/webdriver/bidi:browsing_context-edge-remote:
    2424:  2024-04-06 14:01:43 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
    2425:  An error occurred in a `before(:suite)` hook.
    2426:  Failure/Error: @pid = Process.spawn(*@command, options)
    2427:  Errno::EACCES:
    2428:  Permission denied - java
    2429:  # ./rb/lib/selenium/webdriver/common/child_process.rb:57:in `spawn'
    2430:  # ./rb/lib/selenium/webdriver/common/child_process.rb:57:in `start'
    2431:  # ./rb/lib/selenium/server.rb:204:in `start'
    2432:  # //?/D:/a/selenium/selenium/rb/spec/integration/selenium/webdriver/spec_helper.rb:40:in `block (2 levels) in <top (required)>'
    2433:  Finished in 0.04472 seconds (files took 0.61089 seconds to load)
    2434:  0 examples, 0 failures, 1 error occurred outside of examples
    2435:  ================================================================================
    2436:  �[32m[2,913 / 2,914]�[0m 26 / 27 tests, �[31m�[1m26 failed�[0m;�[0m Testing //rb/spec/integration/selenium/webdriver:bidi-edge-remote; 1s disk-cache
    2437:  �[32m[2,913 / 2,914]�[0m 26 / 27 tests, �[31m�[1m26 failed�[0m;�[0m [Sched] Testing //rb/spec/integration/selenium/webdriver:bidi-edge-remote
    2438:  �[32m[2,913 / 2,914]�[0m 26 / 27 tests, �[31m�[1m26 failed�[0m;�[0m Testing //rb/spec/integration/selenium/webdriver:bidi-edge-remote; 1s local, disk-cache
    2439:  �[32m[2,913 / 2,914]�[0m 26 / 27 tests, �[31m�[1m26 failed�[0m;�[0m Testing //rb/spec/integration/selenium/webdriver:bidi-edge-remote; 6s local, disk-cache
    2440:  �[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)
    2441:  �[32m[2,913 / 2,914]�[0m 26 / 27 tests, �[31m�[1m26 failed�[0m;�[0m Testing //rb/spec/integration/selenium/webdriver:bidi-edge-remote; 8s local, disk-cache
    2442:  �[32m[2,913 / 2,914]�[0m 26 / 27 tests, �[31m�[1m26 failed�[0m;�[0m Testing //rb/spec/integration/selenium/webdriver:bidi-edge-remote; 14s local, disk-cache
    2443:  �[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)
    2444:  �[32m[2,913 / 2,914]�[0m 26 / 27 tests, �[31m�[1m26 failed�[0m;�[0m Testing //rb/spec/integration/selenium/webdriver:bidi-edge-remote; 15s local, disk-cache
    2445:  �[32m[2,913 / 2,914]�[0m 26 / 27 tests, �[31m�[1m26 failed�[0m;�[0m Testing //rb/spec/integration/selenium/webdriver:bidi-edge-remote; 21s local, disk-cache
    2446:  �[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)
    2447:  �[31m�[1mFAILED: �[0m//rb/spec/integration/selenium/webdriver:bidi-edge-remote (Summary)
    2448:  D:/_bazel/execroot/selenium/bazel-out/x64_windows-fastbuild/testlogs/rb/spec/integration/selenium/webdriver/bidi-edge-remote/test.log
    2449:  D:/_bazel/execroot/selenium/bazel-out/x64_windows-fastbuild/testlogs/rb/spec/integration/selenium/webdriver/bidi-edge-remote/test_attempts/attempt_1.log
    2450:  D:/_bazel/execroot/selenium/bazel-out/x64_windows-fastbuild/testlogs/rb/spec/integration/selenium/webdriver/bidi-edge-remote/test_attempts/attempt_2.log
    2451:  �[32mINFO: �[0mFrom Testing //rb/spec/integration/selenium/webdriver:bidi-edge-remote:
    2452:  ==================== Test output for //rb/spec/integration/selenium/webdriver:bidi-edge-remote:
    2453:  2024-04-06 14:02:00 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
    2454:  An error occurred in a `before(:suite)` hook.
    2455:  Failure/Error: @pid = Process.spawn(*@command, options)
    2456:  Errno::EACCES:
    2457:  Permission denied - java
    2458:  # ./rb/lib/selenium/webdriver/common/child_process.rb:57:in `spawn'
    2459:  # ./rb/lib/selenium/webdriver/common/child_process.rb:57:in `start'
    2460:  # ./rb/lib/selenium/server.rb:204:in `start'
    2461:  # //?/D:/a/selenium/selenium/rb/spec/integration/selenium/webdriver/spec_helper.rb:40:in `block (2 levels) in <top (required)>'
    2462:  Finished in 0.04538 seconds (files took 0.60686 seconds to load)
    2463:  0 examples, 0 failures, 1 error occurred outside of examples
    2464:  ================================================================================
    2465:  ==================== Test output for //rb/spec/integration/selenium/webdriver:bidi-edge-remote:
    2466:  2024-04-06 14:02:08 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
    2467:  An error occurred in a `before(:suite)` hook.
    2468:  Failure/Error: @pid = Process.spawn(*@command, options)
    2469:  Errno::EACCES:
    2470:  Permission denied - java
    2471:  # ./rb/lib/selenium/webdriver/common/child_process.rb:57:in `spawn'
    2472:  # ./rb/lib/selenium/webdriver/common/child_process.rb:57:in `start'
    2473:  # ./rb/lib/selenium/server.rb:204:in `start'
    2474:  # //?/D:/a/selenium/selenium/rb/spec/integration/selenium/webdriver/spec_helper.rb:40:in `block (2 levels) in <top (required)>'
    2475:  Finished in 0.04739 seconds (files took 0.60744 seconds to load)
    2476:  0 examples, 0 failures, 1 error occurred outside of examples
    2477:  ================================================================================
    2478:  ==================== Test output for //rb/spec/integration/selenium/webdriver:bidi-edge-remote:
    2479:  2024-04-06 14:02:15 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
    2480:  An error occurred in a `before(:suite)` hook.
    2481:  Failure/Error: @pid = Process.spawn(*@command, options)
    2482:  Errno::EACCES:
    2483:  Permission denied - java
    2484:  # ./rb/lib/selenium/webdriver/common/child_process.rb:57:in `spawn'
    2485:  # ./rb/lib/selenium/webdriver/common/child_process.rb:57:in `start'
    2486:  # ./rb/lib/selenium/server.rb:204:in `start'
    2487:  # //?/D:/a/selenium/selenium/rb/spec/integration/selenium/webdriver/spec_helper.rb:40:in `block (2 levels) in <top (required)>'
    2488:  Finished in 0.04377 seconds (files took 0.61055 seconds to load)
    2489:  0 examples, 0 failures, 1 error occurred outside of examples
    2490:  ================================================================================
    2491:  �[32mINFO: �[0mFound 27 test targets...
    2492:  �[32mINFO: �[0mElapsed time: 832.979s, Critical Path: 191.35s
    2493:  �[32mINFO: �[0m2684 processes: 1473 disk cache hit, 1059 internal, 149 local, 3 worker.
    2494:  �[32mINFO: �[0mBuild completed, 27 tests FAILED, 2684 total actions
    2495:  //rb/spec/integration/selenium/webdriver:action_builder-edge-remote      �[0m�[31m�[1mFAILED�[0m in 3 out of 3 in 7.6s
    2496:  Stats over 3 runs: max = 7.6s, min = 6.7s, avg = 7.0s, dev = 0.4s
    2497:  D:/_bazel/execroot/selenium/bazel-out/x64_windows-fastbuild/testlogs/rb/spec/integration/selenium/webdriver/action_builder-edge-remote/test.log
    2498:  D:/_bazel/execroot/selenium/bazel-out/x64_windows-fastbuild/testlogs/rb/spec/integration/selenium/webdriver/action_builder-edge-remote/test_attempts/attempt_1.log
    2499:  D:/_bazel/execroot/selenium/bazel-out/x64_windows-fastbuild/testlogs/rb/spec/integration/selenium/webdriver/action_builder-edge-remote/test_attempts/attempt_2.log
    2500:  //rb/spec/integration/selenium/webdriver:bidi-edge-remote                �[0m�[31m�[1mFAILED�[0m in 3 out of 3 in 6.7s
    2501:  Stats over 3 runs: max = 6.7s, min = 6.7s, avg = 6.7s, dev = 0.0s
    2502:  D:/_bazel/execroot/selenium/bazel-out/x64_windows-fastbuild/testlogs/rb/spec/integration/selenium/webdriver/bidi-edge-remote/test.log
    2503:  D:/_bazel/execroot/selenium/bazel-out/x64_windows-fastbuild/testlogs/rb/spec/integration/selenium/webdriver/bidi-edge-remote/test_attempts/attempt_1.log
    2504:  D:/_bazel/execroot/selenium/bazel-out/x64_windows-fastbuild/testlogs/rb/spec/integration/selenium/webdriver/bidi-edge-remote/test_attempts/attempt_2.log
    2505:  //rb/spec/integration/selenium/webdriver:devtools-edge-remote            �[0m�[31m�[1mFAILED�[0m in 3 out of 3 in 6.8s
    2506:  Stats over 3 runs: max = 6.8s, min = 6.6s, avg = 6.7s, dev = 0.1s
    2507:  D:/_bazel/execroot/selenium/bazel-out/x64_windows-fastbuild/testlogs/rb/spec/integration/selenium/webdriver/devtools-edge-remote/test.log
    2508:  D:/_bazel/execroot/selenium/bazel-out/x64_windows-fastbuild/testlogs/rb/spec/integration/selenium/webdriver/devtools-edge-remote/test_attempts/attempt_1.log
    2509:  D:/_bazel/execroot/selenium/bazel-out/x64_windows-fastbuild/testlogs/rb/spec/integration/selenium/webdriver/devtools-edge-remote/test_attempts/attempt_2.log
    2510:  //rb/spec/integration/selenium/webdriver:driver-edge-remote              �[0m�[31m�[1mFAILED�[0m in 3 out of 3 in 6.8s
    2511:  Stats over 3 runs: max = 6.8s, min = 6.7s, avg = 6.7s, dev = 0.0s
    2512:  D:/_bazel/execroot/selenium/bazel-out/x64_windows-fastbuild/testlogs/rb/spec/integration/selenium/webdriver/driver-edge-remote/test.log
    2513:  D:/_bazel/execroot/selenium/bazel-out/x64_windows-fastbuild/testlogs/rb/spec/integration/selenium/webdriver/driver-edge-remote/test_attempts/attempt_1.log
    2514:  D:/_bazel/execroot/selenium/bazel-out/x64_windows-fastbuild/testlogs/rb/spec/integration/selenium/webdriver/driver-edge-remote/test_attempts/attempt_2.log
    2515:  //rb/spec/integration/selenium/webdriver:element-edge-remote             �[0m�[31m�[1mFAILED�[0m in 3 out of 3 in 7.2s
    2516:  Stats over 3 runs: max = 7.2s, min = 6.8s, avg = 7.1s, dev = 0.2s
    2517:  D:/_bazel/execroot/selenium/bazel-out/x64_windows-fastbuild/testlogs/rb/spec/integration/selenium/webdriver/element-edge-remote/test.log
    2518:  D:/_bazel/execroot/selenium/bazel-out/x64_windows-fastbuild/testlogs/rb/spec/integration/selenium/webdriver/element-edge-remote/test_attempts/attempt_1.log
    2519:  D:/_bazel/execroot/selenium/bazel-out/x64_windows-fastbuild/testlogs/rb/spec/integration/selenium/webdriver/element-edge-remote/test_attempts/attempt_2.log
    2520:  //rb/spec/integration/selenium/webdriver:error-edge-remote               �[0m�[31m�[1mFAILED�[0m in 3 out of 3 in 6.9s
    2521:  Stats over 3 runs: max = 6.9s, min = 6.8s, avg = 6.8s, dev = 0.1s
    2522:  D:/_bazel/execroot/selenium/bazel-out/x64_windows-fastbuild/testlogs/rb/spec/integration/selenium/webdriver/error-edge-remote/test.log
    2523:  D:/_bazel/execroot/selenium/bazel-out/x64_windows-fastbuild/testlogs/rb/spec/integration/selenium/webdriver/error-edge-remote/test_attempts/attempt_1.log
    2524:  D:/_bazel/execroot/selenium/bazel-out/x64_windows-fastbuild/testlogs/rb/spec/integration/selenium/webdriver/error-edge-remote/test_attempts/attempt_2.log
    2525:  //rb/spec/integration/selenium/webdriver:guard-edge-remote               �[0m�[31m�[1mFAILED�[0m in 3 out of 3 in 7.4s
    2526:  Stats over 3 runs: max = 7.4s, min = 6.7s, avg = 6.9s, dev = 0.4s
    2527:  D:/_bazel/execroot/selenium/bazel-out/x64_windows-fastbuild/testlogs/rb/spec/integration/selenium/webdriver/guard-edge-remote/test.log
    2528:  D:/_bazel/execroot/selenium/bazel-out/x64_windows-fastbuild/testlogs/rb/spec/integration/selenium/webdriver/guard-edge-remote/test_attempts/attempt_1.log
    2529:  D:/_bazel/execroot/selenium/bazel-out/x64_windows-fastbuild/testlogs/rb/spec/integration/selenium/webdriver/guard-edge-remote/test_attempts/attempt_2.log
    2530:  //rb/spec/integration/selenium/webdriver:listener-edge-remote            �[0m�[31m�[1mFAILED�[0m in 3 out of 3 in 7.0s
    2531:  Stats over 3 runs: max = 7.0s, min = 6.8s, avg = 6.9s, dev = 0.1s
    2532:  D:/_bazel/execroot/selenium/bazel-out/x64_windows-fastbuild/testlogs/rb/spec/integration/selenium/webdriver/listener-edge-remote/test.log
    2533:  D:/_bazel/execroot/selenium/bazel-out/x64_windows-fastbuild/testlogs/rb/spec/integration/selenium/webdriver/listener-edge-remote/test_attempts/attempt_1.log
    2534:  D:/_bazel/execroot/selenium/bazel-out/x64_windows-fastbuild/testlogs/rb/spec/integration/selenium/webdriver/listener-edge-remote/test_attempts/attempt_2.log
    2535:  //rb/spec/integration/selenium/webdriver:manager-edge-remote             �[0m�[31m�[1mFAILED�[0m in 3 out of 3 in 6.9s
    2536:  Stats over 3 runs: max = 6.9s, min = 6.6s, avg = 6.7s, dev = 0.1s
    2537:  D:/_bazel/execroot/selenium/bazel-out/x64_windows-fastbuild/testlogs/rb/spec/integration/selenium/webdriver/manager-edge-remote/test.log
    2538:  D:/_bazel/execroot/selenium/bazel-out/x64_windows-fastbuild/testlogs/rb/spec/integration/selenium/webdriver/manager-edge-remote/test_attempts/attempt_1.log
    2539:  D:/_bazel/execroot/selenium/bazel-out/x64_windows-fastbuild/testlogs/rb/spec/integration/selenium/webdriver/manager-edge-remote/test_attempts/attempt_2.log
    2540:  //rb/spec/integration/selenium/webdriver:navigation-edge-remote          �[0m�[31m�[1mFAILED�[0m in 3 out of 3 in 6.9s
    2541:  Stats over 3 runs: max = 6.9s, min = 6.7s, avg = 6.8s, dev = 0.1s
    2542:  D:/_bazel/execroot/selenium/bazel-out/x64_windows-fastbuild/testlogs/rb/spec/integration/selenium/webdriver/navigation-edge-remote/test.log
    2543:  D:/_bazel/execroot/selenium/bazel-out/x64_windows-fastbuild/testlogs/rb/spec/integration/selenium/webdriver/navigation-edge-remote/test_attempts/attempt_1.log
    2544:  D:/_bazel/execroot/selenium/bazel-out/x64_windows-fastbuild/testlogs/rb/spec/integration/selenium/webdriver/navigation-edge-remote/test_attempts/attempt_2.log
    2545:  //rb/spec/integration/selenium/webdriver:select-edge-remote              �[0m�[31m�[1mFAILED�[0m in 3 out of 3 in 7.0s
    2546:  Stats over 3 runs: max = 7.0s, min = 6.7s, avg = 6.9s, dev = 0.1s
    2547:  D:/_bazel/execroot/selenium/bazel-out/x64_windows-fastbuild/testlogs/rb/spec/integration/selenium/webdriver/select-edge-remote/test.log
    2548:  D:/_bazel/execroot/selenium/bazel-out/x64_windows-fastbuild/testlogs/rb/spec/integration/selenium/webdriver/select-edge-remote/test_attempts/attempt_1.log
    2549:  D:/_bazel/execroot/selenium/bazel-out/x64_windows-fastbuild/testlogs/rb/spec/integration/selenium/webdriver/select-edge-remote/test_attempts/attempt_2.log
    2550:  //rb/spec/integration/selenium/webdriver:shadow_root-edge-remote         �[0m�[31m�[1mFAILED�[0m in 3 out of 3 in 6.8s
    2551:  Stats over 3 runs: max = 6.8s, min = 6.6s, avg = 6.7s, dev = 0.1s
    2552:  D:/_bazel/execroot/selenium/bazel-out/x64_windows-fastbuild/testlogs/rb/spec/integration/selenium/webdriver/shadow_root-edge-remote/test.log
    2553:  D:/_bazel/execroot/selenium/bazel-out/x64_windows-fastbuild/testlogs/rb/spec/integration/selenium/webdriver/shadow_root-edge-remote/test_attempts/attempt_1.log
    2554:  D:/_bazel/execroot/selenium/bazel-out/x64_windows-fastbuild/testlogs/rb/spec/integration/selenium/webdriver/shadow_root-edge-remote/test_attempts/attempt_2.log
    2555:  //rb/spec/integration/selenium/webdriver:storage-edge-remote             �[0m�[31m�[1mFAILED�[0m in 3 out of 3 in 6.8s
    2556:  Stats over 3 runs: max = 6.8s, min = 6.8s, avg = 6.8s, dev = 0.0s
    2557:  D:/_bazel/execroot/selenium/bazel-out/x64_windows-fastbuild/testlogs/rb/spec/integration/selenium/webdriver/storage-edge-remote/test.log
    2558:  D:/_bazel/execroot/selenium/bazel-out/x64_windows-fastbuild/testlogs/rb/spec/integration/selenium/webdriver/storage-edge-remote/test_attempts/attempt_1.log
    2559:  D:/_bazel/execroot/selenium/bazel-out/x64_windows-fastbuild/testlogs/rb/spec/integration/selenium/webdriver/storage-edge-remote/test_attempts/attempt_2.log
    2560:  //rb/spec/integration/selenium/webdriver:takes_screenshot-edge-remote    �[0m�[31m�[1mFAILED�[0m in 3 out of 3 in 7.0s
    2561:  Stats over 3 runs: max = 7.0s, min = 6.7s, avg = 6.9s, dev = 0.1s
    2562:  D:/_bazel/execroot/selenium/bazel-out/x64_windows-fastbuild/testlogs/rb/spec/integration/selenium/webdriver/takes_screenshot-edge-remote/test.log
    2563:  D:/_bazel/execroot/selenium/bazel-out/x64_windows-fastbuild/testlogs/rb/spec/integration/selenium/webdriver/takes_screenshot-edge-remote/test_attempts/attempt_1.log
    2564:  D:/_bazel/execroot/selenium/bazel-out/x64_windows-fastbuild/testlogs/rb/spec/integration/selenium/webdriver/takes_screenshot-edge-remote/test_attempts/attempt_2.log
    2565:  //rb/spec/integration/selenium/webdriver:target_locator-edge-remote      �[0m�[31m�[1mFAILED�[0m in 3 out of 3 in 7.0s
    2566:  Stats over 3 runs: max = 7.0s, min = 6.7s, avg = 6.9s, dev = 0.1s
    2567:  D:/_bazel/execroot/selenium/bazel-out/x64_windows-fastbuild/testlogs/rb/spec/integration/selenium/webdriver/target_locator-edge-remote/test.log
    2568:  D:/_bazel/execroot/selenium/bazel-out/x64_windows-fastbuild/testlogs/rb/spec/integration/selenium/webdriver/target_locator-edge-remote/test_attempts/attempt_1.log
    2569:  D:/_bazel/execroot/selenium/bazel-out/x64_windows-fastbuild/testlogs/rb/spec/integration/selenium/webdriver/target_locator-edge-remote/test_attempts/attempt_2.log
    2570:  //rb/spec/integration/selenium/webdriver:timeout-edge-remote             �[0m�[31m�[1mFAILED�[0m in 3 out of 3 in 7.3s
    2571:  Stats over 3 runs: max = 7.3s, min = 6.8s, avg = 7.1s, dev = 0.2s
    2572:  D:/_bazel/execroot/selenium/bazel-out/x64_windows-fastbuild/testlogs/rb/spec/integration/selenium/webdriver/timeout-edge-remote/test.log
    2573:  D:/_bazel/execroot/selenium/bazel-out/x64_windows-fastbuild/testlogs/rb/spec/integration/selenium/webdriver/timeout-edge-remote/test_attempts/attempt_1.log
    2574:  D:/_bazel/execroot/selenium/bazel-out/x64_windows-fastbuild/testlogs/rb/spec/integration/selenium/webdriver/timeout-edge-remote/test_attempts/attempt_2.log
    2575:  //rb/spec/integration/selenium/webdriver:virtual_authenticator-edge-remote �[0m�[31m�[1mFAILED�[0m in 3 out of 3 in 7.1s
    2576:  Stats over 3 runs: max = 7.1s, min = 6.8s, avg = 7.0s, dev = 0.1s
    2577:  D:/_bazel/execroot/selenium/bazel-out/x64_windows-fastbuild/testlogs/rb/spec/integration/selenium/webdriver/virtual_authenticator-edge-remote/test.log
    2578:  D:/_bazel/execroot/selenium/bazel-out/x64_windows-fastbuild/testlogs/rb/spec/integration/selenium/webdriver/virtual_authenticator-edge-remote/test_attempts/attempt_1.log
    2579:  D:/_bazel/execroot/selenium/bazel-out/x64_windows-fastbuild/testlogs/rb/spec/integration/selenium/webdriver/virtual_authenticator-edge-remote/test_attempts/attempt_2.log
    2580:  //rb/spec/integration/selenium/webdriver:window-edge-remote              �[0m�[31m�[1mFAILED�[0m in 3 out of 3 in 7.0s
    2581:  Stats over 3 runs: max = 7.0s, min = 6.7s, avg = 6.8s, dev = 0.1s
    2582:  D:/_bazel/execroot/selenium/bazel-out/x64_windows-fastbuild/testlogs/rb/spec/integration/selenium/webdriver/window-edge-remote/test.log
    2583:  D:/_bazel/execroot/selenium/bazel-out/x64_windows-fastbuild/testlogs/rb/spec/integration/selenium/webdriver/window-edge-remote/test_attempts/attempt_1.log
    2584:  D:/_bazel/execroot/selenium/bazel-out/x64_windows-fastbuild/testlogs/rb/spec/integration/selenium/webdriver/window-edge-remote/test_attempts/attempt_2.log
    2585:  //rb/spec/integration/selenium/webdriver:zipper-edge-remote              �[0m�[31m�[1mFAILED�[0m in 3 out of 3 in 7.6s
    2586:  Stats over 3 runs: max = 7.6s, min = 6.7s, avg = 7.1s, dev = 0.4s
    2587:  D:/_bazel/execroot/selenium/bazel-out/x64_windows-fastbuild/testlogs/rb/spec/integration/selenium/webdriver/zipper-edge-remote/test.log
    2588:  D:/_bazel/execroot/selenium/bazel-out/x64_windows-fastbuild/testlogs/rb/spec/integration/selenium/webdriver/zipper-edge-remote/test_attempts/attempt_1.log
    2589:  D:/_bazel/execroot/selenium/bazel-out/x64_windows-fastbuild/testlogs/rb/spec/integration/selenium/webdriver/zipper-edge-remote/test_attempts/attempt_2.log
    2590:  //rb/spec/integration/selenium/webdriver/bidi:browsing_context-edge-remote �[0m�[31m�[1mFAILED�[0m in 3 out of 3 in 6.7s
    2591:  Stats over 3 runs: max = 6.7s, min = 6.6s, avg = 6.7s, dev = 0.0s
    2592:  D:/_bazel/execroot/selenium/bazel-out/x64_windows-fastbuild/testlogs/rb/spec/integration/selenium/webdriver/bidi/browsing_context-edge-remote/test.log
    2593:  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
    2594:  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
    2595:  //rb/spec/integration/selenium/webdriver/bidi:log_inspector-edge-remote  �[0m�[31m�[1mFAILED�[0m in 3 out of 3 in 6.7s
    2596:  Stats over 3 runs: max = 6.7s, min = 6.6s, avg = 6.7s, dev = 0.0s
    2597:  D:/_bazel/execroot/selenium/bazel-out/x64_windows-fastbuild/testlogs/rb/spec/integration/selenium/webdriver/bidi/log_inspector-edge-remote/test.log
    2598:  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
    2599:  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
    2600:  //rb/spec/integration/selenium/webdriver/edge:driver-edge-remote         �[0m�[31m�[1mFAILED�[0m in 3 out of 3 in 7.0s
    2601:  Stats over 3 runs: max = 7.0s, min = 6.8s, avg = 6.9s, dev = 0.1s
    2602:  D:/_bazel/execroot/selenium/bazel-out/x64_windows-fastbuild/testlogs/rb/spec/integration/selenium/webdriver/edge/driver-edge-remote/test.log
    2603:  D:/_bazel/execroot/selenium/bazel-out/x64_windows-fastbuild/testlogs/rb/spec/integration/selenium/webdriver/edge/driver-edge-remote/test_attempts/attempt_1.log
    2604:  D:/_bazel/execroot/selenium/bazel-out/x64_windows-fastbuild/testlogs/rb/spec/integration/selenium/webdriver/edge/driver-edge-remote/test_attempts/attempt_2.log
    2605:  //rb/spec/integration/selenium/webdriver/edge:options-edge-remote        �[0m�[31m�[1mFAILED�[0m in 3 out of 3 in 7.0s
    2606:  Stats over 3 runs: max = 7.0s, min = 6.8s, avg = 6.9s, dev = 0.1s
    2607:  D:/_bazel/execroot/selenium/bazel-out/x64_windows-fastbuild/testlogs/rb/spec/integration/selenium/webdriver/edge/options-edge-remote/test.log
    2608:  D:/_bazel/execroot/selenium/bazel-out/x64_windows-fastbuild/testlogs/rb/spec/integration/selenium/webdriver/edge/options-edge-remote/test_attempts/attempt_1.log
    2609:  D:/_bazel/execroot/selenium/bazel-out/x64_windows-fastbuild/testlogs/rb/spec/integration/selenium/webdriver/edge/options-edge-remote/test_attempts/attempt_2.log
    2610:  //rb/spec/integration/selenium/webdriver/edge:profile-edge-remote        �[0m�[31m�[1mFAILED�[0m in 3 out of 3 in 7.3s
    2611:  Stats over 3 runs: max = 7.3s, min = 6.9s, avg = 7.1s, dev = 0.2s
    2612:  D:/_bazel/execroot/selenium/bazel-out/x64_windows-fastbuild/testlogs/rb/spec/integration/selenium/webdriver/edge/profile-edge-remote/test.log
    2613:  D:/_bazel/execroot/selenium/bazel-out/x64_windows-fastbuild/testlogs/rb/spec/integration/selenium/webdriver/edge/profile-edge-remote/test_attempts/attempt_1.log
    2614:  D:/_bazel/execroot/selenium/bazel-out/x64_windows-fastbuild/testlogs/rb/spec/integration/selenium/webdriver/edge/profile-edge-remote/test_attempts/attempt_2.log
    2615:  //rb/spec/integration/selenium/webdriver/edge:service-edge-remote        �[0m�[31m�[1mFAILED�[0m in 3 out of 3 in 6.9s
    2616:  Stats over 3 runs: max = 6.9s, min = 6.8s, avg = 6.8s, dev = 0.1s
    2617:  D:/_bazel/execroot/selenium/bazel-out/x64_windows-fastbuild/testlogs/rb/spec/integration/selenium/webdriver/edge/service-edge-remote/test.log
    2618:  D:/_bazel/execroot/selenium/bazel-out/x64_windows-fastbuild/testlogs/rb/spec/integration/selenium/webdriver/edge/service-edge-remote/test_attempts/attempt_1.log
    2619:  D:/_bazel/execroot/selenium/bazel-out/x64_windows-fastbuild/testlogs/rb/spec/integration/selenium/webdriver/edge/service-edge-remote/test_attempts/attempt_2.log
    2620:  //rb/spec/integration/selenium/webdriver/remote:driver-edge-remote       �[0m�[31m�[1mFAILED�[0m in 3 out of 3 in 7.3s
    2621:  Stats over 3 runs: max = 7.3s, min = 6.8s, avg = 7.0s, dev = 0.2s
    2622:  D:/_bazel/execroot/selenium/bazel-out/x64_windows-fastbuild/testlogs/rb/spec/integration/selenium/webdriver/remote/driver-edge-remote/test.log
    2623:  D:/_bazel/execroot/selenium/bazel-out/x64_windows-fastbuild/testlogs/rb/spec/integration/selenium/webdriver/remote/driver-edge-remote/test_attempts/attempt_1.log
    2624:  D:/_bazel/execroot/selenium/bazel-out/x64_windows-fastbuild/testlogs/rb/spec/integration/selenium/webdriver/remote/driver-edge-remote/test_attempts/attempt_2.log
    2625:  //rb/spec/integration/selenium/webdriver/remote:element-edge-remote      �[0m�[31m�[1mFAILED�[0m in 3 out of 3 in 7.2s
    2626:  Stats over 3 runs: max = 7.2s, min = 6.7s, avg = 7.1s, dev = 0.3s
    2627:  D:/_bazel/execroot/selenium/bazel-out/x64_windows-fastbuild/testlogs/rb/spec/integration/selenium/webdriver/remote/element-edge-remote/test.log
    2628:  D:/_bazel/execroot/selenium/bazel-out/x64_windows-fastbuild/testlogs/rb/spec/integration/selenium/webdriver/remote/element-edge-remote/test_attempts/attempt_1.log
    2629:  D:/_bazel/execroot/selenium/bazel-out/x64_windows-fastbuild/testlogs/rb/spec/integration/selenium/webdriver/remote/element-edge-remote/test_attempts/attempt_2.log
    2630:  Executed 27 out of 27 tests: �[0m�[31m�[1m27 fail locally�[0m.
    2631:  �[0m
    2632:  ##[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.

    Copy link
    Member

    @diemol diemol left a comment

    Choose a reason for hiding this comment

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

    Thank you, @joerg1985!

    @codecov-commenter
    Copy link

    codecov-commenter commented Apr 4, 2024

    Codecov Report

    All modified and coverable lines are covered by tests ✅

    Project coverage is 58.63%. Comparing base (12ed6cc) to head (934f792).
    Report is 1 commits behind head on trunk.

    ❗ Current head 934f792 differs from pull request most recent head 507ef30. Consider uploading reports for the commit 507ef30 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   #13772   +/-   ##
    =======================================
      Coverage   58.63%   58.63%           
    =======================================
      Files          86       86           
      Lines        5272     5272           
      Branches      218      218           
    =======================================
      Hits         3091     3091           
      Misses       1963     1963           
      Partials      218      218           

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

    @diemol diemol merged commit 8c8adec into trunk Apr 6, 2024
    35 of 36 checks passed
    @diemol diemol deleted the baseRoute branch April 6, 2024 14:10
    @VietND96
    Copy link
    Member

    VietND96 commented Apr 7, 2024

    @joerg1985, as my understanding, this change helps /graphql endpoint can be accessed via /subPath/graphql when subPath is enabled, right?

    @joerg1985
    Copy link
    Member Author

    @VietND96 no this has been possible before, this PR is only code clean up without a functional change.

    Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
    Projects
    None yet
    Development

    Successfully merging this pull request may close these issues.

    None yet

    4 participants