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

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

Merged
merged 1 commit into from
Mar 26, 2024

Conversation

selenium-ci
Copy link
Member

@selenium-ci selenium-ci commented Mar 26, 2024

User description

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

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


Type

enhancement


Description

  • Updated Firefox Beta to version 125.0b4 for Linux and Mac, ensuring compatibility with the latest features and security patches.
  • Downgraded Microsoft Edge to version 122.0.2365.92 for Mac to address compatibility or stability issues.
  • Updated SHA256 checksums for all updated browser versions to ensure integrity.

Changes walkthrough

Relevant files
Enhancement
repositories.bzl
Update Browser Versions and Checksums                                       

common/repositories.bzl

  • Updated Firefox Beta version from 125.0b3 to 125.0b4 for both Linux
    and Mac, including SHA256 checksums.
  • Downgraded Microsoft Edge version from 123.0.2420.53 to 122.0.2365.92
    for Mac, including SHA256 checksums.
  • +7/-7     

    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 (9599503)

    Copy link

    PR Review

    ⏱️ Estimated effort to review [1-5]

    2, because the changes are straightforward version updates and checksum changes for browser dependencies. The PR is small and focused, making it easier to review. However, verifying the checksums and ensuring compatibility with the updated versions requires some effort.

    🧪 Relevant tests

    No

    🔍 Possible issues

    Compatibility Issue: Downgrading Microsoft Edge might introduce compatibility issues with newer web features or automated tests that rely on features introduced in versions newer than 122.0.2365.92.

    🔒 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

    codiumai-pr-agent-pro bot commented Mar 26, 2024

    PR Code Suggestions

    CategorySuggestions                                                                                                                                                       
    Security
    Verify the correctness of the sha256 checksums for new browser versions.

    Consider verifying the sha256 checksums for the new browser versions to ensure they are
    correct and have not been tampered with. This is crucial for maintaining the integrity and
    security of the software dependencies.

    common/repositories.bzl [39]

    -sha256 = "41657b5a23eb472b938218237959d2ee1aeb0165e8b46fc846bf2d797e30b84e",
    +sha256 = "<verified_correct_sha256_checksum>",
     
    Ensure browser download URLs are from trusted and secure sources.

    Ensure that the URLs provided for the browser downloads are from a trusted and secure
    source. Using https is good, but also consider the domain and path to prevent potential
    man-in-the-middle attacks or downloading malicious software.

    common/repositories.bzl [38]

    -url = "https://ftp.mozilla.org/pub/firefox/releases/125.0b4/linux-x86_64/en-US/firefox-125.0b4.tar.bz2",
    +url = "<verified_secure_and_trusted_url>",
     
    Maintainability
    Use a function or variable to dynamically generate URLs and checksums.

    For maintainability, consider creating a variable or a function to generate the URL and
    sha256 values dynamically based on the version number. This can reduce the effort needed
    for future updates and decrease the risk of manual errors.

    common/repositories.bzl [38-39]

    -url = "https://ftp.mozilla.org/pub/firefox/releases/125.0b4/linux-x86_64/en-US/firefox-125.0b4.tar.bz2",
    -sha256 = "41657b5a23eb472b938218237959d2ee1aeb0165e8b46fc846bf2d797e30b84e",
    +firefox_version = "125.0b4"
    +url = f"https://ftp.mozilla.org/pub/firefox/releases/{firefox_version}/linux-x86_64/en-US/firefox-{firefox_version}.tar.bz2",
    +sha256 = get_sha256_for_version(firefox_version),
     
    Use variables for package names and versions in the move dictionary.

    To improve the readability and maintainability of the move dictionary for the pkg_archive
    rule, consider using a variable for the package name and version. This approach can make
    future updates easier and the code more understandable.

    common/repositories.bzl [79]

    +edge_package_name = "MicrosoftEdge-122.0.2365.92"
     move = {
    -    "MicrosoftEdge-122.0.2365.92.pkg/Payload/Microsoft Edge.app": "Edge.app",
    +    f"{edge_package_name}.pkg/Payload/Microsoft Edge.app": "Edge.app",
     },
     
    Abstract common archive definition parameters into a reusable function.

    Given the repetitive nature of defining browser archives, consider abstracting common
    parameters into a reusable function. This function could accept parameters like name, url,
    and sha256, reducing redundancy and making the codebase cleaner and easier to update.

    common/repositories.bzl [36-40]

    -http_archive(
    -    name = "linux_beta_firefox",
    -    url = "https://ftp.mozilla.org/pub/firefox/releases/125.0b4/linux-x86_64/en-US/firefox-125.0b4.tar.bz2",
    -    sha256 = "41657b5a23eb472b938218237959d2ee1aeb0165e8b46fc846bf2d797e30b84e",
    -    build_file_content = """
    -filegroup(
    -    name = "files",
    -""",
    +def define_browser_archive(name, url, sha256):
    +    http_archive(
    +        name = name,
    +        url = url,
    +        sha256 = sha256,
    +        build_file_content = """
    +    filegroup(
    +        name = "files",
    +    """,
    +    )
    +define_browser_archive("linux_beta_firefox", "https://ftp.mozilla.org/pub/firefox/releases/125.0b4/linux-x86_64/en-US/firefox-125.0b4.tar.bz2", "41657b5a23eb472b938218237959d2ee1aeb0165e8b46fc846bf2d797e30b84e")
     

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

    @codecov-commenter
    Copy link

    Codecov Report

    All modified and coverable lines are covered by tests ✅

    Project coverage is 58.48%. Comparing base (dec63da) to head (d127176).

    ❗ Current head d127176 differs from pull request most recent head 9599503. Consider uploading reports for the commit 9599503 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   #13736   +/-   ##
    =======================================
      Coverage   58.48%   58.48%           
    =======================================
      Files          86       86           
      Lines        5270     5270           
      Branches      220      220           
    =======================================
      Hits         3082     3082           
      Misses       1968     1968           
      Partials      220      220           

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

    Copy link

    CI Failure Feedback

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

    Failed stage: Run Bazel [❌]

    Failure summary:

    All tests failed due to a permission denied error when attempting to spawn a Java process. This
    indicates an issue with the environment's permissions or configuration, preventing the execution of
    the required Java commands for the tests.

    Relevant error logs:
    1:  ##[group]Operating System
    2:  Microsoft Windows Server 2022
    ...
    
    726:  �[32m[1 / 1]�[0m checking cached actions
    727:  �[32mAnalyzing:�[0m 27 targets (634 packages loaded, 38401 targets configured)
    728:  �[32m[1 / 1]�[0m checking cached actions
    729:  �[32mAnalyzing:�[0m 27 targets (634 packages loaded, 38405 targets configured)
    730:  �[32m[6 / 26]�[0m [Prepa] Creating source manifest for //rb/spec/integration/selenium/webdriver:devtools-edge-remote ... (4 actions, 2 running)
    731:  �[32mINFO: �[0mAnalyzed 27 targets (634 packages loaded, 38405 targets configured).
    732:  �[32m[12 / 34]�[0m [Prepa] Creating source manifest for //rb/spec/integration/selenium/webdriver/remote:driver-edge-remote ... (2 actions, 1 running)
    733:  �[32m[68 / 905]�[0m Creating source manifest for //rb/spec/integration/selenium/webdriver/bidi:log_inspector-edge-remote; 0s local ... (3 actions, 2 running)
    734:  �[32m[372 / 1,513]�[0m Creating source manifest for //rb/spec/integration/selenium/webdriver:error-edge-remote; 0s local ... (4 actions, 2 running)
    ...
    
    849:  �[35mWARNING: �[0mD:/a/selenium/selenium/BUILD.bazel:13:22: input 'package' to //:.aspect_rules_js/node_modules/path-type@4.0.0/pkg is a directory; dependency checking of directories is unsound
    850:  �[35mWARNING: �[0mD:/a/selenium/selenium/BUILD.bazel:13:22: input 'package' to //:.aspect_rules_js/node_modules/parse-json@5.2.0/pkg is a directory; dependency checking of directories is unsound
    851:  �[35mWARNING: �[0mD:/a/selenium/selenium/BUILD.bazel:13:22: input 'package' to //:.aspect_rules_js/node_modules/path-parse@1.0.7/pkg is a directory; dependency checking of directories is unsound
    852:  �[35mWARNING: �[0mD:/a/selenium/selenium/BUILD.bazel:13:22: input 'package' to //:.aspect_rules_js/node_modules/parent-module@1.0.1/pkg is a directory; dependency checking of directories is unsound
    853:  �[35mWARNING: �[0mD:/a/selenium/selenium/BUILD.bazel:13:22: input 'package' to //:.aspect_rules_js/node_modules/node-releases@2.0.6/pkg is a directory; dependency checking of directories is unsound
    854:  �[35mWARNING: �[0mD:/a/selenium/selenium/BUILD.bazel:13:22: input 'package' to //:.aspect_rules_js/node_modules/ms@2.1.2/pkg is a directory; dependency checking of directories is unsound
    855:  �[35mWARNING: �[0mD:/a/selenium/selenium/BUILD.bazel:13:22: input 'package' to //:.aspect_rules_js/node_modules/lines-and-columns@1.2.4/pkg is a directory; dependency checking of directories is unsound
    856:  �[35mWARNING: �[0mD:/a/selenium/selenium/BUILD.bazel:13:22: input 'package' to //:.aspect_rules_js/node_modules/json5@2.2.3/pkg is a directory; dependency checking of directories is unsound
    857:  �[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
    ...
    
    864:  �[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
    865:  �[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
    866:  �[35mWARNING: �[0mD:/a/selenium/selenium/BUILD.bazel:13:22: input 'package' to //:.aspect_rules_js/node_modules/globals@11.12.0/pkg is a directory; dependency checking of directories is unsound
    867:  �[35mWARNING: �[0mD:/a/selenium/selenium/BUILD.bazel:13:22: input 'package' to //:.aspect_rules_js/node_modules/graphql@16.8.1/pkg is a directory; dependency checking of directories is unsound
    868:  �[35mWARNING: �[0mD:/a/selenium/selenium/BUILD.bazel:13:22: input 'package' to //:.aspect_rules_js/node_modules/gensync@1.0.0-beta.2/pkg is a directory; dependency checking of directories is unsound
    869:  �[35mWARNING: �[0mD:/a/selenium/selenium/BUILD.bazel:13:22: input 'package' to //:.aspect_rules_js/node_modules/function-bind@1.1.1/pkg is a directory; dependency checking of directories is unsound
    870:  �[35mWARNING: �[0mD:/a/selenium/selenium/BUILD.bazel:13:22: input 'package' to //:.aspect_rules_js/node_modules/escape-string-regexp@1.0.5/pkg is a directory; dependency checking of directories is unsound
    871:  �[35mWARNING: �[0mD:/a/selenium/selenium/BUILD.bazel:13:22: input 'package' to //:.aspect_rules_js/node_modules/escalade@3.1.1/pkg is a directory; dependency checking of directories is unsound
    872:  �[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
    ...
    
    900:  �[35mWARNING: �[0mD:/a/selenium/selenium/BUILD.bazel:13:22: input 'package' to //:.aspect_rules_js/node_modules/response-iterator@0.2.6/pkg is a directory; dependency checking of directories is unsound
    901:  �[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
    902:  �[35mWARNING: �[0mD:/a/selenium/selenium/BUILD.bazel:13:22: input 'package' to //:.aspect_rules_js/node_modules/@wry+trie@0.5.0/pkg is a directory; dependency checking of directories is unsound
    903:  �[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
    904:  �[35mWARNING: �[0mD:/a/selenium/selenium/BUILD.bazel:13:22: input 'package' to //:.aspect_rules_js/node_modules/@wry+equality@0.5.6/pkg is a directory; dependency checking of directories is unsound
    905:  �[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
    906:  �[35mWARNING: �[0mD:/a/selenium/selenium/BUILD.bazel:13:22: input 'package' to //:.aspect_rules_js/node_modules/@wry+caches@1.0.1/pkg is a directory; dependency checking of directories is unsound
    907:  �[32mINFO: �[0mFrom Building java/src/org/openqa/selenium/remote/libapi-class.jar (66 source files):
    908:  java\src\org\openqa\selenium\remote\ErrorHandler.java:46: warning: [removal] ErrorCodes in org.openqa.selenium.remote has been deprecated and marked for removal
    909:  private final ErrorCodes errorCodes;
    910:  ^
    911:  java\src\org\openqa\selenium\remote\ErrorHandler.java:60: warning: [removal] ErrorCodes in org.openqa.selenium.remote has been deprecated and marked for removal
    912:  this.errorCodes = new ErrorCodes();
    913:  ^
    914:  java\src\org\openqa\selenium\remote\ErrorHandler.java:68: warning: [removal] ErrorCodes in org.openqa.selenium.remote has been deprecated and marked for removal
    915:  public ErrorHandler(ErrorCodes codes, boolean includeServerErrors) {
    916:  ^
    917:  java\src\org\openqa\selenium\remote\Response.java:97: warning: [removal] ErrorCodes in org.openqa.selenium.remote has been deprecated and marked for removal
    918:  ErrorCodes errorCodes = new ErrorCodes();
    919:  ^
    920:  java\src\org\openqa\selenium\remote\Response.java:97: warning: [removal] ErrorCodes in org.openqa.selenium.remote has been deprecated and marked for removal
    921:  ErrorCodes errorCodes = new ErrorCodes();
    922:  ^
    923:  java\src\org\openqa\selenium\remote\ProtocolHandshake.java:206: warning: [removal] ErrorCodes in org.openqa.selenium.remote has been deprecated and marked for removal
    924:  response.setStatus(ErrorCodes.SUCCESS);
    925:  ^
    926:  java\src\org\openqa\selenium\remote\ProtocolHandshake.java:207: warning: [removal] ErrorCodes in org.openqa.selenium.remote has been deprecated and marked for removal
    927:  response.setState(ErrorCodes.SUCCESS_STRING);
    928:  ^
    929:  java\src\org\openqa\selenium\remote\W3CHandshakeResponse.java:53: warning: [removal] ErrorCodes in org.openqa.selenium.remote has been deprecated and marked for removal
    930:  new ErrorCodes().toStatus((String) rawError, Optional.of(tuple.getStatusCode())));
    931:  ^
    932:  java\src\org\openqa\selenium\remote\W3CHandshakeResponse.java:56: warning: [removal] ErrorCodes in org.openqa.selenium.remote has been deprecated and marked for removal
    933:  new ErrorCodes().getExceptionType((String) rawError);
    934:  ^
    935:  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
    936:  private final ErrorCodes errorCodes = new ErrorCodes();
    937:  ^
    938:  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
    939:  private final ErrorCodes errorCodes = new ErrorCodes();
    940:  ^
    941:  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
    942:  int status = response.getStatus() == ErrorCodes.SUCCESS ? HTTP_OK : HTTP_INTERNAL_ERROR;
    943:  ^
    944:  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
    945:  response.setStatus(ErrorCodes.UNKNOWN_COMMAND);
    946:  ^
    947:  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
    948:  response.setStatus(ErrorCodes.UNHANDLED_ERROR);
    949:  ^
    950:  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
    951:  response.setStatus(ErrorCodes.SUCCESS);
    952:  ^
    953:  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
    954:  response.setState(errorCodes.toState(ErrorCodes.SUCCESS));
    955:  ^
    956:  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
    957:  response.setState(errorCodes.toState(ErrorCodes.SUCCESS));
    958:  ^
    959:  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
    960:  private final ErrorCodes errorCodes = new ErrorCodes();
    961:  ^
    962:  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
    963:  private final ErrorCodes errorCodes = new ErrorCodes();
    964:  ^
    965:  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
    966:  response.setStatus(ErrorCodes.UNKNOWN_COMMAND);
    967:  ^
    968:  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
    969:  response.setStatus(ErrorCodes.UNHANDLED_ERROR);
    970:  ^
    971:  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
    972:  response.setStatus(ErrorCodes.SUCCESS);
    ...
    
    1115:  �[32m[2,875 / 2,898]�[0m Testing //rb/spec/integration/selenium/webdriver:timeout-edge-remote; 52s local, disk-cache ... (4 actions running)
    1116:  �[32m[2,875 / 2,898]�[0m Testing //rb/spec/integration/selenium/webdriver:timeout-edge-remote; 54s local, disk-cache ... (4 actions running)
    1117:  �[32m[2,875 / 2,898]�[0m Testing //rb/spec/integration/selenium/webdriver:timeout-edge-remote; 58s local, disk-cache ... (4 actions running)
    1118:  �[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)
    1119:  �[32m[2,875 / 2,898]�[0m Testing //rb/spec/integration/selenium/webdriver:timeout-edge-remote; 59s local, disk-cache ... (4 actions running)
    1120:  �[32m[2,875 / 2,898]�[0m Testing //rb/spec/integration/selenium/webdriver:timeout-edge-remote; 64s local, disk-cache ... (4 actions running)
    1121:  �[32m[2,875 / 2,898]�[0m Testing //rb/spec/integration/selenium/webdriver:timeout-edge-remote; 66s local, disk-cache ... (4 actions running)
    1122:  �[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)
    1123:  �[31m�[1mFAILED: �[0m//rb/spec/integration/selenium/webdriver:timeout-edge-remote (Summary)
    1124:  D:/_bazel/execroot/selenium/bazel-out/x64_windows-fastbuild/testlogs/rb/spec/integration/selenium/webdriver/timeout-edge-remote/test.log
    1125:  D:/_bazel/execroot/selenium/bazel-out/x64_windows-fastbuild/testlogs/rb/spec/integration/selenium/webdriver/timeout-edge-remote/test_attempts/attempt_1.log
    1126:  D:/_bazel/execroot/selenium/bazel-out/x64_windows-fastbuild/testlogs/rb/spec/integration/selenium/webdriver/timeout-edge-remote/test_attempts/attempt_2.log
    1127:  �[32mINFO: �[0mFrom Testing //rb/spec/integration/selenium/webdriver:timeout-edge-remote:
    1128:  ==================== Test output for //rb/spec/integration/selenium/webdriver:timeout-edge-remote:
    1129:  2024-03-26 00:59:36 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
    1130:  An error occurred in a `before(:suite)` hook.
    1131:  Failure/Error: @pid = Process.spawn(*@command, options)
    1132:  Errno::EACCES:
    1133:  Permission denied - java
    1134:  # ./rb/lib/selenium/webdriver/common/child_process.rb:57:in `spawn'
    1135:  # ./rb/lib/selenium/webdriver/common/child_process.rb:57:in `start'
    1136:  # ./rb/lib/selenium/server.rb:204:in `start'
    1137:  # //?/D:/a/selenium/selenium/rb/spec/integration/selenium/webdriver/spec_helper.rb:40:in `block (2 levels) in <top (required)>'
    1138:  Finished in 0.07535 seconds (files took 0.84105 seconds to load)
    1139:  0 examples, 0 failures, 1 error occurred outside of examples
    1140:  ================================================================================
    1141:  ==================== Test output for //rb/spec/integration/selenium/webdriver:timeout-edge-remote:
    1142:  2024-03-26 01:00:06 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
    1143:  An error occurred in a `before(:suite)` hook.
    1144:  Failure/Error: @pid = Process.spawn(*@command, options)
    1145:  Errno::EACCES:
    1146:  Permission denied - java
    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.06486 seconds (files took 0.76253 seconds to load)
    1152:  0 examples, 0 failures, 1 error occurred outside of examples
    1153:  ================================================================================
    1154:  ==================== Test output for //rb/spec/integration/selenium/webdriver:timeout-edge-remote:
    1155:  2024-03-26 01:00:35 INFO Selenium Server Location: D:/_bazel/execroot/selenium/bazel-out/x64_windows-fastbuild/bin/rb/spec/integration/selenium/webdriver/timeout-edge-remote.cmd.runfiles/selenium/java/src/org/openqa/selenium/grid/selenium_server_deploy.jar
    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.06638 seconds (files took 0.78876 seconds to load)
    1165:  0 examples, 0 failures, 1 error occurred outside of examples
    1166:  ================================================================================
    1167:  �[32m[2,876 / 2,898]�[0m 1 / 27 tests, �[31m�[1m1 failed�[0m;�[0m Testing //rb/spec/integration/selenium/webdriver:takes_screenshot-edge-remote; 59s local, disk-cache ... (4 actions, 3 running)
    1168:  �[32m[2,876 / 2,898]�[0m 1 / 27 tests, �[31m�[1m1 failed�[0m;�[0m Testing //rb/spec/integration/selenium/webdriver:takes_screenshot-edge-remote; 66s local, disk-cache ... (4 actions, 3 running)
    1169:  �[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)
    1170:  ==================== Test output for //rb/spec/integration/selenium/webdriver:takes_screenshot-edge-remote:
    1171:  2024-03-26 00:59:43 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
    1172:  �[31m�[1mFAILED: �[0m//rb/spec/integration/selenium/webdriver:takes_screenshot-edge-remote (Summary)
    1173:  An error occurred in a `before(:suite)` hook.
    1174:  D:/_bazel/execroot/selenium/bazel-out/x64_windows-fastbuild/testlogs/rb/spec/integration/selenium/webdriver/takes_screenshot-edge-remote/test.log
    1175:  Failure/Error: @pid = Process.spawn(*@command, options)
    ...
    
    1178:  �[32mINFO: �[0mFrom Testing //rb/spec/integration/selenium/webdriver:takes_screenshot-edge-remote:
    1179:  Errno::EACCES:
    1180:  Permission denied - java
    1181:  # ./rb/lib/selenium/webdriver/common/child_process.rb:57:in `spawn'
    1182:  # ./rb/lib/selenium/webdriver/common/child_process.rb:57:in `start'
    1183:  # ./rb/lib/selenium/server.rb:204:in `start'
    1184:  # //?/D:/a/selenium/selenium/rb/spec/integration/selenium/webdriver/spec_helper.rb:40:in `block (2 levels) in <top (required)>'
    1185:  Finished in 0.07001 seconds (files took 0.76108 seconds to load)
    1186:  0 examples, 0 failures, 1 error occurred outside of examples
    1187:  ================================================================================
    1188:  ==================== Test output for //rb/spec/integration/selenium/webdriver:takes_screenshot-edge-remote:
    1189:  2024-03-26 01:00:13 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
    1190:  An error occurred in a `before(:suite)` hook.
    1191:  Failure/Error: @pid = Process.spawn(*@command, options)
    1192:  Errno::EACCES:
    1193:  Permission denied - java
    1194:  # ./rb/lib/selenium/webdriver/common/child_process.rb:57:in `spawn'
    1195:  # ./rb/lib/selenium/webdriver/common/child_process.rb:57:in `start'
    1196:  # ./rb/lib/selenium/server.rb:204:in `start'
    1197:  # //?/D:/a/selenium/selenium/rb/spec/integration/selenium/webdriver/spec_helper.rb:40:in `block (2 levels) in <top (required)>'
    1198:  Finished in 0.06277 seconds (files took 0.72383 seconds to load)
    1199:  0 examples, 0 failures, 1 error occurred outside of examples
    1200:  ================================================================================
    1201:  ==================== Test output for //rb/spec/integration/selenium/webdriver:takes_screenshot-edge-remote:
    1202:  2024-03-26 01:00:43 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
    1203:  An error occurred in a `before(:suite)` hook.
    1204:  Failure/Error: @pid = Process.spawn(*@command, options)
    1205:  Errno::EACCES:
    1206:  Permission denied - java
    1207:  # ./rb/lib/selenium/webdriver/common/child_process.rb:57:in `spawn'
    1208:  # ./rb/lib/selenium/webdriver/common/child_process.rb:57:in `start'
    1209:  # ./rb/lib/selenium/server.rb:204:in `start'
    1210:  # //?/D:/a/selenium/selenium/rb/spec/integration/selenium/webdriver/spec_helper.rb:40:in `block (2 levels) in <top (required)>'
    1211:  Finished in 0.0749 seconds (files took 0.88086 seconds to load)
    1212:  0 examples, 0 failures, 1 error occurred outside of examples
    1213:  ================================================================================
    1214:  �[32m[2,877 / 2,898]�[0m 2 / 27 tests, �[31m�[1m2 failed�[0m;�[0m Testing //rb/spec/integration/selenium/webdriver:element-edge-remote; 60s local, disk-cache ... (4 actions, 2 running)
    1215:  �[32m[2,877 / 2,898]�[0m 2 / 27 tests, �[31m�[1m2 failed�[0m;�[0m Testing //rb/spec/integration/selenium/webdriver:element-edge-remote; 67s local, disk-cache ... (4 actions, 2 running)
    1216:  �[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)
    1217:  ==================== Test output for //rb/spec/integration/selenium/webdriver:element-edge-remote:
    1218:  �[31m�[1mFAILED: �[0m//rb/spec/integration/selenium/webdriver:element-edge-remote (Summary)
    1219:  2024-03-26 00:59:51 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
    1220:  D:/_bazel/execroot/selenium/bazel-out/x64_windows-fastbuild/testlogs/rb/spec/integration/selenium/webdriver/element-edge-remote/test.log
    1221:  D:/_bazel/execroot/selenium/bazel-out/x64_windows-fastbuild/testlogs/rb/spec/integration/selenium/webdriver/element-edge-remote/test_attempts/attempt_1.log
    1222:  An error occurred in a `before(:suite)` hook.
    1223:  D:/_bazel/execroot/selenium/bazel-out/x64_windows-fastbuild/testlogs/rb/spec/integration/selenium/webdriver/element-edge-remote/test_attempts/attempt_2.log
    1224:  Failure/Error: @pid = Process.spawn(*@command, options)
    1225:  �[32mINFO: �[0mFrom Testing //rb/spec/integration/selenium/webdriver:element-edge-remote:
    1226:  Errno::EACCES:
    1227:  Permission denied - java
    1228:  # ./rb/lib/selenium/webdriver/common/child_process.rb:57:in `spawn'
    1229:  # ./rb/lib/selenium/webdriver/common/child_process.rb:57:in `start'
    1230:  # ./rb/lib/selenium/server.rb:204:in `start'
    1231:  # //?/D:/a/selenium/selenium/rb/spec/integration/selenium/webdriver/spec_helper.rb:40:in `block (2 levels) in <top (required)>'
    1232:  Finished in 0.07614 seconds (files took 0.86731 seconds to load)
    1233:  0 examples, 0 failures, 1 error occurred outside of examples
    1234:  ================================================================================
    1235:  ==================== Test output for //rb/spec/integration/selenium/webdriver:element-edge-remote:
    1236:  2024-03-26 01:00:20 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
    1237:  An error occurred in a `before(:suite)` hook.
    1238:  Failure/Error: @pid = Process.spawn(*@command, options)
    1239:  Errno::EACCES:
    1240:  Permission denied - java
    1241:  # ./rb/lib/selenium/webdriver/common/child_process.rb:57:in `spawn'
    1242:  # ./rb/lib/selenium/webdriver/common/child_process.rb:57:in `start'
    1243:  # ./rb/lib/selenium/server.rb:204:in `start'
    1244:  # //?/D:/a/selenium/selenium/rb/spec/integration/selenium/webdriver/spec_helper.rb:40:in `block (2 levels) in <top (required)>'
    1245:  Finished in 0.06941 seconds (files took 0.83759 seconds to load)
    1246:  0 examples, 0 failures, 1 error occurred outside of examples
    1247:  ================================================================================
    1248:  ==================== Test output for //rb/spec/integration/selenium/webdriver:element-edge-remote:
    1249:  2024-03-26 01:00:51 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
    1250:  An error occurred in a `before(:suite)` hook.
    1251:  Failure/Error: @pid = Process.spawn(*@command, options)
    1252:  Errno::EACCES:
    1253:  Permission denied - java
    1254:  # ./rb/lib/selenium/webdriver/common/child_process.rb:57:in `spawn'
    1255:  # ./rb/lib/selenium/webdriver/common/child_process.rb:57:in `start'
    1256:  # ./rb/lib/selenium/server.rb:204:in `start'
    1257:  # //?/D:/a/selenium/selenium/rb/spec/integration/selenium/webdriver/spec_helper.rb:40:in `block (2 levels) in <top (required)>'
    1258:  Finished in 0.10943 seconds (files took 1.17 seconds to load)
    1259:  0 examples, 0 failures, 1 error occurred outside of examples
    1260:  ================================================================================
    1261:  �[32m[2,878 / 2,898]�[0m 3 / 27 tests, �[31m�[1m3 failed�[0m;�[0m Testing //rb/spec/integration/selenium/webdriver:select-edge-remote; 61s local, disk-cache ... (4 actions, 1 running)
    1262:  �[32m[2,878 / 2,898]�[0m 3 / 27 tests, �[31m�[1m3 failed�[0m;�[0m Testing //rb/spec/integration/selenium/webdriver:select-edge-remote; 62s local, disk-cache ... (4 actions, 1 running)
    1263:  �[32m[2,878 / 2,898]�[0m 3 / 27 tests, �[31m�[1m3 failed�[0m;�[0m Testing //rb/spec/integration/selenium/webdriver:select-edge-remote; 67s local, disk-cache ... (4 actions, 2 running)
    1264:  �[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)
    1265:  ==================== Test output for //rb/spec/integration/selenium/webdriver:select-edge-remote:
    1266:  �[31m�[1mFAILED: �[0m//rb/spec/integration/selenium/webdriver:select-edge-remote (Summary)
    1267:  2024-03-26 00:59:58 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
    1268:  D:/_bazel/execroot/selenium/bazel-out/x64_windows-fastbuild/testlogs/rb/spec/integration/selenium/webdriver/select-edge-remote/test.log
    1269:  D:/_bazel/execroot/selenium/bazel-out/x64_windows-fastbuild/testlogs/rb/spec/integration/selenium/webdriver/select-edge-remote/test_attempts/attempt_1.log
    1270:  An error occurred in a `before(:suite)` hook.
    1271:  D:/_bazel/execroot/selenium/bazel-out/x64_windows-fastbuild/testlogs/rb/spec/integration/selenium/webdriver/select-edge-remote/test_attempts/attempt_2.log
    1272:  Failure/Error: @pid = Process.spawn(*@command, options)
    1273:  �[32mINFO: �[0mFrom Testing //rb/spec/integration/selenium/webdriver:select-edge-remote:
    1274:  Errno::EACCES:
    1275:  Permission denied - java
    1276:  # ./rb/lib/selenium/webdriver/common/child_process.rb:57:in `spawn'
    1277:  # ./rb/lib/selenium/webdriver/common/child_process.rb:57:in `start'
    1278:  # ./rb/lib/selenium/server.rb:204:in `start'
    1279:  # //?/D:/a/selenium/selenium/rb/spec/integration/selenium/webdriver/spec_helper.rb:40:in `block (2 levels) in <top (required)>'
    1280:  Finished in 0.06525 seconds (files took 0.81965 seconds to load)
    1281:  0 examples, 0 failures, 1 error occurred outside of examples
    1282:  ================================================================================
    1283:  ==================== Test output for //rb/spec/integration/selenium/webdriver:select-edge-remote:
    1284:  2024-03-26 01:00:28 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
    1285:  An error occurred in a `before(:suite)` hook.
    1286:  Failure/Error: @pid = Process.spawn(*@command, options)
    1287:  Errno::EACCES:
    1288:  Permission denied - java
    1289:  # ./rb/lib/selenium/webdriver/common/child_process.rb:57:in `spawn'
    1290:  # ./rb/lib/selenium/webdriver/common/child_process.rb:57:in `start'
    1291:  # ./rb/lib/selenium/server.rb:204:in `start'
    1292:  # //?/D:/a/selenium/selenium/rb/spec/integration/selenium/webdriver/spec_helper.rb:40:in `block (2 levels) in <top (required)>'
    1293:  Finished in 0.06244 seconds (files took 0.75452 seconds to load)
    1294:  0 examples, 0 failures, 1 error occurred outside of examples
    1295:  ================================================================================
    1296:  ==================== Test output for //rb/spec/integration/selenium/webdriver:select-edge-remote:
    1297:  2024-03-26 01:00:59 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
    1298:  An error occurred in a `before(:suite)` hook.
    1299:  Failure/Error: @pid = Process.spawn(*@command, options)
    1300:  Errno::EACCES:
    1301:  Permission denied - java
    1302:  # ./rb/lib/selenium/webdriver/common/child_process.rb:57:in `spawn'
    1303:  # ./rb/lib/selenium/webdriver/common/child_process.rb:57:in `start'
    1304:  # ./rb/lib/selenium/server.rb:204:in `start'
    1305:  # //?/D:/a/selenium/selenium/rb/spec/integration/selenium/webdriver/spec_helper.rb:40:in `block (2 levels) in <top (required)>'
    1306:  Finished in 0.08653 seconds (files took 0.99829 seconds to load)
    1307:  0 examples, 0 failures, 1 error occurred outside of examples
    1308:  ================================================================================
    1309:  �[32m[2,879 / 2,898]�[0m 4 / 27 tests, �[31m�[1m4 failed�[0m;�[0m Testing //rb/spec/integration/selenium/webdriver:zipper-edge-remote; 16s disk-cache ... (4 actions, 1 running)
    1310:  �[32m[2,879 / 2,898]�[0m 4 / 27 tests, �[31m�[1m4 failed�[0m;�[0m Testing //rb/spec/integration/selenium/webdriver/edge:options-edge-remote; 9s disk-cache ... (4 actions, 1 running)
    1311:  �[32m[2,879 / 2,898]�[0m 4 / 27 tests, �[31m�[1m4 failed�[0m;�[0m Testing //rb/spec/integration/selenium/webdriver/edge:options-edge-remote; 14s disk-cache ... (4 actions, 2 running)
    1312:  �[31m�[1mFAIL: �[0m//rb/spec/integration/selenium/webdriver/remote:driver-edge-remote (see D:/_bazel/execroot/selenium/bazel-out/x64_windows-fastbuild/testlogs/rb/spec/integration/selenium/webdriver/remote/driver-edge-remote/test_attempts/attempt_1.log)
    1313:  �[32m[2,879 / 2,898]�[0m 4 / 27 tests, �[31m�[1m4 failed�[0m;�[0m Testing //rb/spec/integration/selenium/webdriver/edge:options-edge-remote; 16s disk-cache ... (4 actions, 2 running)
    1314:  �[32m[2,879 / 2,898]�[0m 4 / 27 tests, �[31m�[1m4 failed�[0m;�[0m Testing //rb/spec/integration/selenium/webdriver/remote:driver-edge-remote; 11s local, disk-cache ... (4 actions, 2 running)
    1315:  �[32m[2,879 / 2,898]�[0m 4 / 27 tests, �[31m�[1m4 failed�[0m;�[0m Testing //rb/spec/integration/selenium/webdriver/remote:driver-edge-remote; 12s local, disk-cache ... (4 actions, 2 running)
    1316:  �[32m[2,879 / 2,898]�[0m 4 / 27 tests, �[31m�[1m4 failed�[0m;�[0m Testing //rb/spec/integration/selenium/webdriver/remote:driver-edge-remote; 16s local, disk-cache ... (4 actions, 2 running)
    1317:  �[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)
    1318:  �[32m[2,879 / 2,898]�[0m 4 / 27 tests, �[31m�[1m4 failed�[0m;�[0m Testing //rb/spec/integration/selenium/webdriver/remote:driver-edge-remote; 17s local, disk-cache ... (4 actions, 2 running)
    1319:  �[32m[2,879 / 2,898]�[0m 4 / 27 tests, �[31m�[1m4 failed�[0m;�[0m Testing //rb/spec/integration/selenium/webdriver/remote:driver-edge-remote; 19s local, disk-cache ... (4 actions, 2 running)
    1320:  �[32m[2,879 / 2,898]�[0m 4 / 27 tests, �[31m�[1m4 failed�[0m;�[0m Testing //rb/spec/integration/selenium/webdriver/remote:driver-edge-remote; 24s local, disk-cache ... (4 actions, 3 running)
    1321:  �[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)
    1322:  �[32m[2,879 / 2,898]�[0m 4 / 27 tests, �[31m�[1m4 failed�[0m;�[0m Testing //rb/spec/integration/selenium/webdriver/remote:driver-edge-remote; 25s local, disk-cache ... (4 actions, 3 running)
    1323:  �[32m[2,879 / 2,898]�[0m 4 / 27 tests, �[31m�[1m4 failed�[0m;�[0m Testing //rb/spec/integration/selenium/webdriver/remote:driver-edge-remote; 26s local, disk-cache ... (4 actions, 3 running)
    1324:  �[32m[2,879 / 2,898]�[0m 4 / 27 tests, �[31m�[1m4 failed�[0m;�[0m Testing //rb/spec/integration/selenium/webdriver/remote:driver-edge-remote; 31s local, disk-cache ... (4 actions running)
    1325:  �[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)
    1326:  �[32m[2,879 / 2,898]�[0m 4 / 27 tests, �[31m�[1m4 failed�[0m;�[0m Testing //rb/spec/integration/selenium/webdriver/remote:driver-edge-remote; 32s local, disk-cache ... (4 actions running)
    1327:  �[32m[2,879 / 2,898]�[0m 4 / 27 tests, �[31m�[1m4 failed�[0m;�[0m Testing //rb/spec/integration/selenium/webdriver/remote:driver-edge-remote; 38s local, disk-cache ... (4 actions running)
    1328:  �[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)
    1329:  �[32m[2,879 / 2,898]�[0m 4 / 27 tests, �[31m�[1m4 failed�[0m;�[0m Testing //rb/spec/integration/selenium/webdriver/remote:driver-edge-remote; 40s local, disk-cache ... (4 actions running)
    1330:  �[32m[2,879 / 2,898]�[0m 4 / 27 tests, �[31m�[1m4 failed�[0m;�[0m Testing //rb/spec/integration/selenium/webdriver/remote:driver-edge-remote; 41s local, disk-cache ... (4 actions running)
    1331:  �[32m[2,879 / 2,898]�[0m 4 / 27 tests, �[31m�[1m4 failed�[0m;�[0m Testing //rb/spec/integration/selenium/webdriver/remote:driver-edge-remote; 46s local, disk-cache ... (4 actions running)
    1332:  �[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)
    1333:  �[32m[2,879 / 2,898]�[0m 4 / 27 tests, �[31m�[1m4 failed�[0m;�[0m Testing //rb/spec/integration/selenium/webdriver/remote:driver-edge-remote; 47s local, disk-cache ... (4 actions running)
    1334:  �[32m[2,879 / 2,898]�[0m 4 / 27 tests, �[31m�[1m4 failed�[0m;�[0m Testing //rb/spec/integration/selenium/webdriver/remote:driver-edge-remote; 48s local, disk-cache ... (4 actions running)
    1335:  �[32m[2,879 / 2,898]�[0m 4 / 27 tests, �[31m�[1m4 failed�[0m;�[0m Testing //rb/spec/integration/selenium/webdriver/remote:driver-edge-remote; 53s local, disk-cache ... (4 actions running)
    1336:  �[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)
    1337:  �[31m�[1mFAILED: �[0m//rb/spec/integration/selenium/webdriver/remote:driver-edge-remote (Summary)
    1338:  D:/_bazel/execroot/selenium/bazel-out/x64_windows-fastbuild/testlogs/rb/spec/integration/selenium/webdriver/remote/driver-edge-remote/test.log
    1339:  D:/_bazel/execroot/selenium/bazel-out/x64_windows-fastbuild/testlogs/rb/spec/integration/selenium/webdriver/remote/driver-edge-remote/test_attempts/attempt_1.log
    1340:  D:/_bazel/execroot/selenium/bazel-out/x64_windows-fastbuild/testlogs/rb/spec/integration/selenium/webdriver/remote/driver-edge-remote/test_attempts/attempt_2.log
    1341:  �[32mINFO: �[0mFrom Testing //rb/spec/integration/selenium/webdriver/remote:driver-edge-remote:
    1342:  ==================== Test output for //rb/spec/integration/selenium/webdriver/remote:driver-edge-remote:
    1343:  2024-03-26 01:01:07 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
    1344:  An error occurred in a `before(:suite)` hook.
    1345:  Failure/Error: @pid = Process.spawn(*@command, options)
    1346:  Errno::EACCES:
    1347:  Permission denied - java
    1348:  # ./rb/lib/selenium/webdriver/common/child_process.rb:57:in `spawn'
    1349:  # ./rb/lib/selenium/webdriver/common/child_process.rb:57:in `start'
    1350:  # ./rb/lib/selenium/server.rb:204:in `start'
    1351:  # //?/D:/a/selenium/selenium/rb/spec/integration/selenium/webdriver/spec_helper.rb:40:in `block (2 levels) in <top (required)>'
    1352:  Finished in 0.07634 seconds (files took 1.15 seconds to load)
    1353:  0 examples, 0 failures, 1 error occurred outside of examples
    1354:  ================================================================================
    1355:  ==================== Test output for //rb/spec/integration/selenium/webdriver/remote:driver-edge-remote:
    1356:  2024-03-26 01:01:23 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
    1357:  An error occurred in a `before(:suite)` hook.
    1358:  Failure/Error: @pid = Process.spawn(*@command, options)
    1359:  Errno::EACCES:
    1360:  Permission denied - java
    1361:  # ./rb/lib/selenium/webdriver/common/child_process.rb:57:in `spawn'
    1362:  # ./rb/lib/selenium/webdriver/common/child_process.rb:57:in `start'
    1363:  # ./rb/lib/selenium/server.rb:204:in `start'
    1364:  # //?/D:/a/selenium/selenium/rb/spec/integration/selenium/webdriver/spec_helper.rb:40:in `block (2 levels) in <top (required)>'
    1365:  Finished in 0.06952 seconds (files took 0.77408 seconds to load)
    1366:  0 examples, 0 failures, 1 error occurred outside of examples
    1367:  ================================================================================
    1368:  ==================== Test output for //rb/spec/integration/selenium/webdriver/remote:driver-edge-remote:
    1369:  2024-03-26 01:01:52 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
    1370:  An error occurred in a `before(:suite)` hook.
    1371:  Failure/Error: @pid = Process.spawn(*@command, options)
    1372:  Errno::EACCES:
    1373:  Permission denied - java
    1374:  # ./rb/lib/selenium/webdriver/common/child_process.rb:57:in `spawn'
    1375:  # ./rb/lib/selenium/webdriver/common/child_process.rb:57:in `start'
    1376:  # ./rb/lib/selenium/server.rb:204:in `start'
    1377:  # //?/D:/a/selenium/selenium/rb/spec/integration/selenium/webdriver/spec_helper.rb:40:in `block (2 levels) in <top (required)>'
    1378:  Finished in 0.06201 seconds (files took 0.74813 seconds to load)
    1379:  0 examples, 0 failures, 1 error occurred outside of examples
    1380:  ================================================================================
    1381:  �[32m[2,880 / 2,898]�[0m 5 / 27 tests, �[31m�[1m5 failed�[0m;�[0m Testing //rb/spec/integration/selenium/webdriver:zipper-edge-remote; 47s local, disk-cache ... (4 actions, 3 running)
    1382:  �[32m[2,880 / 2,898]�[0m 5 / 27 tests, �[31m�[1m5 failed�[0m;�[0m Testing //rb/spec/integration/selenium/webdriver:zipper-edge-remote; 52s local, disk-cache ... (4 actions, 3 running)
    1383:  �[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)
    1384:  �[32m[2,880 / 2,898]�[0m 5 / 27 tests, �[31m�[1m5 failed�[0m;�[0m Testing //rb/spec/integration/selenium/webdriver:zipper-edge-remote; 53s local, disk-cache ... (4 actions, 3 running)
    1385:  �[32m[2,880 / 2,898]�[0m 5 / 27 tests, �[31m�[1m5 failed�[0m;�[0m Testing //rb/spec/integration/selenium/webdriver:zipper-edge-remote; 56s local, disk-cache ... (4 actions, 3 running)
    1386:  �[32m[2,880 / 2,898]�[0m 5 / 27 tests, �[31m�[1m5 failed�[0m;�[0m Testing //rb/spec/integration/selenium/webdriver:zipper-edge-remote; 58s local, disk-cache ... (4 actions, 3 running)
    1387:  �[32m[2,880 / 2,898]�[0m 5 / 27 tests, �[31m�[1m5 failed�[0m;�[0m Testing //rb/spec/integration/selenium/webdriver:zipper-edge-remote; 60s local, disk-cache ... (4 actions, 3 running)
    1388:  �[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)
    1389:  �[32m[2,880 / 2,898]�[0m 5 / 27 tests, �[31m�[1m5 failed�[0m;�[0m Testing //rb/spec/integration/selenium/webdriver:zipper-edge-remote; 61s local, disk-cache ... (4 actions, 3 running)
    1390:  �[32m[2,880 / 2,898]�[0m 5 / 27 tests, �[31m�[1m5 failed�[0m;�[0m Testing //rb/spec/integration/selenium/webdriver:zipper-edge-remote; 67s local, disk-cache ... (4 actions, 3 running)
    1391:  �[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)
    1392:  ==================== Test output for //rb/spec/integration/selenium/webdriver:zipper-edge-remote:
    1393:  2024-03-26 01:01:16 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
    1394:  �[31m�[1mFAILED: �[0m//rb/spec/integration/selenium/webdriver:zipper-edge-remote (Summary)
    1395:  D:/_bazel/execroot/selenium/bazel-out/x64_windows-fastbuild/testlogs/rb/spec/integration/selenium/webdriver/zipper-edge-remote/test.log
    1396:  An error occurred in a `before(:suite)` hook.
    1397:  D:/_bazel/execroot/selenium/bazel-out/x64_windows-fastbuild/testlogs/rb/spec/integration/selenium/webdriver/zipper-edge-remote/test_attempts/attempt_1.log
    1398:  Failure/Error: @pid = Process.spawn(*@command, options)
    ...
    
    1400:  �[32mINFO: �[0mFrom Testing //rb/spec/integration/selenium/webdriver:zipper-edge-remote:
    1401:  Errno::EACCES:
    1402:  Permission denied - java
    1403:  # ./rb/lib/selenium/webdriver/common/child_process.rb:57:in `spawn'
    1404:  # ./rb/lib/selenium/webdriver/common/child_process.rb:57:in `start'
    1405:  # ./rb/lib/selenium/server.rb:204:in `start'
    1406:  # //?/D:/a/selenium/selenium/rb/spec/integration/selenium/webdriver/spec_helper.rb:40:in `block (2 levels) in <top (required)>'
    1407:  Finished in 0.06488 seconds (files took 1.1 seconds to load)
    1408:  0 examples, 0 failures, 1 error occurred outside of examples
    1409:  ================================================================================
    1410:  ==================== Test output for //rb/spec/integration/selenium/webdriver:zipper-edge-remote:
    1411:  2024-03-26 01:01:45 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
    1412:  An error occurred in a `before(:suite)` hook.
    1413:  Failure/Error: @pid = Process.spawn(*@command, options)
    1414:  Errno::EACCES:
    1415:  Permission denied - java
    1416:  # ./rb/lib/selenium/webdriver/common/child_process.rb:57:in `spawn'
    1417:  # ./rb/lib/selenium/webdriver/common/child_process.rb:57:in `start'
    1418:  # ./rb/lib/selenium/server.rb:204:in `start'
    1419:  # //?/D:/a/selenium/selenium/rb/spec/integration/selenium/webdriver/spec_helper.rb:40:in `block (2 levels) in <top (required)>'
    1420:  Finished in 0.0726 seconds (files took 0.85767 seconds to load)
    1421:  0 examples, 0 failures, 1 error occurred outside of examples
    1422:  ================================================================================
    1423:  ==================== Test output for //rb/spec/integration/selenium/webdriver:zipper-edge-remote:
    1424:  2024-03-26 01:02:15 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
    1425:  An error occurred in a `before(:suite)` hook.
    1426:  Failure/Error: @pid = Process.spawn(*@command, options)
    1427:  Errno::EACCES:
    1428:  Permission denied - java
    1429:  # ./rb/lib/selenium/webdriver/common/child_process.rb:57:in `spawn'
    1430:  # ./rb/lib/selenium/webdriver/common/child_process.rb:57:in `start'
    1431:  # ./rb/lib/selenium/server.rb:204:in `start'
    1432:  # //?/D:/a/selenium/selenium/rb/spec/integration/selenium/webdriver/spec_helper.rb:40:in `block (2 levels) in <top (required)>'
    1433:  Finished in 0.06234 seconds (files took 0.73422 seconds to load)
    1434:  0 examples, 0 failures, 1 error occurred outside of examples
    1435:  ================================================================================
    1436:  �[32m[2,881 / 2,898]�[0m 6 / 27 tests, �[31m�[1m6 failed�[0m;�[0m Testing //rb/spec/integration/selenium/webdriver/edge:options-edge-remote; 53s local, disk-cache ... (4 actions, 2 running)
    1437:  �[32m[2,881 / 2,898]�[0m 6 / 27 tests, �[31m�[1m6 failed�[0m;�[0m Testing //rb/spec/integration/selenium/webdriver/edge:options-edge-remote; 59s local, disk-cache ... (4 actions, 3 running)
    1438:  �[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)
    1439:  ==================== Test output for //rb/spec/integration/selenium/webdriver/edge:options-edge-remote:
    1440:  2024-03-26 01:01:30 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
    1441:  �[31m�[1mFAILED: �[0m//rb/spec/integration/selenium/webdriver/edge:options-edge-remote (Summary)
    1442:  An error occurred in a `before(:suite)` hook.
    1443:  D:/_bazel/execroot/selenium/bazel-out/x64_windows-fastbuild/testlogs/rb/spec/integration/selenium/webdriver/edge/options-edge-remote/test.log
    1444:  Failure/Error: @pid = Process.spawn(*@command, options)
    ...
    
    1447:  Errno::EACCES:
    1448:  �[32mINFO: �[0mFrom Testing //rb/spec/integration/selenium/webdriver/edge:options-edge-remote:
    1449:  Permission denied - java
    1450:  # ./rb/lib/selenium/webdriver/common/child_process.rb:57:in `spawn'
    1451:  # ./rb/lib/selenium/webdriver/common/child_process.rb:57:in `start'
    1452:  # ./rb/lib/selenium/server.rb:204:in `start'
    1453:  # //?/D:/a/selenium/selenium/rb/spec/integration/selenium/webdriver/spec_helper.rb:40:in `block (2 levels) in <top (required)>'
    1454:  Finished in 0.06755 seconds (files took 0.80754 seconds to load)
    1455:  0 examples, 0 failures, 1 error occurred outside of examples
    1456:  ================================================================================
    1457:  ==================== Test output for //rb/spec/integration/selenium/webdriver/edge:options-edge-remote:
    1458:  2024-03-26 01:02:00 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
    1459:  An error occurred in a `before(:suite)` hook.
    1460:  Failure/Error: @pid = Process.spawn(*@command, options)
    1461:  Errno::EACCES:
    1462:  Permission denied - java
    1463:  # ./rb/lib/selenium/webdriver/common/child_process.rb:57:in `spawn'
    1464:  # ./rb/lib/selenium/webdriver/common/child_process.rb:57:in `start'
    1465:  # ./rb/lib/selenium/server.rb:204:in `start'
    1466:  # //?/D:/a/selenium/selenium/rb/spec/integration/selenium/webdriver/spec_helper.rb:40:in `block (2 levels) in <top (required)>'
    1467:  Finished in 0.07314 seconds (files took 0.84943 seconds to load)
    1468:  0 examples, 0 failures, 1 error occurred outside of examples
    1469:  ================================================================================
    1470:  ==================== Test output for //rb/spec/integration/selenium/webdriver/edge:options-edge-remote:
    1471:  2024-03-26 01:02:22 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
    1472:  An error occurred in a `before(:suite)` hook.
    1473:  Failure/Error: @pid = Process.spawn(*@command, options)
    1474:  Errno::EACCES:
    1475:  Permission denied - java
    1476:  # ./rb/lib/selenium/webdriver/common/child_process.rb:57:in `spawn'
    1477:  # ./rb/lib/selenium/webdriver/common/child_process.rb:57:in `start'
    1478:  # ./rb/lib/selenium/server.rb:204:in `start'
    1479:  # //?/D:/a/selenium/selenium/rb/spec/integration/selenium/webdriver/spec_helper.rb:40:in `block (2 levels) in <top (required)>'
    1480:  Finished in 0.07581 seconds (files took 0.86801 seconds to load)
    1481:  0 examples, 0 failures, 1 error occurred outside of examples
    1482:  ================================================================================
    1483:  �[32m[2,882 / 2,898]�[0m 7 / 27 tests, �[31m�[1m7 failed�[0m;�[0m Testing //rb/spec/integration/selenium/webdriver/edge:profile-edge-remote; 52s local, disk-cache ... (4 actions, 2 running)
    1484:  �[32m[2,882 / 2,898]�[0m 7 / 27 tests, �[31m�[1m7 failed�[0m;�[0m Testing //rb/spec/integration/selenium/webdriver/edge:profile-edge-remote; 59s local, disk-cache ... (4 actions, 2 running)
    1485:  �[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_attempts/attempt_1.log)
    1486:  �[32m[2,882 / 2,898]�[0m 7 / 27 tests, �[31m�[1m7 failed�[0m;�[0m Testing //rb/spec/integration/selenium/webdriver/edge:profile-edge-remote; 60s local, disk-cache ... (4 actions, 2 running)
    1487:  �[32m[2,882 / 2,898]�[0m 7 / 27 tests, �[31m�[1m7 failed�[0m;�[0m Testing //rb/spec/integration/selenium/webdriver/edge:profile-edge-remote; 62s local, disk-cache ... (4 actions, 2 running)
    1488:  �[32m[2,882 / 2,898]�[0m 7 / 27 tests, �[31m�[1m7 failed�[0m;�[0m Testing //rb/spec/integration/selenium/webdriver/edge:profile-edge-remote; 63s local, disk-cache ... (4 actions, 2 running)
    1489:  �[32m[2,882 / 2,898]�[0m 7 / 27 tests, �[31m�[1m7 failed�[0m;�[0m Testing //rb/spec/integration/selenium/webdriver/edge:profile-edge-remote; 66s local, disk-cache ... (4 actions, 2 running)
    1490:  �[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)
    1491:  ==================== Test output for //rb/spec/integration/selenium/webdriver/edge:profile-edge-remote:
    1492:  2024-03-26 01:01:38 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
    1493:  An error occurred in a `before(:suite)` hook.
    1494:  Failure/Error: @pid = Process.spawn(*@command, options)
    1495:  Errno::EACCES:
    1496:  Permission denied - java
    1497:  # ./rb/lib/selenium/webdriver/common/child_process.rb:57:in `spawn'
    1498:  # ./rb/lib/selenium/webdriver/common/child_process.rb:57:in `start'
    1499:  # ./rb/lib/selenium/server.rb:204:in `start'
    1500:  # //?/D:/a/selenium/selenium/rb/spec/integration/selenium/webdriver/spec_helper.rb:40:in `block (2 levels) in <top (required)>'
    1501:  Finished in 0.07047 seconds (files took 0.83047 seconds to load)
    1502:  0 examples, 0 failures, 1 error occurred outside of examples
    1503:  ================================================================================
    1504:  ==================== Test output for //rb/spec/integration/selenium/webdriver/edge:profile-edge-remote:
    1505:  2024-03-26 01:02:07 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
    1506:  An error occurred in a `before(:suite)` hook.
    1507:  Failure/Error: @pid = Process.spawn(*@command, options)
    1508:  Errno::EACCES:
    1509:  Permission denied - java
    1510:  # ./rb/lib/selenium/webdriver/common/child_process.rb:57:in `spawn'
    1511:  # ./rb/lib/selenium/webdriver/common/child_process.rb:57:in `start'
    1512:  # ./rb/lib/selenium/server.rb:204:in `start'
    1513:  # //?/D:/a/selenium/selenium/rb/spec/integration/selenium/webdriver/spec_helper.rb:40:in `block (2 levels) in <top (required)>'
    1514:  Finished in 0.06554 seconds (files took 0.82893 seconds to load)
    1515:  0 examples, 0 failures, 1 error occurred outside of examples
    1516:  ================================================================================
    1517:  ==================== Test output for //rb/spec/integration/selenium/webdriver/edge:profile-edge-remote:
    1518:  2024-03-26 01:02:38 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
    1519:  An error occurred in a `before(:suite)` hook.
    1520:  Failure/Error: @pid = Process.spawn(*@command, options)
    1521:  Errno::EACCES:
    1522:  Permission denied - java
    1523:  # ./rb/lib/selenium/webdriver/common/child_process.rb:57:in `spawn'
    1524:  # ./rb/lib/selenium/webdriver/common/child_process.rb:57:in `start'
    1525:  # ./rb/lib/selenium/server.rb:204:in `start'
    1526:  # //?/D:/a/selenium/selenium/rb/spec/integration/selenium/webdriver/spec_helper.rb:40:in `block (2 levels) in <top (required)>'
    1527:  Finished in 0.06268 seconds (files took 0.82588 seconds to load)
    1528:  0 examples, 0 failures, 1 error occurred outside of examples
    1529:  ================================================================================
    1530:  �[31m�[1mFAILED: �[0m//rb/spec/integration/selenium/webdriver/edge:profile-edge-remote (Summary)
    1531:  D:/_bazel/execroot/selenium/bazel-out/x64_windows-fastbuild/testlogs/rb/spec/integration/selenium/webdriver/edge/profile-edge-remote/test.log
    1532:  D:/_bazel/execroot/selenium/bazel-out/x64_windows-fastbuild/testlogs/rb/spec/integration/selenium/webdriver/edge/profile-edge-remote/test_attempts/attempt_1.log
    1533:  D:/_bazel/execroot/selenium/bazel-out/x64_windows-fastbuild/testlogs/rb/spec/integration/selenium/webdriver/edge/profile-edge-remote/test_attempts/attempt_2.log
    1534:  �[32mINFO: �[0mFrom Testing //rb/spec/integration/selenium/webdriver/edge:profile-edge-remote:
    1535:  �[32m[2,883 / 2,898]�[0m 8 / 27 tests, �[31m�[1m8 failed�[0m;�[0m Testing //rb/spec/integration/selenium/webdriver:target_locator-edge-remote; 16s local, disk-cache ... (4 actions, 2 running)
    1536:  �[32m[2,883 / 2,898]�[0m 8 / 27 tests, �[31m�[1m8 failed�[0m;�[0m Testing //rb/spec/integration/selenium/webdriver:target_locator-edge-remote; 17s local, disk-cache ... (4 actions, 2 running)
    1537:  �[32m[2,883 / 2,898]�[0m 8 / 27 tests, �[31m�[1m8 failed�[0m;�[0m Testing //rb/spec/integration/selenium/webdriver:target_locator-edge-remote; 23s local, disk-cache ... (4 actions, 2 running)
    1538:  �[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)
    1539:  �[32m[2,883 / 2,898]�[0m 8 / 27 tests, �[31m�[1m8 failed�[0m;�[0m Testing //rb/spec/integration/selenium/webdriver:target_locator-edge-remote; 24s local, disk-cache ... (4 actions, 2 running)
    1540:  �[32m[2,883 / 2,898]�[0m 8 / 27 tests, �[31m�[1m8 failed�[0m;�[0m Testing //rb/spec/integration/selenium/webdriver:target_locator-edge-remote; 25s local, disk-cache ... (4 actions, 2 running)
    1541:  �[32m[2,883 / 2,898]�[0m 8 / 27 tests, �[31m�[1m8 failed�[0m;�[0m Testing //rb/spec/integration/selenium/webdriver:target_locator-edge-remote; 26s local, disk-cache ... (4 actions, 2 running)
    1542:  �[32m[2,883 / 2,898]�[0m 8 / 27 tests, �[31m�[1m8 failed�[0m;�[0m Testing //rb/spec/integration/selenium/webdriver:target_locator-edge-remote; 28s local, disk-cache ... (4 actions, 2 running)
    1543:  �[32m[2,883 / 2,898]�[0m 8 / 27 tests, �[31m�[1m8 failed�[0m;�[0m Testing //rb/spec/integration/selenium/webdriver:target_locator-edge-remote; 30s local, disk-cache ... (4 actions, 3 running)
    1544:  �[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_attempts/attempt_2.log)
    1545:  �[32m[2,883 / 2,898]�[0m 8 / 27 tests, �[31m�[1m8 failed�[0m;�[0m Testing //rb/spec/integration/selenium/webdriver:target_locator-edge-remote; 32s local, disk-cache ... (4 actions, 3 running)
    1546:  �[32m[2,883 / 2,898]�[0m 8 / 27 tests, �[31m�[1m8 failed�[0m;�[0m Testing //rb/spec/integration/selenium/webdriver:target_locator-edge-remote; 38s local, disk-cache ... (4 actions, 3 running)
    1547:  �[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)
    1548:  �[32m[2,883 / 2,898]�[0m 8 / 27 tests, �[31m�[1m8 failed�[0m;�[0m Testing //rb/spec/integration/selenium/webdriver:target_locator-edge-remote; 39s local, disk-cache ... (4 actions, 3 running)
    1549:  �[32m[2,883 / 2,898]�[0m 8 / 27 tests, �[31m�[1m8 failed�[0m;�[0m Testing //rb/spec/integration/selenium/webdriver:target_locator-edge-remote; 45s local, disk-cache ... (4 actions running)
    1550:  �[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)
    1551:  �[32m[2,883 / 2,898]�[0m 8 / 27 tests, �[31m�[1m8 failed�[0m;�[0m Testing //rb/spec/integration/selenium/webdriver:target_locator-edge-remote; 46s local, disk-cache ... (4 actions running)
    1552:  �[32m[2,883 / 2,898]�[0m 8 / 27 tests, �[31m�[1m8 failed�[0m;�[0m Testing //rb/spec/integration/selenium/webdriver:target_locator-edge-remote; 52s local, disk-cache ... (4 actions running)
    1553:  �[31m�[1mFAIL: �[0m//rb/spec/integration/selenium/webdriver:navigation-edge-remote (see D:/_bazel/execroot/selenium/bazel-out/x64_windows-fastbuild/testlogs/rb/spec/integration/selenium/webdriver/navigation-edge-remote/test_attempts/attempt_1.log)
    1554:  �[32m[2,883 / 2,898]�[0m 8 / 27 tests, �[31m�[1m8 failed�[0m;�[0m Testing //rb/spec/integration/selenium/webdriver:target_locator-edge-remote; 53s local, disk-cache ... (4 actions running)
    1555:  �[32m[2,883 / 2,898]�[0m 8 / 27 tests, �[31m�[1m8 failed�[0m;�[0m Testing //rb/spec/integration/selenium/webdriver:target_locator-edge-remote; 56s local, disk-cache ... (4 actions running)
    1556:  �[32m[2,883 / 2,898]�[0m 8 / 27 tests, �[31m�[1m8 failed�[0m;�[0m Testing //rb/spec/integration/selenium/webdriver:target_locator-edge-remote; 59s local, disk-cache ... (4 actions running)
    1557:  �[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)
    1558:  �[31m�[1mFAILED: �[0m//rb/spec/integration/selenium/webdriver:target_locator-edge-remote (Summary)
    1559:  D:/_bazel/execroot/selenium/bazel-out/x64_windows-fastbuild/testlogs/rb/spec/integration/selenium/webdriver/target_locator-edge-remote/test.log
    1560:  D:/_bazel/execroot/selenium/bazel-out/x64_windows-fastbuild/testlogs/rb/spec/integration/selenium/webdriver/target_locator-edge-remote/test_attempts/attempt_1.log
    1561:  D:/_bazel/execroot/selenium/bazel-out/x64_windows-fastbuild/testlogs/rb/spec/integration/selenium/webdriver/target_locator-edge-remote/test_attempts/attempt_2.log
    1562:  �[32mINFO: �[0mFrom Testing //rb/spec/integration/selenium/webdriver:target_locator-edge-remote:
    1563:  ==================== Test output for //rb/spec/integration/selenium/webdriver:target_locator-edge-remote:
    1564:  2024-03-26 01:02:30 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
    1565:  An error occurred in a `before(:suite)` hook.
    1566:  Failure/Error: @pid = Process.spawn(*@command, options)
    1567:  Errno::EACCES:
    1568:  Permission denied - java
    1569:  # ./rb/lib/selenium/webdriver/common/child_process.rb:57:in `spawn'
    1570:  # ./rb/lib/selenium/webdriver/common/child_process.rb:57:in `start'
    1571:  # ./rb/lib/selenium/server.rb:204:in `start'
    1572:  # //?/D:/a/selenium/selenium/rb/spec/integration/selenium/webdriver/spec_helper.rb:40:in `block (2 levels) in <top (required)>'
    1573:  Finished in 0.0779 seconds (files took 1.03 seconds to load)
    1574:  0 examples, 0 failures, 1 error occurred outside of examples
    1575:  ================================================================================
    1576:  ==================== Test output for //rb/spec/integration/selenium/webdriver:target_locator-edge-remote:
    1577:  2024-03-26 01:02:53 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
    1578:  An error occurred in a `before(:suite)` hook.
    1579:  Failure/Error: @pid = Process.spawn(*@command, options)
    1580:  Errno::EACCES:
    1581:  Permission denied - java
    1582:  # ./rb/lib/selenium/webdriver/common/child_process.rb:57:in `spawn'
    1583:  # ./rb/lib/selenium/webdriver/common/child_process.rb:57:in `start'
    1584:  # ./rb/lib/selenium/server.rb:204:in `start'
    1585:  # //?/D:/a/selenium/selenium/rb/spec/integration/selenium/webdriver/spec_helper.rb:40:in `block (2 levels) in <top (required)>'
    1586:  Finished in 0.06762 seconds (files took 0.81012 seconds to load)
    1587:  0 examples, 0 failures, 1 error occurred outside of examples
    1588:  ================================================================================
    1589:  ==================== Test output for //rb/spec/integration/selenium/webdriver:target_locator-edge-remote:
    1590:  2024-03-26 01:03:22 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
    1591:  An error occurred in a `before(:suite)` hook.
    1592:  Failure/Error: @pid = Process.spawn(*@command, options)
    1593:  Errno::EACCES:
    1594:  Permission denied - java
    1595:  # ./rb/lib/selenium/webdriver/common/child_process.rb:57:in `spawn'
    1596:  # ./rb/lib/selenium/webdriver/common/child_process.rb:57:in `start'
    1597:  # ./rb/lib/selenium/server.rb:204:in `start'
    1598:  # //?/D:/a/selenium/selenium/rb/spec/integration/selenium/webdriver/spec_helper.rb:40:in `block (2 levels) in <top (required)>'
    1599:  Finished in 0.06601 seconds (files took 0.75209 seconds to load)
    1600:  0 examples, 0 failures, 1 error occurred outside of examples
    1601:  ================================================================================
    1602:  �[32m[2,884 / 2,898]�[0m 9 / 27 tests, �[31m�[1m9 failed�[0m;�[0m Testing //rb/spec/integration/selenium/webdriver:action_builder-edge-remote; 46s local, disk-cache ... (4 actions, 3 running)
    1603:  �[32m[2,884 / 2,898]�[0m 9 / 27 tests, �[31m�[1m9 failed�[0m;�[0m Testing //rb/spec/integration/selenium/webdriver:action_builder-edge-remote; 51s local, disk-cache ... (4 actions, 3 running)
    1604:  �[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)
    1605:  �[32m[2,884 / 2,898]�[0m 9 / 27 tests, �[31m�[1m9 failed�[0m;�[0m Testing //rb/spec/integration/selenium/webdriver:action_builder-edge-remote; 52s local, disk-cache ... (4 actions, 3 running)
    1606:  �[32m[2,884 / 2,898]�[0m 9 / 27 tests, �[31m�[1m9 failed�[0m;�[0m Testing //rb/spec/integration/selenium/webdriver:action_builder-edge-remote; 55s local, disk-cache ... (4 actions, 3 running)
    1607:  �[32m[2,884 / 2,898]�[0m 9 / 27 tests, �[31m�[1m9 failed�[0m;�[0m Testing //rb/spec/integration/selenium/webdriver:action_builder-edge-remote; 56s local, disk-cache ... (4 actions, 3 running)
    1608:  �[32m[2,884 / 2,898]�[0m 9 / 27 tests, �[31m�[1m9 failed�[0m;�[0m Testing //rb/spec/integration/selenium/webdriver:action_builder-edge-remote; 58s local, disk-cache ... (4 actions, 3 running)
    1609:  �[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)
    1610:  �[31m�[1mFAILED: �[0m//rb/spec/integration/selenium/webdriver:action_builder-edge-remote (Summary)
    1611:  ==================== Test output for //rb/spec/integration/selenium/webdriver:action_builder-edge-remote:
    1612:  D:/_bazel/execroot/selenium/bazel-out/x64_windows-fastbuild/testlogs/rb/spec/integration/selenium/webdriver/action_builder-edge-remote/test.log
    1613:  2024-03-26 01:02:45 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
    1614:  D:/_bazel/execroot/selenium/bazel-out/x64_windows-fastbuild/testlogs/rb/spec/integration/selenium/webdriver/action_builder-edge-remote/test_attempts/attempt_1.log
    1615:  D:/_bazel/execroot/selenium/bazel-out/x64_windows-fastbuild/testlogs/rb/spec/integration/selenium/webdriver/action_builder-edge-remote/test_attempts/attempt_2.log
    1616:  �[32mINFO: �[0mFrom Testing //rb/spec/integration/selenium/webdriver:action_builder-edge-remote:
    1617:  An error occurred in a `before(:suite)` hook.
    1618:  Failure/Error: @pid = Process.spawn(*@command, options)
    1619:  Errno::EACCES:
    1620:  Permission denied - java
    1621:  # ./rb/lib/selenium/webdriver/common/child_process.rb:57:in `spawn'
    1622:  # ./rb/lib/selenium/webdriver/common/child_process.rb:57:in `start'
    1623:  # ./rb/lib/selenium/server.rb:204:in `start'
    1624:  # //?/D:/a/selenium/selenium/rb/spec/integration/selenium/webdriver/spec_helper.rb:40:in `block (2 levels) in <top (required)>'
    1625:  Finished in 0.06935 seconds (files took 0.91506 seconds to load)
    1626:  0 examples, 0 failures, 1 error occurred outside of examples
    1627:  ================================================================================
    1628:  ==================== Test output for //rb/spec/integration/selenium/webdriver:action_builder-edge-remote:
    1629:  2024-03-26 01:03:07 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
    1630:  An error occurred in a `before(:suite)` hook.
    1631:  Failure/Error: @pid = Process.spawn(*@command, options)
    1632:  Errno::EACCES:
    1633:  Permission denied - java
    1634:  # ./rb/lib/selenium/webdriver/common/child_process.rb:57:in `spawn'
    1635:  # ./rb/lib/selenium/webdriver/common/child_process.rb:57:in `start'
    1636:  # ./rb/lib/selenium/server.rb:204:in `start'
    1637:  # //?/D:/a/selenium/selenium/rb/spec/integration/selenium/webdriver/spec_helper.rb:40:in `block (2 levels) in <top (required)>'
    1638:  Finished in 0.05924 seconds (files took 0.71315 seconds to load)
    1639:  0 examples, 0 failures, 1 error occurred outside of examples
    1640:  ================================================================================
    1641:  ==================== Test output for //rb/spec/integration/selenium/webdriver:action_builder-edge-remote:
    1642:  2024-03-26 01:03:36 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
    1643:  An error occurred in a `before(:suite)` hook.
    1644:  Failure/Error: @pid = Process.spawn(*@command, options)
    1645:  Errno::EACCES:
    1646:  Permission denied - java
    1647:  # ./rb/lib/selenium/webdriver/common/child_process.rb:57:in `spawn'
    1648:  # ./rb/lib/selenium/webdriver/common/child_process.rb:57:in `start'
    1649:  # ./rb/lib/selenium/server.rb:204:in `start'
    1650:  # //?/D:/a/selenium/selenium/rb/spec/integration/selenium/webdriver/spec_helper.rb:40:in `block (2 levels) in <top (required)>'
    1651:  Finished in 0.07413 seconds (files took 0.78199 seconds to load)
    1652:  0 examples, 0 failures, 1 error occurred outside of examples
    1653:  ================================================================================
    1654:  �[32m[2,885 / 2,898]�[0m 10 / 27 tests, �[31m�[1m10 failed�[0m;�[0m Testing //rb/spec/integration/selenium/webdriver:shadow_root-edge-remote; 44s local, disk-cache ... (4 actions, 2 running)
    1655:  �[32m[2,885 / 2,898]�[0m 10 / 27 tests, �[31m�[1m10 failed�[0m;�[0m Testing //rb/spec/integration/selenium/webdriver:shadow_root-edge-remote; 51s local, disk-cache ... (4 actions, 2 running)
    1656:  �[31m�[1mFAIL: �[0m//rb/spec/integration/selenium/webdriver:navigation-edge-remote (see D:/_bazel/execroot/selenium/bazel-out/x64_windows-fastbuild/testlogs/rb/spec/integration/selenium/webdriver/navigation-edge-remote/test_attempts/attempt_2.log)
    1657:  �[32m[2,885 / 2,898]�[0m 10 / 27 tests, �[31m�[1m10 failed�[0m;�[0m Testing //rb/spec/integration/selenium/webdriver:shadow_root-edge-remote; 52s local, disk-cache ... (4 actions, 2 running)
    1658:  �[32m[2,885 / 2,898]�[0m 10 / 27 tests, �[31m�[1m10 failed�[0m;�[0m Testing //rb/spec/integration/selenium/webdriver:shadow_root-edge-remote; 55s local, disk-cache ... (4 actions, 2 running)
    1659:  �[32m[2,885 / 2,898]�[0m 10 / 27 tests, �[31m�[1m10 failed�[0m;�[0m Testing //rb/spec/integration/selenium/webdriver:shadow_root-edge-remote; 56s local, disk-cache ... (4 actions, 2 running)
    1660:  �[32m[2,885 / 2,898]�[0m 10 / 27 tests, �[31m�[1m10 failed�[0m;�[0m Testing //rb/spec/integration/selenium/webdriver:shadow_root-edge-remote; 58s local, disk-cache ... (4 actions, 3 running)
    1661:  �[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)
    1662:  �[31m�[1mFAILED: �[0m//rb/spec/integration/selenium/webdriver:shadow_root-edge-remote (Summary)
    1663:  ==================== Test output for //rb/spec/integration/selenium/webdriver:shadow_root-edge-remote:
    1664:  D:/_bazel/execroot/selenium/bazel-out/x64_windows-fastbuild/testlogs/rb/spec/integration/selenium/webdriver/shadow_root-edge-remote/test.log
    1665:  2024-03-26 01:03: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
    1666:  D:/_bazel/execroot/selenium/bazel-out/x64_windows-fastbuild/testlogs/rb/spec/integration/selenium/webdriver/shadow_root-edge-remote/test_attempts/attempt_1.log
    1667:  D:/_bazel/execroot/selenium/bazel-out/x64_windows-fastbuild/testlogs/rb/spec/integration/selenium/webdriver/shadow_root-edge-remote/test_attempts/attempt_2.log
    1668:  �[32mINFO: �[0mFrom Testing //rb/spec/integration/selenium/webdriver:shadow_root-edge-remote:
    1669:  An error occurred in a `before(:suite)` hook.
    1670:  Failure/Error: @pid = Process.spawn(*@command, options)
    1671:  Errno::EACCES:
    1672:  Permission denied - java
    1673:  # ./rb/lib/selenium/webdriver/common/child_process.rb:57:in `spawn'
    1674:  # ./rb/lib/selenium/webdriver/common/child_process.rb:57:in `start'
    1675:  # ./rb/lib/selenium/server.rb:204:in `start'
    1676:  # //?/D:/a/selenium/selenium/rb/spec/integration/selenium/webdriver/spec_helper.rb:40:in `block (2 levels) in <top (required)>'
    1677:  Finished in 0.06423 seconds (files took 0.89056 seconds to load)
    1678:  0 examples, 0 failures, 1 error occurred outside of examples
    1679:  ================================================================================
    1680:  ==================== Test output for //rb/spec/integration/selenium/webdriver:shadow_root-edge-remote:
    1681:  2024-03-26 01:03:29 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
    1682:  An error occurred in a `before(:suite)` hook.
    1683:  Failure/Error: @pid = Process.spawn(*@command, options)
    1684:  Errno::EACCES:
    1685:  Permission denied - java
    1686:  # ./rb/lib/selenium/webdriver/common/child_process.rb:57:in `spawn'
    1687:  # ./rb/lib/selenium/webdriver/common/child_process.rb:57:in `start'
    1688:  # ./rb/lib/selenium/server.rb:204:in `start'
    1689:  # //?/D:/a/selenium/selenium/rb/spec/integration/selenium/webdriver/spec_helper.rb:40:in `block (2 levels) in <top (required)>'
    1690:  Finished in 0.0634 seconds (files took 0.79923 seconds to load)
    1691:  0 examples, 0 failures, 1 error occurred outside of examples
    1692:  ================================================================================
    1693:  ==================== Test output for //rb/spec/integration/selenium/webdriver:shadow_root-edge-remote:
    1694:  2024-03-26 01:03:51 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
    1695:  An error occurred in a `before(:suite)` hook.
    1696:  Failure/Error: @pid = Process.spawn(*@command, options)
    1697:  Errno::EACCES:
    1698:  Permission denied - java
    1699:  # ./rb/lib/selenium/webdriver/common/child_process.rb:57:in `spawn'
    1700:  # ./rb/lib/selenium/webdriver/common/child_process.rb:57:in `start'
    1701:  # ./rb/lib/selenium/server.rb:204:in `start'
    1702:  # //?/D:/a/selenium/selenium/rb/spec/integration/selenium/webdriver/spec_helper.rb:40:in `block (2 levels) in <top (required)>'
    1703:  Finished in 0.06724 seconds (files took 0.80873 seconds to load)
    1704:  0 examples, 0 failures, 1 error occurred outside of examples
    1705:  ================================================================================
    1706:  �[32m[2,886 / 2,898]�[0m 11 / 27 tests, �[31m�[1m11 failed�[0m;�[0m Testing //rb/spec/integration/selenium/webdriver:navigation-edge-remote; 45s local, disk-cache ... (4 actions, 2 running)
    1707:  �[32m[2,886 / 2,898]�[0m 11 / 27 tests, �[31m�[1m11 failed�[0m;�[0m Testing //rb/spec/integration/selenium/webdriver:navigation-edge-remote; 51s local, disk-cache ... (4 actions, 2 running)
    1708:  �[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)
    1709:  �[32m[2,886 / 2,898]�[0m 11 / 27 tests, �[31m�[1m11 failed�[0m;�[0m Testing //rb/spec/integration/selenium/webdriver:navigation-edge-remote; 52s local, disk-cache ... (4 actions, 2 running)
    1710:  �[32m[2,886 / 2,898]�[0m 11 / 27 tests, �[31m�[1m11 failed�[0m;�[0m Testing //rb/spec/integration/selenium/webdriver:navigation-edge-remote; 53s local, disk-cache ... (4 actions, 2 running)
    1711:  �[32m[2,886 / 2,898]�[0m 11 / 27 tests, �[31m�[1m11 failed�[0m;�[0m Testing //rb/spec/integration/selenium/webdriver:navigation-edge-remote; 55s local, disk-cache ... (4 actions, 2 running)
    1712:  �[32m[2,886 / 2,898]�[0m 11 / 27 tests, �[31m�[1m11 failed�[0m;�[0m Testing //rb/spec/integration/selenium/webdriver:navigation-edge-remote; 56s local, disk-cache ... (4 actions, 2 running)
    1713:  �[32m[2,886 / 2,898]�[0m 11 / 27 tests, �[31m�[1m11 failed�[0m;�[0m Testing //rb/spec/integration/selenium/webdriver:navigation-edge-remote; 58s local, disk-cache ... (4 actions, 3 running)
    1714:  �[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)
    1715:  �[31m�[1mFAILED: �[0m//rb/spec/integration/selenium/webdriver:navigation-edge-remote (Summary)
    1716:  D:/_bazel/execroot/selenium/bazel-out/x64_windows-fastbuild/testlogs/rb/spec/integration/selenium/webdriver/navigation-edge-remote/test.log
    1717:  D:/_bazel/execroot/selenium/bazel-out/x64_windows-fastbuild/testlogs/rb/spec/integration/selenium/webdriver/navigation-edge-remote/test_attempts/attempt_1.log
    1718:  D:/_bazel/execroot/selenium/bazel-out/x64_windows-fastbuild/testlogs/rb/spec/integration/selenium/webdriver/navigation-edge-remote/test_attempts/attempt_2.log
    1719:  �[32mINFO: �[0mFrom Testing //rb/spec/integration/selenium/webdriver:navigation-edge-remote:
    1720:  ==================== Test output for //rb/spec/integration/selenium/webdriver:navigation-edge-remote:
    1721:  2024-03-26 01:03:14 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
    1722:  An error occurred in a `before(:suite)` hook.
    1723:  Failure/Error: @pid = Process.spawn(*@command, options)
    1724:  Errno::EACCES:
    1725:  Permission denied - java
    1726:  # ./rb/lib/selenium/webdriver/common/child_process.rb:57:in `spawn'
    1727:  # ./rb/lib/selenium/webdriver/common/child_process.rb:57:in `start'
    1728:  # ./rb/lib/selenium/server.rb:204:in `start'
    1729:  # //?/D:/a/selenium/selenium/rb/spec/integration/selenium/webdriver/spec_helper.rb:40:in `block (2 levels) in <top (required)>'
    1730:  Finished in 0.06076 seconds (files took 0.7565 seconds to load)
    1731:  0 examples, 0 failures, 1 error occurred outside of examples
    1732:  ================================================================================
    1733:  ==================== Test output for //rb/spec/integration/selenium/webdriver:navigation-edge-remote:
    1734:  2024-03-26 01:03: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
    1735:  An error occurred in a `before(:suite)` hook.
    1736:  Failure/Error: @pid = Process.spawn(*@command, options)
    1737:  Errno::EACCES:
    1738:  Permission denied - java
    1739:  # ./rb/lib/selenium/webdriver/common/child_process.rb:57:in `spawn'
    1740:  # ./rb/lib/selenium/webdriver/common/child_process.rb:57:in `start'
    1741:  # ./rb/lib/selenium/server.rb:204:in `start'
    1742:  # //?/D:/a/selenium/selenium/rb/spec/integration/selenium/webdriver/spec_helper.rb:40:in `block (2 levels) in <top (required)>'
    1743:  Finished in 0.06309 seconds (files took 0.78916 seconds to load)
    1744:  0 examples, 0 failures, 1 error occurred outside of examples
    1745:  ================================================================================
    1746:  ==================== Test output for //rb/spec/integration/selenium/webdriver:navigation-edge-remote:
    1747:  2024-03-26 01:04:06 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
    1748:  An error occurred in a `before(:suite)` hook.
    1749:  Failure/Error: @pid = Process.spawn(*@command, options)
    1750:  Errno::EACCES:
    1751:  Permission denied - java
    1752:  # ./rb/lib/selenium/webdriver/common/child_process.rb:57:in `spawn'
    1753:  # ./rb/lib/selenium/webdriver/common/child_process.rb:57:in `start'
    1754:  # ./rb/lib/selenium/server.rb:204:in `start'
    1755:  # //?/D:/a/selenium/selenium/rb/spec/integration/selenium/webdriver/spec_helper.rb:40:in `block (2 levels) in <top (required)>'
    1756:  Finished in 0.06389 seconds (files took 0.80117 seconds to load)
    1757:  0 examples, 0 failures, 1 error occurred outside of examples
    1758:  ================================================================================
    1759:  �[32m[2,887 / 2,898]�[0m 12 / 27 tests, �[31m�[1m12 failed�[0m;�[0m Testing //rb/spec/integration/selenium/webdriver:window-edge-remote; 16s local, disk-cache ... (4 actions, 2 running)
    1760:  �[32m[2,887 / 2,898]�[0m 12 / 27 tests, �[31m�[1m12 failed�[0m;�[0m Testing //rb/spec/integration/selenium/webdriver:window-edge-remote; 22s local, disk-cache ... (4 actions, 2 running)
    1761:  �[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)
    1762:  �[32m[2,887 / 2,898]�[0m 12 / 27 tests, �[31m�[1m12 failed�[0m;�[0m Testing //rb/spec/integration/selenium/webdriver:window-edge-remote; 23s local, disk-cache ... (4 actions, 2 running)
    1763:  �[32m[2,887 / 2,898]�[0m 12 / 27 tests, �[31m�[1m12 failed�[0m;�[0m Testing //rb/spec/integration/selenium/webdriver:window-edge-remote; 24s local, disk-cache ... (4 actions, 2 running)
    1764:  �[32m[2,887 / 2,898]�[0m 12 / 27 tests, �[31m�[1m12 failed�[0m;�[0m Testing //rb/spec/integration/selenium/webdriver:window-edge-remote; 26s local, disk-cache ... (4 actions, 2 running)
    1765:  �[32m[2,887 / 2,898]�[0m 12 / 27 tests, �[31m�[1m12 failed�[0m;�[0m Testing //rb/spec/integration/selenium/webdriver:window-edge-remote; 28s local, disk-cache ... (4 actions, 2 running)
    1766:  �[32m[2,887 / 2,898]�[0m 12 / 27 tests, �[31m�[1m12 failed�[0m;�[0m Testing //rb/spec/integration/selenium/webdriver:window-edge-remote; 29s local, disk-cache ... (4 actions, 3 running)
    1767:  �[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)
    1768:  �[32m[2,887 / 2,898]�[0m 12 / 27 tests, �[31m�[1m12 failed�[0m;�[0m Testing //rb/spec/integration/selenium/webdriver:window-edge-remote; 31s local, disk-cache ... (4 actions, 3 running)
    1769:  �[32m[2,887 / 2,898]�[0m 12 / 27 tests, �[31m�[1m12 failed�[0m;�[0m Testing //rb/spec/integration/selenium/webdriver:window-edge-remote; 37s local, disk-cache ... (4 actions, 3 running)
    1770:  �[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)
    1771:  �[32m[2,887 / 2,898]�[0m 12 / 27 tests, �[31m�[1m12 failed�[0m;�[0m Testing //rb/spec/integration/selenium/webdriver:window-edge-remote; 38s local, disk-cache ... (4 actions, 3 running)
    1772:  �[32m[2,887 / 2,898]�[0m 12 / 27 tests, �[31m�[1m12 failed�[0m;�[0m Testing //rb/spec/integration/selenium/webdriver:window-edge-remote; 44s local, disk-cache ... (4 actions running)
    1773:  �[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)
    1774:  �[32m[2,887 / 2,898]�[0m 12 / 27 tests, �[31m�[1m12 failed�[0m;�[0m Testing //rb/spec/integration/selenium/webdriver:window-edge-remote; 45s local, disk-cache ... (4 actions running)
    1775:  �[32m[2,887 / 2,898]�[0m 12 / 27 tests, �[31m�[1m12 failed�[0m;�[0m Testing //rb/spec/integration/selenium/webdriver:window-edge-remote; 51s local, disk-cache ... (4 actions running)
    1776:  �[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)
    1777:  �[32m[2,887 / 2,898]�[0m 12 / 27 tests, �[31m�[1m12 failed�[0m;�[0m Testing //rb/spec/integration/selenium/webdriver:window-edge-remote; 52s local, disk-cache ... (4 actions running)
    1778:  �[32m[2,887 / 2,898]�[0m 12 / 27 tests, �[31m�[1m12 failed�[0m;�[0m Testing //rb/spec/integration/selenium/webdriver:window-edge-remote; 56s local, disk-cache ... (4 actions running)
    1779:  �[32m[2,887 / 2,898]�[0m 12 / 27 tests, �[31m�[1m12 failed�[0m;�[0m Testing //rb/spec/integration/selenium/webdriver:window-edge-remote; 58s local, disk-cache ... (4 actions running)
    1780:  �[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)
    1781:  ==================== Test output for //rb/spec/integration/selenium/webdriver:window-edge-remote:
    1782:  �[31m�[1mFAILED: �[0m//rb/spec/integration/selenium/webdriver:window-edge-remote (Summary)
    1783:  2024-03-26 01:03:58 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
    1784:  D:/_bazel/execroot/selenium/bazel-out/x64_windows-fastbuild/testlogs/rb/spec/integration/selenium/webdriver/window-edge-remote/test.log
    1785:  D:/_bazel/execroot/selenium/bazel-out/x64_windows-fastbuild/testlogs/rb/spec/integration/selenium/webdriver/window-edge-remote/test_attempts/attempt_1.log
    1786:  D:/_bazel/execroot/selenium/bazel-out/x64_windows-fastbuild/testlogs/rb/spec/integration/selenium/webdriver/window-edge-remote/test_attempts/attempt_2.log
    1787:  �[32mINFO: �[0mFrom Testing //rb/spec/integration/selenium/webdriver:window-edge-remote:
    1788:  An error occurred in a `before(:suite)` hook.
    1789:  Failure/Error: @pid = Process.spawn(*@command, options)
    1790:  Errno::EACCES:
    1791:  Permission denied - java
    1792:  # ./rb/lib/selenium/webdriver/common/child_process.rb:57:in `spawn'
    1793:  # ./rb/lib/selenium/webdriver/common/child_process.rb:57:in `start'
    1794:  # ./rb/lib/selenium/server.rb:204:in `start'
    1795:  # //?/D:/a/selenium/selenium/rb/spec/integration/selenium/webdriver/spec_helper.rb:40:in `block (2 levels) in <top (required)>'
    1796:  Finished in 0.05937 seconds (files took 0.79178 seconds to load)
    1797:  0 examples, 0 failures, 1 error occurred outside of examples
    1798:  ================================================================================
    1799:  ==================== Test output for //rb/spec/integration/selenium/webdriver:window-edge-remote:
    1800:  2024-03-26 01:04:21 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
    1801:  An error occurred in a `before(:suite)` hook.
    1802:  Failure/Error: @pid = Process.spawn(*@command, options)
    1803:  Errno::EACCES:
    1804:  Permission denied - java
    1805:  # ./rb/lib/selenium/webdriver/common/child_process.rb:57:in `spawn'
    1806:  # ./rb/lib/selenium/webdriver/common/child_process.rb:57:in `start'
    1807:  # ./rb/lib/selenium/server.rb:204:in `start'
    1808:  # //?/D:/a/selenium/selenium/rb/spec/integration/selenium/webdriver/spec_helper.rb:40:in `block (2 levels) in <top (required)>'
    1809:  Finished in 0.0655 seconds (files took 0.83159 seconds to load)
    1810:  0 examples, 0 failures, 1 error occurred outside of examples
    1811:  ================================================================================
    1812:  ==================== Test output for //rb/spec/integration/selenium/webdriver:window-edge-remote:
    1813:  2024-03-26 01:04:50 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
    1814:  An error occurred in a `before(:suite)` hook.
    1815:  Failure/Error: @pid = Process.spawn(*@command, options)
    1816:  Errno::EACCES:
    1817:  Permission denied - java
    1818:  # ./rb/lib/selenium/webdriver/common/child_process.rb:57:in `spawn'
    1819:  # ./rb/lib/selenium/webdriver/common/child_process.rb:57:in `start'
    1820:  # ./rb/lib/selenium/server.rb:204:in `start'
    1821:  # //?/D:/a/selenium/selenium/rb/spec/integration/selenium/webdriver/spec_helper.rb:40:in `block (2 levels) in <top (required)>'
    1822:  Finished in 0.05925 seconds (files took 0.74068 seconds to load)
    1823:  0 examples, 0 failures, 1 error occurred outside of examples
    1824:  ================================================================================
    1825:  �[32m[2,888 / 2,898]�[0m 13 / 27 tests, �[31m�[1m13 failed�[0m;�[0m Testing //rb/spec/integration/selenium/webdriver/remote:element-edge-remote; 44s local, disk-cache ... (4 actions, 3 running)
    1826:  �[32m[2,888 / 2,898]�[0m 13 / 27 tests, �[31m�[1m13 failed�[0m;�[0m Testing //rb/spec/integration/selenium/webdriver/remote:element-edge-remote; 51s local, disk-cache ... (4 actions, 3 running)
    1827:  �[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)
    1828:  �[32m[2,888 / 2,898]�[0m 13 / 27 tests, �[31m�[1m13 failed�[0m;�[0m Testing //rb/spec/integration/selenium/webdriver/remote:element-edge-remote; 52s local, disk-cache ... (4 actions, 3 running)
    1829:  �[32m[2,888 / 2,898]�[0m 13 / 27 tests, �[31m�[1m13 failed�[0m;�[0m Testing //rb/spec/integration/selenium/webdriver/remote:element-edge-remote; 53s local, disk-cache ... (4 actions, 3 running)
    1830:  �[32m[2,888 / 2,898]�[0m 13 / 27 tests, �[31m�[1m13 failed�[0m;�[0m Testing //rb/spec/integration/selenium/webdriver/remote:element-edge-remote; 54s local, disk-cache ... (4 actions, 3 running)
    1831:  �[32m[2,888 / 2,898]�[0m 13 / 27 tests, �[31m�[1m13 failed�[0m;�[0m Testing //rb/spec/integration/selenium/webdriver/remote:element-edge-remote; 56s local, disk-cache ... (4 actions, 3 running)
    1832:  �[32m[2,888 / 2,898]�[0m 13 / 27 tests, �[31m�[1m13 failed�[0m;�[0m Testing //rb/spec/integration/selenium/webdriver/remote:element-edge-remote; 59s local, disk-cache ... (4 actions, 3 running)
    1833:  �[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)
    1834:  �[31m�[1mFAILED: �[0m//rb/spec/integration/selenium/webdriver/remote:element-edge-remote (Summary)
    1835:  D:/_bazel/execroot/selenium/bazel-out/x64_windows-fastbuild/testlogs/rb/spec/integration/selenium/webdriver/remote/element-edge-remote/test.log
    1836:  D:/_bazel/execroot/selenium/bazel-out/x64_windows-fastbuild/testlogs/rb/spec/integration/selenium/webdriver/remote/element-edge-remote/test_attempts/attempt_1.log
    1837:  D:/_bazel/execroot/selenium/bazel-out/x64_windows-fastbuild/testlogs/rb/spec/integration/selenium/webdriver/remote/element-edge-remote/test_attempts/attempt_2.log
    1838:  �[32mINFO: �[0mFrom Testing //rb/spec/integration/selenium/webdriver/remote:element-edge-remote:
    1839:  ==================== Test output for //rb/spec/integration/selenium/webdriver/remote:element-edge-remote:
    1840:  2024-03-26 01:04:13 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
    1841:  An error occurred in a `before(:suite)` hook.
    1842:  Failure/Error: @pid = Process.spawn(*@command, options)
    1843:  Errno::EACCES:
    1844:  Permission denied - java
    1845:  # ./rb/lib/selenium/webdriver/common/child_process.rb:57:in `spawn'
    1846:  # ./rb/lib/selenium/webdriver/common/child_process.rb:57:in `start'
    1847:  # ./rb/lib/selenium/server.rb:204:in `start'
    1848:  # //?/D:/a/selenium/selenium/rb/spec/integration/selenium/webdriver/spec_helper.rb:40:in `block (2 levels) in <top (required)>'
    1849:  Finished in 0.07847 seconds (files took 0.88843 seconds to load)
    1850:  0 examples, 0 failures, 1 error occurred outside of examples
    1851:  ================================================================================
    1852:  ==================== Test output for //rb/spec/integration/selenium/webdriver/remote:element-edge-remote:
    1853:  2024-03-26 01:04:35 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
    1854:  An error occurred in a `before(:suite)` hook.
    1855:  Failure/Error: @pid = Process.spawn(*@command, options)
    1856:  Errno::EACCES:
    1857:  Permission denied - java
    1858:  # ./rb/lib/selenium/webdriver/common/child_process.rb:57:in `spawn'
    1859:  # ./rb/lib/selenium/webdriver/common/child_process.rb:57:in `start'
    1860:  # ./rb/lib/selenium/server.rb:204:in `start'
    1861:  # //?/D:/a/selenium/selenium/rb/spec/integration/selenium/webdriver/spec_helper.rb:40:in `block (2 levels) in <top (required)>'
    1862:  Finished in 0.05659 seconds (files took 0.75436 seconds to load)
    1863:  0 examples, 0 failures, 1 error occurred outside of examples
    1864:  ================================================================================
    1865:  ==================== Test output for //rb/spec/integration/selenium/webdriver/remote:element-edge-remote:
    1866:  2024-03-26 01:05:05 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
    1867:  An error occurred in a `before(:suite)` hook.
    1868:  Failure/Error: @pid = Process.spawn(*@command, options)
    1869:  Errno::EACCES:
    1870:  Permission denied - java
    1871:  # ./rb/lib/selenium/webdriver/common/child_process.rb:57:in `spawn'
    1872:  # ./rb/lib/selenium/webdriver/common/child_process.rb:57:in `start'
    1873:  # ./rb/lib/selenium/server.rb:204:in `start'
    1874:  # //?/D:/a/selenium/selenium/rb/spec/integration/selenium/webdriver/spec_helper.rb:40:in `block (2 levels) in <top (required)>'
    1875:  Finished in 0.07375 seconds (files took 1.02 seconds to load)
    1876:  0 examples, 0 failures, 1 error occurred outside of examples
    1877:  ================================================================================
    1878:  �[32m[2,889 / 2,898]�[0m 14 / 27 tests, �[31m�[1m14 failed�[0m;�[0m Testing //rb/spec/integration/selenium/webdriver:storage-edge-remote; 45s local, disk-cache ... (4 actions, 2 running)
    1879:  �[32m[2,889 / 2,898]�[0m 14 / 27 tests, �[31m�[1m14 failed�[0m;�[0m Testing //rb/spec/integration/selenium/webdriver:storage-edge-remote; 51s local, disk-cache ... (4 actions, 2 running)
    1880:  �[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)
    1881:  �[32m[2,889 / 2,898]�[0m 14 / 27 tests, �[31m�[1m14 failed�[0m;�[0m Testing //rb/spec/integration/selenium/webdriver:storage-edge-remote; 52s local, disk-cache ... (4 actions, 2 running)
    1882:  �[32m[2,889 / 2,898]�[0m 14 / 27 tests, �[31m�[1m14 failed�[0m;�[0m Testing //rb/spec/integration/selenium/webdriver:storage-edge-remote; 53s local, disk-cache ... (4 actions, 2 running)
    1883:  �[32m[2,889 / 2,898]�[0m 14 / 27 tests, �[31m�[1m14 failed�[0m;�[0m Testing //rb/spec/integration/selenium/webdriver:storage-edge-remote; 55s local, disk-cache ... (4 actions, 2 running)
    1884:  �[32m[2,889 / 2,898]�[0m 14 / 27 tests, �[31m�[1m14 failed�[0m;�[0m Testing //rb/spec/integration/selenium/webdriver:storage-edge-remote; 56s local, disk-cache ... (4 actions, 2 running)
    1885:  �[32m[2,889 / 2,898]�[0m 14 / 27 tests, �[31m�[1m14 failed�[0m;�[0m Testing //rb/spec/integration/selenium/webdriver:storage-edge-remote; 58s local, disk-cache ... (4 actions, 3 running)
    1886:  �[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)
    1887:  ==================== Test output for //rb/spec/integration/selenium/webdriver:storage-edge-remote:
    1888:  �[31m�[1mFAILED: �[0m//rb/spec/integration/selenium/webdriver:storage-edge-remote (Summary)
    1889:  2024-03-26 01:04:28 INFO Selenium Server Location: D:/_bazel/execroot/selenium/bazel-out/x64_windows-fastbuild/bin/rb/spec/integration/selenium/webdriver/storage-edge-remote.cmd.runfiles/selenium/java/src/org/openqa/selenium/grid/selenium_server_deploy.jar
    1890:  D:/_bazel/execroot/selenium/bazel-out/x64_windows-fastbuild/testlogs/rb/spec/integration/selenium/webdriver/storage-edge-remote/test.log
    1891:  D:/_bazel/execroot/selenium/bazel-out/x64_windows-fastbuild/testlogs/rb/spec/integration/selenium/webdriver/storage-edge-remote/test_attempts/attempt_1.log
    1892:  D:/_bazel/execroot/selenium/bazel-out/x64_windows-fastbuild/testlogs/rb/spec/integration/selenium/webdriver/storage-edge-remote/test_attempts/attempt_2.log
    1893:  An error occurred in a `before(:suite)` hook.
    1894:  Failure/Error: @pid = Process.spawn(*@command, options)
    1895:  �[32mINFO: �[0mFrom Testing //rb/spec/integration/selenium/webdriver:storage-edge-remote:
    1896:  Errno::EACCES:
    1897:  Permission denied - java
    1898:  # ./rb/lib/selenium/webdriver/common/child_process.rb:57:in `spawn'
    1899:  # ./rb/lib/selenium/webdriver/common/child_process.rb:57:in `start'
    1900:  # ./rb/lib/selenium/server.rb:204:in `start'
    1901:  # //?/D:/a/selenium/selenium/rb/spec/integration/selenium/webdriver/spec_helper.rb:40:in `block (2 levels) in <top (required)>'
    1902:  Finished in 0.0658 seconds (files took 0.75056 seconds to load)
    1903:  0 examples, 0 failures, 1 error occurred outside of examples
    1904:  ================================================================================
    1905:  ==================== Test output for //rb/spec/integration/selenium/webdriver:storage-edge-remote:
    1906:  2024-03-26 01:04: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
    1907:  An error occurred in a `before(:suite)` hook.
    1908:  Failure/Error: @pid = Process.spawn(*@command, options)
    1909:  Errno::EACCES:
    1910:  Permission denied - java
    1911:  # ./rb/lib/selenium/webdriver/common/child_process.rb:57:in `spawn'
    1912:  # ./rb/lib/selenium/webdriver/common/child_process.rb:57:in `start'
    1913:  # ./rb/lib/selenium/server.rb:204:in `start'
    1914:  # //?/D:/a/selenium/selenium/rb/spec/integration/selenium/webdriver/spec_helper.rb:40:in `block (2 levels) in <top (required)>'
    1915:  Finished in 0.06411 seconds (files took 0.80497 seconds to load)
    1916:  0 examples, 0 failures, 1 error occurred outside of examples
    1917:  ================================================================================
    1918:  ==================== Test output for //rb/spec/integration/selenium/webdriver:storage-edge-remote:
    1919:  2024-03-26 01:05:20 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
    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.06818 seconds (files took 0.8366 seconds to load)
    1929:  0 examples, 0 failures, 1 error occurred outside of examples
    1930:  ================================================================================
    1931:  �[32m[2,890 / 2,898]�[0m 15 / 27 tests, �[31m�[1m15 failed�[0m;�[0m Testing //rb/spec/integration/selenium/webdriver:driver-edge-remote; 45s local, disk-cache ... (4 actions, 2 running)
    1932:  �[32m[2,890 / 2,898]�[0m 15 / 27 tests, �[31m�[1m15 failed�[0m;�[0m Testing //rb/spec/integration/selenium/webdriver:driver-edge-remote; 51s local, disk-cache ... (4 actions, 2 running)
    1933:  �[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)
    1934:  �[32m[2,890 / 2,898]�[0m 15 / 27 tests, �[31m�[1m15 failed�[0m;�[0m Testing //rb/spec/integration/selenium/webdriver:driver-edge-remote; 53s local, disk-cache ... (4 actions, 2 running)
    1935:  �[32m[2,890 / 2,898]�[0m 15 / 27 tests, �[31m�[1m15 failed�[0m;�[0m Testing //rb/spec/integration/selenium/webdriver:driver-edge-remote; 54s local, disk-cache ... (4 actions, 2 running)
    1936:  �[32m[2,890 / 2,898]�[0m 15 / 27 tests, �[31m�[1m15 failed�[0m;�[0m Testing //rb/spec/integration/selenium/webdriver:driver-edge-remote; 55s local, disk-cache ... (4 actions, 2 running)
    1937:  �[32m[2,890 / 2,898]�[0m 15 / 27 tests, �[31m�[1m15 failed�[0m;�[0m Testing //rb/spec/integration/selenium/webdriver:driver-edge-remote; 57s local, disk-cache ... (4 actions, 2 running)
    1938:  �[32m[2,890 / 2,898]�[0m 15 / 27 tests, �[31m�[1m15 failed�[0m;�[0m Testing //rb/spec/integration/selenium/webdriver:driver-edge-remote; 59s local, disk-cache ... (4 actions, 3 running)
    1939:  �[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)
    1940:  �[31m�[1mFAILED: �[0m//rb/spec/integration/selenium/webdriver:driver-edge-remote (Summary)
    1941:  D:/_bazel/execroot/selenium/bazel-out/x64_windows-fastbuild/testlogs/rb/spec/integration/selenium/webdriver/driver-edge-remote/test.log
    1942:  D:/_bazel/execroot/selenium/bazel-out/x64_windows-fastbuild/testlogs/rb/spec/integration/selenium/webdriver/driver-edge-remote/test_attempts/attempt_1.log
    1943:  D:/_bazel/execroot/selenium/bazel-out/x64_windows-fastbuild/testlogs/rb/spec/integration/selenium/webdriver/driver-edge-remote/test_attempts/attempt_2.log
    1944:  �[32mINFO: �[0mFrom Testing //rb/spec/integration/selenium/webdriver:driver-edge-remote:
    1945:  ==================== Test output for //rb/spec/integration/selenium/webdriver:driver-edge-remote:
    1946:  2024-03-26 01:04:42 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
    1947:  An error occurred in a `before(:suite)` hook.
    1948:  Failure/Error: @pid = Process.spawn(*@command, options)
    1949:  Errno::EACCES:
    1950:  Permission denied - java
    1951:  # ./rb/lib/selenium/webdriver/common/child_process.rb:57:in `spawn'
    1952:  # ./rb/lib/selenium/webdriver/common/child_process.rb:57:in `start'
    1953:  # ./rb/lib/selenium/server.rb:204:in `start'
    1954:  # //?/D:/a/selenium/selenium/rb/spec/integration/selenium/webdriver/spec_helper.rb:40:in `block (2 levels) in <top (required)>'
    1955:  Finished in 0.0613 seconds (files took 0.75175 seconds to load)
    1956:  0 examples, 0 failures, 1 error occurred outside of examples
    1957:  ================================================================================
    1958:  ==================== Test output for //rb/spec/integration/selenium/webdriver:driver-edge-remote:
    1959:  2024-03-26 01:05:12 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
    1960:  An error occurred in a `before(:suite)` hook.
    1961:  Failure/Error: @pid = Process.spawn(*@command, options)
    1962:  Errno::EACCES:
    1963:  Permission denied - java
    1964:  # ./rb/lib/selenium/webdriver/common/child_process.rb:57:in `spawn'
    1965:  # ./rb/lib/selenium/webdriver/common/child_process.rb:57:in `start'
    1966:  # ./rb/lib/selenium/server.rb:204:in `start'
    1967:  # //?/D:/a/selenium/selenium/rb/spec/integration/selenium/webdriver/spec_helper.rb:40:in `block (2 levels) in <top (required)>'
    1968:  Finished in 0.07358 seconds (files took 0.87062 seconds to load)
    1969:  0 examples, 0 failures, 1 error occurred outside of examples
    1970:  ================================================================================
    1971:  ==================== Test output for //rb/spec/integration/selenium/webdriver:driver-edge-remote:
    1972:  2024-03-26 01:05:35 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
    1973:  An error occurred in a `before(:suite)` hook.
    1974:  Failure/Error: @pid = Process.spawn(*@command, options)
    1975:  Errno::EACCES:
    1976:  Permission denied - java
    1977:  # ./rb/lib/selenium/webdriver/common/child_process.rb:57:in `spawn'
    1978:  # ./rb/lib/selenium/webdriver/common/child_process.rb:57:in `start'
    1979:  # ./rb/lib/selenium/server.rb:204:in `start'
    1980:  # //?/D:/a/selenium/selenium/rb/spec/integration/selenium/webdriver/spec_helper.rb:40:in `block (2 levels) in <top (required)>'
    1981:  Finished in 0.06411 seconds (files took 0.83178 seconds to load)
    1982:  0 examples, 0 failures, 1 error occurred outside of examples
    1983:  ================================================================================
    1984:  �[32m[2,891 / 2,898]�[0m 16 / 27 tests, �[31m�[1m16 failed�[0m;�[0m Testing //rb/spec/integration/selenium/webdriver:virtual_authenticator-edge-remote; 16s local, disk-cache ... (4 actions, 2 running)
    1985:  �[32m[2,891 / 2,898]�[0m 16 / 27 tests, �[31m�[1m16 failed�[0m;�[0m Testing //rb/spec/integration/selenium/webdriver:virtual_authenticator-edge-remote; 22s local, disk-cache ... (4 actions, 2 running)
    1986:  �[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)
    1987:  �[32m[2,891 / 2,898]�[0m 16 / 27 tests, �[31m�[1m16 failed�[0m;�[0m Testing //rb/spec/integration/selenium/webdriver:virtual_authenticator-edge-remote; 23s local, disk-cache ... (4 actions, 2 running)
    1988:  �[32m[2,891 / 2,898]�[0m 16 / 27 tests, �[31m�[1m16 failed�[0m;�[0m Testing //rb/spec/integration/selenium/webdriver:virtual_authenticator-edge-remote; 25s local, disk-cache ... (4 actions, 2 running)
    1989:  �[32m[2,891 / 2,898]�[0m 16 / 27 tests, �[31m�[1m16 failed�[0m;�[0m Testing //rb/spec/integration/selenium/webdriver:virtual_authenticator-edge-remote; 26s local, disk-cache ... (4 actions, 2 running)
    1990:  �[32m[2,891 / 2,898]�[0m 16 / 27 tests, �[31m�[1m16 failed�[0m;�[0m Testing //rb/spec/integration/selenium/webdriver:virtual_authenticator-edge-remote; 27s local, disk-cache ... (4 actions, 2 running)
    1991:  �[32m[2,891 / 2,898]�[0m 16 / 27 tests, �[31m�[1m16 failed�[0m;�[0m Testing //rb/spec/integration/selenium/webdriver:virtual_authenticator-edge-remote; 29s local, disk-cache ... (4 actions, 3 running)
    1992:  �[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)
    1993:  �[32m[2,891 / 2,898]�[0m 16 / 27 tests, �[31m�[1m16 failed�[0m;�[0m Testing //rb/spec/integration/selenium/webdriver:virtual_authenticator-edge-remote; 31s local, disk-cache ... (4 actions, 3 running)
    1994:  �[32m[2,891 / 2,898]�[0m 16 / 27 tests, �[31m�[1m16 failed�[0m;�[0m Testing //rb/spec/integration/selenium/webdriver:virtual_authenticator-edge-remote; 36s local, disk-cache ... (4 actions, 3 running)
    1995:  �[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)
    1996:  �[32m[2,891 / 2,898]�[0m 16 / 27 tests, �[31m�[1m16 failed�[0m;�[0m Testing //rb/spec/integration/selenium/webdriver:virtual_authenticator-edge-remote; 38s local, disk-cache ... (4 actions, 3 running)
    1997:  �[32m[2,891 / 2,898]�[0m 16 / 27 tests, �[31m�[1m16 failed�[0m;�[0m Testing //rb/spec/integration/selenium/webdriver:virtual_authenticator-edge-remote; 43s local, disk-cache ... (4 actions running)
    1998:  �[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)
    1999:  �[32m[2,891 / 2,898]�[0m 16 / 27 tests, �[31m�[1m16 failed�[0m;�[0m Testing //rb/spec/integration/selenium/webdriver:virtual_authenticator-edge-remote; 45s local, disk-cache ... (4 actions running)
    2000:  �[32m[2,891 / 2,898]�[0m 16 / 27 tests, �[31m�[1m16 failed�[0m;�[0m Testing //rb/spec/integration/selenium/webdriver:virtual_authenticator-edge-remote; 51s local, disk-cache ... (4 actions running)
    2001:  �[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)
    2002:  �[32m[2,891 / 2,898]�[0m 16 / 27 tests, �[31m�[1m16 failed�[0m;�[0m Testing //rb/spec/integration/selenium/webdriver:virtual_authenticator-edge-remote; 52s local, disk-cache ... (4 actions running)
    2003:  �[32m[2,891 / 2,898]�[0m 16 / 27 tests, �[31m�[1m16 failed�[0m;�[0m Testing //rb/spec/integration/selenium/webdriver:virtual_authenticator-edge-remote; 56s local, disk-cache ... (4 actions running)
    2004:  �[32m[2,891 / 2,898]�[0m 16 / 27 tests, �[31m�[1m16 failed�[0m;�[0m Testing //rb/spec/integration/selenium/webdriver:virtual_authenticator-edge-remote; 58s local, disk-cache ... (4 actions running)
    2005:  �[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)
    2006:  ==================== Test output for //rb/spec/integration/selenium/webdriver:virtual_authenticator-edge-remote:
    2007:  2024-03-26 01:05: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
    2008:  �[31m�[1mFAILED: �[0m//rb/spec/integration/selenium/webdriver:virtual_authenticator-edge-remote (Summary)
    2009:  D:/_bazel/execroot/selenium/bazel-out/x64_windows-fastbuild/testlogs/rb/spec/integration/selenium/webdriver/virtual_authenticator-edge-remote/test.log
    2010:  An error occurred in a `before(:suite)` hook.
    2011:  D:/_bazel/execroot/selenium/bazel-out/x64_windows-fastbuild/testlogs/rb/spec/integration/selenium/webdriver/virtual_authenticator-edge-remote/test_attempts/attempt_1.log
    2012:  D:/_bazel/execroot/selenium/bazel-out/x64_windows-fastbuild/testlogs/rb/spec/integration/selenium/webdriver/virtual_authenticator-edge-remote/test_attempts/attempt_2.log
    2013:  Failure/Error: @pid = Process.spawn(*@command, options)
    2014:  Errno::EACCES:
    2015:  Permission denied - java
    2016:  # ./rb/lib/selenium/webdriver/common/child_process.rb:57:in `spawn'
    2017:  # ./rb/lib/selenium/webdriver/common/child_process.rb:57:in `start'
    2018:  # ./rb/lib/selenium/server.rb:204:in `start'
    2019:  # //?/D:/a/selenium/selenium/rb/spec/integration/selenium/webdriver/spec_helper.rb:40:in `block (2 levels) in <top (required)>'
    2020:  Finished in 0.07029 seconds (files took 0.8975 seconds to load)
    2021:  0 examples, 0 failures, 1 error occurred outside of examples
    2022:  ================================================================================
    2023:  ==================== Test output for //rb/spec/integration/selenium/webdriver:virtual_authenticator-edge-remote:
    2024:  2024-03-26 01:05:49 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
    2025:  An error occurred in a `before(:suite)` hook.
    2026:  Failure/Error: @pid = Process.spawn(*@command, options)
    2027:  Errno::EACCES:
    2028:  Permission denied - java
    2029:  # ./rb/lib/selenium/webdriver/common/child_process.rb:57:in `spawn'
    2030:  # ./rb/lib/selenium/webdriver/common/child_process.rb:57:in `start'
    2031:  # ./rb/lib/selenium/server.rb:204:in `start'
    2032:  # //?/D:/a/selenium/selenium/rb/spec/integration/selenium/webdriver/spec_helper.rb:40:in `block (2 levels) in <top (required)>'
    2033:  Finished in 0.06359 seconds (files took 0.79877 seconds to load)
    2034:  0 examples, 0 failures, 1 error occurred outside of examples
    2035:  ================================================================================
    2036:  ==================== Test output for //rb/spec/integration/selenium/webdriver:virtual_authenticator-edge-remote:
    2037:  2024-03-26 01:06:18 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
    2038:  An error occurred in a `before(:suite)` hook.
    2039:  Failure/Error: @pid = Process.spawn(*@command, options)
    2040:  Errno::EACCES:
    2041:  Permission denied - java
    2042:  # ./rb/lib/selenium/webdriver/common/child_process.rb:57:in `spawn'
    2043:  # ./rb/lib/selenium/webdriver/common/child_process.rb:57:in `start'
    2044:  # ./rb/lib/selenium/server.rb:204:in `start'
    2045:  # //?/D:/a/selenium/selenium/rb/spec/integration/selenium/webdriver/spec_helper.rb:40:in `block (2 levels) in <top (required)>'
    2046:  Finished in 0.0614 seconds (files took 0.72688 seconds to load)
    2047:  0 examples, 0 failures, 1 error occurred outside of examples
    2048:  ================================================================================
    2049:  �[32mINFO: �[0mFrom Testing //rb/spec/integration/selenium/webdriver:virtual_authenticator-edge-remote:
    2050:  �[32m[2,892 / 2,898]�[0m 17 / 27 tests, �[31m�[1m17 failed�[0m;�[0m Testing //rb/spec/integration/selenium/webdriver:manager-edge-remote; 44s local, disk-cache ... (4 actions, 3 running)
    2051:  �[32m[2,892 / 2,898]�[0m 17 / 27 tests, �[31m�[1m17 failed�[0m;�[0m Testing //rb/spec/integration/selenium/webdriver:manager-edge-remote; 50s local, disk-cache ... (4 actions, 3 running)
    2052:  �[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)
    2053:  �[32m[2,892 / 2,898]�[0m 17 / 27 tests, �[31m�[1m17 failed�[0m;�[0m Testing //rb/spec/integration/selenium/webdriver:manager-edge-remote; 51s local, disk-cache ... (4 actions, 3 running)
    2054:  �[32m[2,892 / 2,898]�[0m 17 / 27 tests, �[31m�[1m17 failed�[0m;�[0m Testing //rb/spec/integration/selenium/webdriver:manager-edge-remote; 54s local, disk-cache ... (4 actions, 3 running)
    2055:  �[32m[2,892 / 2,898]�[0m 17 / 27 tests, �[31m�[1m17 failed�[0m;�[0m Testing //rb/spec/integration/selenium/webdriver:manager-edge-remote; 55s local, disk-cache ... (4 actions, 3 running)
    2056:  �[32m[2,892 / 2,898]�[0m 17 / 27 tests, �[31m�[1m17 failed�[0m;�[0m Testing //rb/spec/integration/selenium/webdriver:manager-edge-remote; 57s local, disk-cache ... (4 actions, 3 running)
    2057:  �[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)
    2058:  �[31m�[1mFAILED: �[0m//rb/spec/integration/selenium/webdriver:manager-edge-remote (Summary)
    2059:  D:/_bazel/execroot/selenium/bazel-out/x64_windows-fastbuild/testlogs/rb/spec/integration/selenium/webdriver/manager-edge-remote/test.log
    2060:  ==================== Test output for //rb/spec/integration/selenium/webdriver:manager-edge-remote:
    2061:  2024-03-26 01:05:42 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
    2062:  D:/_bazel/execroot/selenium/bazel-out/x64_windows-fastbuild/testlogs/rb/spec/integration/selenium/webdriver/manager-edge-remote/test_attempts/attempt_1.log
    2063:  D:/_bazel/execroot/selenium/bazel-out/x64_windows-fastbuild/testlogs/rb/spec/integration/selenium/webdriver/manager-edge-remote/test_attempts/attempt_2.log
    2064:  �[32mINFO: �[0mFrom Testing //rb/spec/integration/selenium/webdriver:manager-edge-remote:
    2065:  An error occurred in a `before(:suite)` hook.
    2066:  Failure/Error: @pid = Process.spawn(*@command, options)
    2067:  Errno::EACCES:
    2068:  Permission denied - java
    2069:  # ./rb/lib/selenium/webdriver/common/child_process.rb:57:in `spawn'
    2070:  # ./rb/lib/selenium/webdriver/common/child_process.rb:57:in `start'
    2071:  # ./rb/lib/selenium/server.rb:204:in `start'
    2072:  # //?/D:/a/selenium/selenium/rb/spec/integration/selenium/webdriver/spec_helper.rb:40:in `block (2 levels) in <top (required)>'
    2073:  Finished in 0.07106 seconds (files took 0.87784 seconds to load)
    2074:  0 examples, 0 failures, 1 error occurred outside of examples
    2075:  ================================================================================
    2076:  ==================== Test output for //rb/spec/integration/selenium/webdriver:manager-edge-remote:
    2077:  2024-03-26 01:06:04 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
    2078:  An error occurred in a `before(:suite)` hook.
    2079:  Failure/Error: @pid = Process.spawn(*@command, options)
    2080:  Errno::EACCES:
    2081:  Permission denied - java
    2082:  # ./rb/lib/selenium/webdriver/common/child_process.rb:57:in `spawn'
    2083:  # ./rb/lib/selenium/webdriver/common/child_process.rb:57:in `start'
    2084:  # ./rb/lib/selenium/server.rb:204:in `start'
    2085:  # //?/D:/a/selenium/selenium/rb/spec/integration/selenium/webdriver/spec_helper.rb:40:in `block (2 levels) in <top (required)>'
    2086:  Finished in 0.0639 seconds (files took 0.71264 seconds to load)
    2087:  0 examples, 0 failures, 1 error occurred outside of examples
    2088:  ================================================================================
    2089:  ==================== Test output for //rb/spec/integration/selenium/webdriver:manager-edge-remote:
    2090:  2024-03-26 01:06: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
    2091:  An error occurred in a `before(:suite)` hook.
    2092:  Failure/Error: @pid = Process.spawn(*@command, options)
    2093:  Errno::EACCES:
    2094:  Permission denied - java
    2095:  # ./rb/lib/selenium/webdriver/common/child_process.rb:57:in `spawn'
    2096:  # ./rb/lib/selenium/webdriver/common/child_process.rb:57:in `start'
    2097:  # ./rb/lib/selenium/server.rb:204:in `start'
    2098:  # //?/D:/a/selenium/selenium/rb/spec/integration/selenium/webdriver/spec_helper.rb:40:in `block (2 levels) in <top (required)>'
    2099:  Finished in 0.06423 seconds (files took 0.77887 seconds to load)
    2100:  0 examples, 0 failures, 1 error occurred outside of examples
    2101:  ================================================================================
    2102:  �[32m[2,893 / 2,898]�[0m 18 / 27 tests, �[31m�[1m18 failed�[0m;�[0m Testing //rb/spec/integration/selenium/webdriver/edge:service-edge-remote; 44s local, disk-cache ... (4 actions, 2 running)
    2103:  �[32m[2,893 / 2,898]�[0m 18 / 27 tests, �[31m�[1m18 failed�[0m;�[0m Testing //rb/spec/integration/selenium/webdriver/edge:service-edge-remote; 50s local, disk-cache ... (4 actions, 2 running)
    2104:  �[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)
    2105:  �[32m[2,893 / 2,898]�[0m 18 / 27 tests, �[31m�[1m18 failed�[0m;�[0m Testing //rb/spec/integration/selenium/webdriver/edge:service-edge-remote; 51s local, disk-cache ... (4 actions, 2 running)
    2106:  �[32m[2,893 / 2,898]�[0m 18 / 27 tests, �[31m�[1m18 failed�[0m;�[0m Testing //rb/spec/integration/selenium/webdriver/edge:service-edge-remote; 54s local, disk-cache ... (4 actions, 2 running)
    2107:  �[32m[2,893 / 2,898]�[0m 18 / 27 tests, �[31m�[1m18 failed�[0m;�[0m Testing //rb/spec/integration/selenium/webdriver/edge:service-edge-remote; 56s local, disk-cache ... (4 actions, 2 running)
    2108:  �[32m[2,893 / 2,898]�[0m 18 / 27 tests, �[31m�[1m18 failed�[0m;�[0m Testing //rb/spec/integration/selenium/webdriver/edge:service-edge-remote; 57s local, disk-cache ... (4 actions, 3 running)
    2109:  �[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)
    2110:  �[31m�[1mFAILED: �[0m//rb/spec/integration/selenium/webdriver/edge:service-edge-remote (Summary)
    2111:  D:/_bazel/execroot/selenium/bazel-out/x64_windows-fastbuild/testlogs/rb/spec/integration/selenium/webdriver/edge/service-edge-remote/test.log
    2112:  D:/_bazel/execroot/selenium/bazel-out/x64_windows-fastbuild/testlogs/rb/spec/integration/selenium/webdriver/edge/service-edge-remote/test_attempts/attempt_1.log
    2113:  D:/_bazel/execroot/selenium/bazel-out/x64_windows-fastbuild/testlogs/rb/spec/integration/selenium/webdriver/edge/service-edge-remote/test_attempts/attempt_2.log
    2114:  �[32mINFO: �[0mFrom Testing //rb/spec/integration/selenium/webdriver/edge:service-edge-remote:
    2115:  ==================== Test output for //rb/spec/integration/selenium/webdriver/edge:service-edge-remote:
    2116:  2024-03-26 01:05:57 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
    2117:  An error occurred in a `before(:suite)` hook.
    2118:  Failure/Error: @pid = Process.spawn(*@command, options)
    2119:  Errno::EACCES:
    2120:  Permission denied - java
    2121:  # ./rb/lib/selenium/webdriver/common/child_process.rb:57:in `spawn'
    2122:  # ./rb/lib/selenium/webdriver/common/child_process.rb:57:in `start'
    2123:  # ./rb/lib/selenium/server.rb:204:in `start'
    2124:  # //?/D:/a/selenium/selenium/rb/spec/integration/selenium/webdriver/spec_helper.rb:40:in `block (2 levels) in <top (required)>'
    2125:  Finished in 0.06502 seconds (files took 0.72371 seconds to load)
    2126:  0 examples, 0 failures, 1 error occurred outside of examples
    2127:  ================================================================================
    2128:  ==================== Test output for //rb/spec/integration/selenium/webdriver/edge:service-edge-remote:
    2129:  2024-03-26 01:06:25 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
    2130:  An error occurred in a `before(:suite)` hook.
    2131:  Failure/Error: @pid = Process.spawn(*@command, options)
    2132:  Errno::EACCES:
    2133:  Permission denied - java
    2134:  # ./rb/lib/selenium/webdriver/common/child_process.rb:57:in `spawn'
    2135:  # ./rb/lib/selenium/webdriver/common/child_process.rb:57:in `start'
    2136:  # ./rb/lib/selenium/server.rb:204:in `start'
    2137:  # //?/D:/a/selenium/selenium/rb/spec/integration/selenium/webdriver/spec_helper.rb:40:in `block (2 levels) in <top (required)>'
    2138:  Finished in 0.06241 seconds (files took 0.80098 seconds to load)
    2139:  0 examples, 0 failures, 1 error occurred outside of examples
    2140:  ================================================================================
    2141:  ==================== Test output for //rb/spec/integration/selenium/webdriver/edge:service-edge-remote:
    2142:  2024-03-26 01:06:47 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
    2143:  An error occurred in a `before(:suite)` hook.
    2144:  Failure/Error: @pid = Process.spawn(*@command, options)
    2145:  Errno::EACCES:
    2146:  Permission denied - java
    2147:  # ./rb/lib/selenium/webdriver/common/child_process.rb:57:in `spawn'
    2148:  # ./rb/lib/selenium/webdriver/common/child_process.rb:57:in `start'
    2149:  # ./rb/lib/selenium/server.rb:204:in `start'
    2150:  # //?/D:/a/selenium/selenium/rb/spec/integration/selenium/webdriver/spec_helper.rb:40:in `block (2 levels) in <top (required)>'
    2151:  Finished in 0.06411 seconds (files took 0.79259 seconds to load)
    2152:  0 examples, 0 failures, 1 error occurred outside of examples
    2153:  ================================================================================
    2154:  �[32m[2,894 / 2,898]�[0m 19 / 27 tests, �[31m�[1m19 failed�[0m;�[0m Testing //rb/spec/integration/selenium/webdriver/edge:driver-edge-remote; 45s local, disk-cache ... (4 actions, 2 running)
    2155:  �[32m[2,894 / 2,898]�[0m 19 / 27 tests, �[31m�[1m19 failed�[0m;�[0m Testing //rb/spec/integration/selenium/webdriver/edge:driver-edge-remote; 50s local, disk-cache ... (4 actions, 2 running)
    2156:  �[31m�[1mFAIL: �[0m//rb/spec/integration/selenium/webdriver:guard-edge-remote (see D:/_bazel/execroot/selenium/bazel-out/x64_windows-fastbuild/testlogs/rb/spec/integration/selenium/webdriver/guard-edge-remote/test_attempts/attempt_1.log)
    2157:  �[32m[2,894 / 2,898]�[0m 19 / 27 tests, �[31m�[1m19 failed�[0m;�[0m Testing //rb/spec/integration/selenium/webdriver/edge:driver-edge-remote; 52s local, disk-cache ... (4 actions, 2 running)
    2158:  �[32m[2,894 / 2,898]�[0m 19 / 27 tests, �[31m�[1m19 failed�[0m;�[0m Testing //rb/spec/integration/selenium/webdriver/edge:driver-edge-remote; 53s local, disk-cache ... (4 actions, 2 running)
    2159:  �[32m[2,894 / 2,898]�[0m 19 / 27 tests, �[31m�[1m19 failed�[0m;�[0m Testing //rb/spec/integration/selenium/webdriver/edge:driver-edge-remote; 55s local, disk-cache ... (4 actions, 2 running)
    2160:  �[32m[2,894 / 2,898]�[0m 19 / 27 tests, �[31m�[1m19 failed�[0m;�[0m Testing //rb/spec/integration/selenium/webdriver/edge:driver-edge-remote; 57s local, disk-cache ... (4 actions, 2 running)
    2161:  �[32m[2,894 / 2,898]�[0m 19 / 27 tests, �[31m�[1m19 failed�[0m;�[0m Testing //rb/spec/integration/selenium/webdriver/edge:driver-edge-remote; 58s local, disk-cache ... (4 actions, 3 running)
    2162:  �[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)
    2163:  ==================== Test output for //rb/spec/integration/selenium/webdriver/edge:driver-edge-remote:
    2164:  2024-03-26 01:06:11 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
    2165:  �[31m�[1mFAILED: �[0m//rb/spec/integration/selenium/webdriver/edge:driver-edge-remote (Summary)
    2166:  D:/_bazel/execroot/selenium/bazel-out/x64_windows-fastbuild/testlogs/rb/spec/integration/selenium/webdriver/edge/driver-edge-remote/test.log
    2167:  D:/_bazel/execroot/selenium/bazel-out/x64_windows-fastbuild/testlogs/rb/spec/integration/selenium/webdriver/edge/driver-edge-remote/test_attempts/attempt_1.log
    2168:  D:/_bazel/execroot/selenium/bazel-out/x64_windows-fastbuild/testlogs/rb/spec/integration/selenium/webdriver/edge/driver-edge-remote/test_attempts/attempt_2.log
    2169:  �[32mINFO: �[0mFrom Testing //rb/spec/integration/selenium/webdriver/edge:driver-edge-remote:
    2170:  An error occurred in a `before(:suite)` hook.
    2171:  Failure/Error: @pid = Process.spawn(*@command, options)
    2172:  Errno::EACCES:
    2173:  Permission denied - java
    2174:  # ./rb/lib/selenium/webdriver/common/child_process.rb:57:in `spawn'
    2175:  # ./rb/lib/selenium/webdriver/common/child_process.rb:57:in `start'
    2176:  # ./rb/lib/selenium/server.rb:204:in `start'
    2177:  # //?/D:/a/selenium/selenium/rb/spec/integration/selenium/webdriver/spec_helper.rb:40:in `block (2 levels) in <top (required)>'
    2178:  Finished in 0.06254 seconds (files took 0.7513 seconds to load)
    2179:  0 examples, 0 failures, 1 error occurred outside of examples
    2180:  ================================================================================
    2181:  ==================== Test output for //rb/spec/integration/selenium/webdriver/edge:driver-edge-remote:
    2182:  2024-03-26 01:06:40 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
    2183:  An error occurred in a `before(:suite)` hook.
    2184:  Failure/Error: @pid = Process.spawn(*@command, options)
    2185:  Errno::EACCES:
    2186:  Permission denied - java
    2187:  # ./rb/lib/selenium/webdriver/common/child_process.rb:57:in `spawn'
    2188:  # ./rb/lib/selenium/webdriver/common/child_process.rb:57:in `start'
    2189:  # ./rb/lib/selenium/server.rb:204:in `start'
    2190:  # //?/D:/a/selenium/selenium/rb/spec/integration/selenium/webdriver/spec_helper.rb:40:in `block (2 levels) in <top (required)>'
    2191:  Finished in 0.06444 seconds (files took 0.84157 seconds to load)
    2192:  0 examples, 0 failures, 1 error occurred outside of examples
    2193:  ================================================================================
    2194:  ==================== Test output for //rb/spec/integration/selenium/webdriver/edge:driver-edge-remote:
    2195:  2024-03-26 01:07:03 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
    2196:  An error occurred in a `before(:suite)` hook.
    2197:  Failure/Error: @pid = Process.spawn(*@command, options)
    2198:  Errno::EACCES:
    2199:  Permission denied - java
    2200:  # ./rb/lib/selenium/webdriver/common/child_process.rb:57:in `spawn'
    2201:  # ./rb/lib/selenium/webdriver/common/child_process.rb:57:in `start'
    2202:  # ./rb/lib/selenium/server.rb:204:in `start'
    2203:  # //?/D:/a/selenium/selenium/rb/spec/integration/selenium/webdriver/spec_helper.rb:40:in `block (2 levels) in <top (required)>'
    2204:  Finished in 0.06874 seconds (files took 0.89487 seconds to load)
    2205:  0 examples, 0 failures, 1 error occurred outside of examples
    2206:  ================================================================================
    2207:  �[32m[2,895 / 2,898]�[0m 20 / 27 tests, �[31m�[1m20 failed�[0m;�[0m Testing //rb/spec/integration/selenium/webdriver:guard-edge-remote; 16s local, disk-cache ... (3 actions, 2 running)
    2208:  �[32m[2,895 / 2,898]�[0m 20 / 27 tests, �[31m�[1m20 failed�[0m;�[0m Testing //rb/spec/integration/selenium/webdriver:guard-edge-remote; 22s local, disk-cache ... (3 actions, 2 running)
    2209:  �[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)
    2210:  �[32m[2,895 / 2,898]�[0m 20 / 27 tests, �[31m�[1m20 failed�[0m;�[0m Testing //rb/spec/integration/selenium/webdriver:guard-edge-remote; 23s local, disk-cache ... (3 actions, 2 running)
    2211:  �[32m[2,895 / 2,898]�[0m 20 / 27 tests, �[31m�[1m20 failed�[0m;�[0m Testing //rb/spec/integration/selenium/webdriver:guard-edge-remote; 26s local, disk-cache ... (3 actions, 2 running)
    2212:  �[32m[2,895 / 2,898]�[0m 20 / 27 tests, �[31m�[1m20 failed�[0m;�[0m Testing //rb/spec/integration/selenium/webdriver:guard-edge-remote; 29s local, disk-cache ... (3 actions running)
    2213:  �[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)
    2214:  �[32m[2,895 / 2,898]�[0m 20 / 27 tests, �[31m�[1m20 failed�[0m;�[0m Testing //rb/spec/integration/selenium/webdriver:guard-edge-remote; 30s local, disk-cache ... (3 actions running)
    2215:  �[32m[2,895 / 2,898]�[0m 20 / 27 tests, �[31m�[1m20 failed�[0m;�[0m Testing //rb/spec/integration/selenium/webdriver:guard-edge-remote; 36s local, disk-cache ... (3 actions running)
    2216:  �[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)
    2217:  �[32m[2,895 / 2,898]�[0m 20 / 27 tests, �[31m�[1m20 failed�[0m;�[0m Testing //rb/spec/integration/selenium/webdriver:guard-edge-remote; 37s local, disk-cache ... (3 actions running)
    2218:  �[32m[2,895 / 2,898]�[0m 20 / 27 tests, �[31m�[1m20 failed�[0m;�[0m Testing //rb/spec/integration/selenium/webdriver:guard-edge-remote; 43s local, disk-cache ... (3 actions running)
    2219:  �[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)
    2220:  �[32m[2,895 / 2,898]�[0m 20 / 27 tests, �[31m�[1m20 failed�[0m;�[0m Testing //rb/spec/integration/selenium/webdriver:guard-edge-remote; 44s local, disk-cache ... (3 actions running)
    2221:  �[32m[2,895 / 2,898]�[0m 20 / 27 tests, �[31m�[1m20 failed�[0m;�[0m Testing //rb/spec/integration/selenium/webdriver:guard-edge-remote; 50s local, disk-cache ... (3 actions running)
    2222:  �[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)
    2223:  ==================== Test output for //rb/spec/integration/selenium/webdriver:guard-edge-remote:
    2224:  �[31m�[1mFAILED: �[0m//rb/spec/integration/selenium/webdriver:guard-edge-remote (Summary)
    2225:  D:/_bazel/execroot/selenium/bazel-out/x64_windows-fastbuild/testlogs/rb/spec/integration/selenium/webdriver/guard-edge-remote/test.log
    2226:  2024-03-26 01:06:54 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
    2227:  D:/_bazel/execroot/selenium/bazel-out/x64_windows-fastbuild/testlogs/rb/spec/integration/selenium/webdriver/guard-edge-remote/test_attempts/attempt_1.log
    2228:  D:/_bazel/execroot/selenium/bazel-out/x64_windows-fastbuild/testlogs/rb/spec/integration/selenium/webdriver/guard-edge-remote/test_attempts/attempt_2.log
    2229:  �[32mINFO: �[0mFrom Testing //rb/spec/integration/selenium/webdriver:guard-edge-remote:
    2230:  An error occurred in a `before(:suite)` hook.
    2231:  Failure/Error: @pid = Process.spawn(*@command, options)
    2232:  Errno::EACCES:
    2233:  Permission denied - java
    2234:  # ./rb/lib/selenium/webdriver/common/child_process.rb:57:in `spawn'
    2235:  # ./rb/lib/selenium/webdriver/common/child_process.rb:57:in `start'
    2236:  # ./rb/lib/selenium/server.rb:204:in `start'
    2237:  # //?/D:/a/selenium/selenium/rb/spec/integration/selenium/webdriver/spec_helper.rb:40:in `block (2 levels) in <top (required)>'
    2238:  Finished in 0.06226 seconds (files took 0.76182 seconds to load)
    2239:  0 examples, 0 failures, 1 error occurred outside of examples
    2240:  ================================================================================
    2241:  ==================== Test output for //rb/spec/integration/selenium/webdriver:guard-edge-remote:
    2242:  2024-03-26 01:07:16 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
    2243:  An error occurred in a `before(:suite)` hook.
    2244:  Failure/Error: @pid = Process.spawn(*@command, options)
    2245:  Errno::EACCES:
    2246:  Permission denied - java
    2247:  # ./rb/lib/selenium/webdriver/common/child_process.rb:57:in `spawn'
    2248:  # ./rb/lib/selenium/webdriver/common/child_process.rb:57:in `start'
    2249:  # ./rb/lib/selenium/server.rb:204:in `start'
    2250:  # //?/D:/a/selenium/selenium/rb/spec/integration/selenium/webdriver/spec_helper.rb:40:in `block (2 levels) in <top (required)>'
    2251:  Finished in 0.05714 seconds (files took 0.69842 seconds to load)
    2252:  0 examples, 0 failures, 1 error occurred outside of examples
    2253:  ================================================================================
    2254:  ==================== Test output for //rb/spec/integration/selenium/webdriver:guard-edge-remote:
    2255:  2024-03-26 01:07:38 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
    2256:  An error occurred in a `before(:suite)` hook.
    2257:  Failure/Error: @pid = Process.spawn(*@command, options)
    2258:  Errno::EACCES:
    2259:  Permission denied - java
    2260:  # ./rb/lib/selenium/webdriver/common/child_process.rb:57:in `spawn'
    2261:  # ./rb/lib/selenium/webdriver/common/child_process.rb:57:in `start'
    2262:  # ./rb/lib/selenium/server.rb:204:in `start'
    2263:  # //?/D:/a/selenium/selenium/rb/spec/integration/selenium/webdriver/spec_helper.rb:40:in `block (2 levels) in <top (required)>'
    2264:  Finished in 0.05739 seconds (files took 0.69023 seconds to load)
    2265:  0 examples, 0 failures, 1 error occurred outside of examples
    2266:  ================================================================================
    2267:  �[32m[2,896 / 2,898]�[0m 21 / 27 tests, �[31m�[1m21 failed�[0m;�[0m Testing //rb/spec/integration/selenium/webdriver:listener-edge-remote; 36s local, disk-cache ... (2 actions running)
    2268:  �[32m[2,896 / 2,898]�[0m 21 / 27 tests, �[31m�[1m21 failed�[0m;�[0m Testing //rb/spec/integration/selenium/webdriver:listener-edge-remote; 41s local, disk-cache ... (2 actions running)
    2269:  �[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)
    2270:  �[32m[2,896 / 2,898]�[0m 21 / 27 tests, �[31m�[1m21 failed�[0m;�[0m Testing //rb/spec/integration/selenium/webdriver:listener-edge-remote; 43s local, disk-cache ... (2 actions running)
    2271:  �[32m[2,896 / 2,898]�[0m 21 / 27 tests, �[31m�[1m21 failed�[0m;�[0m Testing //rb/spec/integration/selenium/webdriver:listener-edge-remote; 46s local, disk-cache ... (2 actions running)
    2272:  �[32m[2,896 / 2,898]�[0m 21 / 27 tests, �[31m�[1m21 failed�[0m;�[0m Testing //rb/spec/integration/selenium/webdriver:listener-edge-remote; 49s local, disk-cache ... (2 actions running)
    2273:  �[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)
    2274:  �[31m�[1mFAILED: �[0m//rb/spec/integration/selenium/webdriver:listener-edge-remote (Summary)
    2275:  D:/_bazel/execroot/selenium/bazel-out/x64_windows-fastbuild/testlogs/rb/spec/integration/selenium/webdriver/listener-edge-remote/test.log
    2276:  ==================== Test output for //rb/spec/integration/selenium/webdriver:listener-edge-remote:
    2277:  D:/_bazel/execroot/selenium/bazel-out/x64_windows-fastbuild/testlogs/rb/spec/integration/selenium/webdriver/listener-edge-remote/test_attempts/attempt_1.log
    2278:  2024-03-26 01:07: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
    2279:  D:/_bazel/execroot/selenium/bazel-out/x64_windows-fastbuild/testlogs/rb/spec/integration/selenium/webdriver/listener-edge-remote/test_attempts/attempt_2.log
    2280:  �[32mINFO: �[0mFrom Testing //rb/spec/integration/selenium/webdriver:listener-edge-remote:
    2281:  An error occurred in a `before(:suite)` hook.
    2282:  Failure/Error: @pid = Process.spawn(*@command, options)
    2283:  Errno::EACCES:
    2284:  Permission denied - java
    2285:  # ./rb/lib/selenium/webdriver/common/child_process.rb:57:in `spawn'
    2286:  # ./rb/lib/selenium/webdriver/common/child_process.rb:57:in `start'
    2287:  # ./rb/lib/selenium/server.rb:204:in `start'
    2288:  # //?/D:/a/selenium/selenium/rb/spec/integration/selenium/webdriver/spec_helper.rb:40:in `block (2 levels) in <top (required)>'
    2289:  Finished in 0.05589 seconds (files took 0.68107 seconds to load)
    2290:  0 examples, 0 failures, 1 error occurred outside of examples
    2291:  ================================================================================
    2292:  ==================== Test output for //rb/spec/integration/selenium/webdriver:listener-edge-remote:
    2293:  2024-03-26 01:07:31 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
    2294:  An error occurred in a `before(:suite)` hook.
    2295:  Failure/Error: @pid = Process.spawn(*@command, options)
    2296:  Errno::EACCES:
    2297:  Permission denied - java
    2298:  # ./rb/lib/selenium/webdriver/common/child_process.rb:57:in `spawn'
    2299:  # ./rb/lib/selenium/webdriver/common/child_process.rb:57:in `start'
    2300:  # ./rb/lib/selenium/server.rb:204:in `start'
    2301:  # //?/D:/a/selenium/selenium/rb/spec/integration/selenium/webdriver/spec_helper.rb:40:in `block (2 levels) in <top (required)>'
    2302:  Finished in 0.05706 seconds (files took 0.72308 seconds to load)
    2303:  0 examples, 0 failures, 1 error occurred outside of examples
    2304:  ================================================================================
    2305:  ==================== Test output for //rb/spec/integration/selenium/webdriver:listener-edge-remote:
    2306:  2024-03-26 01:07:52 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
    2307:  An error occurred in a `before(:suite)` hook.
    2308:  Failure/Error: @pid = Process.spawn(*@command, options)
    2309:  Errno::EACCES:
    2310:  Permission denied - java
    2311:  # ./rb/lib/selenium/webdriver/common/child_process.rb:57:in `spawn'
    2312:  # ./rb/lib/selenium/webdriver/common/child_process.rb:57:in `start'
    2313:  # ./rb/lib/selenium/server.rb:204:in `start'
    2314:  # //?/D:/a/selenium/selenium/rb/spec/integration/selenium/webdriver/spec_helper.rb:40:in `block (2 levels) in <top (required)>'
    2315:  Finished in 0.05625 seconds (files took 0.74484 seconds to load)
    2316:  0 examples, 0 failures, 1 error occurred outside of examples
    2317:  ================================================================================
    2318:  �[32m[2,897 / 2,898]�[0m 22 / 27 tests, �[31m�[1m22 failed�[0m;�[0m Testing //rb/spec/integration/selenium/webdriver:error-edge-remote; 36s local, disk-cache
    2319:  �[32m[2,897 / 2,898]�[0m 22 / 27 tests, �[31m�[1m22 failed�[0m;�[0m Testing //rb/spec/integration/selenium/webdriver:error-edge-remote; 42s local, disk-cache
    2320:  �[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)
    2321:  �[31m�[1mFAILED: �[0m//rb/spec/integration/selenium/webdriver:error-edge-remote (Summary)
    2322:  D:/_bazel/execroot/selenium/bazel-out/x64_windows-fastbuild/testlogs/rb/spec/integration/selenium/webdriver/error-edge-remote/test.log
    2323:  D:/_bazel/execroot/selenium/bazel-out/x64_windows-fastbuild/testlogs/rb/spec/integration/selenium/webdriver/error-edge-remote/test_attempts/attempt_1.log
    2324:  D:/_bazel/execroot/selenium/bazel-out/x64_windows-fastbuild/testlogs/rb/spec/integration/selenium/webdriver/error-edge-remote/test_attempts/attempt_2.log
    2325:  �[32mINFO: �[0mFrom Testing //rb/spec/integration/selenium/webdriver:error-edge-remote:
    2326:  ==================== Test output for //rb/spec/integration/selenium/webdriver:error-edge-remote:
    2327:  2024-03-26 01:07:24 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
    2328:  An error occurred in a `before(:suite)` hook.
    2329:  Failure/Error: @pid = Process.spawn(*@command, options)
    2330:  Errno::EACCES:
    2331:  Permission denied - java
    2332:  # ./rb/lib/selenium/webdriver/common/child_process.rb:57:in `spawn'
    2333:  # ./rb/lib/selenium/webdriver/common/child_process.rb:57:in `start'
    2334:  # ./rb/lib/selenium/server.rb:204:in `start'
    2335:  # //?/D:/a/selenium/selenium/rb/spec/integration/selenium/webdriver/spec_helper.rb:40:in `block (2 levels) in <top (required)>'
    2336:  Finished in 0.0603 seconds (files took 0.71907 seconds to load)
    2337:  0 examples, 0 failures, 1 error occurred outside of examples
    2338:  ================================================================================
    2339:  ==================== Test output for //rb/spec/integration/selenium/webdriver:error-edge-remote:
    2340:  2024-03-26 01:07:45 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
    2341:  An error occurred in a `before(:suite)` hook.
    2342:  Failure/Error: @pid = Process.spawn(*@command, options)
    2343:  Errno::EACCES:
    2344:  Permission denied - java
    2345:  # ./rb/lib/selenium/webdriver/common/child_process.rb:57:in `spawn'
    2346:  # ./rb/lib/selenium/webdriver/common/child_process.rb:57:in `start'
    2347:  # ./rb/lib/selenium/server.rb:204:in `start'
    2348:  # //?/D:/a/selenium/selenium/rb/spec/integration/selenium/webdriver/spec_helper.rb:40:in `block (2 levels) in <top (required)>'
    2349:  Finished in 0.06161 seconds (files took 0.69946 seconds to load)
    2350:  0 examples, 0 failures, 1 error occurred outside of examples
    2351:  ================================================================================
    2352:  ==================== Test output for //rb/spec/integration/selenium/webdriver:error-edge-remote:
    2353:  2024-03-26 01:07: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
    2354:  An error occurred in a `before(:suite)` hook.
    2355:  Failure/Error: @pid = Process.spawn(*@command, options)
    2356:  Errno::EACCES:
    2357:  Permission denied - java
    2358:  # ./rb/lib/selenium/webdriver/common/child_process.rb:57:in `spawn'
    2359:  # ./rb/lib/selenium/webdriver/common/child_process.rb:57:in `start'
    2360:  # ./rb/lib/selenium/server.rb:204:in `start'
    2361:  # //?/D:/a/selenium/selenium/rb/spec/integration/selenium/webdriver/spec_helper.rb:40:in `block (2 levels) in <top (required)>'
    2362:  Finished in 0.06061 seconds (files took 0.69845 seconds to load)
    2363:  0 examples, 0 failures, 1 error occurred outside of examples
    2364:  ================================================================================
    2365:  �[32m[2,898 / 2,899]�[0m 23 / 27 tests, �[31m�[1m23 failed�[0m;�[0m Testing //rb/spec/integration/selenium/webdriver:devtools-edge-remote; 0s disk-cache
    2366:  �[32m[2,898 / 2,899]�[0m 23 / 27 tests, �[31m�[1m23 failed�[0m;�[0m [Sched] Testing //rb/spec/integration/selenium/webdriver:devtools-edge-remote
    2367:  �[32m[2,898 / 2,899]�[0m 23 / 27 tests, �[31m�[1m23 failed�[0m;�[0m Testing //rb/spec/integration/selenium/webdriver:devtools-edge-remote; 1s local, disk-cache
    2368:  �[32m[2,898 / 2,899]�[0m 23 / 27 tests, �[31m�[1m23 failed�[0m;�[0m Testing //rb/spec/integration/selenium/webdriver:devtools-edge-remote; 7s local, disk-cache
    2369:  �[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)
    2370:  �[32m[2,898 / 2,899]�[0m 23 / 27 tests, �[31m�[1m23 failed�[0m;�[0m Testing //rb/spec/integration/selenium/webdriver:devtools-edge-remote; 8s local, disk-cache
    2371:  �[32m[2,898 / 2,899]�[0m 23 / 27 tests, �[31m�[1m23 failed�[0m;�[0m Testing //rb/spec/integration/selenium/webdriver:devtools-edge-remote; 14s local, disk-cache
    2372:  �[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)
    2373:  �[32m[2,898 / 2,899]�[0m 23 / 27 tests, �[31m�[1m23 failed�[0m;�[0m Testing //rb/spec/integration/selenium/webdriver:devtools-edge-remote; 16s local, disk-cache
    2374:  �[32m[2,898 / 2,899]�[0m 23 / 27 tests, �[31m�[1m23 failed�[0m;�[0m Testing //rb/spec/integration/selenium/webdriver:devtools-edge-remote; 22s local, disk-cache
    2375:  �[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)
    2376:  �[31m�[1mFAILED: �[0m//rb/spec/integration/selenium/webdriver:devtools-edge-remote (Summary)
    2377:  D:/_bazel/execroot/selenium/bazel-out/x64_windows-fastbuild/testlogs/rb/spec/integration/selenium/webdriver/devtools-edge-remote/test.log
    2378:  D:/_bazel/execroot/selenium/bazel-out/x64_windows-fastbuild/testlogs/rb/spec/integration/selenium/webdriver/devtools-edge-remote/test_attempts/attempt_1.log
    2379:  D:/_bazel/execroot/selenium/bazel-out/x64_windows-fastbuild/testlogs/rb/spec/integration/selenium/webdriver/devtools-edge-remote/test_attempts/attempt_2.log
    2380:  �[32mINFO: �[0mFrom Testing //rb/spec/integration/selenium/webdriver:devtools-edge-remote:
    2381:  ==================== Test output for //rb/spec/integration/selenium/webdriver:devtools-edge-remote:
    2382:  2024-03-26 01:08:18 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
    2383:  An error occurred in a `before(:suite)` hook.
    2384:  Failure/Error: @pid = Process.spawn(*@command, options)
    2385:  Errno::EACCES:
    2386:  Permission denied - java
    2387:  # ./rb/lib/selenium/webdriver/common/child_process.rb:57:in `spawn'
    2388:  # ./rb/lib/selenium/webdriver/common/child_process.rb:57:in `start'
    2389:  # ./rb/lib/selenium/server.rb:204:in `start'
    2390:  # //?/D:/a/selenium/selenium/rb/spec/integration/selenium/webdriver/spec_helper.rb:40:in `block (2 levels) in <top (required)>'
    2391:  Finished in 0.06201 seconds (files took 0.73656 seconds to load)
    2392:  0 examples, 0 failures, 1 error occurred outside of examples
    2393:  ================================================================================
    2394:  ==================== Test output for //rb/spec/integration/selenium/webdriver:devtools-edge-remote:
    2395:  2024-03-26 01:08: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
    2396:  An error occurred in a `before(:suite)` hook.
    2397:  Failure/Error: @pid = Process.spawn(*@command, options)
    2398:  Errno::EACCES:
    2399:  Permission denied - java
    2400:  # ./rb/lib/selenium/webdriver/common/child_process.rb:57:in `spawn'
    2401:  # ./rb/lib/selenium/webdriver/common/child_process.rb:57:in `start'
    2402:  # ./rb/lib/selenium/server.rb:204:in `start'
    2403:  # //?/D:/a/selenium/selenium/rb/spec/integration/selenium/webdriver/spec_helper.rb:40:in `block (2 levels) in <top (required)>'
    2404:  Finished in 0.05557 seconds (files took 0.70142 seconds to load)
    2405:  0 examples, 0 failures, 1 error occurred outside of examples
    2406:  ================================================================================
    2407:  ==================== Test output for //rb/spec/integration/selenium/webdriver:devtools-edge-remote:
    2408:  2024-03-26 01:08:33 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
    2409:  An error occurred in a `before(:suite)` hook.
    2410:  Failure/Error: @pid = Process.spawn(*@command, options)
    2411:  Errno::EACCES:
    2412:  Permission denied - java
    2413:  # ./rb/lib/selenium/webdriver/common/child_process.rb:57:in `spawn'
    2414:  # ./rb/lib/selenium/webdriver/common/child_process.rb:57:in `start'
    2415:  # ./rb/lib/selenium/server.rb:204:in `start'
    2416:  # //?/D:/a/selenium/selenium/rb/spec/integration/selenium/webdriver/spec_helper.rb:40:in `block (2 levels) in <top (required)>'
    2417:  Finished in 0.06262 seconds (files took 0.77382 seconds to load)
    2418:  0 examples, 0 failures, 1 error occurred outside of examples
    2419:  ================================================================================
    2420:  �[32m[2,899 / 2,900]�[0m 24 / 27 tests, �[31m�[1m24 failed�[0m;�[0m Testing //rb/spec/integration/selenium/webdriver/bidi:log_inspector-edge-remote; 1s disk-cache
    2421:  �[32m[2,899 / 2,900]�[0m 24 / 27 tests, �[31m�[1m24 failed�[0m;�[0m [Sched] Testing //rb/spec/integration/selenium/webdriver/bidi:log_inspector-edge-remote
    2422:  �[32m[2,899 / 2,900]�[0m 24 / 27 tests, �[31m�[1m24 failed�[0m;�[0m Testing //rb/spec/integration/selenium/webdriver/bidi:log_inspector-edge-remote; 1s local, disk-cache
    2423:  �[32m[2,899 / 2,900]�[0m 24 / 27 tests, �[31m�[1m24 failed�[0m;�[0m Testing //rb/spec/integration/selenium/webdriver/bidi:log_inspector-edge-remote; 7s local, disk-cache
    2424:  �[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)
    2425:  �[32m[2,899 / 2,900]�[0m 24 / 27 tests, �[31m�[1m24 failed�[0m;�[0m Testing //rb/spec/integration/selenium/webdriver/bidi:log_inspector-edge-remote; 8s local, disk-cache
    2426:  �[32m[2,899 / 2,900]�[0m 24 / 27 tests, �[31m�[1m24 failed�[0m;�[0m Testing //rb/spec/integration/selenium/webdriver/bidi:log_inspector-edge-remote; 14s local, disk-cache
    2427:  �[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)
    2428:  �[32m[2,899 / 2,900]�[0m 24 / 27 tests, �[31m�[1m24 failed�[0m;�[0m Testing //rb/spec/integration/selenium/webdriver/bidi:log_inspector-edge-remote; 15s local, disk-cache
    2429:  �[32m[2,899 / 2,900]�[0m 24 / 27 tests, �[31m�[1m24 failed�[0m;�[0m Testing //rb/spec/integration/selenium/webdriver/bidi:log_inspector-edge-remote; 22s local, disk-cache
    2430:  �[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)
    2431:  �[31m�[1mFAILED: �[0m//rb/spec/integration/selenium/webdriver/bidi:log_inspector-edge-remote (Summary)
    2432:  D:/_bazel/execroot/selenium/bazel-out/x64_windows-fastbuild/testlogs/rb/spec/integration/selenium/webdriver/bidi/log_inspector-edge-remote/test.log
    2433:  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
    2434:  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
    2435:  �[32mINFO: �[0mFrom Testing //rb/spec/integration/selenium/webdriver/bidi:log_inspector-edge-remote:
    2436:  ==================== Test output for //rb/spec/integration/selenium/webdriver/bidi:log_inspector-edge-remote:
    2437:  2024-03-26 01:08:52 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
    2438:  An error occurred in a `before(:suite)` hook.
    2439:  Failure/Error: @pid = Process.spawn(*@command, options)
    2440:  Errno::EACCES:
    2441:  Permission denied - java
    2442:  # ./rb/lib/selenium/webdriver/common/child_process.rb:57:in `spawn'
    2443:  # ./rb/lib/selenium/webdriver/common/child_process.rb:57:in `start'
    2444:  # ./rb/lib/selenium/server.rb:204:in `start'
    2445:  # //?/D:/a/selenium/selenium/rb/spec/integration/selenium/webdriver/spec_helper.rb:40:in `block (2 levels) in <top (required)>'
    2446:  Finished in 0.06289 seconds (files took 0.75474 seconds to load)
    2447:  0 examples, 0 failures, 1 error occurred outside of examples
    2448:  ================================================================================
    2449:  ==================== Test output for //rb/spec/integration/selenium/webdriver/bidi:log_inspector-edge-remote:
    2450:  2024-03-26 01:09:00 INFO Selenium Server Location: D:/_bazel/execroot/selenium/bazel-out/x64_windows-fastbuild/bin/rb/spec/integration/selenium/webdriver/bidi/log_inspector-edge-remote.cmd.runfiles/selenium/java/src/org/openqa/selenium/grid/selenium_server_deploy.jar
    2451:  An error occurred in a `before(:suite)` hook.
    2452:  Failure/Error: @pid = Process.spawn(*@command, options)
    2453:  Errno::EACCES:
    2454:  Permission denied - java
    2455:  # ./rb/lib/selenium/webdriver/common/child_process.rb:57:in `spawn'
    2456:  # ./rb/lib/selenium/webdriver/common/child_process.rb:57:in `start'
    2457:  # ./rb/lib/selenium/server.rb:204:in `start'
    2458:  # //?/D:/a/selenium/selenium/rb/spec/integration/selenium/webdriver/spec_helper.rb:40:in `block (2 levels) in <top (required)>'
    2459:  Finished in 0.06627 seconds (files took 0.77513 seconds to load)
    2460:  0 examples, 0 failures, 1 error occurred outside of examples
    2461:  ================================================================================
    2462:  ==================== Test output for //rb/spec/integration/selenium/webdriver/bidi:log_inspector-edge-remote:
    2463:  2024-03-26 01:09:08 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
    2464:  An error occurred in a `before(:suite)` hook.
    2465:  Failure/Error: @pid = Process.spawn(*@command, options)
    2466:  Errno::EACCES:
    2467:  Permission denied - java
    2468:  # ./rb/lib/selenium/webdriver/common/child_process.rb:57:in `spawn'
    2469:  # ./rb/lib/selenium/webdriver/common/child_process.rb:57:in `start'
    2470:  # ./rb/lib/selenium/server.rb:204:in `start'
    2471:  # //?/D:/a/selenium/selenium/rb/spec/integration/selenium/webdriver/spec_helper.rb:40:in `block (2 levels) in <top (required)>'
    2472:  Finished in 0.06087 seconds (files took 0.72484 seconds to load)
    2473:  0 examples, 0 failures, 1 error occurred outside of examples
    2474:  ================================================================================
    2475:  �[32m[2,900 / 2,901]�[0m 25 / 27 tests, �[31m�[1m25 failed�[0m;�[0m Testing //rb/spec/integration/selenium/webdriver/bidi:browsing_context-edge-remote; 0s disk-cache
    2476:  �[32m[2,900 / 2,901]�[0m 25 / 27 tests, �[31m�[1m25 failed�[0m;�[0m [Sched] Testing //rb/spec/integration/selenium/webdriver/bidi:browsing_context-edge-remote
    2477:  �[32m[2,900 / 2,901]�[0m 25 / 27 tests, �[31m�[1m25 failed�[0m;�[0m Testing //rb/spec/integration/selenium/webdriver/bidi:browsing_context-edge-remote; 1s local, disk-cache
    2478:  �[32m[2,900 / 2,901]�[0m 25 / 27 tests, �[31m�[1m25 failed�[0m;�[0m Testing //rb/spec/integration/selenium/webdriver/bidi:browsing_context-edge-remote; 7s local, disk-cache
    2479:  �[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)
    2480:  �[32m[2,900 / 2,901]�[0m 25 / 27 tests, �[31m�[1m25 failed�[0m;�[0m Testing //rb/spec/integration/selenium/webdriver/bidi:browsing_context-edge-remote; 8s local, disk-cache
    2481:  �[32m[2,900 / 2,901]�[0m 25 / 27 tests, �[31m�[1m25 failed�[0m;�[0m Testing //rb/spec/integration/selenium/webdriver/bidi:browsing_context-edge-remote; 15s local, disk-cache
    2482:  �[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)
    2483:  �[32m[2,900 / 2,901]�[0m 25 / 27 tests, �[31m�[1m25 failed�[0m;�[0m Testing //rb/spec/integration/selenium/webdriver/bidi:browsing_context-edge-remote; 16s local, disk-cache
    2484:  �[32m[2,900 / 2,901]�[0m 25 / 27 tests, �[31m�[1m25 failed�[0m;�[0m Testing //rb/spec/integration/selenium/webdriver/bidi:browsing_context-edge-remote; 22s local, disk-cache
    2485:  �[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)
    2486:  �[31m�[1mFAILED: �[0m//rb/spec/integration/selenium/webdriver/bidi:browsing_context-edge-remote (Summary)
    2487:  D:/_bazel/execroot/selenium/bazel-out/x64_windows-fastbuild/testlogs/rb/spec/integration/selenium/webdriver/bidi/browsing_context-edge-remote/test.log
    2488:  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
    2489:  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
    2490:  �[32mINFO: �[0mFrom Testing //rb/spec/integration/selenium/webdriver/bidi:browsing_context-edge-remote:
    2491:  ==================== Test output for //rb/spec/integration/selenium/webdriver/bidi:browsing_context-edge-remote:
    2492:  2024-03-26 01:09:28 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
    2493:  An error occurred in a `before(:suite)` hook.
    2494:  Failure/Error: @pid = Process.spawn(*@command, options)
    2495:  Errno::EACCES:
    2496:  Permission denied - java
    2497:  # ./rb/lib/selenium/webdriver/common/child_process.rb:57:in `spawn'
    2498:  # ./rb/lib/selenium/webdriver/common/child_process.rb:57:in `start'
    2499:  # ./rb/lib/selenium/server.rb:204:in `start'
    2500:  # //?/D:/a/selenium/selenium/rb/spec/integration/selenium/webdriver/spec_helper.rb:40:in `block (2 levels) in <top (required)>'
    2501:  Finished in 0.06503 seconds (files took 0.76112 seconds to load)
    2502:  0 examples, 0 failures, 1 error occurred outside of examples
    2503:  ================================================================================
    2504:  ==================== Test output for //rb/spec/integration/selenium/webdriver/bidi:browsing_context-edge-remote:
    2505:  2024-03-26 01:09: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
    2506:  An error occurred in a `before(:suite)` hook.
    2507:  Failure/Error: @pid = Process.spawn(*@command, options)
    2508:  Errno::EACCES:
    2509:  Permission denied - java
    2510:  # ./rb/lib/selenium/webdriver/common/child_process.rb:57:in `spawn'
    2511:  # ./rb/lib/selenium/webdriver/common/child_process.rb:57:in `start'
    2512:  # ./rb/lib/selenium/server.rb:204:in `start'
    2513:  # //?/D:/a/selenium/selenium/rb/spec/integration/selenium/webdriver/spec_helper.rb:40:in `block (2 levels) in <top (required)>'
    2514:  Finished in 0.06103 seconds (files took 0.77386 seconds to load)
    2515:  0 examples, 0 failures, 1 error occurred outside of examples
    2516:  ================================================================================
    2517:  ==================== Test output for //rb/spec/integration/selenium/webdriver/bidi:browsing_context-edge-remote:
    2518:  2024-03-26 01:09: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
    2519:  An error occurred in a `before(:suite)` hook.
    2520:  Failure/Error: @pid = Process.spawn(*@command, options)
    2521:  Errno::EACCES:
    2522:  Permission denied - java
    2523:  # ./rb/lib/selenium/webdriver/common/child_process.rb:57:in `spawn'
    2524:  # ./rb/lib/selenium/webdriver/common/child_process.rb:57:in `start'
    2525:  # ./rb/lib/selenium/server.rb:204:in `start'
    2526:  # //?/D:/a/selenium/selenium/rb/spec/integration/selenium/webdriver/spec_helper.rb:40:in `block (2 levels) in <top (required)>'
    2527:  Finished in 0.06314 seconds (files took 0.76837 seconds to load)
    2528:  0 examples, 0 failures, 1 error occurred outside of examples
    2529:  ================================================================================
    2530:  �[32m[2,901 / 2,902]�[0m 26 / 27 tests, �[31m�[1m26 failed�[0m;�[0m Testing //rb/spec/integration/selenium/webdriver:bidi-edge-remote; 1s disk-cache
    2531:  �[32m[2,901 / 2,902]�[0m 26 / 27 tests, �[31m�[1m26 failed�[0m;�[0m [Sched] Testing //rb/spec/integration/selenium/webdriver:bidi-edge-remote
    2532:  �[32m[2,901 / 2,902]�[0m 26 / 27 tests, �[31m�[1m26 failed�[0m;�[0m Testing //rb/spec/integration/selenium/webdriver:bidi-edge-remote; 1s local, disk-cache
    2533:  �[32m[2,901 / 2,902]�[0m 26 / 27 tests, �[31m�[1m26 failed�[0m;�[0m Testing //rb/spec/integration/selenium/webdriver:bidi-edge-remote; 7s local, disk-cache
    2534:  �[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)
    2535:  �[32m[2,901 / 2,902]�[0m 26 / 27 tests, �[31m�[1m26 failed�[0m;�[0m Testing //rb/spec/integration/selenium/webdriver:bidi-edge-remote; 8s local, disk-cache
    2536:  �[32m[2,901 / 2,902]�[0m 26 / 27 tests, �[31m�[1m26 failed�[0m;�[0m Testing //rb/spec/integration/selenium/webdriver:bidi-edge-remote; 14s local, disk-cache
    2537:  �[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)
    2538:  �[32m[2,901 / 2,902]�[0m 26 / 27 tests, �[31m�[1m26 failed�[0m;�[0m Testing //rb/spec/integration/selenium/webdriver:bidi-edge-remote; 16s local, disk-cache
    2539:  �[32m[2,901 / 2,902]�[0m 26 / 27 tests, �[31m�[1m26 failed�[0m;�[0m Testing //rb/spec/integration/selenium/webdriver:bidi-edge-remote; 22s local, disk-cache
    2540:  �[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)
    2541:  �[31m�[1mFAILED: �[0m//rb/spec/integration/selenium/webdriver:bidi-edge-remote (Summary)
    2542:  D:/_bazel/execroot/selenium/bazel-out/x64_windows-fastbuild/testlogs/rb/spec/integration/selenium/webdriver/bidi-edge-remote/test.log
    2543:  D:/_bazel/execroot/selenium/bazel-out/x64_windows-fastbuild/testlogs/rb/spec/integration/selenium/webdriver/bidi-edge-remote/test_attempts/attempt_1.log
    2544:  D:/_bazel/execroot/selenium/bazel-out/x64_windows-fastbuild/testlogs/rb/spec/integration/selenium/webdriver/bidi-edge-remote/test_attempts/attempt_2.log
    2545:  �[32mINFO: �[0mFrom Testing //rb/spec/integration/selenium/webdriver:bidi-edge-remote:
    2546:  ==================== Test output for //rb/spec/integration/selenium/webdriver:bidi-edge-remote:
    2547:  2024-03-26 01:10:03 INFO Selenium Server Location: D:/_bazel/execroot/selenium/bazel-out/x64_windows-fastbuild/bin/rb/spec/integration/selenium/webdriver/bidi-edge-remote.cmd.runfiles/selenium/java/src/org/openqa/selenium/grid/selenium_server_deploy.jar
    2548:  An error occurred in a `before(:suite)` hook.
    2549:  Failure/Error: @pid = Process.spawn(*@command, options)
    2550:  Errno::EACCES:
    2551:  Permission denied - java
    2552:  # ./rb/lib/selenium/webdriver/common/child_process.rb:57:in `spawn'
    2553:  # ./rb/lib/selenium/webdriver/common/child_process.rb:57:in `start'
    2554:  # ./rb/lib/selenium/server.rb:204:in `start'
    2555:  # //?/D:/a/selenium/selenium/rb/spec/integration/selenium/webdriver/spec_helper.rb:40:in `block (2 levels) in <top (required)>'
    2556:  Finished in 0.06021 seconds (files took 0.75405 seconds to load)
    2557:  0 examples, 0 failures, 1 error occurred outside of examples
    2558:  ================================================================================
    2559:  ==================== Test output for //rb/spec/integration/selenium/webdriver:bidi-edge-remote:
    2560:  2024-03-26 01:10:11 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
    2561:  An error occurred in a `before(:suite)` hook.
    2562:  Failure/Error: @pid = Process.spawn(*@command, options)
    2563:  Errno::EACCES:
    2564:  Permission denied - java
    2565:  # ./rb/lib/selenium/webdriver/common/child_process.rb:57:in `spawn'
    2566:  # ./rb/lib/selenium/webdriver/common/child_process.rb:57:in `start'
    2567:  # ./rb/lib/selenium/server.rb:204:in `start'
    2568:  # //?/D:/a/selenium/selenium/rb/spec/integration/selenium/webdriver/spec_helper.rb:40:in `block (2 levels) in <top (required)>'
    2569:  Finished in 0.06511 seconds (files took 0.73604 seconds to load)
    2570:  0 examples, 0 failures, 1 error occurred outside of examples
    2571:  ================================================================================
    2572:  ==================== Test output for //rb/spec/integration/selenium/webdriver:bidi-edge-remote:
    2573:  2024-03-26 01:10:18 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
    2574:  An error occurred in a `before(:suite)` hook.
    2575:  Failure/Error: @pid = Process.spawn(*@command, options)
    2576:  Errno::EACCES:
    2577:  Permission denied - java
    2578:  # ./rb/lib/selenium/webdriver/common/child_process.rb:57:in `spawn'
    2579:  # ./rb/lib/selenium/webdriver/common/child_process.rb:57:in `start'
    2580:  # ./rb/lib/selenium/server.rb:204:in `start'
    2581:  # //?/D:/a/selenium/selenium/rb/spec/integration/selenium/webdriver/spec_helper.rb:40:in `block (2 levels) in <top (required)>'
    2582:  Finished in 0.05676 seconds (files took 0.73612 seconds to load)
    2583:  0 examples, 0 failures, 1 error occurred outside of examples
    2584:  ================================================================================
    2585:  �[32mINFO: �[0mFound 27 test targets...
    2586:  �[32mINFO: �[0mElapsed time: 909.579s, Critical Path: 211.74s
    2587:  �[32mINFO: �[0m2672 processes: 1474 disk cache hit, 1059 internal, 139 local.
    2588:  �[32mINFO: �[0mBuild completed, 27 tests FAILED, 2672 total actions
    2589:  //rb/spec/integration/selenium/webdriver:action_builder-edge-remote      �[0m�[31m�[1mFAILED�[0m in 3 out of 3 in 7.4s
    2590:  Stats over 3 runs: max = 7.4s, min = 7.1s, avg = 7.3s, dev = 0.2s
    2591:  D:/_bazel/execroot/selenium/bazel-out/x64_windows-fastbuild/testlogs/rb/spec/integration/selenium/webdriver/action_builder-edge-remote/test.log
    2592:  D:/_bazel/execroot/selenium/bazel-out/x64_windows-fastbuild/testlogs/rb/spec/integration/selenium/webdriver/action_builder-edge-remote/test_attempts/attempt_1.log
    2593:  D:/_bazel/execroot/selenium/bazel-out/x64_windows-fastbuild/testlogs/rb/spec/integration/selenium/webdriver/action_builder-edge-remote/test_attempts/attempt_2.log
    2594:  //rb/spec/integration/selenium/webdriver:bidi-edge-remote                �[0m�[31m�[1mFAILED�[0m in 3 out of 3 in 7.1s
    2595:  Stats over 3 runs: max = 7.1s, min = 7.0s, avg = 7.0s, dev = 0.0s
    2596:  D:/_bazel/execroot/selenium/bazel-out/x64_windows-fastbuild/testlogs/rb/spec/integration/selenium/webdriver/bidi-edge-remote/test.log
    2597:  D:/_bazel/execroot/selenium/bazel-out/x64_windows-fastbuild/testlogs/rb/spec/integration/selenium/webdriver/bidi-edge-remote/test_attempts/attempt_1.log
    2598:  D:/_bazel/execroot/selenium/bazel-out/x64_windows-fastbuild/testlogs/rb/spec/integration/selenium/webdriver/bidi-edge-remote/test_attempts/attempt_2.log
    2599:  //rb/spec/integration/selenium/webdriver:devtools-edge-remote            �[0m�[31m�[1mFAILED�[0m in 3 out of 3 in 7.2s
    2600:  Stats over 3 runs: max = 7.2s, min = 7.0s, avg = 7.1s, dev = 0.1s
    2601:  D:/_bazel/execroot/selenium/bazel-out/x64_windows-fastbuild/testlogs/rb/spec/integration/selenium/webdriver/devtools-edge-remote/test.log
    2602:  D:/_bazel/execroot/selenium/bazel-out/x64_windows-fastbuild/testlogs/rb/spec/integration/selenium/webdriver/devtools-edge-remote/test_attempts/attempt_1.log
    2603:  D:/_bazel/execroot/selenium/bazel-out/x64_windows-fastbuild/testlogs/rb/spec/integration/selenium/webdriver/devtools-edge-remote/test_attempts/attempt_2.log
    2604:  //rb/spec/integration/selenium/webdriver:driver-edge-remote              �[0m�[31m�[1mFAILED�[0m in 3 out of 3 in 7.6s
    2605:  Stats over 3 runs: max = 7.6s, min = 7.1s, avg = 7.3s, dev = 0.2s
    2606:  D:/_bazel/execroot/selenium/bazel-out/x64_windows-fastbuild/testlogs/rb/spec/integration/selenium/webdriver/driver-edge-remote/test.log
    2607:  D:/_bazel/execroot/selenium/bazel-out/x64_windows-fastbuild/testlogs/rb/spec/integration/selenium/webdriver/driver-edge-remote/test_attempts/attempt_1.log
    2608:  D:/_bazel/execroot/selenium/bazel-out/x64_windows-fastbuild/testlogs/rb/spec/integration/selenium/webdriver/driver-edge-remote/test_attempts/attempt_2.log
    2609:  //rb/spec/integration/selenium/webdriver:element-edge-remote             �[0m�[31m�[1mFAILED�[0m in 3 out of 3 in 8.4s
    2610:  Stats over 3 runs: max = 8.4s, min = 7.3s, avg = 7.8s, dev = 0.4s
    2611:  D:/_bazel/execroot/selenium/bazel-out/x64_windows-fastbuild/testlogs/rb/spec/integration/selenium/webdriver/element-edge-remote/test.log
    2612:  D:/_bazel/execroot/selenium/bazel-out/x64_windows-fastbuild/testlogs/rb/spec/integration/selenium/webdriver/element-edge-remote/test_attempts/attempt_1.log
    2613:  D:/_bazel/execroot/selenium/bazel-out/x64_windows-fastbuild/testlogs/rb/spec/integration/selenium/webdriver/element-edge-remote/test_attempts/attempt_2.log
    2614:  //rb/spec/integration/selenium/webdriver:error-edge-remote               �[0m�[31m�[1mFAILED�[0m in 3 out of 3 in 7.1s
    2615:  Stats over 3 runs: max = 7.1s, min = 6.9s, avg = 7.0s, dev = 0.1s
    2616:  D:/_bazel/execroot/selenium/bazel-out/x64_windows-fastbuild/testlogs/rb/spec/integration/selenium/webdriver/error-edge-remote/test.log
    2617:  D:/_bazel/execroot/selenium/bazel-out/x64_windows-fastbuild/testlogs/rb/spec/integration/selenium/webdriver/error-edge-remote/test_attempts/attempt_1.log
    2618:  D:/_bazel/execroot/selenium/bazel-out/x64_windows-fastbuild/testlogs/rb/spec/integration/selenium/webdriver/error-edge-remote/test_attempts/attempt_2.log
    2619:  //rb/spec/integration/selenium/webdriver:guard-edge-remote               �[0m�[31m�[1mFAILED�[0m in 3 out of 3 in 7.1s
    2620:  Stats over 3 runs: max = 7.1s, min = 7.0s, avg = 7.0s, dev = 0.1s
    2621:  D:/_bazel/execroot/selenium/bazel-out/x64_windows-fastbuild/testlogs/rb/spec/integration/selenium/webdriver/guard-edge-remote/test.log
    2622:  D:/_bazel/execroot/selenium/bazel-out/x64_windows-fastbuild/testlogs/rb/spec/integration/selenium/webdriver/guard-edge-remote/test_attempts/attempt_1.log
    2623:  D:/_bazel/execroot/selenium/bazel-out/x64_windows-fastbuild/testlogs/rb/spec/integration/selenium/webdriver/guard-edge-remote/test_attempts/attempt_2.log
    2624:  //rb/spec/integration/selenium/webdriver:listener-edge-remote            �[0m�[31m�[1mFAILED�[0m in 3 out of 3 in 7.1s
    2625:  Stats over 3 runs: max = 7.1s, min = 6.9s, avg = 7.0s, dev = 0.1s
    2626:  D:/_bazel/execroot/selenium/bazel-out/x64_windows-fastbuild/testlogs/rb/spec/integration/selenium/webdriver/listener-edge-remote/test.log
    2627:  D:/_bazel/execroot/selenium/bazel-out/x64_windows-fastbuild/testlogs/rb/spec/integration/selenium/webdriver/listener-edge-remote/test_attempts/attempt_1.log
    2628:  D:/_bazel/execroot/selenium/bazel-out/x64_windows-fastbuild/testlogs/rb/spec/integration/selenium/webdriver/listener-edge-remote/test_attempts/attempt_2.log
    2629:  //rb/spec/integration/selenium/webdriver:manager-edge-remote             �[0m�[31m�[1mFAILED�[0m in 3 out of 3 in 7.4s
    2630:  Stats over 3 runs: max = 7.4s, min = 7.2s, avg = 7.3s, dev = 0.1s
    2631:  D:/_bazel/execroot/selenium/bazel-out/x64_windows-fastbuild/testlogs/rb/spec/integration/selenium/webdriver/manager-edge-remote/test.log
    2632:  D:/_bazel/execroot/selenium/bazel-out/x64_windows-fastbuild/testlogs/rb/spec/integration/selenium/webdriver/manager-edge-remote/test_attempts/attempt_1.log
    2633:  D:/_bazel/execroot/selenium/bazel-out/x64_windows-fastbuild/testlogs/rb/spec/integration/selenium/webdriver/manager-edge-remote/test_attempts/attempt_2.log
    2634:  //rb/spec/integration/selenium/webdriver:navigation-edge-remote          �[0m�[31m�[1mFAILED�[0m in 3 out of 3 in 7.5s
    2635:  Stats over 3 runs: max = 7.5s, min = 7.3s, avg = 7.4s, dev = 0.1s
    2636:  D:/_bazel/execroot/selenium/bazel-out/x64_windows-fastbuild/testlogs/rb/spec/integration/selenium/webdriver/navigation-edge-remote/test.log
    2637:  D:/_bazel/execroot/selenium/bazel-out/x64_windows-fastbuild/testlogs/rb/spec/integration/selenium/webdriver/navigation-edge-remote/test_attempts/attempt_1.log
    2638:  D:/_bazel/execroot/selenium/bazel-out/x64_windows-fastbuild/testlogs/rb/spec/integration/selenium/webdriver/navigation-edge-remote/test_attempts/attempt_2.log
    2639:  //rb/spec/integration/selenium/webdriver:select-edge-remote              �[0m�[31m�[1mFAILED�[0m in 3 out of 3 in 7.8s
    2640:  Stats over 3 runs: max = 7.8s, min = 7.3s, avg = 7.5s, dev = 0.2s
    2641:  D:/_bazel/execroot/selenium/bazel-out/x64_windows-fastbuild/testlogs/rb/spec/integration/selenium/webdriver/select-edge-remote/test.log
    2642:  D:/_bazel/execroot/selenium/bazel-out/x64_windows-fastbuild/testlogs/rb/spec/integration/selenium/webdriver/select-edge-remote/test_attempts/attempt_1.log
    2643:  D:/_bazel/execroot/selenium/bazel-out/x64_windows-fastbuild/testlogs/rb/spec/integration/selenium/webdriver/select-edge-remote/test_attempts/attempt_2.log
    2644:  //rb/spec/integration/selenium/webdriver:shadow_root-edge-remote         �[0m�[31m�[1mFAILED�[0m in 3 out of 3 in 7.4s
    2645:  Stats over 3 runs: max = 7.4s, min = 7.3s, avg = 7.3s, dev = 0.0s
    2646:  D:/_bazel/execroot/selenium/bazel-out/x64_windows-fastbuild/testlogs/rb/spec/integration/selenium/webdriver/shadow_root-edge-remote/test.log
    2647:  D:/_bazel/execroot/selenium/bazel-out/x64_windows-fastbuild/testlogs/rb/spec/integration/selenium/webdriver/shadow_root-edge-remote/test_attempts/attempt_1.log
    2648:  D:/_bazel/execroot/selenium/bazel-out/x64_windows-fastbuild/testlogs/rb/spec/integration/selenium/webdriver/shadow_root-edge-remote/test_attempts/attempt_2.log
    2649:  //rb/spec/integration/selenium/webdriver:storage-edge-remote             �[0m�[31m�[1mFAILED�[0m in 3 out of 3 in 7.6s
    2650:  Stats over 3 runs: max = 7.6s, min = 7.2s, avg = 7.3s, dev = 0.2s
    2651:  D:/_bazel/execroot/selenium/bazel-out/x64_windows-fastbuild/testlogs/rb/spec/integration/selenium/webdriver/storage-edge-remote/test.log
    2652:  D:/_bazel/execroot/selenium/bazel-out/x64_windows-fastbuild/testlogs/rb/spec/integration/selenium/webdriver/storage-edge-remote/test_attempts/attempt_1.log
    2653:  D:/_bazel/execroot/selenium/bazel-out/x64_windows-fastbuild/testlogs/rb/spec/integration/selenium/webdriver/storage-edge-remote/test_attempts/attempt_2.log
    2654:  //rb/spec/integration/selenium/webdriver:takes_screenshot-edge-remote    �[0m�[31m�[1mFAILED�[0m in 3 out of 3 in 7.6s
    2655:  Stats over 3 runs: max = 7.6s, min = 7.1s, avg = 7.3s, dev = 0.2s
    2656:  D:/_bazel/execroot/selenium/bazel-out/x64_windows-fastbuild/testlogs/rb/spec/integration/selenium/webdriver/takes_screenshot-edge-remote/test.log
    2657:  D:/_bazel/execroot/selenium/bazel-out/x64_windows-fastbuild/testlogs/rb/spec/integration/selenium/webdriver/takes_screenshot-edge-remote/test_attempts/attempt_1.log
    2658:  D:/_bazel/execroot/selenium/bazel-out/x64_windows-fastbuild/testlogs/rb/spec/integration/selenium/webdriver/takes_screenshot-edge-remote/test_attempts/attempt_2.log
    2659:  //rb/spec/integration/selenium/webdriver:target_locator-edge-remote      �[0m�[31m�[1mFAILED�[0m in 3 out of 3 in 8.0s
    2660:  Stats over 3 runs: max = 8.0s, min = 7.3s, avg = 7.6s, dev = 0.3s
    2661:  D:/_bazel/execroot/selenium/bazel-out/x64_windows-fastbuild/testlogs/rb/spec/integration/selenium/webdriver/target_locator-edge-remote/test.log
    2662:  D:/_bazel/execroot/selenium/bazel-out/x64_windows-fastbuild/testlogs/rb/spec/integration/selenium/webdriver/target_locator-edge-remote/test_attempts/attempt_1.log
    2663:  D:/_bazel/execroot/selenium/bazel-out/x64_windows-fastbuild/testlogs/rb/spec/integration/selenium/webdriver/target_locator-edge-remote/test_attempts/attempt_2.log
    2664:  //rb/spec/integration/selenium/webdriver:timeout-edge-remote             �[0m�[31m�[1mFAILED�[0m in 3 out of 3 in 7.4s
    2665:  Stats over 3 runs: max = 7.4s, min = 7.3s, avg = 7.3s, dev = 0.1s
    2666:  D:/_bazel/execroot/selenium/bazel-out/x64_windows-fastbuild/testlogs/rb/spec/integration/selenium/webdriver/timeout-edge-remote/test.log
    2667:  D:/_bazel/execroot/selenium/bazel-out/x64_windows-fastbuild/testlogs/rb/spec/integration/selenium/webdriver/timeout-edge-remote/test_attempts/attempt_1.log
    2668:  D:/_bazel/execroot/selenium/bazel-out/x64_windows-fastbuild/testlogs/rb/spec/integration/selenium/webdriver/timeout-edge-remote/test_attempts/attempt_2.log
    2669:  //rb/spec/integration/selenium/webdriver:virtual_authenticator-edge-remote �[0m�[31m�[1mFAILED�[0m in 3 out of 3 in 7.4s
    2670:  Stats over 3 runs: max = 7.4s, min = 7.1s, avg = 7.3s, dev = 0.1s
    2671:  D:/_bazel/execroot/selenium/bazel-out/x64_windows-fastbuild/testlogs/rb/spec/integration/selenium/webdriver/virtual_authenticator-edge-remote/test.log
    2672:  D:/_bazel/execroot/selenium/bazel-out/x64_windows-fastbuild/testlogs/rb/spec/integration/selenium/webdriver/virtual_authenticator-edge-remote/test_attempts/attempt_1.log
    2673:  D:/_bazel/execroot/selenium/bazel-out/x64_windows-fastbuild/testlogs/rb/spec/integration/selenium/webdriver/virtual_authenticator-edge-remote/test_attempts/attempt_2.log
    2674:  //rb/spec/integration/selenium/webdriver:window-edge-remote              �[0m�[31m�[1mFAILED�[0m in 3 out of 3 in 7.5s
    2675:  Stats over 3 runs: max = 7.5s, min = 7.3s, avg = 7.4s, dev = 0.1s
    2676:  D:/_bazel/execroot/selenium/bazel-out/x64_windows-fastbuild/testlogs/rb/spec/integration/selenium/webdriver/window-edge-remote/test.log
    2677:  D:/_bazel/execroot/selenium/bazel-out/x64_windows-fastbuild/testlogs/rb/spec/integration/selenium/webdriver/window-edge-remote/test_attempts/attempt_1.log
    2678:  D:/_bazel/execroot/selenium/bazel-out/x64_windows-fastbuild/testlogs/rb/spec/integration/selenium/webdriver/window-edge-remote/test_attempts/attempt_2.log
    2679:  //rb/spec/integration/selenium/webdriver:zipper-edge-remote              �[0m�[31m�[1mFAILED�[0m in 3 out of 3 in 8.4s
    2680:  Stats over 3 runs: max = 8.4s, min = 7.2s, avg = 7.7s, dev = 0.5s
    2681:  D:/_bazel/execroot/selenium/bazel-out/x64_windows-fastbuild/testlogs/rb/spec/integration/selenium/webdriver/zipper-edge-remote/test.log
    2682:  D:/_bazel/execroot/selenium/bazel-out/x64_windows-fastbuild/testlogs/rb/spec/integration/selenium/webdriver/zipper-edge-remote/test_attempts/attempt_1.log
    2683:  D:/_bazel/execroot/selenium/bazel-out/x64_windows-fastbuild/testlogs/rb/spec/integration/selenium/webdriver/zipper-edge-remote/test_attempts/attempt_2.log
    2684:  //rb/spec/integration/selenium/webdriver/bidi:browsing_context-edge-remote �[0m�[31m�[1mFAILED�[0m in 3 out of 3 in 7.1s
    2685:  Stats over 3 runs: max = 7.1s, min = 7.1s, avg = 7.1s, dev = 0.0s
    2686:  D:/_bazel/execroot/selenium/bazel-out/x64_windows-fastbuild/testlogs/rb/spec/integration/selenium/webdriver/bidi/browsing_context-edge-remote/test.log
    2687:  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
    2688:  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
    2689:  //rb/spec/integration/selenium/webdriver/bidi:log_inspector-edge-remote  �[0m�[31m�[1mFAILED�[0m in 3 out of 3 in 7.1s
    2690:  Stats over 3 runs: max = 7.1s, min = 7.0s, avg = 7.0s, dev = 0.0s
    2691:  D:/_bazel/execroot/selenium/bazel-out/x64_windows-fastbuild/testlogs/rb/spec/integration/selenium/webdriver/bidi/log_inspector-edge-remote/test.log
    2692:  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
    2693:  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
    2694:  //rb/spec/integration/selenium/webdriver/edge:driver-edge-remote         �[0m�[31m�[1mFAILED�[0m in 3 out of 3 in 8.1s
    2695:  Stats over 3 runs: max = 8.1s, min = 7.2s, avg = 7.6s, dev = 0.4s
    2696:  D:/_bazel/execroot/selenium/bazel-out/x64_windows-fastbuild/testlogs/rb/spec/integration/selenium/webdriver/edge/driver-edge-remote/test.log
    2697:  D:/_bazel/execroot/selenium/bazel-out/x64_windows-fastbuild/testlogs/rb/spec/integration/selenium/webdriver/edge/driver-edge-remote/test_attempts/attempt_1.log
    2698:  D:/_bazel/execroot/selenium/bazel-out/x64_windows-fastbuild/testlogs/rb/spec/integration/selenium/webdriver/edge/driver-edge-remote/test_attempts/attempt_2.log
    2699:  //rb/spec/integration/selenium/webdriver/edge:options-edge-remote        �[0m�[31m�[1mFAILED�[0m in 3 out of 3 in 7.5s
    2700:  Stats over 3 runs: max = 7.5s, min = 7.3s, avg = 7.4s, dev = 0.1s
    2701:  D:/_bazel/execroot/selenium/bazel-out/x64_windows-fastbuild/testlogs/rb/spec/integration/selenium/webdriver/edge/options-edge-remote/test.log
    2702:  D:/_bazel/execroot/selenium/bazel-out/x64_windows-fastbuild/testlogs/rb/spec/integration/selenium/webdriver/edge/options-edge-remote/test_attempts/attempt_1.log
    2703:  D:/_bazel/execroot/selenium/bazel-out/x64_windows-fastbuild/testlogs/rb/spec/integration/selenium/webdriver/edge/options-edge-remote/test_attempts/attempt_2.log
    2704:  //rb/spec/integration/selenium/webdriver/edge:profile-edge-remote        �[0m�[31m�[1mFAILED�[0m in 3 out of 3 in 7.6s
    2705:  Stats over 3 runs: max = 7.6s, min = 7.4s, avg = 7.5s, dev = 0.1s
    2706:  D:/_bazel/execroot/selenium/bazel-out/x64_windows-fastbuild/testlogs/rb/spec/integration/selenium/webdriver/edge/profile-edge-remote/test.log
    2707:  D:/_bazel/execroot/selenium/bazel-out/x64_windows-fastbuild/testlogs/rb/spec/integration/selenium/webdriver/edge/profile-edge-remote/test_attempts/attempt_1.log
    2708:  D:/_bazel/execroot/selenium/bazel-out/x64_windows-fastbuild/testlogs/rb/spec/integration/selenium/webdriver/edge/profile-edge-remote/test_attempts/attempt_2.log
    2709:  //rb/spec/integration/selenium/webdriver/edge:service-edge-remote        �[0m�[31m�[1mFAILED�[0m in 3 out of 3 in 7.3s
    2710:  Stats over 3 runs: max = 7.3s, min = 7.1s, avg = 7.2s, dev = 0.1s
    2711:  D:/_bazel/execroot/selenium/bazel-out/x64_windows-fastbuild/testlogs/rb/spec/integration/selenium/webdriver/edge/service-edge-remote/test.log
    2712:  D:/_bazel/execroot/selenium/bazel-out/x64_windows-fastbuild/testlogs/rb/spec/integration/selenium/webdriver/edge/service-edge-remote/test_attempts/attempt_1.log
    2713:  D:/_bazel/execroot/selenium/bazel-out/x64_windows-fastbuild/testlogs/rb/spec/integration/selenium/webdriver/edge/service-edge-remote/test_attempts/attempt_2.log
    2714:  //rb/spec/integration/selenium/webdriver/remote:driver-edge-remote       �[0m�[31m�[1mFAILED�[0m in 3 out of 3 in 8.3s
    2715:  Stats over 3 runs: max = 8.3s, min = 7.2s, avg = 7.6s, dev = 0.5s
    2716:  D:/_bazel/execroot/selenium/bazel-out/x64_windows-fastbuild/testlogs/rb/spec/integration/selenium/webdriver/remote/driver-edge-remote/test.log
    2717:  D:/_bazel/execroot/selenium/bazel-out/x64_windows-fastbuild/testlogs/rb/spec/integration/selenium/webdriver/remote/driver-edge-remote/test_attempts/attempt_1.log
    2718:  D:/_bazel/execroot/selenium/bazel-out/x64_windows-fastbuild/testlogs/rb/spec/integration/selenium/webdriver/remote/driver-edge-remote/test_attempts/attempt_2.log
    2719:  //rb/spec/integration/selenium/webdriver/remote:element-edge-remote      �[0m�[31m�[1mFAILED�[0m in 3 out of 3 in 7.9s
    2720:  Stats over 3 runs: max = 7.9s, min = 7.2s, avg = 7.5s, dev = 0.3s
    2721:  D:/_bazel/execroot/selenium/bazel-out/x64_windows-fastbuild/testlogs/rb/spec/integration/selenium/webdriver/remote/element-edge-remote/test.log
    2722:  D:/_bazel/execroot/selenium/bazel-out/x64_windows-fastbuild/testlogs/rb/spec/integration/selenium/webdriver/remote/element-edge-remote/test_attempts/attempt_1.log
    2723:  D:/_bazel/execroot/selenium/bazel-out/x64_windows-fastbuild/testlogs/rb/spec/integration/selenium/webdriver/remote/element-edge-remote/test_attempts/attempt_2.log
    2724:  Executed 27 out of 27 tests: �[0m�[31m�[1m27 fail locally�[0m.
    2725:  �[0m
    2726:  ##[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.

    @diemol diemol merged commit 0e4e739 into trunk Mar 26, 2024
    37 of 39 checks passed
    @diemol diemol deleted the pinned-browser-updates branch March 26, 2024 08:45
    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

    3 participants