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 #13798

Merged
merged 1 commit into from
Apr 11, 2024

Conversation

selenium-ci
Copy link
Member

@selenium-ci selenium-ci commented Apr 11, 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 Chrome and ChromeDriver to version 123.0.6312.122 for Linux and macOS platforms in repositories.bzl.
  • This update includes new SHA256 checksums for the updated browser and driver versions.

Changes walkthrough

Relevant files
Enhancement
repositories.bzl
Update Chrome and ChromeDriver Versions for Linux and macOS

common/repositories.bzl

  • Updated Chrome and ChromeDriver versions for Linux and macOS.
  • New Chrome version: 123.0.6312.122.
  • New ChromeDriver version: 123.0.6312.122.
  • Updated SHA256 checksums for both Chrome and ChromeDriver archives.
  • +8/-8     

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

    Copy link

    PR Review

    ⏱️ Estimated effort to review [1-5]

    2, because the changes are straightforward version updates for Chrome and ChromeDriver for Linux and macOS platforms. The modifications include updated URLs and SHA256 checksums for both the browser and the driver, which are easy to verify but require attention to detail to ensure accuracy.

    🧪 Relevant tests

    No

    🔍 Possible issues

    Possible Issue: Compatibility with existing tests. Updating browser and driver versions could potentially introduce compatibility issues with existing automated tests. It's crucial to verify that all tests pass with the new versions.

    Possible Issue: Dependency on external URLs. The PR relies on external URLs for downloading Chrome and ChromeDriver. If these URLs become unavailable or the files at these URLs change, it could break the build process.

    🔒 Security concerns

    No


    ✨ Review tool usage guide:

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

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

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

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

    Copy link

    PR Code Suggestions

    CategorySuggestions                                                                                                                                                       
    Security
    Verify the integrity of downloaded files by checking their SHA256 checksums.

    Consider verifying the new SHA256 checksums against the files downloaded from the URLs
    provided to ensure that the files have not been tampered with or corrupted during transit.
    This is a crucial security practice to prevent the introduction of malicious code into
    your project.

    common/repositories.bzl [118]

    -sha256 = "97d7925c795786f235f86973d1f60a70ad9613e96b22fee084720b3c6ba0701b",
    +sha256 = "<verified-checksum>",
     
    Possible issue
    Verify strip_prefix and patch_cmds reflect the new archive structures.

    Ensure that the strip_prefix and patch_cmds fields are correctly updated to reflect any
    changes in the directory structure or filenames within the new versions of the archives.
    This is crucial for the correct extraction and usage of the files.

    common/repositories.bzl [136-138]

    -strip_prefix = "chrome-mac-x64",
    +strip_prefix = "chrome-mac-x64",  # Ensure this matches the new archive's structure
     patch_cmds = [
    -    "mv 'Google Chrome for Testing.app' Chrome.app",
    +    "mv 'Google Chrome for Testing.app' Chrome.app",  # Verify the filename is correct
     
    Enhancement
    Define browser versions as variables for easier updates.

    For future-proofing and ease of updates, consider defining the Chrome and ChromeDriver
    versions as variables at the beginning of the file. This approach simplifies version
    updates, making the file easier to maintain.

    common/repositories.bzl [117]

    -url = "https://storage.googleapis.com/chrome-for-testing-public/123.0.6312.122/linux64/chrome-linux64.zip",
    +CHROME_VERSION = "123.0.6312.122"
    +url = f"https://storage.googleapis.com/chrome-for-testing-public/{CHROME_VERSION}/linux64/chrome-linux64.zip",
     
    Maintainability
    Use a helper function to generate http_archive definitions and reduce duplication.

    Given the repetitive nature of the http_archive definitions for different platforms,
    consider creating a helper function that generates these archive definitions from
    parameters. This would reduce code duplication and improve maintainability.

    common/repositories.bzl [115-119]

    -http_archive(
    -    name = "linux_chrome",
    -    url = "https://storage.googleapis.com/chrome-for-testing-public/123.0.6312.122/linux64/chrome-linux64.zip",
    -    sha256 = "97d7925c795786f235f86973d1f60a70ad9613e96b22fee084720b3c6ba0701b",
    -    build_file_content = """
    +def create_chrome_archive(name, platform, version, sha):
    +    return http_archive(
    +        name = name,
    +        url = f"https://storage.googleapis.com/chrome-for-testing-public/{version}/{platform}/chrome-{platform}.zip",
    +        sha256 = sha,
    +        build_file_content = """
     

    ✨ Improve tool usage guide:

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

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

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

    Copy link

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

    CI Failure Feedback

    (Checks updated until commit b090c9e)

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

    Failed stage: Run Bazel [❌]

    Failure summary:

    All tests failed due to a common error in the before(:suite) hook across multiple test suites. The
    failure is caused by an Errno::EACCES error, indicating "Permission denied - java". This suggests
    that the test environment attempted to spawn a Java process as part of the test setup but lacked the
    necessary permissions to do so. This could be due to restrictive permissions on the Java executable
    or the environment from which the tests are being run not having sufficient privileges.

    Relevant error logs:
    1:  ##[group]Operating System
    2:  Microsoft Windows Server 2022
    ...
    
    723:  �[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
    724:  �[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
    725:  �[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
    726:  �[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
    727:  �[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
    728:  �[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
    729:  �[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
    730:  �[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
    731:  �[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
    ...
    
    741:  �[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
    742:  �[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
    743:  �[32m[1,653 / 2,887]�[0m [Prepa] Copying directory npm__at_mui_icons-material__5.15.8__-554584225/package ... (4 actions, 0 running)
    744:  �[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
    745:  �[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
    746:  �[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
    747:  �[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
    748:  �[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
    749:  �[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
    ...
    
    832:  �[32mINFO: �[0mFrom Installing external/bundle/rb/vendor/cache/bundler-2.4.19.gem (@@bundle//:bundler-2.4.19):
    833:  Successfully installed bundler-2.4.19
    834:  1 gem installed
    835:  �[32m[2,705 / 2,887]�[0m [Prepa] Copying directory npm__at_mui_icons-material__5.15.8__-554584225/package; 13s ... (4 actions, 1 running)
    836:  �[32m[2,707 / 2,887]�[0m [Prepa] Copying directory npm__at_mui_icons-material__5.15.8__-554584225/package; 15s ... (4 actions, 1 running)
    837:  �[32m[2,707 / 2,887]�[0m [Prepa] Copying directory npm__at_mui_icons-material__5.15.8__-554584225/package; 16s ... (4 actions, 2 running)
    838:  �[32m[2,715 / 2,887]�[0m [Prepa] Copying directory npm__at_mui_icons-material__5.15.8__-554584225/package; 17s ... (4 actions, 1 running)
    839:  �[32mINFO: �[0mFrom Building java/src/org/openqa/selenium/remote/libapi-class.jar (66 source files):
    840:  java\src\org\openqa\selenium\remote\ErrorHandler.java:46: warning: [removal] ErrorCodes in org.openqa.selenium.remote has been deprecated and marked for removal
    841:  private final ErrorCodes errorCodes;
    842:  ^
    843:  java\src\org\openqa\selenium\remote\ErrorHandler.java:60: warning: [removal] ErrorCodes in org.openqa.selenium.remote has been deprecated and marked for removal
    844:  this.errorCodes = new ErrorCodes();
    845:  ^
    846:  java\src\org\openqa\selenium\remote\ErrorHandler.java:68: warning: [removal] ErrorCodes in org.openqa.selenium.remote has been deprecated and marked for removal
    847:  public ErrorHandler(ErrorCodes codes, boolean includeServerErrors) {
    848:  ^
    849:  java\src\org\openqa\selenium\remote\Response.java:97: warning: [removal] ErrorCodes in org.openqa.selenium.remote has been deprecated and marked for removal
    850:  ErrorCodes errorCodes = new ErrorCodes();
    851:  ^
    852:  java\src\org\openqa\selenium\remote\Response.java:97: warning: [removal] ErrorCodes in org.openqa.selenium.remote has been deprecated and marked for removal
    853:  ErrorCodes errorCodes = new ErrorCodes();
    854:  ^
    855:  java\src\org\openqa\selenium\remote\ProtocolHandshake.java:181: warning: [removal] ErrorCodes in org.openqa.selenium.remote has been deprecated and marked for removal
    856:  response.setStatus(ErrorCodes.SUCCESS);
    857:  ^
    858:  java\src\org\openqa\selenium\remote\ProtocolHandshake.java:182: warning: [removal] ErrorCodes in org.openqa.selenium.remote has been deprecated and marked for removal
    859:  response.setState(ErrorCodes.SUCCESS_STRING);
    860:  ^
    861:  java\src\org\openqa\selenium\remote\W3CHandshakeResponse.java:53: warning: [removal] ErrorCodes in org.openqa.selenium.remote has been deprecated and marked for removal
    862:  new ErrorCodes().toStatus((String) rawError, Optional.of(tuple.getStatusCode())));
    863:  ^
    864:  java\src\org\openqa\selenium\remote\W3CHandshakeResponse.java:56: warning: [removal] ErrorCodes in org.openqa.selenium.remote has been deprecated and marked for removal
    865:  new ErrorCodes().getExceptionType((String) rawError);
    866:  ^
    867:  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
    868:  private final ErrorCodes errorCodes = new ErrorCodes();
    869:  ^
    870:  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
    871:  private final ErrorCodes errorCodes = new ErrorCodes();
    872:  ^
    873:  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
    874:  int status = response.getStatus() == ErrorCodes.SUCCESS ? HTTP_OK : HTTP_INTERNAL_ERROR;
    875:  ^
    876:  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
    877:  response.setStatus(ErrorCodes.UNKNOWN_COMMAND);
    878:  ^
    879:  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
    880:  response.setStatus(ErrorCodes.UNHANDLED_ERROR);
    881:  ^
    882:  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
    883:  response.setStatus(ErrorCodes.SUCCESS);
    884:  ^
    885:  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
    886:  response.setState(errorCodes.toState(ErrorCodes.SUCCESS));
    887:  ^
    888:  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
    889:  response.setState(errorCodes.toState(ErrorCodes.SUCCESS));
    890:  ^
    891:  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
    892:  private final ErrorCodes errorCodes = new ErrorCodes();
    893:  ^
    894:  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
    895:  private final ErrorCodes errorCodes = new ErrorCodes();
    896:  ^
    897:  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
    898:  response.setStatus(ErrorCodes.UNKNOWN_COMMAND);
    899:  ^
    900:  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
    901:  response.setStatus(ErrorCodes.UNHANDLED_ERROR);
    902:  ^
    903:  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
    904:  response.setStatus(ErrorCodes.SUCCESS);
    ...
    
    1056:  �[32m[2,887 / 2,910]�[0m Testing //rb/spec/integration/selenium/webdriver/edge:service-edge-remote; 47s local, disk-cache ... (4 actions running)
    1057:  �[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)
    1058:  �[32m[2,887 / 2,910]�[0m Testing //rb/spec/integration/selenium/webdriver/edge:service-edge-remote; 48s local, disk-cache ... (4 actions running)
    1059:  �[32m[2,887 / 2,910]�[0m Testing //rb/spec/integration/selenium/webdriver/edge:service-edge-remote; 54s local, disk-cache ... (4 actions running)
    1060:  �[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)
    1061:  �[32m[2,887 / 2,910]�[0m Testing //rb/spec/integration/selenium/webdriver/edge:service-edge-remote; 55s local, disk-cache ... (4 actions running)
    1062:  �[32m[2,887 / 2,910]�[0m Testing //rb/spec/integration/selenium/webdriver/edge:service-edge-remote; 60s local, disk-cache ... (4 actions running)
    1063:  �[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)
    1064:  �[31m�[1mFAILED: �[0m//rb/spec/integration/selenium/webdriver/edge:service-edge-remote (Summary)
    1065:  D:/_bazel/execroot/selenium/bazel-out/x64_windows-fastbuild/testlogs/rb/spec/integration/selenium/webdriver/edge/service-edge-remote/test.log
    1066:  D:/_bazel/execroot/selenium/bazel-out/x64_windows-fastbuild/testlogs/rb/spec/integration/selenium/webdriver/edge/service-edge-remote/test_attempts/attempt_1.log
    1067:  ==================== Test output for //rb/spec/integration/selenium/webdriver/edge:service-edge-remote:
    1068:  D:/_bazel/execroot/selenium/bazel-out/x64_windows-fastbuild/testlogs/rb/spec/integration/selenium/webdriver/edge/service-edge-remote/test_attempts/attempt_2.log
    1069:  2024-04-11 00:53:05 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
    1070:  �[32mINFO: �[0mFrom Testing //rb/spec/integration/selenium/webdriver/edge:service-edge-remote:
    1071:  An error occurred in a `before(:suite)` hook.
    1072:  Failure/Error: @pid = Process.spawn(*@command, options)
    1073:  Errno::EACCES:
    1074:  Permission denied - java
    1075:  # ./rb/lib/selenium/webdriver/common/child_process.rb:57:in `spawn'
    1076:  # ./rb/lib/selenium/webdriver/common/child_process.rb:57:in `start'
    1077:  # ./rb/lib/selenium/server.rb:204:in `start'
    1078:  # //?/D:/a/selenium/selenium/rb/spec/integration/selenium/webdriver/spec_helper.rb:40:in `block (2 levels) in <top (required)>'
    1079:  Finished in 0.04911 seconds (files took 0.6647 seconds to load)
    1080:  0 examples, 0 failures, 1 error occurred outside of examples
    1081:  ================================================================================
    1082:  ==================== Test output for //rb/spec/integration/selenium/webdriver/edge:service-edge-remote:
    1083:  2024-04-11 00:53:32 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
    1084:  An error occurred in a `before(:suite)` hook.
    1085:  Failure/Error: @pid = Process.spawn(*@command, options)
    1086:  Errno::EACCES:
    1087:  Permission denied - java
    1088:  # ./rb/lib/selenium/webdriver/common/child_process.rb:57:in `spawn'
    1089:  # ./rb/lib/selenium/webdriver/common/child_process.rb:57:in `start'
    1090:  # ./rb/lib/selenium/server.rb:204:in `start'
    1091:  # //?/D:/a/selenium/selenium/rb/spec/integration/selenium/webdriver/spec_helper.rb:40:in `block (2 levels) in <top (required)>'
    1092:  Finished in 0.04294 seconds (files took 0.60912 seconds to load)
    1093:  0 examples, 0 failures, 1 error occurred outside of examples
    1094:  ================================================================================
    1095:  ==================== Test output for //rb/spec/integration/selenium/webdriver/edge:service-edge-remote:
    1096:  2024-04-11 00:53:59 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
    1097:  An error occurred in a `before(:suite)` hook.
    1098:  Failure/Error: @pid = Process.spawn(*@command, options)
    1099:  Errno::EACCES:
    1100:  Permission denied - java
    1101:  # ./rb/lib/selenium/webdriver/common/child_process.rb:57:in `spawn'
    1102:  # ./rb/lib/selenium/webdriver/common/child_process.rb:57:in `start'
    1103:  # ./rb/lib/selenium/server.rb:204:in `start'
    1104:  # //?/D:/a/selenium/selenium/rb/spec/integration/selenium/webdriver/spec_helper.rb:40:in `block (2 levels) in <top (required)>'
    1105:  Finished in 0.04264 seconds (files took 0.62092 seconds to load)
    1106:  0 examples, 0 failures, 1 error occurred outside of examples
    1107:  ================================================================================
    1108:  �[32m[2,888 / 2,910]�[0m 1 / 27 tests, �[31m�[1m1 failed�[0m;�[0m Testing //rb/spec/integration/selenium/webdriver/remote:driver-edge-remote; 55s local, disk-cache ... (4 actions, 3 running)
    1109:  �[32m[2,888 / 2,910]�[0m 1 / 27 tests, �[31m�[1m1 failed�[0m;�[0m Testing //rb/spec/integration/selenium/webdriver/remote:driver-edge-remote; 60s local, disk-cache ... (4 actions, 3 running)
    1110:  �[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)
    1111:  �[31m�[1mFAILED: �[0m//rb/spec/integration/selenium/webdriver/remote:driver-edge-remote (Summary)
    1112:  D:/_bazel/execroot/selenium/bazel-out/x64_windows-fastbuild/testlogs/rb/spec/integration/selenium/webdriver/remote/driver-edge-remote/test.log
    1113:  D:/_bazel/execroot/selenium/bazel-out/x64_windows-fastbuild/testlogs/rb/spec/integration/selenium/webdriver/remote/driver-edge-remote/test_attempts/attempt_1.log
    1114:  D:/_bazel/execroot/selenium/bazel-out/x64_windows-fastbuild/testlogs/rb/spec/integration/selenium/webdriver/remote/driver-edge-remote/test_attempts/attempt_2.log
    1115:  �[32mINFO: �[0mFrom Testing //rb/spec/integration/selenium/webdriver/remote:driver-edge-remote:
    1116:  ==================== Test output for //rb/spec/integration/selenium/webdriver/remote:driver-edge-remote:
    1117:  2024-04-11 00:53:12 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
    1118:  An error occurred in a `before(:suite)` hook.
    1119:  Failure/Error: @pid = Process.spawn(*@command, options)
    1120:  Errno::EACCES:
    1121:  Permission denied - java
    1122:  # ./rb/lib/selenium/webdriver/common/child_process.rb:57:in `spawn'
    1123:  # ./rb/lib/selenium/webdriver/common/child_process.rb:57:in `start'
    1124:  # ./rb/lib/selenium/server.rb:204:in `start'
    1125:  # //?/D:/a/selenium/selenium/rb/spec/integration/selenium/webdriver/spec_helper.rb:40:in `block (2 levels) in <top (required)>'
    1126:  Finished in 0.04143 seconds (files took 0.58562 seconds to load)
    1127:  0 examples, 0 failures, 1 error occurred outside of examples
    1128:  ================================================================================
    1129:  ==================== Test output for //rb/spec/integration/selenium/webdriver/remote:driver-edge-remote:
    1130:  2024-04-11 00:53:39 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
    1131:  An error occurred in a `before(:suite)` hook.
    1132:  Failure/Error: @pid = Process.spawn(*@command, options)
    1133:  Errno::EACCES:
    1134:  Permission denied - java
    1135:  # ./rb/lib/selenium/webdriver/common/child_process.rb:57:in `spawn'
    1136:  # ./rb/lib/selenium/webdriver/common/child_process.rb:57:in `start'
    1137:  # ./rb/lib/selenium/server.rb:204:in `start'
    1138:  # //?/D:/a/selenium/selenium/rb/spec/integration/selenium/webdriver/spec_helper.rb:40:in `block (2 levels) in <top (required)>'
    1139:  Finished in 0.04155 seconds (files took 0.5816 seconds to load)
    1140:  0 examples, 0 failures, 1 error occurred outside of examples
    1141:  ================================================================================
    1142:  ==================== Test output for //rb/spec/integration/selenium/webdriver/remote:driver-edge-remote:
    1143:  2024-04-11 00:54:06 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
    1144:  An error occurred in a `before(:suite)` hook.
    1145:  Failure/Error: @pid = Process.spawn(*@command, options)
    1146:  Errno::EACCES:
    1147:  Permission denied - java
    1148:  # ./rb/lib/selenium/webdriver/common/child_process.rb:57:in `spawn'
    1149:  # ./rb/lib/selenium/webdriver/common/child_process.rb:57:in `start'
    1150:  # ./rb/lib/selenium/server.rb:204:in `start'
    1151:  # //?/D:/a/selenium/selenium/rb/spec/integration/selenium/webdriver/spec_helper.rb:40:in `block (2 levels) in <top (required)>'
    1152:  Finished in 0.0475 seconds (files took 0.61999 seconds to load)
    1153:  0 examples, 0 failures, 1 error occurred outside of examples
    1154:  ================================================================================
    1155:  �[32m[2,889 / 2,910]�[0m 2 / 27 tests, �[31m�[1m2 failed�[0m;�[0m Testing //rb/spec/integration/selenium/webdriver:manager-edge-remote; 55s local, disk-cache ... (4 actions, 2 running)
    1156:  �[32m[2,889 / 2,910]�[0m 2 / 27 tests, �[31m�[1m2 failed�[0m;�[0m Testing //rb/spec/integration/selenium/webdriver:manager-edge-remote; 58s local, disk-cache ... (4 actions, 2 running)
    1157:  �[32m[2,889 / 2,910]�[0m 2 / 27 tests, �[31m�[1m2 failed�[0m;�[0m Testing //rb/spec/integration/selenium/webdriver:manager-edge-remote; 61s local, disk-cache ... (4 actions, 2 running)
    1158:  �[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)
    1159:  ==================== Test output for //rb/spec/integration/selenium/webdriver:manager-edge-remote:
    1160:  2024-04-11 00:53:19 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
    1161:  �[31m�[1mFAILED: �[0m//rb/spec/integration/selenium/webdriver:manager-edge-remote (Summary)
    1162:  D:/_bazel/execroot/selenium/bazel-out/x64_windows-fastbuild/testlogs/rb/spec/integration/selenium/webdriver/manager-edge-remote/test.log
    1163:  An error occurred in a `before(:suite)` hook.
    1164:  D:/_bazel/execroot/selenium/bazel-out/x64_windows-fastbuild/testlogs/rb/spec/integration/selenium/webdriver/manager-edge-remote/test_attempts/attempt_1.log
    1165:  Failure/Error: @pid = Process.spawn(*@command, options)
    ...
    
    1167:  �[32mINFO: �[0mFrom Testing //rb/spec/integration/selenium/webdriver:manager-edge-remote:
    1168:  Errno::EACCES:
    1169:  Permission denied - java
    1170:  # ./rb/lib/selenium/webdriver/common/child_process.rb:57:in `spawn'
    1171:  # ./rb/lib/selenium/webdriver/common/child_process.rb:57:in `start'
    1172:  # ./rb/lib/selenium/server.rb:204:in `start'
    1173:  # //?/D:/a/selenium/selenium/rb/spec/integration/selenium/webdriver/spec_helper.rb:40:in `block (2 levels) in <top (required)>'
    1174:  Finished in 0.04169 seconds (files took 0.57696 seconds to load)
    1175:  0 examples, 0 failures, 1 error occurred outside of examples
    1176:  ================================================================================
    1177:  ==================== Test output for //rb/spec/integration/selenium/webdriver:manager-edge-remote:
    1178:  2024-04-11 00:53:46 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
    1179:  An error occurred in a `before(:suite)` hook.
    1180:  Failure/Error: @pid = Process.spawn(*@command, options)
    1181:  Errno::EACCES:
    1182:  Permission denied - java
    1183:  # ./rb/lib/selenium/webdriver/common/child_process.rb:57:in `spawn'
    1184:  # ./rb/lib/selenium/webdriver/common/child_process.rb:57:in `start'
    1185:  # ./rb/lib/selenium/server.rb:204:in `start'
    1186:  # //?/D:/a/selenium/selenium/rb/spec/integration/selenium/webdriver/spec_helper.rb:40:in `block (2 levels) in <top (required)>'
    1187:  Finished in 0.04194 seconds (files took 0.56712 seconds to load)
    1188:  0 examples, 0 failures, 1 error occurred outside of examples
    1189:  ================================================================================
    1190:  ==================== Test output for //rb/spec/integration/selenium/webdriver:manager-edge-remote:
    1191:  2024-04-11 00:54:13 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
    1192:  An error occurred in a `before(:suite)` hook.
    1193:  Failure/Error: @pid = Process.spawn(*@command, options)
    1194:  Errno::EACCES:
    1195:  Permission denied - java
    1196:  # ./rb/lib/selenium/webdriver/common/child_process.rb:57:in `spawn'
    1197:  # ./rb/lib/selenium/webdriver/common/child_process.rb:57:in `start'
    1198:  # ./rb/lib/selenium/server.rb:204:in `start'
    1199:  # //?/D:/a/selenium/selenium/rb/spec/integration/selenium/webdriver/spec_helper.rb:40:in `block (2 levels) in <top (required)>'
    1200:  Finished in 0.05754 seconds (files took 0.83173 seconds to load)
    1201:  0 examples, 0 failures, 1 error occurred outside of examples
    1202:  ================================================================================
    1203:  �[32m[2,890 / 2,910]�[0m 3 / 27 tests, �[31m�[1m3 failed�[0m;�[0m Testing //rb/spec/integration/selenium/webdriver:zipper-edge-remote; 55s local, disk-cache ... (4 actions, 1 running)
    1204:  �[32m[2,890 / 2,910]�[0m 3 / 27 tests, �[31m�[1m3 failed�[0m;�[0m Testing //rb/spec/integration/selenium/webdriver:zipper-edge-remote; 61s local, disk-cache ... (4 actions, 1 running)
    1205:  �[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)
    1206:  ==================== Test output for //rb/spec/integration/selenium/webdriver:zipper-edge-remote:
    1207:  2024-04-11 00:53:25 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
    1208:  �[31m�[1mFAILED: �[0m//rb/spec/integration/selenium/webdriver:zipper-edge-remote (Summary)
    1209:  D:/_bazel/execroot/selenium/bazel-out/x64_windows-fastbuild/testlogs/rb/spec/integration/selenium/webdriver/zipper-edge-remote/test.log
    1210:  An error occurred in a `before(:suite)` hook.
    1211:  D:/_bazel/execroot/selenium/bazel-out/x64_windows-fastbuild/testlogs/rb/spec/integration/selenium/webdriver/zipper-edge-remote/test_attempts/attempt_1.log
    1212:  Failure/Error: @pid = Process.spawn(*@command, options)
    ...
    
    1214:  �[32mINFO: �[0mFrom Testing //rb/spec/integration/selenium/webdriver:zipper-edge-remote:
    1215:  Errno::EACCES:
    1216:  Permission denied - java
    1217:  # ./rb/lib/selenium/webdriver/common/child_process.rb:57:in `spawn'
    1218:  # ./rb/lib/selenium/webdriver/common/child_process.rb:57:in `start'
    1219:  # ./rb/lib/selenium/server.rb:204:in `start'
    1220:  # //?/D:/a/selenium/selenium/rb/spec/integration/selenium/webdriver/spec_helper.rb:40:in `block (2 levels) in <top (required)>'
    1221:  Finished in 0.04305 seconds (files took 0.6145 seconds to load)
    1222:  0 examples, 0 failures, 1 error occurred outside of examples
    1223:  ================================================================================
    1224:  ==================== Test output for //rb/spec/integration/selenium/webdriver:zipper-edge-remote:
    1225:  2024-04-11 00:53:52 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
    1226:  An error occurred in a `before(:suite)` hook.
    1227:  Failure/Error: @pid = Process.spawn(*@command, options)
    1228:  Errno::EACCES:
    1229:  Permission denied - java
    1230:  # ./rb/lib/selenium/webdriver/common/child_process.rb:57:in `spawn'
    1231:  # ./rb/lib/selenium/webdriver/common/child_process.rb:57:in `start'
    1232:  # ./rb/lib/selenium/server.rb:204:in `start'
    1233:  # //?/D:/a/selenium/selenium/rb/spec/integration/selenium/webdriver/spec_helper.rb:40:in `block (2 levels) in <top (required)>'
    1234:  Finished in 0.04257 seconds (files took 0.59695 seconds to load)
    1235:  0 examples, 0 failures, 1 error occurred outside of examples
    1236:  ================================================================================
    1237:  ==================== Test output for //rb/spec/integration/selenium/webdriver:zipper-edge-remote:
    1238:  2024-04-11 00:54:21 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
    1239:  An error occurred in a `before(:suite)` hook.
    1240:  Failure/Error: @pid = Process.spawn(*@command, options)
    1241:  Errno::EACCES:
    1242:  Permission denied - java
    1243:  # ./rb/lib/selenium/webdriver/common/child_process.rb:57:in `spawn'
    1244:  # ./rb/lib/selenium/webdriver/common/child_process.rb:57:in `start'
    1245:  # ./rb/lib/selenium/server.rb:204:in `start'
    1246:  # //?/D:/a/selenium/selenium/rb/spec/integration/selenium/webdriver/spec_helper.rb:40:in `block (2 levels) in <top (required)>'
    1247:  Finished in 0.05616 seconds (files took 0.82249 seconds to load)
    1248:  0 examples, 0 failures, 1 error occurred outside of examples
    1249:  ================================================================================
    1250:  �[32m[2,891 / 2,910]�[0m 4 / 27 tests, �[31m�[1m4 failed�[0m;�[0m Testing //rb/spec/integration/selenium/webdriver:element-edge-remote; 6s disk-cache ... (4 actions, 1 running)
    1251:  �[32m[2,891 / 2,910]�[0m 4 / 27 tests, �[31m�[1m4 failed�[0m;�[0m Testing //rb/spec/integration/selenium/webdriver:element-edge-remote; 8s disk-cache ... (4 actions, 1 running)
    1252:  �[32m[2,891 / 2,910]�[0m 4 / 27 tests, �[31m�[1m4 failed�[0m;�[0m [Sched] Testing //rb/spec/integration/selenium/webdriver/edge:options-edge-remote; 7s ... (4 actions, 1 running)
    1253:  �[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)
    1254:  �[32m[2,891 / 2,910]�[0m 4 / 27 tests, �[31m�[1m4 failed�[0m;�[0m Testing //rb/spec/integration/selenium/webdriver/remote:element-edge-remote; 8s local, disk-cache ... (4 actions, 2 running)
    1255:  �[32m[2,891 / 2,910]�[0m 4 / 27 tests, �[31m�[1m4 failed�[0m;�[0m Testing //rb/spec/integration/selenium/webdriver/remote:element-edge-remote; 9s local, disk-cache ... (4 actions, 2 running)
    1256:  �[32m[2,891 / 2,910]�[0m 4 / 27 tests, �[31m�[1m4 failed�[0m;�[0m Testing //rb/spec/integration/selenium/webdriver/remote:element-edge-remote; 12s local, disk-cache ... (4 actions, 2 running)
    1257:  �[32m[2,891 / 2,910]�[0m 4 / 27 tests, �[31m�[1m4 failed�[0m;�[0m Testing //rb/spec/integration/selenium/webdriver/remote:element-edge-remote; 14s local, disk-cache ... (4 actions, 2 running)
    1258:  �[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)
    1259:  �[32m[2,891 / 2,910]�[0m 4 / 27 tests, �[31m�[1m4 failed�[0m;�[0m Testing //rb/spec/integration/selenium/webdriver/remote:element-edge-remote; 15s local, disk-cache ... (4 actions, 3 running)
    1260:  �[32m[2,891 / 2,910]�[0m 4 / 27 tests, �[31m�[1m4 failed�[0m;�[0m Testing //rb/spec/integration/selenium/webdriver/remote:element-edge-remote; 16s local, disk-cache ... (4 actions, 3 running)
    1261:  �[32m[2,891 / 2,910]�[0m 4 / 27 tests, �[31m�[1m4 failed�[0m;�[0m Testing //rb/spec/integration/selenium/webdriver/remote:element-edge-remote; 21s local, disk-cache ... (4 actions, 3 running)
    1262:  �[31m�[1mFAIL: �[0m//rb/spec/integration/selenium/webdriver:element-edge-remote (see D:/_bazel/execroot/selenium/bazel-out/x64_windows-fastbuild/testlogs/rb/spec/integration/selenium/webdriver/element-edge-remote/test_attempts/attempt_1.log)
    1263:  �[32m[2,891 / 2,910]�[0m 4 / 27 tests, �[31m�[1m4 failed�[0m;�[0m Testing //rb/spec/integration/selenium/webdriver/remote:element-edge-remote; 23s local, disk-cache ... (4 actions, 3 running)
    1264:  �[32m[2,891 / 2,910]�[0m 4 / 27 tests, �[31m�[1m4 failed�[0m;�[0m Testing //rb/spec/integration/selenium/webdriver/remote:element-edge-remote; 28s local, disk-cache ... (4 actions running)
    1265:  �[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)
    1266:  �[32m[2,891 / 2,910]�[0m 4 / 27 tests, �[31m�[1m4 failed�[0m;�[0m Testing //rb/spec/integration/selenium/webdriver/remote:element-edge-remote; 30s local, disk-cache ... (4 actions running)
    1267:  �[32m[2,891 / 2,910]�[0m 4 / 27 tests, �[31m�[1m4 failed�[0m;�[0m Testing //rb/spec/integration/selenium/webdriver/remote:element-edge-remote; 34s local, disk-cache ... (4 actions running)
    1268:  �[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)
    1269:  �[32m[2,891 / 2,910]�[0m 4 / 27 tests, �[31m�[1m4 failed�[0m;�[0m Testing //rb/spec/integration/selenium/webdriver/remote:element-edge-remote; 36s local, disk-cache ... (4 actions running)
    1270:  �[32m[2,891 / 2,910]�[0m 4 / 27 tests, �[31m�[1m4 failed�[0m;�[0m Testing //rb/spec/integration/selenium/webdriver/remote:element-edge-remote; 41s local, disk-cache ... (4 actions running)
    1271:  �[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)
    1272:  �[32m[2,891 / 2,910]�[0m 4 / 27 tests, �[31m�[1m4 failed�[0m;�[0m Testing //rb/spec/integration/selenium/webdriver/remote:element-edge-remote; 43s local, disk-cache ... (4 actions running)
    1273:  �[32m[2,891 / 2,910]�[0m 4 / 27 tests, �[31m�[1m4 failed�[0m;�[0m Testing //rb/spec/integration/selenium/webdriver/remote:element-edge-remote; 48s local, disk-cache ... (4 actions running)
    1274:  �[31m�[1mFAIL: �[0m//rb/spec/integration/selenium/webdriver:element-edge-remote (see D:/_bazel/execroot/selenium/bazel-out/x64_windows-fastbuild/testlogs/rb/spec/integration/selenium/webdriver/element-edge-remote/test_attempts/attempt_2.log)
    1275:  �[32m[2,891 / 2,910]�[0m 4 / 27 tests, �[31m�[1m4 failed�[0m;�[0m Testing //rb/spec/integration/selenium/webdriver/remote:element-edge-remote; 50s local, disk-cache ... (4 actions running)
    1276:  �[32m[2,891 / 2,910]�[0m 4 / 27 tests, �[31m�[1m4 failed�[0m;�[0m Testing //rb/spec/integration/selenium/webdriver/remote:element-edge-remote; 55s local, disk-cache ... (4 actions running)
    1277:  �[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)
    1278:  �[31m�[1mFAILED: �[0m//rb/spec/integration/selenium/webdriver/remote:element-edge-remote (Summary)
    1279:  D:/_bazel/execroot/selenium/bazel-out/x64_windows-fastbuild/testlogs/rb/spec/integration/selenium/webdriver/remote/element-edge-remote/test.log
    1280:  D:/_bazel/execroot/selenium/bazel-out/x64_windows-fastbuild/testlogs/rb/spec/integration/selenium/webdriver/remote/element-edge-remote/test_attempts/attempt_1.log
    1281:  D:/_bazel/execroot/selenium/bazel-out/x64_windows-fastbuild/testlogs/rb/spec/integration/selenium/webdriver/remote/element-edge-remote/test_attempts/attempt_2.log
    1282:  �[32mINFO: �[0mFrom Testing //rb/spec/integration/selenium/webdriver/remote:element-edge-remote:
    1283:  ==================== Test output for //rb/spec/integration/selenium/webdriver/remote:element-edge-remote:
    1284:  2024-04-11 00:54:28 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
    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.06863 seconds (files took 0.91559 seconds to load)
    1294:  0 examples, 0 failures, 1 error occurred outside of examples
    1295:  ================================================================================
    1296:  ==================== Test output for //rb/spec/integration/selenium/webdriver/remote:element-edge-remote:
    1297:  2024-04-11 00:54:49 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
    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.04159 seconds (files took 0.57473 seconds to load)
    1307:  0 examples, 0 failures, 1 error occurred outside of examples
    1308:  ================================================================================
    1309:  ==================== Test output for //rb/spec/integration/selenium/webdriver/remote:element-edge-remote:
    1310:  2024-04-11 00:55:16 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
    1311:  An error occurred in a `before(:suite)` hook.
    1312:  Failure/Error: @pid = Process.spawn(*@command, options)
    1313:  Errno::EACCES:
    1314:  Permission denied - java
    1315:  # ./rb/lib/selenium/webdriver/common/child_process.rb:57:in `spawn'
    1316:  # ./rb/lib/selenium/webdriver/common/child_process.rb:57:in `start'
    1317:  # ./rb/lib/selenium/server.rb:204:in `start'
    1318:  # //?/D:/a/selenium/selenium/rb/spec/integration/selenium/webdriver/spec_helper.rb:40:in `block (2 levels) in <top (required)>'
    1319:  Finished in 0.04161 seconds (files took 0.57651 seconds to load)
    1320:  0 examples, 0 failures, 1 error occurred outside of examples
    1321:  ================================================================================
    1322:  �[32m[2,892 / 2,910]�[0m 5 / 27 tests, �[31m�[1m5 failed�[0m;�[0m Testing //rb/spec/integration/selenium/webdriver/edge:options-edge-remote; 48s local, disk-cache ... (4 actions, 3 running)
    1323:  �[32m[2,892 / 2,910]�[0m 5 / 27 tests, �[31m�[1m5 failed�[0m;�[0m Testing //rb/spec/integration/selenium/webdriver/edge:options-edge-remote; 55s local, disk-cache ... (4 actions, 3 running)
    1324:  �[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)
    1325:  �[32m[2,892 / 2,910]�[0m 5 / 27 tests, �[31m�[1m5 failed�[0m;�[0m Testing //rb/spec/integration/selenium/webdriver/edge:options-edge-remote; 56s local, disk-cache ... (4 actions, 3 running)
    1326:  �[32m[2,892 / 2,910]�[0m 5 / 27 tests, �[31m�[1m5 failed�[0m;�[0m Testing //rb/spec/integration/selenium/webdriver/edge:options-edge-remote; 58s local, disk-cache ... (4 actions, 3 running)
    1327:  �[32m[2,892 / 2,910]�[0m 5 / 27 tests, �[31m�[1m5 failed�[0m;�[0m Testing //rb/spec/integration/selenium/webdriver/edge:options-edge-remote; 59s local, disk-cache ... (4 actions, 3 running)
    1328:  �[32m[2,892 / 2,910]�[0m 5 / 27 tests, �[31m�[1m5 failed�[0m;�[0m Testing //rb/spec/integration/selenium/webdriver/edge:options-edge-remote; 62s local, disk-cache ... (4 actions, 3 running)
    1329:  �[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)
    1330:  �[31m�[1mFAILED: �[0m//rb/spec/integration/selenium/webdriver/edge:options-edge-remote (Summary)
    1331:  D:/_bazel/execroot/selenium/bazel-out/x64_windows-fastbuild/testlogs/rb/spec/integration/selenium/webdriver/edge/options-edge-remote/test.log
    1332:  ==================== Test output for //rb/spec/integration/selenium/webdriver/edge:options-edge-remote:
    1333:  D:/_bazel/execroot/selenium/bazel-out/x64_windows-fastbuild/testlogs/rb/spec/integration/selenium/webdriver/edge/options-edge-remote/test_attempts/attempt_1.log
    1334:  2024-04-11 00:54:36 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
    1335:  D:/_bazel/execroot/selenium/bazel-out/x64_windows-fastbuild/testlogs/rb/spec/integration/selenium/webdriver/edge/options-edge-remote/test_attempts/attempt_2.log
    1336:  �[32mINFO: �[0mFrom Testing //rb/spec/integration/selenium/webdriver/edge:options-edge-remote:
    1337:  An error occurred in a `before(:suite)` hook.
    1338:  Failure/Error: @pid = Process.spawn(*@command, options)
    1339:  Errno::EACCES:
    1340:  Permission denied - java
    1341:  # ./rb/lib/selenium/webdriver/common/child_process.rb:57:in `spawn'
    1342:  # ./rb/lib/selenium/webdriver/common/child_process.rb:57:in `start'
    1343:  # ./rb/lib/selenium/server.rb:204:in `start'
    1344:  # //?/D:/a/selenium/selenium/rb/spec/integration/selenium/webdriver/spec_helper.rb:40:in `block (2 levels) in <top (required)>'
    1345:  Finished in 0.05364 seconds (files took 0.8306 seconds to load)
    1346:  0 examples, 0 failures, 1 error occurred outside of examples
    1347:  ================================================================================
    1348:  ==================== Test output for //rb/spec/integration/selenium/webdriver/edge:options-edge-remote:
    1349:  2024-04-11 00:55:03 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
    1350:  An error occurred in a `before(:suite)` hook.
    1351:  Failure/Error: @pid = Process.spawn(*@command, options)
    1352:  Errno::EACCES:
    1353:  Permission denied - java
    1354:  # ./rb/lib/selenium/webdriver/common/child_process.rb:57:in `spawn'
    1355:  # ./rb/lib/selenium/webdriver/common/child_process.rb:57:in `start'
    1356:  # ./rb/lib/selenium/server.rb:204:in `start'
    1357:  # //?/D:/a/selenium/selenium/rb/spec/integration/selenium/webdriver/spec_helper.rb:40:in `block (2 levels) in <top (required)>'
    1358:  Finished in 0.04315 seconds (files took 0.61897 seconds to load)
    1359:  0 examples, 0 failures, 1 error occurred outside of examples
    1360:  ================================================================================
    1361:  ==================== Test output for //rb/spec/integration/selenium/webdriver/edge:options-edge-remote:
    1362:  2024-04-11 00:55: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
    1363:  An error occurred in a `before(:suite)` hook.
    1364:  Failure/Error: @pid = Process.spawn(*@command, options)
    1365:  Errno::EACCES:
    1366:  Permission denied - java
    1367:  # ./rb/lib/selenium/webdriver/common/child_process.rb:57:in `spawn'
    1368:  # ./rb/lib/selenium/webdriver/common/child_process.rb:57:in `start'
    1369:  # ./rb/lib/selenium/server.rb:204:in `start'
    1370:  # //?/D:/a/selenium/selenium/rb/spec/integration/selenium/webdriver/spec_helper.rb:40:in `block (2 levels) in <top (required)>'
    1371:  Finished in 0.05101 seconds (files took 0.6696 seconds to load)
    1372:  0 examples, 0 failures, 1 error occurred outside of examples
    1373:  ================================================================================
    1374:  �[32m[2,893 / 2,910]�[0m 6 / 27 tests, �[31m�[1m6 failed�[0m;�[0m Testing //rb/spec/integration/selenium/webdriver:element-edge-remote; 56s local, disk-cache ... (4 actions, 2 running)
    1375:  �[32m[2,893 / 2,910]�[0m 6 / 27 tests, �[31m�[1m6 failed�[0m;�[0m Testing //rb/spec/integration/selenium/webdriver:element-edge-remote; 61s local, disk-cache ... (4 actions, 2 running)
    1376:  �[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)
    1377:  �[31m�[1mFAILED: �[0m//rb/spec/integration/selenium/webdriver:element-edge-remote (Summary)
    1378:  D:/_bazel/execroot/selenium/bazel-out/x64_windows-fastbuild/testlogs/rb/spec/integration/selenium/webdriver/element-edge-remote/test.log
    1379:  D:/_bazel/execroot/selenium/bazel-out/x64_windows-fastbuild/testlogs/rb/spec/integration/selenium/webdriver/element-edge-remote/test_attempts/attempt_1.log
    1380:  D:/_bazel/execroot/selenium/bazel-out/x64_windows-fastbuild/testlogs/rb/spec/integration/selenium/webdriver/element-edge-remote/test_attempts/attempt_2.log
    1381:  �[32mINFO: �[0mFrom Testing //rb/spec/integration/selenium/webdriver:element-edge-remote:
    1382:  ==================== Test output for //rb/spec/integration/selenium/webdriver:element-edge-remote:
    1383:  2024-04-11 00:54:42 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
    1384:  An error occurred in a `before(:suite)` hook.
    1385:  Failure/Error: @pid = Process.spawn(*@command, options)
    1386:  Errno::EACCES:
    1387:  Permission denied - java
    1388:  # ./rb/lib/selenium/webdriver/common/child_process.rb:57:in `spawn'
    1389:  # ./rb/lib/selenium/webdriver/common/child_process.rb:57:in `start'
    1390:  # ./rb/lib/selenium/server.rb:204:in `start'
    1391:  # //?/D:/a/selenium/selenium/rb/spec/integration/selenium/webdriver/spec_helper.rb:40:in `block (2 levels) in <top (required)>'
    1392:  Finished in 0.04126 seconds (files took 0.58674 seconds to load)
    1393:  0 examples, 0 failures, 1 error occurred outside of examples
    1394:  ================================================================================
    1395:  ==================== Test output for //rb/spec/integration/selenium/webdriver:element-edge-remote:
    1396:  2024-04-11 00:55:09 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
    1397:  An error occurred in a `before(:suite)` hook.
    1398:  Failure/Error: @pid = Process.spawn(*@command, options)
    1399:  Errno::EACCES:
    1400:  Permission denied - java
    1401:  # ./rb/lib/selenium/webdriver/common/child_process.rb:57:in `spawn'
    1402:  # ./rb/lib/selenium/webdriver/common/child_process.rb:57:in `start'
    1403:  # ./rb/lib/selenium/server.rb:204:in `start'
    1404:  # //?/D:/a/selenium/selenium/rb/spec/integration/selenium/webdriver/spec_helper.rb:40:in `block (2 levels) in <top (required)>'
    1405:  Finished in 0.04155 seconds (files took 0.57423 seconds to load)
    1406:  0 examples, 0 failures, 1 error occurred outside of examples
    1407:  ================================================================================
    1408:  ==================== Test output for //rb/spec/integration/selenium/webdriver:element-edge-remote:
    1409:  2024-04-11 00:55:37 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
    1410:  An error occurred in a `before(:suite)` hook.
    1411:  Failure/Error: @pid = Process.spawn(*@command, options)
    1412:  Errno::EACCES:
    1413:  Permission denied - java
    1414:  # ./rb/lib/selenium/webdriver/common/child_process.rb:57:in `spawn'
    1415:  # ./rb/lib/selenium/webdriver/common/child_process.rb:57:in `start'
    1416:  # ./rb/lib/selenium/server.rb:204:in `start'
    1417:  # //?/D:/a/selenium/selenium/rb/spec/integration/selenium/webdriver/spec_helper.rb:40:in `block (2 levels) in <top (required)>'
    1418:  Finished in 0.05077 seconds (files took 0.6654 seconds to load)
    1419:  0 examples, 0 failures, 1 error occurred outside of examples
    1420:  ================================================================================
    1421:  �[32m[2,894 / 2,910]�[0m 7 / 27 tests, �[31m�[1m7 failed�[0m;�[0m Testing //rb/spec/integration/selenium/webdriver:window-edge-remote; 50s local, disk-cache ... (4 actions, 1 running)
    1422:  �[32m[2,894 / 2,910]�[0m 7 / 27 tests, �[31m�[1m7 failed�[0m;�[0m Testing //rb/spec/integration/selenium/webdriver:window-edge-remote; 53s local, disk-cache ... (4 actions, 1 running)
    1423:  �[32m[2,894 / 2,910]�[0m 7 / 27 tests, �[31m�[1m7 failed�[0m;�[0m Testing //rb/spec/integration/selenium/webdriver:window-edge-remote; 55s local, disk-cache ... (4 actions, 2 running)
    1424:  �[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)
    1425:  ==================== Test output for //rb/spec/integration/selenium/webdriver:window-edge-remote:
    1426:  �[31m�[1mFAILED: �[0m//rb/spec/integration/selenium/webdriver:window-edge-remote (Summary)
    1427:  2024-04-11 00:54:56 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
    1428:  D:/_bazel/execroot/selenium/bazel-out/x64_windows-fastbuild/testlogs/rb/spec/integration/selenium/webdriver/window-edge-remote/test.log
    1429:  An error occurred in a `before(:suite)` hook.
    1430:  D:/_bazel/execroot/selenium/bazel-out/x64_windows-fastbuild/testlogs/rb/spec/integration/selenium/webdriver/window-edge-remote/test_attempts/attempt_1.log
    1431:  Failure/Error: @pid = Process.spawn(*@command, options)
    ...
    
    1433:  �[32mINFO: �[0mFrom Testing //rb/spec/integration/selenium/webdriver:window-edge-remote:
    1434:  Errno::EACCES:
    1435:  Permission denied - java
    1436:  # ./rb/lib/selenium/webdriver/common/child_process.rb:57:in `spawn'
    1437:  # ./rb/lib/selenium/webdriver/common/child_process.rb:57:in `start'
    1438:  # ./rb/lib/selenium/server.rb:204:in `start'
    1439:  # //?/D:/a/selenium/selenium/rb/spec/integration/selenium/webdriver/spec_helper.rb:40:in `block (2 levels) in <top (required)>'
    1440:  Finished in 0.04377 seconds (files took 0.61705 seconds to load)
    1441:  0 examples, 0 failures, 1 error occurred outside of examples
    1442:  ================================================================================
    1443:  ==================== Test output for //rb/spec/integration/selenium/webdriver:window-edge-remote:
    1444:  2024-04-11 00:55:23 INFO Selenium Server Location: D:/_bazel/execroot/selenium/bazel-out/x64_windows-fastbuild/bin/rb/spec/integration/selenium/webdriver/window-edge-remote.cmd.runfiles/selenium/java/src/org/openqa/selenium/grid/selenium_server_deploy.jar
    1445:  An error occurred in a `before(:suite)` hook.
    1446:  Failure/Error: @pid = Process.spawn(*@command, options)
    1447:  Errno::EACCES:
    1448:  Permission denied - java
    1449:  # ./rb/lib/selenium/webdriver/common/child_process.rb:57:in `spawn'
    1450:  # ./rb/lib/selenium/webdriver/common/child_process.rb:57:in `start'
    1451:  # ./rb/lib/selenium/server.rb:204:in `start'
    1452:  # //?/D:/a/selenium/selenium/rb/spec/integration/selenium/webdriver/spec_helper.rb:40:in `block (2 levels) in <top (required)>'
    1453:  Finished in 0.04951 seconds (files took 0.77583 seconds to load)
    1454:  0 examples, 0 failures, 1 error occurred outside of examples
    1455:  ================================================================================
    1456:  ==================== Test output for //rb/spec/integration/selenium/webdriver:window-edge-remote:
    1457:  2024-04-11 00:55:44 INFO Selenium Server Location: D:/_bazel/execroot/selenium/bazel-out/x64_windows-fastbuild/bin/rb/spec/integration/selenium/webdriver/window-edge-remote.cmd.runfiles/selenium/java/src/org/openqa/selenium/grid/selenium_server_deploy.jar
    1458:  An error occurred in a `before(:suite)` hook.
    1459:  Failure/Error: @pid = Process.spawn(*@command, options)
    1460:  Errno::EACCES:
    1461:  Permission denied - java
    1462:  # ./rb/lib/selenium/webdriver/common/child_process.rb:57:in `spawn'
    1463:  # ./rb/lib/selenium/webdriver/common/child_process.rb:57:in `start'
    1464:  # ./rb/lib/selenium/server.rb:204:in `start'
    1465:  # //?/D:/a/selenium/selenium/rb/spec/integration/selenium/webdriver/spec_helper.rb:40:in `block (2 levels) in <top (required)>'
    1466:  Finished in 0.05529 seconds (files took 0.79917 seconds to load)
    1467:  0 examples, 0 failures, 1 error occurred outside of examples
    1468:  ================================================================================
    1469:  �[32m[2,895 / 2,910]�[0m 8 / 27 tests, �[31m�[1m8 failed�[0m;�[0m Testing //rb/spec/integration/selenium/webdriver:action_builder-edge-remote; 8s disk-cache ... (4 actions, 1 running)
    1470:  �[32m[2,895 / 2,910]�[0m 8 / 27 tests, �[31m�[1m8 failed�[0m;�[0m [Sched] Testing //rb/spec/integration/selenium/webdriver:virtual_authenticator-edge-remote; 8s ... (4 actions, 1 running)
    1471:  �[32m[2,895 / 2,910]�[0m 8 / 27 tests, �[31m�[1m8 failed�[0m;�[0m Testing //rb/spec/integration/selenium/webdriver:listener-edge-remote; 7s local, disk-cache ... (4 actions, 2 running)
    1472:  �[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)
    1473:  �[32m[2,895 / 2,910]�[0m 8 / 27 tests, �[31m�[1m8 failed�[0m;�[0m Testing //rb/spec/integration/selenium/webdriver:listener-edge-remote; 8s local, disk-cache ... (4 actions, 2 running)
    1474:  �[32m[2,895 / 2,910]�[0m 8 / 27 tests, �[31m�[1m8 failed�[0m;�[0m Testing //rb/spec/integration/selenium/webdriver:listener-edge-remote; 11s local, disk-cache ... (4 actions, 2 running)
    1475:  �[32m[2,895 / 2,910]�[0m 8 / 27 tests, �[31m�[1m8 failed�[0m;�[0m Testing //rb/spec/integration/selenium/webdriver:listener-edge-remote; 12s local, disk-cache ... (4 actions, 2 running)
    1476:  �[32m[2,895 / 2,910]�[0m 8 / 27 tests, �[31m�[1m8 failed�[0m;�[0m Testing //rb/spec/integration/selenium/webdriver:listener-edge-remote; 14s local, disk-cache ... (4 actions, 3 running)
    1477:  �[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)
    1478:  �[32m[2,895 / 2,910]�[0m 8 / 27 tests, �[31m�[1m8 failed�[0m;�[0m Testing //rb/spec/integration/selenium/webdriver:listener-edge-remote; 15s local, disk-cache ... (4 actions, 3 running)
    1479:  �[32m[2,895 / 2,910]�[0m 8 / 27 tests, �[31m�[1m8 failed�[0m;�[0m Testing //rb/spec/integration/selenium/webdriver:listener-edge-remote; 21s local, disk-cache ... (4 actions, 3 running)
    1480:  �[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)
    1481:  �[32m[2,895 / 2,910]�[0m 8 / 27 tests, �[31m�[1m8 failed�[0m;�[0m Testing //rb/spec/integration/selenium/webdriver:listener-edge-remote; 22s local, disk-cache ... (4 actions, 3 running)
    1482:  �[32m[2,895 / 2,910]�[0m 8 / 27 tests, �[31m�[1m8 failed�[0m;�[0m Testing //rb/spec/integration/selenium/webdriver:listener-edge-remote; 27s local, disk-cache ... (4 actions running)
    1483:  �[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)
    1484:  �[32m[2,895 / 2,910]�[0m 8 / 27 tests, �[31m�[1m8 failed�[0m;�[0m Testing //rb/spec/integration/selenium/webdriver:listener-edge-remote; 29s local, disk-cache ... (4 actions running)
    1485:  �[32m[2,895 / 2,910]�[0m 8 / 27 tests, �[31m�[1m8 failed�[0m;�[0m Testing //rb/spec/integration/selenium/webdriver:listener-edge-remote; 34s local, disk-cache ... (4 actions running)
    1486:  �[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)
    1487:  �[32m[2,895 / 2,910]�[0m 8 / 27 tests, �[31m�[1m8 failed�[0m;�[0m Testing //rb/spec/integration/selenium/webdriver:listener-edge-remote; 35s local, disk-cache ... (4 actions running)
    1488:  �[32m[2,895 / 2,910]�[0m 8 / 27 tests, �[31m�[1m8 failed�[0m;�[0m Testing //rb/spec/integration/selenium/webdriver:listener-edge-remote; 41s local, disk-cache ... (4 actions running)
    1489:  �[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)
    1490:  �[32m[2,895 / 2,910]�[0m 8 / 27 tests, �[31m�[1m8 failed�[0m;�[0m Testing //rb/spec/integration/selenium/webdriver:listener-edge-remote; 42s local, disk-cache ... (4 actions running)
    1491:  �[32m[2,895 / 2,910]�[0m 8 / 27 tests, �[31m�[1m8 failed�[0m;�[0m Testing //rb/spec/integration/selenium/webdriver:listener-edge-remote; 48s local, disk-cache ... (4 actions running)
    1492:  �[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)
    1493:  �[32m[2,895 / 2,910]�[0m 8 / 27 tests, �[31m�[1m8 failed�[0m;�[0m Testing //rb/spec/integration/selenium/webdriver:listener-edge-remote; 49s local, disk-cache ... (4 actions running)
    1494:  �[32m[2,895 / 2,910]�[0m 8 / 27 tests, �[31m�[1m8 failed�[0m;�[0m Testing //rb/spec/integration/selenium/webdriver:listener-edge-remote; 54s local, disk-cache ... (4 actions running)
    1495:  �[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)
    1496:  �[31m�[1mFAILED: �[0m//rb/spec/integration/selenium/webdriver:listener-edge-remote (Summary)
    1497:  D:/_bazel/execroot/selenium/bazel-out/x64_windows-fastbuild/testlogs/rb/spec/integration/selenium/webdriver/listener-edge-remote/test.log
    1498:  D:/_bazel/execroot/selenium/bazel-out/x64_windows-fastbuild/testlogs/rb/spec/integration/selenium/webdriver/listener-edge-remote/test_attempts/attempt_1.log
    1499:  D:/_bazel/execroot/selenium/bazel-out/x64_windows-fastbuild/testlogs/rb/spec/integration/selenium/webdriver/listener-edge-remote/test_attempts/attempt_2.log
    1500:  �[32mINFO: �[0mFrom Testing //rb/spec/integration/selenium/webdriver:listener-edge-remote:
    1501:  ==================== Test output for //rb/spec/integration/selenium/webdriver:listener-edge-remote:
    1502:  2024-04-11 00:55: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
    1503:  An error occurred in a `before(:suite)` hook.
    1504:  Failure/Error: @pid = Process.spawn(*@command, options)
    1505:  Errno::EACCES:
    1506:  Permission denied - java
    1507:  # ./rb/lib/selenium/webdriver/common/child_process.rb:57:in `spawn'
    1508:  # ./rb/lib/selenium/webdriver/common/child_process.rb:57:in `start'
    1509:  # ./rb/lib/selenium/server.rb:204:in `start'
    1510:  # //?/D:/a/selenium/selenium/rb/spec/integration/selenium/webdriver/spec_helper.rb:40:in `block (2 levels) in <top (required)>'
    1511:  Finished in 0.05579 seconds (files took 0.98116 seconds to load)
    1512:  0 examples, 0 failures, 1 error occurred outside of examples
    1513:  ================================================================================
    1514:  ==================== Test output for //rb/spec/integration/selenium/webdriver:listener-edge-remote:
    1515:  2024-04-11 00:56:12 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
    1516:  An error occurred in a `before(:suite)` hook.
    1517:  Failure/Error: @pid = Process.spawn(*@command, options)
    1518:  Errno::EACCES:
    1519:  Permission denied - java
    1520:  # ./rb/lib/selenium/webdriver/common/child_process.rb:57:in `spawn'
    1521:  # ./rb/lib/selenium/webdriver/common/child_process.rb:57:in `start'
    1522:  # ./rb/lib/selenium/server.rb:204:in `start'
    1523:  # //?/D:/a/selenium/selenium/rb/spec/integration/selenium/webdriver/spec_helper.rb:40:in `block (2 levels) in <top (required)>'
    1524:  Finished in 0.04821 seconds (files took 0.65664 seconds to load)
    1525:  0 examples, 0 failures, 1 error occurred outside of examples
    1526:  ================================================================================
    1527:  ==================== Test output for //rb/spec/integration/selenium/webdriver:listener-edge-remote:
    1528:  2024-04-11 00:56:39 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
    1529:  An error occurred in a `before(:suite)` hook.
    1530:  Failure/Error: @pid = Process.spawn(*@command, options)
    1531:  Errno::EACCES:
    1532:  Permission denied - java
    1533:  # ./rb/lib/selenium/webdriver/common/child_process.rb:57:in `spawn'
    1534:  # ./rb/lib/selenium/webdriver/common/child_process.rb:57:in `start'
    1535:  # ./rb/lib/selenium/server.rb:204:in `start'
    1536:  # //?/D:/a/selenium/selenium/rb/spec/integration/selenium/webdriver/spec_helper.rb:40:in `block (2 levels) in <top (required)>'
    1537:  Finished in 0.04179 seconds (files took 0.57505 seconds to load)
    1538:  0 examples, 0 failures, 1 error occurred outside of examples
    1539:  ================================================================================
    1540:  �[32m[2,896 / 2,910]�[0m 9 / 27 tests, �[31m�[1m9 failed�[0m;�[0m Testing //rb/spec/integration/selenium/webdriver:virtual_authenticator-edge-remote; 49s local, disk-cache ... (4 actions, 3 running)
    1541:  �[32m[2,896 / 2,910]�[0m 9 / 27 tests, �[31m�[1m9 failed�[0m;�[0m Testing //rb/spec/integration/selenium/webdriver:virtual_authenticator-edge-remote; 54s local, disk-cache ... (4 actions, 3 running)
    1542:  �[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)
    1543:  �[32m[2,896 / 2,910]�[0m 9 / 27 tests, �[31m�[1m9 failed�[0m;�[0m Testing //rb/spec/integration/selenium/webdriver:virtual_authenticator-edge-remote; 56s local, disk-cache ... (4 actions, 3 running)
    1544:  �[32m[2,896 / 2,910]�[0m 9 / 27 tests, �[31m�[1m9 failed�[0m;�[0m Testing //rb/spec/integration/selenium/webdriver:virtual_authenticator-edge-remote; 58s local, disk-cache ... (4 actions, 3 running)
    1545:  �[32m[2,896 / 2,910]�[0m 9 / 27 tests, �[31m�[1m9 failed�[0m;�[0m Testing //rb/spec/integration/selenium/webdriver:virtual_authenticator-edge-remote; 59s local, disk-cache ... (4 actions, 3 running)
    1546:  �[32m[2,896 / 2,910]�[0m 9 / 27 tests, �[31m�[1m9 failed�[0m;�[0m Testing //rb/spec/integration/selenium/webdriver:virtual_authenticator-edge-remote; 61s local, disk-cache ... (4 actions, 3 running)
    1547:  �[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)
    1548:  �[31m�[1mFAILED: �[0m//rb/spec/integration/selenium/webdriver:virtual_authenticator-edge-remote (Summary)
    1549:  ==================== Test output for //rb/spec/integration/selenium/webdriver:virtual_authenticator-edge-remote:
    1550:  D:/_bazel/execroot/selenium/bazel-out/x64_windows-fastbuild/testlogs/rb/spec/integration/selenium/webdriver/virtual_authenticator-edge-remote/test.log
    1551:  D:/_bazel/execroot/selenium/bazel-out/x64_windows-fastbuild/testlogs/rb/spec/integration/selenium/webdriver/virtual_authenticator-edge-remote/test_attempts/attempt_1.log
    1552:  D:/_bazel/execroot/selenium/bazel-out/x64_windows-fastbuild/testlogs/rb/spec/integration/selenium/webdriver/virtual_authenticator-edge-remote/test_attempts/attempt_2.log
    1553:  �[32mINFO: �[0mFrom Testing //rb/spec/integration/selenium/webdriver:virtual_authenticator-edge-remote:
    1554:  2024-04-11 00:55:59 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
    1555:  An error occurred in a `before(:suite)` hook.
    1556:  Failure/Error: @pid = Process.spawn(*@command, options)
    1557:  Errno::EACCES:
    1558:  Permission denied - java
    1559:  # ./rb/lib/selenium/webdriver/common/child_process.rb:57:in `spawn'
    1560:  # ./rb/lib/selenium/webdriver/common/child_process.rb:57:in `start'
    1561:  # ./rb/lib/selenium/server.rb:204:in `start'
    1562:  # //?/D:/a/selenium/selenium/rb/spec/integration/selenium/webdriver/spec_helper.rb:40:in `block (2 levels) in <top (required)>'
    1563:  Finished in 0.04529 seconds (files took 0.61531 seconds to load)
    1564:  0 examples, 0 failures, 1 error occurred outside of examples
    1565:  ================================================================================
    1566:  ==================== Test output for //rb/spec/integration/selenium/webdriver:virtual_authenticator-edge-remote:
    1567:  2024-04-11 00:56:26 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
    1568:  An error occurred in a `before(:suite)` hook.
    1569:  Failure/Error: @pid = Process.spawn(*@command, options)
    1570:  Errno::EACCES:
    1571:  Permission denied - java
    1572:  # ./rb/lib/selenium/webdriver/common/child_process.rb:57:in `spawn'
    1573:  # ./rb/lib/selenium/webdriver/common/child_process.rb:57:in `start'
    1574:  # ./rb/lib/selenium/server.rb:204:in `start'
    1575:  # //?/D:/a/selenium/selenium/rb/spec/integration/selenium/webdriver/spec_helper.rb:40:in `block (2 levels) in <top (required)>'
    1576:  Finished in 0.04352 seconds (files took 0.62111 seconds to load)
    1577:  0 examples, 0 failures, 1 error occurred outside of examples
    1578:  ================================================================================
    1579:  ==================== Test output for //rb/spec/integration/selenium/webdriver:virtual_authenticator-edge-remote:
    1580:  2024-04-11 00:56:53 INFO Selenium Server Location: D:/_bazel/execroot/selenium/bazel-out/x64_windows-fastbuild/bin/rb/spec/integration/selenium/webdriver/virtual_authenticator-edge-remote.cmd.runfiles/selenium/java/src/org/openqa/selenium/grid/selenium_server_deploy.jar
    1581:  An error occurred in a `before(:suite)` hook.
    1582:  Failure/Error: @pid = Process.spawn(*@command, options)
    1583:  Errno::EACCES:
    1584:  Permission denied - java
    1585:  # ./rb/lib/selenium/webdriver/common/child_process.rb:57:in `spawn'
    1586:  # ./rb/lib/selenium/webdriver/common/child_process.rb:57:in `start'
    1587:  # ./rb/lib/selenium/server.rb:204:in `start'
    1588:  # //?/D:/a/selenium/selenium/rb/spec/integration/selenium/webdriver/spec_helper.rb:40:in `block (2 levels) in <top (required)>'
    1589:  Finished in 0.05572 seconds (files took 0.63598 seconds to load)
    1590:  0 examples, 0 failures, 1 error occurred outside of examples
    1591:  ================================================================================
    1592:  �[32m[2,897 / 2,910]�[0m 10 / 27 tests, �[31m�[1m10 failed�[0m;�[0m Testing //rb/spec/integration/selenium/webdriver:action_builder-edge-remote; 55s local, disk-cache ... (4 actions, 2 running)
    1593:  �[32m[2,897 / 2,910]�[0m 10 / 27 tests, �[31m�[1m10 failed�[0m;�[0m Testing //rb/spec/integration/selenium/webdriver:action_builder-edge-remote; 61s local, disk-cache ... (4 actions, 2 running)
    1594:  �[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)
    1595:  ==================== Test output for //rb/spec/integration/selenium/webdriver:action_builder-edge-remote:
    1596:  �[31m�[1mFAILED: �[0m//rb/spec/integration/selenium/webdriver:action_builder-edge-remote (Summary)
    1597:  D:/_bazel/execroot/selenium/bazel-out/x64_windows-fastbuild/testlogs/rb/spec/integration/selenium/webdriver/action_builder-edge-remote/test.log
    1598:  D:/_bazel/execroot/selenium/bazel-out/x64_windows-fastbuild/testlogs/rb/spec/integration/selenium/webdriver/action_builder-edge-remote/test_attempts/attempt_1.log
    1599:  D:/_bazel/execroot/selenium/bazel-out/x64_windows-fastbuild/testlogs/rb/spec/integration/selenium/webdriver/action_builder-edge-remote/test_attempts/attempt_2.log
    1600:  �[32mINFO: �[0mFrom Testing //rb/spec/integration/selenium/webdriver:action_builder-edge-remote:
    1601:  2024-04-11 00:56:05 INFO Selenium Server Location: D:/_bazel/execroot/selenium/bazel-out/x64_windows-fastbuild/bin/rb/spec/integration/selenium/webdriver/action_builder-edge-remote.cmd.runfiles/selenium/java/src/org/openqa/selenium/grid/selenium_server_deploy.jar
    1602:  An error occurred in a `before(:suite)` hook.
    1603:  Failure/Error: @pid = Process.spawn(*@command, options)
    1604:  Errno::EACCES:
    1605:  Permission denied - java
    1606:  # ./rb/lib/selenium/webdriver/common/child_process.rb:57:in `spawn'
    1607:  # ./rb/lib/selenium/webdriver/common/child_process.rb:57:in `start'
    1608:  # ./rb/lib/selenium/server.rb:204:in `start'
    1609:  # //?/D:/a/selenium/selenium/rb/spec/integration/selenium/webdriver/spec_helper.rb:40:in `block (2 levels) in <top (required)>'
    1610:  Finished in 0.04272 seconds (files took 0.59138 seconds to load)
    1611:  0 examples, 0 failures, 1 error occurred outside of examples
    1612:  ================================================================================
    1613:  ==================== Test output for //rb/spec/integration/selenium/webdriver:action_builder-edge-remote:
    1614:  2024-04-11 00:56:33 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
    1615:  An error occurred in a `before(:suite)` hook.
    1616:  Failure/Error: @pid = Process.spawn(*@command, options)
    1617:  Errno::EACCES:
    1618:  Permission denied - java
    1619:  # ./rb/lib/selenium/webdriver/common/child_process.rb:57:in `spawn'
    1620:  # ./rb/lib/selenium/webdriver/common/child_process.rb:57:in `start'
    1621:  # ./rb/lib/selenium/server.rb:204:in `start'
    1622:  # //?/D:/a/selenium/selenium/rb/spec/integration/selenium/webdriver/spec_helper.rb:40:in `block (2 levels) in <top (required)>'
    1623:  Finished in 0.04325 seconds (files took 0.60591 seconds to load)
    1624:  0 examples, 0 failures, 1 error occurred outside of examples
    1625:  ================================================================================
    1626:  ==================== Test output for //rb/spec/integration/selenium/webdriver:action_builder-edge-remote:
    1627:  2024-04-11 00:57:00 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
    1628:  An error occurred in a `before(:suite)` hook.
    1629:  Failure/Error: @pid = Process.spawn(*@command, options)
    1630:  Errno::EACCES:
    1631:  Permission denied - java
    1632:  # ./rb/lib/selenium/webdriver/common/child_process.rb:57:in `spawn'
    1633:  # ./rb/lib/selenium/webdriver/common/child_process.rb:57:in `start'
    1634:  # ./rb/lib/selenium/server.rb:204:in `start'
    1635:  # //?/D:/a/selenium/selenium/rb/spec/integration/selenium/webdriver/spec_helper.rb:40:in `block (2 levels) in <top (required)>'
    1636:  Finished in 0.05994 seconds (files took 0.7312 seconds to load)
    1637:  0 examples, 0 failures, 1 error occurred outside of examples
    1638:  ================================================================================
    1639:  �[32m[2,898 / 2,910]�[0m 11 / 27 tests, �[31m�[1m11 failed�[0m;�[0m Testing //rb/spec/integration/selenium/webdriver/edge:driver-edge-remote; 49s local, disk-cache ... (4 actions, 1 running)
    1640:  �[32m[2,898 / 2,910]�[0m 11 / 27 tests, �[31m�[1m11 failed�[0m;�[0m Testing //rb/spec/integration/selenium/webdriver/edge:driver-edge-remote; 52s local, disk-cache ... (4 actions, 1 running)
    1641:  �[32m[2,898 / 2,910]�[0m 11 / 27 tests, �[31m�[1m11 failed�[0m;�[0m Testing //rb/spec/integration/selenium/webdriver/edge:driver-edge-remote; 55s local, disk-cache ... (4 actions, 2 running)
    1642:  �[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)
    1643:  ==================== Test output for //rb/spec/integration/selenium/webdriver/edge:driver-edge-remote:
    1644:  2024-04-11 00:56:19 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
    1645:  �[31m�[1mFAILED: �[0m//rb/spec/integration/selenium/webdriver/edge:driver-edge-remote (Summary)
    1646:  D:/_bazel/execroot/selenium/bazel-out/x64_windows-fastbuild/testlogs/rb/spec/integration/selenium/webdriver/edge/driver-edge-remote/test.log
    1647:  An error occurred in a `before(:suite)` hook.
    1648:  D:/_bazel/execroot/selenium/bazel-out/x64_windows-fastbuild/testlogs/rb/spec/integration/selenium/webdriver/edge/driver-edge-remote/test_attempts/attempt_1.log
    1649:  Failure/Error: @pid = Process.spawn(*@command, options)
    ...
    
    1651:  �[32mINFO: �[0mFrom Testing //rb/spec/integration/selenium/webdriver/edge:driver-edge-remote:
    1652:  Errno::EACCES:
    1653:  Permission denied - java
    1654:  # ./rb/lib/selenium/webdriver/common/child_process.rb:57:in `spawn'
    1655:  # ./rb/lib/selenium/webdriver/common/child_process.rb:57:in `start'
    1656:  # ./rb/lib/selenium/server.rb:204:in `start'
    1657:  # //?/D:/a/selenium/selenium/rb/spec/integration/selenium/webdriver/spec_helper.rb:40:in `block (2 levels) in <top (required)>'
    1658:  Finished in 0.0418 seconds (files took 0.58942 seconds to load)
    1659:  0 examples, 0 failures, 1 error occurred outside of examples
    1660:  ================================================================================
    1661:  ==================== Test output for //rb/spec/integration/selenium/webdriver/edge:driver-edge-remote:
    1662:  2024-04-11 00:56:46 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
    1663:  An error occurred in a `before(:suite)` hook.
    1664:  Failure/Error: @pid = Process.spawn(*@command, options)
    1665:  Errno::EACCES:
    1666:  Permission denied - java
    1667:  # ./rb/lib/selenium/webdriver/common/child_process.rb:57:in `spawn'
    1668:  # ./rb/lib/selenium/webdriver/common/child_process.rb:57:in `start'
    1669:  # ./rb/lib/selenium/server.rb:204:in `start'
    1670:  # //?/D:/a/selenium/selenium/rb/spec/integration/selenium/webdriver/spec_helper.rb:40:in `block (2 levels) in <top (required)>'
    1671:  Finished in 0.04823 seconds (files took 0.64563 seconds to load)
    1672:  0 examples, 0 failures, 1 error occurred outside of examples
    1673:  ================================================================================
    1674:  ==================== Test output for //rb/spec/integration/selenium/webdriver/edge:driver-edge-remote:
    1675:  2024-04-11 00:57:07 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
    1676:  An error occurred in a `before(:suite)` hook.
    1677:  Failure/Error: @pid = Process.spawn(*@command, options)
    1678:  Errno::EACCES:
    1679:  Permission denied - java
    1680:  # ./rb/lib/selenium/webdriver/common/child_process.rb:57:in `spawn'
    1681:  # ./rb/lib/selenium/webdriver/common/child_process.rb:57:in `start'
    1682:  # ./rb/lib/selenium/server.rb:204:in `start'
    1683:  # //?/D:/a/selenium/selenium/rb/spec/integration/selenium/webdriver/spec_helper.rb:40:in `block (2 levels) in <top (required)>'
    1684:  Finished in 0.05278 seconds (files took 0.88006 seconds to load)
    1685:  0 examples, 0 failures, 1 error occurred outside of examples
    1686:  ================================================================================
    1687:  �[32m[2,899 / 2,910]�[0m 12 / 27 tests, �[31m�[1m12 failed�[0m;�[0m Testing //rb/spec/integration/selenium/webdriver/edge:profile-edge-remote; 8s disk-cache ... (4 actions, 1 running)
    1688:  �[32m[2,899 / 2,910]�[0m 12 / 27 tests, �[31m�[1m12 failed�[0m;�[0m [Sched] Testing //rb/spec/integration/selenium/webdriver:navigation-edge-remote; 8s ... (4 actions, 1 running)
    1689:  �[32m[2,899 / 2,910]�[0m 12 / 27 tests, �[31m�[1m12 failed�[0m;�[0m Testing //rb/spec/integration/selenium/webdriver:takes_screenshot-edge-remote; 7s local, disk-cache ... (4 actions, 2 running)
    1690:  �[31m�[1mFAIL: �[0m//rb/spec/integration/selenium/webdriver:takes_screenshot-edge-remote (see D:/_bazel/execroot/selenium/bazel-out/x64_windows-fastbuild/testlogs/rb/spec/integration/selenium/webdriver/takes_screenshot-edge-remote/test_attempts/attempt_1.log)
    1691:  �[32m[2,899 / 2,910]�[0m 12 / 27 tests, �[31m�[1m12 failed�[0m;�[0m Testing //rb/spec/integration/selenium/webdriver:takes_screenshot-edge-remote; 8s local, disk-cache ... (4 actions, 2 running)
    1692:  �[32m[2,899 / 2,910]�[0m 12 / 27 tests, �[31m�[1m12 failed�[0m;�[0m Testing //rb/spec/integration/selenium/webdriver:takes_screenshot-edge-remote; 11s local, disk-cache ... (4 actions, 2 running)
    1693:  �[32m[2,899 / 2,910]�[0m 12 / 27 tests, �[31m�[1m12 failed�[0m;�[0m Testing //rb/spec/integration/selenium/webdriver:takes_screenshot-edge-remote; 12s local, disk-cache ... (4 actions, 2 running)
    1694:  �[32m[2,899 / 2,910]�[0m 12 / 27 tests, �[31m�[1m12 failed�[0m;�[0m Testing //rb/spec/integration/selenium/webdriver:takes_screenshot-edge-remote; 14s local, disk-cache ... (4 actions, 3 running)
    1695:  �[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)
    1696:  �[32m[2,899 / 2,910]�[0m 12 / 27 tests, �[31m�[1m12 failed�[0m;�[0m Testing //rb/spec/integration/selenium/webdriver:takes_screenshot-edge-remote; 15s local, disk-cache ... (4 actions, 3 running)
    1697:  �[32m[2,899 / 2,910]�[0m 12 / 27 tests, �[31m�[1m12 failed�[0m;�[0m Testing //rb/spec/integration/selenium/webdriver:takes_screenshot-edge-remote; 21s local, disk-cache ... (4 actions, 3 running)
    1698:  �[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)
    1699:  �[32m[2,899 / 2,910]�[0m 12 / 27 tests, �[31m�[1m12 failed�[0m;�[0m Testing //rb/spec/integration/selenium/webdriver:takes_screenshot-edge-remote; 22s local, disk-cache ... (4 actions, 3 running)
    1700:  �[32m[2,899 / 2,910]�[0m 12 / 27 tests, �[31m�[1m12 failed�[0m;�[0m Testing //rb/spec/integration/selenium/webdriver:takes_screenshot-edge-remote; 27s local, disk-cache ... (4 actions running)
    1701:  �[31m�[1mFAIL: �[0m//rb/spec/integration/selenium/webdriver:takes_screenshot-edge-remote (see D:/_bazel/execroot/selenium/bazel-out/x64_windows-fastbuild/testlogs/rb/spec/integration/selenium/webdriver/takes_screenshot-edge-remote/test_attempts/attempt_2.log)
    1702:  �[32m[2,899 / 2,910]�[0m 12 / 27 tests, �[31m�[1m12 failed�[0m;�[0m Testing //rb/spec/integration/selenium/webdriver:takes_screenshot-edge-remote; 29s local, disk-cache ... (4 actions running)
    1703:  �[32m[2,899 / 2,910]�[0m 12 / 27 tests, �[31m�[1m12 failed�[0m;�[0m Testing //rb/spec/integration/selenium/webdriver:takes_screenshot-edge-remote; 34s local, disk-cache ... (4 actions running)
    1704:  �[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)
    1705:  �[32m[2,899 / 2,910]�[0m 12 / 27 tests, �[31m�[1m12 failed�[0m;�[0m Testing //rb/spec/integration/selenium/webdriver:takes_screenshot-edge-remote; 35s local, disk-cache ... (4 actions running)
    1706:  �[32m[2,899 / 2,910]�[0m 12 / 27 tests, �[31m�[1m12 failed�[0m;�[0m Testing //rb/spec/integration/selenium/webdriver:takes_screenshot-edge-remote; 41s local, disk-cache ... (4 actions running)
    1707:  �[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)
    1708:  �[32m[2,899 / 2,910]�[0m 12 / 27 tests, �[31m�[1m12 failed�[0m;�[0m Testing //rb/spec/integration/selenium/webdriver:takes_screenshot-edge-remote; 42s local, disk-cache ... (4 actions running)
    1709:  �[32m[2,899 / 2,910]�[0m 12 / 27 tests, �[31m�[1m12 failed�[0m;�[0m Testing //rb/spec/integration/selenium/webdriver:takes_screenshot-edge-remote; 48s local, disk-cache ... (4 actions running)
    1710:  �[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)
    1711:  �[32m[2,899 / 2,910]�[0m 12 / 27 tests, �[31m�[1m12 failed�[0m;�[0m Testing //rb/spec/integration/selenium/webdriver:takes_screenshot-edge-remote; 49s local, disk-cache ... (4 actions running)
    1712:  �[32m[2,899 / 2,910]�[0m 12 / 27 tests, �[31m�[1m12 failed�[0m;�[0m Testing //rb/spec/integration/selenium/webdriver:takes_screenshot-edge-remote; 54s local, disk-cache ... (4 actions running)
    1713:  �[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)
    1714:  �[31m�[1mFAILED: �[0m//rb/spec/integration/selenium/webdriver:takes_screenshot-edge-remote (Summary)
    1715:  D:/_bazel/execroot/selenium/bazel-out/x64_windows-fastbuild/testlogs/rb/spec/integration/selenium/webdriver/takes_screenshot-edge-remote/test.log
    1716:  D:/_bazel/execroot/selenium/bazel-out/x64_windows-fastbuild/testlogs/rb/spec/integration/selenium/webdriver/takes_screenshot-edge-remote/test_attempts/attempt_1.log
    1717:  D:/_bazel/execroot/selenium/bazel-out/x64_windows-fastbuild/testlogs/rb/spec/integration/selenium/webdriver/takes_screenshot-edge-remote/test_attempts/attempt_2.log
    1718:  �[32mINFO: �[0mFrom Testing //rb/spec/integration/selenium/webdriver:takes_screenshot-edge-remote:
    1719:  ==================== Test output for //rb/spec/integration/selenium/webdriver:takes_screenshot-edge-remote:
    1720:  2024-04-11 00:57:15 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
    1721:  An error occurred in a `before(:suite)` hook.
    1722:  Failure/Error: @pid = Process.spawn(*@command, options)
    1723:  Errno::EACCES:
    1724:  Permission denied - java
    1725:  # ./rb/lib/selenium/webdriver/common/child_process.rb:57:in `spawn'
    1726:  # ./rb/lib/selenium/webdriver/common/child_process.rb:57:in `start'
    1727:  # ./rb/lib/selenium/server.rb:204:in `start'
    1728:  # //?/D:/a/selenium/selenium/rb/spec/integration/selenium/webdriver/spec_helper.rb:40:in `block (2 levels) in <top (required)>'
    1729:  Finished in 0.07484 seconds (files took 0.81669 seconds to load)
    1730:  0 examples, 0 failures, 1 error occurred outside of examples
    1731:  ================================================================================
    1732:  ==================== Test output for //rb/spec/integration/selenium/webdriver:takes_screenshot-edge-remote:
    1733:  2024-04-11 00:57:35 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
    1734:  An error occurred in a `before(:suite)` hook.
    1735:  Failure/Error: @pid = Process.spawn(*@command, options)
    1736:  Errno::EACCES:
    1737:  Permission denied - java
    1738:  # ./rb/lib/selenium/webdriver/common/child_process.rb:57:in `spawn'
    1739:  # ./rb/lib/selenium/webdriver/common/child_process.rb:57:in `start'
    1740:  # ./rb/lib/selenium/server.rb:204:in `start'
    1741:  # //?/D:/a/selenium/selenium/rb/spec/integration/selenium/webdriver/spec_helper.rb:40:in `block (2 levels) in <top (required)>'
    1742:  Finished in 0.04339 seconds (files took 0.6017 seconds to load)
    1743:  0 examples, 0 failures, 1 error occurred outside of examples
    1744:  ================================================================================
    1745:  ==================== Test output for //rb/spec/integration/selenium/webdriver:takes_screenshot-edge-remote:
    1746:  2024-04-11 00:58:02 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
    1747:  An error occurred in a `before(:suite)` hook.
    1748:  Failure/Error: @pid = Process.spawn(*@command, options)
    1749:  Errno::EACCES:
    1750:  Permission denied - java
    1751:  # ./rb/lib/selenium/webdriver/common/child_process.rb:57:in `spawn'
    1752:  # ./rb/lib/selenium/webdriver/common/child_process.rb:57:in `start'
    1753:  # ./rb/lib/selenium/server.rb:204:in `start'
    1754:  # //?/D:/a/selenium/selenium/rb/spec/integration/selenium/webdriver/spec_helper.rb:40:in `block (2 levels) in <top (required)>'
    1755:  Finished in 0.04328 seconds (files took 0.61688 seconds to load)
    1756:  0 examples, 0 failures, 1 error occurred outside of examples
    1757:  ================================================================================
    1758:  �[32m[2,900 / 2,910]�[0m 13 / 27 tests, �[31m�[1m13 failed�[0m;�[0m Testing //rb/spec/integration/selenium/webdriver:navigation-edge-remote; 48s local, disk-cache ... (4 actions, 3 running)
    1759:  �[32m[2,900 / 2,910]�[0m 13 / 27 tests, �[31m�[1m13 failed�[0m;�[0m Testing //rb/spec/integration/selenium/webdriver:navigation-edge-remote; 54s local, disk-cache ... (4 actions, 3 running)
    1760:  �[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)
    1761:  �[32m[2,900 / 2,910]�[0m 13 / 27 tests, �[31m�[1m13 failed�[0m;�[0m Testing //rb/spec/integration/selenium/webdriver:navigation-edge-remote; 55s local, disk-cache ... (4 actions, 3 running)
    1762:  �[32m[2,900 / 2,910]�[0m 13 / 27 tests, �[31m�[1m13 failed�[0m;�[0m Testing //rb/spec/integration/selenium/webdriver:navigation-edge-remote; 57s local, disk-cache ... (4 actions, 3 running)
    1763:  �[32m[2,900 / 2,910]�[0m 13 / 27 tests, �[31m�[1m13 failed�[0m;�[0m Testing //rb/spec/integration/selenium/webdriver:navigation-edge-remote; 59s local, disk-cache ... (4 actions, 3 running)
    1764:  �[32m[2,900 / 2,910]�[0m 13 / 27 tests, �[31m�[1m13 failed�[0m;�[0m Testing //rb/spec/integration/selenium/webdriver:navigation-edge-remote; 61s local, disk-cache ... (4 actions, 3 running)
    1765:  �[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)
    1766:  ==================== Test output for //rb/spec/integration/selenium/webdriver:navigation-edge-remote:
    1767:  2024-04-11 00:57:22 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
    1768:  An error occurred in a `before(:suite)` hook.
    1769:  Failure/Error: @pid = Process.spawn(*@command, options)
    1770:  Errno::EACCES:
    1771:  Permission denied - java
    1772:  # ./rb/lib/selenium/webdriver/common/child_process.rb:57:in `spawn'
    1773:  # ./rb/lib/selenium/webdriver/common/child_process.rb:57:in `start'
    1774:  # ./rb/lib/selenium/server.rb:204:in `start'
    1775:  # //?/D:/a/selenium/selenium/rb/spec/integration/selenium/webdriver/spec_helper.rb:40:in `block (2 levels) in <top (required)>'
    1776:  Finished in 0.04561 seconds (files took 0.62292 seconds to load)
    1777:  0 examples, 0 failures, 1 error occurred outside of examples
    1778:  ================================================================================
    1779:  ==================== Test output for //rb/spec/integration/selenium/webdriver:navigation-edge-remote:
    1780:  2024-04-11 00:57:49 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
    1781:  An error occurred in a `before(:suite)` hook.
    1782:  Failure/Error: @pid = Process.spawn(*@command, options)
    1783:  Errno::EACCES:
    1784:  Permission denied - java
    1785:  # ./rb/lib/selenium/webdriver/common/child_process.rb:57:in `spawn'
    1786:  # ./rb/lib/selenium/webdriver/common/child_process.rb:57:in `start'
    1787:  # ./rb/lib/selenium/server.rb:204:in `start'
    1788:  # //?/D:/a/selenium/selenium/rb/spec/integration/selenium/webdriver/spec_helper.rb:40:in `block (2 levels) in <top (required)>'
    1789:  Finished in 0.04818 seconds (files took 0.60453 seconds to load)
    1790:  0 examples, 0 failures, 1 error occurred outside of examples
    1791:  ================================================================================
    1792:  ==================== Test output for //rb/spec/integration/selenium/webdriver:navigation-edge-remote:
    1793:  2024-04-11 00:58:16 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
    1794:  An error occurred in a `before(:suite)` hook.
    1795:  Failure/Error: @pid = Process.spawn(*@command, options)
    1796:  Errno::EACCES:
    1797:  Permission denied - java
    1798:  # ./rb/lib/selenium/webdriver/common/child_process.rb:57:in `spawn'
    1799:  # ./rb/lib/selenium/webdriver/common/child_process.rb:57:in `start'
    1800:  # ./rb/lib/selenium/server.rb:204:in `start'
    1801:  # //?/D:/a/selenium/selenium/rb/spec/integration/selenium/webdriver/spec_helper.rb:40:in `block (2 levels) in <top (required)>'
    1802:  Finished in 0.04583 seconds (files took 0.64138 seconds to load)
    1803:  0 examples, 0 failures, 1 error occurred outside of examples
    1804:  ================================================================================
    1805:  �[31m�[1mFAILED: �[0m//rb/spec/integration/selenium/webdriver:navigation-edge-remote (Summary)
    1806:  D:/_bazel/execroot/selenium/bazel-out/x64_windows-fastbuild/testlogs/rb/spec/integration/selenium/webdriver/navigation-edge-remote/test.log
    1807:  D:/_bazel/execroot/selenium/bazel-out/x64_windows-fastbuild/testlogs/rb/spec/integration/selenium/webdriver/navigation-edge-remote/test_attempts/attempt_1.log
    1808:  D:/_bazel/execroot/selenium/bazel-out/x64_windows-fastbuild/testlogs/rb/spec/integration/selenium/webdriver/navigation-edge-remote/test_attempts/attempt_2.log
    1809:  �[32mINFO: �[0mFrom Testing //rb/spec/integration/selenium/webdriver:navigation-edge-remote:
    1810:  �[32m[2,901 / 2,910]�[0m 14 / 27 tests, �[31m�[1m14 failed�[0m;�[0m Testing //rb/spec/integration/selenium/webdriver/edge:profile-edge-remote; 55s local, disk-cache ... (4 actions, 2 running)
    1811:  �[32m[2,901 / 2,910]�[0m 14 / 27 tests, �[31m�[1m14 failed�[0m;�[0m Testing //rb/spec/integration/selenium/webdriver/edge:profile-edge-remote; 61s local, disk-cache ... (4 actions, 2 running)
    1812:  �[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)
    1813:  ==================== Test output for //rb/spec/integration/selenium/webdriver/edge:profile-edge-remote:
    1814:  2024-04-11 00:57:28 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
    1815:  �[31m�[1mFAILED: �[0m//rb/spec/integration/selenium/webdriver/edge:profile-edge-remote (Summary)
    1816:  D:/_bazel/execroot/selenium/bazel-out/x64_windows-fastbuild/testlogs/rb/spec/integration/selenium/webdriver/edge/profile-edge-remote/test.log
    1817:  An error occurred in a `before(:suite)` hook.
    1818:  D:/_bazel/execroot/selenium/bazel-out/x64_windows-fastbuild/testlogs/rb/spec/integration/selenium/webdriver/edge/profile-edge-remote/test_attempts/attempt_1.log
    1819:  D:/_bazel/execroot/selenium/bazel-out/x64_windows-fastbuild/testlogs/rb/spec/integration/selenium/webdriver/edge/profile-edge-remote/test_attempts/attempt_2.log
    1820:  �[32mINFO: �[0mFrom Testing //rb/spec/integration/selenium/webdriver/edge:profile-edge-remote:
    1821:  Failure/Error: @pid = Process.spawn(*@command, options)
    1822:  Errno::EACCES:
    1823:  Permission denied - java
    1824:  # ./rb/lib/selenium/webdriver/common/child_process.rb:57:in `spawn'
    1825:  # ./rb/lib/selenium/webdriver/common/child_process.rb:57:in `start'
    1826:  # ./rb/lib/selenium/server.rb:204:in `start'
    1827:  # //?/D:/a/selenium/selenium/rb/spec/integration/selenium/webdriver/spec_helper.rb:40:in `block (2 levels) in <top (required)>'
    1828:  Finished in 0.04444 seconds (files took 0.59757 seconds to load)
    1829:  0 examples, 0 failures, 1 error occurred outside of examples
    1830:  ================================================================================
    1831:  ==================== Test output for //rb/spec/integration/selenium/webdriver/edge:profile-edge-remote:
    1832:  2024-04-11 00:57:55 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
    1833:  An error occurred in a `before(:suite)` hook.
    1834:  Failure/Error: @pid = Process.spawn(*@command, options)
    1835:  Errno::EACCES:
    1836:  Permission denied - java
    1837:  # ./rb/lib/selenium/webdriver/common/child_process.rb:57:in `spawn'
    1838:  # ./rb/lib/selenium/webdriver/common/child_process.rb:57:in `start'
    1839:  # ./rb/lib/selenium/server.rb:204:in `start'
    1840:  # //?/D:/a/selenium/selenium/rb/spec/integration/selenium/webdriver/spec_helper.rb:40:in `block (2 levels) in <top (required)>'
    1841:  Finished in 0.04225 seconds (files took 0.61219 seconds to load)
    1842:  0 examples, 0 failures, 1 error occurred outside of examples
    1843:  ================================================================================
    1844:  ==================== Test output for //rb/spec/integration/selenium/webdriver/edge:profile-edge-remote:
    1845:  2024-04-11 00:58:23 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
    1846:  An error occurred in a `before(:suite)` hook.
    1847:  Failure/Error: @pid = Process.spawn(*@command, options)
    1848:  Errno::EACCES:
    1849:  Permission denied - java
    1850:  # ./rb/lib/selenium/webdriver/common/child_process.rb:57:in `spawn'
    1851:  # ./rb/lib/selenium/webdriver/common/child_process.rb:57:in `start'
    1852:  # ./rb/lib/selenium/server.rb:204:in `start'
    1853:  # //?/D:/a/selenium/selenium/rb/spec/integration/selenium/webdriver/spec_helper.rb:40:in `block (2 levels) in <top (required)>'
    1854:  Finished in 0.04425 seconds (files took 0.72617 seconds to load)
    1855:  0 examples, 0 failures, 1 error occurred outside of examples
    1856:  ================================================================================
    1857:  �[32m[2,902 / 2,910]�[0m 15 / 27 tests, �[31m�[1m15 failed�[0m;�[0m Testing //rb/spec/integration/selenium/webdriver:guard-edge-remote; 49s local, disk-cache ... (4 actions, 1 running)
    1858:  �[32m[2,902 / 2,910]�[0m 15 / 27 tests, �[31m�[1m15 failed�[0m;�[0m Testing //rb/spec/integration/selenium/webdriver:guard-edge-remote; 52s local, disk-cache ... (4 actions, 1 running)
    1859:  �[32m[2,902 / 2,910]�[0m 15 / 27 tests, �[31m�[1m15 failed�[0m;�[0m Testing //rb/spec/integration/selenium/webdriver:guard-edge-remote; 54s local, disk-cache ... (4 actions, 2 running)
    1860:  �[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)
    1861:  ==================== Test output for //rb/spec/integration/selenium/webdriver:guard-edge-remote:
    1862:  2024-04-11 00:57:42 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
    1863:  �[31m�[1mFAILED: �[0m//rb/spec/integration/selenium/webdriver:guard-edge-remote (Summary)
    1864:  D:/_bazel/execroot/selenium/bazel-out/x64_windows-fastbuild/testlogs/rb/spec/integration/selenium/webdriver/guard-edge-remote/test.log
    1865:  An error occurred in a `before(:suite)` hook.
    1866:  Failure/Error: @pid = Process.spawn(*@command, options)
    ...
    
    1869:  Errno::EACCES:
    1870:  �[32mINFO: �[0mFrom Testing //rb/spec/integration/selenium/webdriver:guard-edge-remote:
    1871:  Permission denied - java
    1872:  # ./rb/lib/selenium/webdriver/common/child_process.rb:57:in `spawn'
    1873:  # ./rb/lib/selenium/webdriver/common/child_process.rb:57:in `start'
    1874:  # ./rb/lib/selenium/server.rb:204:in `start'
    1875:  # //?/D:/a/selenium/selenium/rb/spec/integration/selenium/webdriver/spec_helper.rb:40:in `block (2 levels) in <top (required)>'
    1876:  Finished in 0.04178 seconds (files took 0.59243 seconds to load)
    1877:  0 examples, 0 failures, 1 error occurred outside of examples
    1878:  ================================================================================
    1879:  ==================== Test output for //rb/spec/integration/selenium/webdriver:guard-edge-remote:
    1880:  2024-04-11 00:58:09 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
    1881:  An error occurred in a `before(:suite)` hook.
    1882:  Failure/Error: @pid = Process.spawn(*@command, options)
    1883:  Errno::EACCES:
    1884:  Permission denied - java
    1885:  # ./rb/lib/selenium/webdriver/common/child_process.rb:57:in `spawn'
    1886:  # ./rb/lib/selenium/webdriver/common/child_process.rb:57:in `start'
    1887:  # ./rb/lib/selenium/server.rb:204:in `start'
    1888:  # //?/D:/a/selenium/selenium/rb/spec/integration/selenium/webdriver/spec_helper.rb:40:in `block (2 levels) in <top (required)>'
    1889:  Finished in 0.04284 seconds (files took 0.71301 seconds to load)
    1890:  0 examples, 0 failures, 1 error occurred outside of examples
    1891:  ================================================================================
    1892:  ==================== Test output for //rb/spec/integration/selenium/webdriver:guard-edge-remote:
    1893:  2024-04-11 00:58:30 INFO Selenium Server Location: D:/_bazel/execroot/selenium/bazel-out/x64_windows-fastbuild/bin/rb/spec/integration/selenium/webdriver/guard-edge-remote.cmd.runfiles/selenium/java/src/org/openqa/selenium/grid/selenium_server_deploy.jar
    1894:  An error occurred in a `before(:suite)` hook.
    1895:  Failure/Error: @pid = Process.spawn(*@command, options)
    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.04707 seconds (files took 0.72982 seconds to load)
    1903:  0 examples, 0 failures, 1 error occurred outside of examples
    1904:  ================================================================================
    1905:  �[32m[2,903 / 2,910]�[0m 16 / 27 tests, �[31m�[1m16 failed�[0m;�[0m Testing //rb/spec/integration/selenium/webdriver:storage-edge-remote; 7s disk-cache ... (4 actions, 1 running)
    1906:  �[32m[2,903 / 2,910]�[0m 16 / 27 tests, �[31m�[1m16 failed�[0m;�[0m [Sched] Testing //rb/spec/integration/selenium/webdriver:error-edge-remote; 8s ... (4 actions, 1 running)
    1907:  �[31m�[1mFAIL: �[0m//rb/spec/integration/selenium/webdriver:select-edge-remote (see D:/_bazel/execroot/selenium/bazel-out/x64_windows-fastbuild/testlogs/rb/spec/integration/selenium/webdriver/select-edge-remote/test_attempts/attempt_1.log)
    1908:  �[32m[2,903 / 2,910]�[0m 16 / 27 tests, �[31m�[1m16 failed�[0m;�[0m Testing //rb/spec/integration/selenium/webdriver:select-edge-remote; 8s local, disk-cache ... (4 actions, 2 running)
    1909:  �[32m[2,903 / 2,910]�[0m 16 / 27 tests, �[31m�[1m16 failed�[0m;�[0m Testing //rb/spec/integration/selenium/webdriver:select-edge-remote; 9s local, disk-cache ... (4 actions, 2 running)
    1910:  �[32m[2,903 / 2,910]�[0m 16 / 27 tests, �[31m�[1m16 failed�[0m;�[0m Testing //rb/spec/integration/selenium/webdriver:select-edge-remote; 12s local, disk-cache ... (4 actions, 2 running)
    1911:  �[32m[2,903 / 2,910]�[0m 16 / 27 tests, �[31m�[1m16 failed�[0m;�[0m Testing //rb/spec/integration/selenium/webdriver:select-edge-remote; 13s local, disk-cache ... (4 actions, 2 running)
    1912:  �[32m[2,903 / 2,910]�[0m 16 / 27 tests, �[31m�[1m16 failed�[0m;�[0m Testing //rb/spec/integration/selenium/webdriver:select-edge-remote; 14s local, disk-cache ... (4 actions, 3 running)
    1913:  �[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)
    1914:  �[32m[2,903 / 2,910]�[0m 16 / 27 tests, �[31m�[1m16 failed�[0m;�[0m Testing //rb/spec/integration/selenium/webdriver:select-edge-remote; 16s local, disk-cache ... (4 actions, 3 running)
    1915:  �[32m[2,903 / 2,910]�[0m 16 / 27 tests, �[31m�[1m16 failed�[0m;�[0m Testing //rb/spec/integration/selenium/webdriver:select-edge-remote; 21s local, disk-cache ... (4 actions, 3 running)
    1916:  �[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)
    1917:  �[32m[2,903 / 2,910]�[0m 16 / 27 tests, �[31m�[1m16 failed�[0m;�[0m Testing //rb/spec/integration/selenium/webdriver:select-edge-remote; 23s local, disk-cache ... (4 actions, 3 running)
    1918:  �[32m[2,903 / 2,910]�[0m 16 / 27 tests, �[31m�[1m16 failed�[0m;�[0m Testing //rb/spec/integration/selenium/webdriver:select-edge-remote; 28s local, disk-cache ... (4 actions running)
    1919:  �[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)
    1920:  �[32m[2,903 / 2,910]�[0m 16 / 27 tests, �[31m�[1m16 failed�[0m;�[0m Testing //rb/spec/integration/selenium/webdriver:select-edge-remote; 29s local, disk-cache ... (4 actions running)
    1921:  �[32m[2,903 / 2,910]�[0m 16 / 27 tests, �[31m�[1m16 failed�[0m;�[0m Testing //rb/spec/integration/selenium/webdriver:select-edge-remote; 34s local, disk-cache ... (4 actions running)
    1922:  �[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)
    1923:  �[32m[2,903 / 2,910]�[0m 16 / 27 tests, �[31m�[1m16 failed�[0m;�[0m Testing //rb/spec/integration/selenium/webdriver:select-edge-remote; 36s local, disk-cache ... (4 actions running)
    1924:  �[32m[2,903 / 2,910]�[0m 16 / 27 tests, �[31m�[1m16 failed�[0m;�[0m Testing //rb/spec/integration/selenium/webdriver:select-edge-remote; 41s local, disk-cache ... (4 actions running)
    1925:  �[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)
    1926:  �[32m[2,903 / 2,910]�[0m 16 / 27 tests, �[31m�[1m16 failed�[0m;�[0m Testing //rb/spec/integration/selenium/webdriver:select-edge-remote; 43s local, disk-cache ... (4 actions running)
    1927:  �[32m[2,903 / 2,910]�[0m 16 / 27 tests, �[31m�[1m16 failed�[0m;�[0m Testing //rb/spec/integration/selenium/webdriver:select-edge-remote; 48s local, disk-cache ... (4 actions running)
    1928:  �[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)
    1929:  �[32m[2,903 / 2,910]�[0m 16 / 27 tests, �[31m�[1m16 failed�[0m;�[0m Testing //rb/spec/integration/selenium/webdriver:select-edge-remote; 50s local, disk-cache ... (4 actions running)
    1930:  �[32m[2,903 / 2,910]�[0m 16 / 27 tests, �[31m�[1m16 failed�[0m;�[0m Testing //rb/spec/integration/selenium/webdriver:select-edge-remote; 54s local, disk-cache ... (4 actions running)
    1931:  �[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)
    1932:  �[31m�[1mFAILED: �[0m//rb/spec/integration/selenium/webdriver:select-edge-remote (Summary)
    1933:  D:/_bazel/execroot/selenium/bazel-out/x64_windows-fastbuild/testlogs/rb/spec/integration/selenium/webdriver/select-edge-remote/test.log
    1934:  D:/_bazel/execroot/selenium/bazel-out/x64_windows-fastbuild/testlogs/rb/spec/integration/selenium/webdriver/select-edge-remote/test_attempts/attempt_1.log
    1935:  D:/_bazel/execroot/selenium/bazel-out/x64_windows-fastbuild/testlogs/rb/spec/integration/selenium/webdriver/select-edge-remote/test_attempts/attempt_2.log
    1936:  �[32mINFO: �[0mFrom Testing //rb/spec/integration/selenium/webdriver:select-edge-remote:
    1937:  ==================== Test output for //rb/spec/integration/selenium/webdriver:select-edge-remote:
    1938:  2024-04-11 00:58:37 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
    1939:  An error occurred in a `before(:suite)` hook.
    1940:  Failure/Error: @pid = Process.spawn(*@command, options)
    1941:  Errno::EACCES:
    1942:  Permission denied - java
    1943:  # ./rb/lib/selenium/webdriver/common/child_process.rb:57:in `spawn'
    1944:  # ./rb/lib/selenium/webdriver/common/child_process.rb:57:in `start'
    1945:  # ./rb/lib/selenium/server.rb:204:in `start'
    1946:  # //?/D:/a/selenium/selenium/rb/spec/integration/selenium/webdriver/spec_helper.rb:40:in `block (2 levels) in <top (required)>'
    1947:  Finished in 0.05911 seconds (files took 0.8193 seconds to load)
    1948:  0 examples, 0 failures, 1 error occurred outside of examples
    1949:  ================================================================================
    1950:  ==================== Test output for //rb/spec/integration/selenium/webdriver:select-edge-remote:
    1951:  2024-04-11 00:58: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
    1952:  An error occurred in a `before(:suite)` hook.
    1953:  Failure/Error: @pid = Process.spawn(*@command, options)
    1954:  Errno::EACCES:
    1955:  Permission denied - java
    1956:  # ./rb/lib/selenium/webdriver/common/child_process.rb:57:in `spawn'
    1957:  # ./rb/lib/selenium/webdriver/common/child_process.rb:57:in `start'
    1958:  # ./rb/lib/selenium/server.rb:204:in `start'
    1959:  # //?/D:/a/selenium/selenium/rb/spec/integration/selenium/webdriver/spec_helper.rb:40:in `block (2 levels) in <top (required)>'
    1960:  Finished in 0.04397 seconds (files took 0.59275 seconds to load)
    1961:  0 examples, 0 failures, 1 error occurred outside of examples
    1962:  ================================================================================
    1963:  ==================== Test output for //rb/spec/integration/selenium/webdriver:select-edge-remote:
    1964:  2024-04-11 00:59:25 INFO Selenium Server Location: D:/_bazel/execroot/selenium/bazel-out/x64_windows-fastbuild/bin/rb/spec/integration/selenium/webdriver/select-edge-remote.cmd.runfiles/selenium/java/src/org/openqa/selenium/grid/selenium_server_deploy.jar
    1965:  An error occurred in a `before(:suite)` hook.
    1966:  Failure/Error: @pid = Process.spawn(*@command, options)
    1967:  Errno::EACCES:
    1968:  Permission denied - java
    1969:  # ./rb/lib/selenium/webdriver/common/child_process.rb:57:in `spawn'
    1970:  # ./rb/lib/selenium/webdriver/common/child_process.rb:57:in `start'
    1971:  # ./rb/lib/selenium/server.rb:204:in `start'
    1972:  # //?/D:/a/selenium/selenium/rb/spec/integration/selenium/webdriver/spec_helper.rb:40:in `block (2 levels) in <top (required)>'
    1973:  Finished in 0.04294 seconds (files took 0.58081 seconds to load)
    1974:  0 examples, 0 failures, 1 error occurred outside of examples
    1975:  ================================================================================
    1976:  �[32m[2,904 / 2,910]�[0m 17 / 27 tests, �[31m�[1m17 failed�[0m;�[0m Testing //rb/spec/integration/selenium/webdriver:error-edge-remote; 48s local, disk-cache ... (4 actions, 3 running)
    1977:  �[32m[2,904 / 2,910]�[0m 17 / 27 tests, �[31m�[1m17 failed�[0m;�[0m Testing //rb/spec/integration/selenium/webdriver:error-edge-remote; 54s local, disk-cache ... (4 actions, 3 running)
    1978:  �[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)
    1979:  �[32m[2,904 / 2,910]�[0m 17 / 27 tests, �[31m�[1m17 failed�[0m;�[0m Testing //rb/spec/integration/selenium/webdriver:error-edge-remote; 55s local, disk-cache ... (4 actions, 3 running)
    1980:  �[32m[2,904 / 2,910]�[0m 17 / 27 tests, �[31m�[1m17 failed�[0m;�[0m Testing //rb/spec/integration/selenium/webdriver:error-edge-remote; 58s local, disk-cache ... (4 actions, 3 running)
    1981:  �[32m[2,904 / 2,910]�[0m 17 / 27 tests, �[31m�[1m17 failed�[0m;�[0m Testing //rb/spec/integration/selenium/webdriver:error-edge-remote; 59s local, disk-cache ... (4 actions, 3 running)
    1982:  �[32m[2,904 / 2,910]�[0m 17 / 27 tests, �[31m�[1m17 failed�[0m;�[0m Testing //rb/spec/integration/selenium/webdriver:error-edge-remote; 61s local, disk-cache ... (4 actions, 3 running)
    1983:  �[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)
    1984:  �[31m�[1mFAILED: �[0m//rb/spec/integration/selenium/webdriver:error-edge-remote (Summary)
    1985:  D:/_bazel/execroot/selenium/bazel-out/x64_windows-fastbuild/testlogs/rb/spec/integration/selenium/webdriver/error-edge-remote/test.log
    1986:  D:/_bazel/execroot/selenium/bazel-out/x64_windows-fastbuild/testlogs/rb/spec/integration/selenium/webdriver/error-edge-remote/test_attempts/attempt_1.log
    1987:  D:/_bazel/execroot/selenium/bazel-out/x64_windows-fastbuild/testlogs/rb/spec/integration/selenium/webdriver/error-edge-remote/test_attempts/attempt_2.log
    1988:  �[32mINFO: �[0mFrom Testing //rb/spec/integration/selenium/webdriver:error-edge-remote:
    1989:  ==================== Test output for //rb/spec/integration/selenium/webdriver:error-edge-remote:
    1990:  2024-04-11 00:58: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
    1991:  An error occurred in a `before(:suite)` hook.
    1992:  Failure/Error: @pid = Process.spawn(*@command, options)
    1993:  Errno::EACCES:
    1994:  Permission denied - java
    1995:  # ./rb/lib/selenium/webdriver/common/child_process.rb:57:in `spawn'
    1996:  # ./rb/lib/selenium/webdriver/common/child_process.rb:57:in `start'
    1997:  # ./rb/lib/selenium/server.rb:204:in `start'
    1998:  # //?/D:/a/selenium/selenium/rb/spec/integration/selenium/webdriver/spec_helper.rb:40:in `block (2 levels) in <top (required)>'
    1999:  Finished in 0.05156 seconds (files took 0.81674 seconds to load)
    2000:  0 examples, 0 failures, 1 error occurred outside of examples
    2001:  ================================================================================
    2002:  ==================== Test output for //rb/spec/integration/selenium/webdriver:error-edge-remote:
    2003:  2024-04-11 00:59:12 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
    2004:  An error occurred in a `before(:suite)` hook.
    2005:  Failure/Error: @pid = Process.spawn(*@command, options)
    2006:  Errno::EACCES:
    2007:  Permission denied - java
    2008:  # ./rb/lib/selenium/webdriver/common/child_process.rb:57:in `spawn'
    2009:  # ./rb/lib/selenium/webdriver/common/child_process.rb:57:in `start'
    2010:  # ./rb/lib/selenium/server.rb:204:in `start'
    2011:  # //?/D:/a/selenium/selenium/rb/spec/integration/selenium/webdriver/spec_helper.rb:40:in `block (2 levels) in <top (required)>'
    2012:  Finished in 0.04326 seconds (files took 0.60272 seconds to load)
    2013:  0 examples, 0 failures, 1 error occurred outside of examples
    2014:  ================================================================================
    2015:  ==================== Test output for //rb/spec/integration/selenium/webdriver:error-edge-remote:
    2016:  2024-04-11 00:59:39 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
    2017:  An error occurred in a `before(:suite)` hook.
    2018:  Failure/Error: @pid = Process.spawn(*@command, options)
    2019:  Errno::EACCES:
    2020:  Permission denied - java
    2021:  # ./rb/lib/selenium/webdriver/common/child_process.rb:57:in `spawn'
    2022:  # ./rb/lib/selenium/webdriver/common/child_process.rb:57:in `start'
    2023:  # ./rb/lib/selenium/server.rb:204:in `start'
    2024:  # //?/D:/a/selenium/selenium/rb/spec/integration/selenium/webdriver/spec_helper.rb:40:in `block (2 levels) in <top (required)>'
    2025:  Finished in 0.04881 seconds (files took 0.69389 seconds to load)
    2026:  0 examples, 0 failures, 1 error occurred outside of examples
    2027:  ================================================================================
    2028:  �[32m[2,905 / 2,910]�[0m 18 / 27 tests, �[31m�[1m18 failed�[0m;�[0m Testing //rb/spec/integration/selenium/webdriver:storage-edge-remote; 55s local, disk-cache ... (4 actions, 2 running)
    2029:  �[32m[2,905 / 2,910]�[0m 18 / 27 tests, �[31m�[1m18 failed�[0m;�[0m Testing //rb/spec/integration/selenium/webdriver:storage-edge-remote; 61s local, disk-cache ... (4 actions, 2 running)
    2030:  �[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)
    2031:  �[31m�[1mFAILED: �[0m//rb/spec/integration/selenium/webdriver:storage-edge-remote (Summary)
    2032:  ==================== Test output for //rb/spec/integration/selenium/webdriver:storage-edge-remote:
    2033:  D:/_bazel/execroot/selenium/bazel-out/x64_windows-fastbuild/testlogs/rb/spec/integration/selenium/webdriver/storage-edge-remote/test.log
    2034:  2024-04-11 00:58:52 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
    2035:  D:/_bazel/execroot/selenium/bazel-out/x64_windows-fastbuild/testlogs/rb/spec/integration/selenium/webdriver/storage-edge-remote/test_attempts/attempt_1.log
    2036:  D:/_bazel/execroot/selenium/bazel-out/x64_windows-fastbuild/testlogs/rb/spec/integration/selenium/webdriver/storage-edge-remote/test_attempts/attempt_2.log
    2037:  An error occurred in a `before(:suite)` hook.
    2038:  �[32mINFO: �[0mFrom Testing //rb/spec/integration/selenium/webdriver:storage-edge-remote:
    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.04568 seconds (files took 0.58705 seconds to load)
    2047:  0 examples, 0 failures, 1 error occurred outside of examples
    2048:  ================================================================================
    2049:  ==================== Test output for //rb/spec/integration/selenium/webdriver:storage-edge-remote:
    2050:  2024-04-11 00:59:18 INFO Selenium Server Location: D:/_bazel/execroot/selenium/bazel-out/x64_windows-fastbuild/bin/rb/spec/integration/selenium/webdriver/storage-edge-remote.cmd.runfiles/selenium/java/src/org/openqa/selenium/grid/selenium_server_deploy.jar
    2051:  An error occurred in a `before(:suite)` hook.
    2052:  Failure/Error: @pid = Process.spawn(*@command, options)
    2053:  Errno::EACCES:
    2054:  Permission denied - java
    2055:  # ./rb/lib/selenium/webdriver/common/child_process.rb:57:in `spawn'
    2056:  # ./rb/lib/selenium/webdriver/common/child_process.rb:57:in `start'
    2057:  # ./rb/lib/selenium/server.rb:204:in `start'
    2058:  # //?/D:/a/selenium/selenium/rb/spec/integration/selenium/webdriver/spec_helper.rb:40:in `block (2 levels) in <top (required)>'
    2059:  Finished in 0.04247 seconds (files took 0.59101 seconds to load)
    2060:  0 examples, 0 failures, 1 error occurred outside of examples
    2061:  ================================================================================
    2062:  ==================== Test output for //rb/spec/integration/selenium/webdriver:storage-edge-remote:
    2063:  2024-04-11 00:59:46 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
    2064:  An error occurred in a `before(:suite)` hook.
    2065:  Failure/Error: @pid = Process.spawn(*@command, options)
    2066:  Errno::EACCES:
    2067:  Permission denied - java
    2068:  # ./rb/lib/selenium/webdriver/common/child_process.rb:57:in `spawn'
    2069:  # ./rb/lib/selenium/webdriver/common/child_process.rb:57:in `start'
    2070:  # ./rb/lib/selenium/server.rb:204:in `start'
    2071:  # //?/D:/a/selenium/selenium/rb/spec/integration/selenium/webdriver/spec_helper.rb:40:in `block (2 levels) in <top (required)>'
    2072:  Finished in 0.0454 seconds (files took 0.65284 seconds to load)
    2073:  0 examples, 0 failures, 1 error occurred outside of examples
    2074:  ================================================================================
    2075:  �[32m[2,906 / 2,910]�[0m 19 / 27 tests, �[31m�[1m19 failed�[0m;�[0m Testing //rb/spec/integration/selenium/webdriver:driver-edge-remote; 49s local, disk-cache ... (4 actions, 1 running)
    2076:  �[32m[2,906 / 2,910]�[0m 19 / 27 tests, �[31m�[1m19 failed�[0m;�[0m Testing //rb/spec/integration/selenium/webdriver:driver-edge-remote; 52s local, disk-cache ... (4 actions, 1 running)
    2077:  �[32m[2,906 / 2,910]�[0m 19 / 27 tests, �[31m�[1m19 failed�[0m;�[0m Testing //rb/spec/integration/selenium/webdriver:driver-edge-remote; 55s local, disk-cache ... (4 actions, 2 running)
    2078:  �[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)
    2079:  ==================== Test output for //rb/spec/integration/selenium/webdriver:driver-edge-remote:
    2080:  �[31m�[1mFAILED: �[0m//rb/spec/integration/selenium/webdriver:driver-edge-remote (Summary)
    2081:  D:/_bazel/execroot/selenium/bazel-out/x64_windows-fastbuild/testlogs/rb/spec/integration/selenium/webdriver/driver-edge-remote/test.log
    2082:  D:/_bazel/execroot/selenium/bazel-out/x64_windows-fastbuild/testlogs/rb/spec/integration/selenium/webdriver/driver-edge-remote/test_attempts/attempt_1.log
    2083:  D:/_bazel/execroot/selenium/bazel-out/x64_windows-fastbuild/testlogs/rb/spec/integration/selenium/webdriver/driver-edge-remote/test_attempts/attempt_2.log
    2084:  �[32mINFO: �[0mFrom Testing //rb/spec/integration/selenium/webdriver:driver-edge-remote:
    2085:  2024-04-11 00:59:05 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
    2086:  An error occurred in a `before(:suite)` hook.
    2087:  Failure/Error: @pid = Process.spawn(*@command, options)
    2088:  Errno::EACCES:
    2089:  Permission denied - java
    2090:  # ./rb/lib/selenium/webdriver/common/child_process.rb:57:in `spawn'
    2091:  # ./rb/lib/selenium/webdriver/common/child_process.rb:57:in `start'
    2092:  # ./rb/lib/selenium/server.rb:204:in `start'
    2093:  # //?/D:/a/selenium/selenium/rb/spec/integration/selenium/webdriver/spec_helper.rb:40:in `block (2 levels) in <top (required)>'
    2094:  Finished in 0.04568 seconds (files took 0.60644 seconds to load)
    2095:  0 examples, 0 failures, 1 error occurred outside of examples
    2096:  ================================================================================
    2097:  ==================== Test output for //rb/spec/integration/selenium/webdriver:driver-edge-remote:
    2098:  2024-04-11 00:59:32 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
    2099:  An error occurred in a `before(:suite)` hook.
    2100:  Failure/Error: @pid = Process.spawn(*@command, options)
    2101:  Errno::EACCES:
    2102:  Permission denied - java
    2103:  # ./rb/lib/selenium/webdriver/common/child_process.rb:57:in `spawn'
    2104:  # ./rb/lib/selenium/webdriver/common/child_process.rb:57:in `start'
    2105:  # ./rb/lib/selenium/server.rb:204:in `start'
    2106:  # //?/D:/a/selenium/selenium/rb/spec/integration/selenium/webdriver/spec_helper.rb:40:in `block (2 levels) in <top (required)>'
    2107:  Finished in 0.0649 seconds (files took 0.81059 seconds to load)
    2108:  0 examples, 0 failures, 1 error occurred outside of examples
    2109:  ================================================================================
    2110:  ==================== Test output for //rb/spec/integration/selenium/webdriver:driver-edge-remote:
    2111:  2024-04-11 00:59:54 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
    2112:  An error occurred in a `before(:suite)` hook.
    2113:  Failure/Error: @pid = Process.spawn(*@command, options)
    2114:  Errno::EACCES:
    2115:  Permission denied - java
    2116:  # ./rb/lib/selenium/webdriver/common/child_process.rb:57:in `spawn'
    2117:  # ./rb/lib/selenium/webdriver/common/child_process.rb:57:in `start'
    2118:  # ./rb/lib/selenium/server.rb:204:in `start'
    2119:  # //?/D:/a/selenium/selenium/rb/spec/integration/selenium/webdriver/spec_helper.rb:40:in `block (2 levels) in <top (required)>'
    2120:  Finished in 0.05583 seconds (files took 0.82903 seconds to load)
    2121:  0 examples, 0 failures, 1 error occurred outside of examples
    2122:  ================================================================================
    2123:  �[32m[2,907 / 2,910]�[0m 20 / 27 tests, �[31m�[1m20 failed�[0m;�[0m Testing //rb/spec/integration/selenium/webdriver:timeout-edge-remote; 8s disk-cache ... (3 actions, 1 running)
    2124:  �[32m[2,907 / 2,910]�[0m 20 / 27 tests, �[31m�[1m20 failed�[0m;�[0m [Sched] Testing //rb/spec/integration/selenium/webdriver:target_locator-edge-remote; 7s ... (3 actions, 1 running)
    2125:  �[32m[2,907 / 2,910]�[0m 20 / 27 tests, �[31m�[1m20 failed�[0m;�[0m Testing //rb/spec/integration/selenium/webdriver:shadow_root-edge-remote; 6s local, disk-cache ... (3 actions, 2 running)
    2126:  �[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)
    2127:  �[32m[2,907 / 2,910]�[0m 20 / 27 tests, �[31m�[1m20 failed�[0m;�[0m Testing //rb/spec/integration/selenium/webdriver:shadow_root-edge-remote; 8s local, disk-cache ... (3 actions, 2 running)
    2128:  �[32m[2,907 / 2,910]�[0m 20 / 27 tests, �[31m�[1m20 failed�[0m;�[0m Testing //rb/spec/integration/selenium/webdriver:shadow_root-edge-remote; 11s local, disk-cache ... (3 actions, 2 running)
    2129:  �[32m[2,907 / 2,910]�[0m 20 / 27 tests, �[31m�[1m20 failed�[0m;�[0m Testing //rb/spec/integration/selenium/webdriver:shadow_root-edge-remote; 13s local, disk-cache ... (3 actions running)
    2130:  �[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)
    2131:  �[32m[2,907 / 2,910]�[0m 20 / 27 tests, �[31m�[1m20 failed�[0m;�[0m Testing //rb/spec/integration/selenium/webdriver:shadow_root-edge-remote; 14s local, disk-cache ... (3 actions running)
    2132:  �[32m[2,907 / 2,910]�[0m 20 / 27 tests, �[31m�[1m20 failed�[0m;�[0m Testing //rb/spec/integration/selenium/webdriver:shadow_root-edge-remote; 20s local, disk-cache ... (3 actions running)
    2133:  �[31m�[1mFAIL: �[0m//rb/spec/integration/selenium/webdriver:timeout-edge-remote (see D:/_bazel/execroot/selenium/bazel-out/x64_windows-fastbuild/testlogs/rb/spec/integration/selenium/webdriver/timeout-edge-remote/test_attempts/attempt_1.log)
    2134:  �[32m[2,907 / 2,910]�[0m 20 / 27 tests, �[31m�[1m20 failed�[0m;�[0m Testing //rb/spec/integration/selenium/webdriver:shadow_root-edge-remote; 21s local, disk-cache ... (3 actions running)
    2135:  �[32m[2,907 / 2,910]�[0m 20 / 27 tests, �[31m�[1m20 failed�[0m;�[0m Testing //rb/spec/integration/selenium/webdriver:shadow_root-edge-remote; 27s local, disk-cache ... (3 actions running)
    2136:  �[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)
    2137:  �[32m[2,907 / 2,910]�[0m 20 / 27 tests, �[31m�[1m20 failed�[0m;�[0m Testing //rb/spec/integration/selenium/webdriver:shadow_root-edge-remote; 28s local, disk-cache ... (3 actions running)
    2138:  �[32m[2,907 / 2,910]�[0m 20 / 27 tests, �[31m�[1m20 failed�[0m;�[0m Testing //rb/spec/integration/selenium/webdriver:shadow_root-edge-remote; 34s local, disk-cache ... (3 actions running)
    2139:  �[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)
    2140:  �[32m[2,907 / 2,910]�[0m 20 / 27 tests, �[31m�[1m20 failed�[0m;�[0m Testing //rb/spec/integration/selenium/webdriver:shadow_root-edge-remote; 35s local, disk-cache ... (3 actions running)
    2141:  �[32m[2,907 / 2,910]�[0m 20 / 27 tests, �[31m�[1m20 failed�[0m;�[0m Testing //rb/spec/integration/selenium/webdriver:shadow_root-edge-remote; 40s local, disk-cache ... (3 actions running)
    2142:  �[31m�[1mFAIL: �[0m//rb/spec/integration/selenium/webdriver:timeout-edge-remote (see D:/_bazel/execroot/selenium/bazel-out/x64_windows-fastbuild/testlogs/rb/spec/integration/selenium/webdriver/timeout-edge-remote/test_attempts/attempt_2.log)
    2143:  �[32m[2,907 / 2,910]�[0m 20 / 27 tests, �[31m�[1m20 failed�[0m;�[0m Testing //rb/spec/integration/selenium/webdriver:shadow_root-edge-remote; 41s local, disk-cache ... (3 actions running)
    2144:  �[32m[2,907 / 2,910]�[0m 20 / 27 tests, �[31m�[1m20 failed�[0m;�[0m Testing //rb/spec/integration/selenium/webdriver:shadow_root-edge-remote; 42s local, disk-cache ... (3 actions running)
    2145:  �[32m[2,907 / 2,910]�[0m 20 / 27 tests, �[31m�[1m20 failed�[0m;�[0m Testing //rb/spec/integration/selenium/webdriver:shadow_root-edge-remote; 47s local, disk-cache ... (3 actions running)
    2146:  �[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)
    2147:  �[31m�[1mFAILED: �[0m//rb/spec/integration/selenium/webdriver:shadow_root-edge-remote (Summary)
    2148:  D:/_bazel/execroot/selenium/bazel-out/x64_windows-fastbuild/testlogs/rb/spec/integration/selenium/webdriver/shadow_root-edge-remote/test.log
    2149:  D:/_bazel/execroot/selenium/bazel-out/x64_windows-fastbuild/testlogs/rb/spec/integration/selenium/webdriver/shadow_root-edge-remote/test_attempts/attempt_1.log
    2150:  D:/_bazel/execroot/selenium/bazel-out/x64_windows-fastbuild/testlogs/rb/spec/integration/selenium/webdriver/shadow_root-edge-remote/test_attempts/attempt_2.log
    2151:  �[32mINFO: �[0mFrom Testing //rb/spec/integration/selenium/webdriver:shadow_root-edge-remote:
    2152:  ==================== Test output for //rb/spec/integration/selenium/webdriver:shadow_root-edge-remote:
    2153:  2024-04-11 01:00:01 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
    2154:  An error occurred in a `before(:suite)` hook.
    2155:  Failure/Error: @pid = Process.spawn(*@command, options)
    2156:  Errno::EACCES:
    2157:  Permission denied - java
    2158:  # ./rb/lib/selenium/webdriver/common/child_process.rb:57:in `spawn'
    2159:  # ./rb/lib/selenium/webdriver/common/child_process.rb:57:in `start'
    2160:  # ./rb/lib/selenium/server.rb:204:in `start'
    2161:  # //?/D:/a/selenium/selenium/rb/spec/integration/selenium/webdriver/spec_helper.rb:40:in `block (2 levels) in <top (required)>'
    2162:  Finished in 0.0463 seconds (files took 0.83873 seconds to load)
    2163:  0 examples, 0 failures, 1 error occurred outside of examples
    2164:  ================================================================================
    2165:  ==================== Test output for //rb/spec/integration/selenium/webdriver:shadow_root-edge-remote:
    2166:  2024-04-11 01:00:21 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
    2167:  An error occurred in a `before(:suite)` hook.
    2168:  Failure/Error: @pid = Process.spawn(*@command, options)
    2169:  Errno::EACCES:
    2170:  Permission denied - java
    2171:  # ./rb/lib/selenium/webdriver/common/child_process.rb:57:in `spawn'
    2172:  # ./rb/lib/selenium/webdriver/common/child_process.rb:57:in `start'
    2173:  # ./rb/lib/selenium/server.rb:204:in `start'
    2174:  # //?/D:/a/selenium/selenium/rb/spec/integration/selenium/webdriver/spec_helper.rb:40:in `block (2 levels) in <top (required)>'
    2175:  Finished in 0.04418 seconds (files took 0.60916 seconds to load)
    2176:  0 examples, 0 failures, 1 error occurred outside of examples
    2177:  ================================================================================
    2178:  ==================== Test output for //rb/spec/integration/selenium/webdriver:shadow_root-edge-remote:
    2179:  2024-04-11 01:00:41 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
    2180:  An error occurred in a `before(:suite)` hook.
    2181:  Failure/Error: @pid = Process.spawn(*@command, options)
    2182:  Errno::EACCES:
    2183:  Permission denied - java
    2184:  # ./rb/lib/selenium/webdriver/common/child_process.rb:57:in `spawn'
    2185:  # ./rb/lib/selenium/webdriver/common/child_process.rb:57:in `start'
    2186:  # ./rb/lib/selenium/server.rb:204:in `start'
    2187:  # //?/D:/a/selenium/selenium/rb/spec/integration/selenium/webdriver/spec_helper.rb:40:in `block (2 levels) in <top (required)>'
    2188:  Finished in 0.04391 seconds (files took 0.60169 seconds to load)
    2189:  0 examples, 0 failures, 1 error occurred outside of examples
    2190:  ================================================================================
    2191:  �[32m[2,908 / 2,910]�[0m 21 / 27 tests, �[31m�[1m21 failed�[0m;�[0m Testing //rb/spec/integration/selenium/webdriver:target_locator-edge-remote; 42s local, disk-cache ... (2 actions running)
    2192:  �[32m[2,908 / 2,910]�[0m 21 / 27 tests, �[31m�[1m21 failed�[0m;�[0m Testing //rb/spec/integration/selenium/webdriver:target_locator-edge-remote; 47s local, disk-cache ... (2 actions running)
    2193:  �[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)
    2194:  �[31m�[1mFAILED: �[0m//rb/spec/integration/selenium/webdriver:target_locator-edge-remote (Summary)
    2195:  D:/_bazel/execroot/selenium/bazel-out/x64_windows-fastbuild/testlogs/rb/spec/integration/selenium/webdriver/target_locator-edge-remote/test.log
    2196:  D:/_bazel/execroot/selenium/bazel-out/x64_windows-fastbuild/testlogs/rb/spec/integration/selenium/webdriver/target_locator-edge-remote/test_attempts/attempt_1.log
    2197:  ==================== Test output for //rb/spec/integration/selenium/webdriver:target_locator-edge-remote:
    2198:  D:/_bazel/execroot/selenium/bazel-out/x64_windows-fastbuild/testlogs/rb/spec/integration/selenium/webdriver/target_locator-edge-remote/test_attempts/attempt_2.log
    2199:  �[32mINFO: �[0mFrom Testing //rb/spec/integration/selenium/webdriver:target_locator-edge-remote:
    2200:  2024-04-11 01:00:07 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
    2201:  An error occurred in a `before(:suite)` hook.
    2202:  Failure/Error: @pid = Process.spawn(*@command, options)
    2203:  Errno::EACCES:
    2204:  Permission denied - java
    2205:  # ./rb/lib/selenium/webdriver/common/child_process.rb:57:in `spawn'
    2206:  # ./rb/lib/selenium/webdriver/common/child_process.rb:57:in `start'
    2207:  # ./rb/lib/selenium/server.rb:204:in `start'
    2208:  # //?/D:/a/selenium/selenium/rb/spec/integration/selenium/webdriver/spec_helper.rb:40:in `block (2 levels) in <top (required)>'
    2209:  Finished in 0.04319 seconds (files took 0.58883 seconds to load)
    2210:  0 examples, 0 failures, 1 error occurred outside of examples
    2211:  ================================================================================
    2212:  ==================== Test output for //rb/spec/integration/selenium/webdriver:target_locator-edge-remote:
    2213:  2024-04-11 01:00:28 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
    2214:  An error occurred in a `before(:suite)` hook.
    2215:  Failure/Error: @pid = Process.spawn(*@command, options)
    2216:  Errno::EACCES:
    2217:  Permission denied - java
    2218:  # ./rb/lib/selenium/webdriver/common/child_process.rb:57:in `spawn'
    2219:  # ./rb/lib/selenium/webdriver/common/child_process.rb:57:in `start'
    2220:  # ./rb/lib/selenium/server.rb:204:in `start'
    2221:  # //?/D:/a/selenium/selenium/rb/spec/integration/selenium/webdriver/spec_helper.rb:40:in `block (2 levels) in <top (required)>'
    2222:  Finished in 0.04722 seconds (files took 0.69379 seconds to load)
    2223:  0 examples, 0 failures, 1 error occurred outside of examples
    2224:  ================================================================================
    2225:  ==================== Test output for //rb/spec/integration/selenium/webdriver:target_locator-edge-remote:
    2226:  2024-04-11 01:00:48 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
    2227:  An error occurred in a `before(:suite)` hook.
    2228:  Failure/Error: @pid = Process.spawn(*@command, options)
    2229:  Errno::EACCES:
    2230:  Permission denied - java
    2231:  # ./rb/lib/selenium/webdriver/common/child_process.rb:57:in `spawn'
    2232:  # ./rb/lib/selenium/webdriver/common/child_process.rb:57:in `start'
    2233:  # ./rb/lib/selenium/server.rb:204:in `start'
    2234:  # //?/D:/a/selenium/selenium/rb/spec/integration/selenium/webdriver/spec_helper.rb:40:in `block (2 levels) in <top (required)>'
    2235:  Finished in 0.04837 seconds (files took 0.64709 seconds to load)
    2236:  0 examples, 0 failures, 1 error occurred outside of examples
    2237:  ================================================================================
    2238:  �[32m[2,909 / 2,910]�[0m 22 / 27 tests, �[31m�[1m22 failed�[0m;�[0m Testing //rb/spec/integration/selenium/webdriver:timeout-edge-remote; 42s local, disk-cache
    2239:  �[32m[2,909 / 2,910]�[0m 22 / 27 tests, �[31m�[1m22 failed�[0m;�[0m Testing //rb/spec/integration/selenium/webdriver:timeout-edge-remote; 47s local, disk-cache
    2240:  �[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)
    2241:  �[31m�[1mFAILED: �[0m//rb/spec/integration/selenium/webdriver:timeout-edge-remote (Summary)
    2242:  D:/_bazel/execroot/selenium/bazel-out/x64_windows-fastbuild/testlogs/rb/spec/integration/selenium/webdriver/timeout-edge-remote/test.log
    2243:  D:/_bazel/execroot/selenium/bazel-out/x64_windows-fastbuild/testlogs/rb/spec/integration/selenium/webdriver/timeout-edge-remote/test_attempts/attempt_1.log
    2244:  D:/_bazel/execroot/selenium/bazel-out/x64_windows-fastbuild/testlogs/rb/spec/integration/selenium/webdriver/timeout-edge-remote/test_attempts/attempt_2.log
    2245:  �[32mINFO: �[0mFrom Testing //rb/spec/integration/selenium/webdriver:timeout-edge-remote:
    2246:  ==================== Test output for //rb/spec/integration/selenium/webdriver:timeout-edge-remote:
    2247:  2024-04-11 01:00:14 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
    2248:  An error occurred in a `before(:suite)` hook.
    2249:  Failure/Error: @pid = Process.spawn(*@command, options)
    2250:  Errno::EACCES:
    2251:  Permission denied - java
    2252:  # ./rb/lib/selenium/webdriver/common/child_process.rb:57:in `spawn'
    2253:  # ./rb/lib/selenium/webdriver/common/child_process.rb:57:in `start'
    2254:  # ./rb/lib/selenium/server.rb:204:in `start'
    2255:  # //?/D:/a/selenium/selenium/rb/spec/integration/selenium/webdriver/spec_helper.rb:40:in `block (2 levels) in <top (required)>'
    2256:  Finished in 0.04659 seconds (files took 0.61423 seconds to load)
    2257:  0 examples, 0 failures, 1 error occurred outside of examples
    2258:  ================================================================================
    2259:  ==================== Test output for //rb/spec/integration/selenium/webdriver:timeout-edge-remote:
    2260:  2024-04-11 01:00:34 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
    2261:  An error occurred in a `before(:suite)` hook.
    2262:  Failure/Error: @pid = Process.spawn(*@command, options)
    2263:  Errno::EACCES:
    2264:  Permission denied - java
    2265:  # ./rb/lib/selenium/webdriver/common/child_process.rb:57:in `spawn'
    2266:  # ./rb/lib/selenium/webdriver/common/child_process.rb:57:in `start'
    2267:  # ./rb/lib/selenium/server.rb:204:in `start'
    2268:  # //?/D:/a/selenium/selenium/rb/spec/integration/selenium/webdriver/spec_helper.rb:40:in `block (2 levels) in <top (required)>'
    2269:  Finished in 0.0423 seconds (files took 0.58151 seconds to load)
    2270:  0 examples, 0 failures, 1 error occurred outside of examples
    2271:  ================================================================================
    2272:  ==================== Test output for //rb/spec/integration/selenium/webdriver:timeout-edge-remote:
    2273:  2024-04-11 01:00:55 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
    2274:  An error occurred in a `before(:suite)` hook.
    2275:  Failure/Error: @pid = Process.spawn(*@command, options)
    2276:  Errno::EACCES:
    2277:  Permission denied - java
    2278:  # ./rb/lib/selenium/webdriver/common/child_process.rb:57:in `spawn'
    2279:  # ./rb/lib/selenium/webdriver/common/child_process.rb:57:in `start'
    2280:  # ./rb/lib/selenium/server.rb:204:in `start'
    2281:  # //?/D:/a/selenium/selenium/rb/spec/integration/selenium/webdriver/spec_helper.rb:40:in `block (2 levels) in <top (required)>'
    2282:  Finished in 0.04539 seconds (files took 0.60425 seconds to load)
    2283:  0 examples, 0 failures, 1 error occurred outside of examples
    2284:  ================================================================================
    2285:  �[32m[2,910 / 2,911]�[0m 23 / 27 tests, �[31m�[1m23 failed�[0m;�[0m Testing //rb/spec/integration/selenium/webdriver:devtools-edge-remote; 1s disk-cache
    2286:  �[32m[2,910 / 2,911]�[0m 23 / 27 tests, �[31m�[1m23 failed�[0m;�[0m [Sched] Testing //rb/spec/integration/selenium/webdriver:devtools-edge-remote
    2287:  �[32m[2,910 / 2,911]�[0m 23 / 27 tests, �[31m�[1m23 failed�[0m;�[0m Testing //rb/spec/integration/selenium/webdriver:devtools-edge-remote; 1s local, disk-cache
    2288:  �[32m[2,910 / 2,911]�[0m 23 / 27 tests, �[31m�[1m23 failed�[0m;�[0m Testing //rb/spec/integration/selenium/webdriver:devtools-edge-remote; 6s local, disk-cache
    2289:  �[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)
    2290:  �[32m[2,910 / 2,911]�[0m 23 / 27 tests, �[31m�[1m23 failed�[0m;�[0m Testing //rb/spec/integration/selenium/webdriver:devtools-edge-remote; 8s local, disk-cache
    2291:  �[32m[2,910 / 2,911]�[0m 23 / 27 tests, �[31m�[1m23 failed�[0m;�[0m Testing //rb/spec/integration/selenium/webdriver:devtools-edge-remote; 13s local, disk-cache
    2292:  �[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)
    2293:  �[32m[2,910 / 2,911]�[0m 23 / 27 tests, �[31m�[1m23 failed�[0m;�[0m Testing //rb/spec/integration/selenium/webdriver:devtools-edge-remote; 15s local, disk-cache
    2294:  �[32m[2,910 / 2,911]�[0m 23 / 27 tests, �[31m�[1m23 failed�[0m;�[0m Testing //rb/spec/integration/selenium/webdriver:devtools-edge-remote; 21s local, disk-cache
    2295:  �[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)
    2296:  �[31m�[1mFAILED: �[0m//rb/spec/integration/selenium/webdriver:devtools-edge-remote (Summary)
    2297:  D:/_bazel/execroot/selenium/bazel-out/x64_windows-fastbuild/testlogs/rb/spec/integration/selenium/webdriver/devtools-edge-remote/test.log
    2298:  D:/_bazel/execroot/selenium/bazel-out/x64_windows-fastbuild/testlogs/rb/spec/integration/selenium/webdriver/devtools-edge-remote/test_attempts/attempt_1.log
    2299:  D:/_bazel/execroot/selenium/bazel-out/x64_windows-fastbuild/testlogs/rb/spec/integration/selenium/webdriver/devtools-edge-remote/test_attempts/attempt_2.log
    2300:  �[32mINFO: �[0mFrom Testing //rb/spec/integration/selenium/webdriver:devtools-edge-remote:
    2301:  ==================== Test output for //rb/spec/integration/selenium/webdriver:devtools-edge-remote:
    2302:  2024-04-11 01:01:12 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
    2303:  An error occurred in a `before(:suite)` hook.
    2304:  Failure/Error: @pid = Process.spawn(*@command, options)
    2305:  Errno::EACCES:
    2306:  Permission denied - java
    2307:  # ./rb/lib/selenium/webdriver/common/child_process.rb:57:in `spawn'
    2308:  # ./rb/lib/selenium/webdriver/common/child_process.rb:57:in `start'
    2309:  # ./rb/lib/selenium/server.rb:204:in `start'
    2310:  # //?/D:/a/selenium/selenium/rb/spec/integration/selenium/webdriver/spec_helper.rb:40:in `block (2 levels) in <top (required)>'
    2311:  Finished in 0.04774 seconds (files took 0.62356 seconds to load)
    2312:  0 examples, 0 failures, 1 error occurred outside of examples
    2313:  ================================================================================
    2314:  ==================== Test output for //rb/spec/integration/selenium/webdriver:devtools-edge-remote:
    2315:  2024-04-11 01:01:19 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
    2316:  An error occurred in a `before(:suite)` hook.
    2317:  Failure/Error: @pid = Process.spawn(*@command, options)
    2318:  Errno::EACCES:
    2319:  Permission denied - java
    2320:  # ./rb/lib/selenium/webdriver/common/child_process.rb:57:in `spawn'
    2321:  # ./rb/lib/selenium/webdriver/common/child_process.rb:57:in `start'
    2322:  # ./rb/lib/selenium/server.rb:204:in `start'
    2323:  # //?/D:/a/selenium/selenium/rb/spec/integration/selenium/webdriver/spec_helper.rb:40:in `block (2 levels) in <top (required)>'
    2324:  Finished in 0.04625 seconds (files took 0.60638 seconds to load)
    2325:  0 examples, 0 failures, 1 error occurred outside of examples
    2326:  ================================================================================
    2327:  ==================== Test output for //rb/spec/integration/selenium/webdriver:devtools-edge-remote:
    2328:  2024-04-11 01:01:26 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
    2329:  An error occurred in a `before(:suite)` hook.
    2330:  Failure/Error: @pid = Process.spawn(*@command, options)
    2331:  Errno::EACCES:
    2332:  Permission denied - java
    2333:  # ./rb/lib/selenium/webdriver/common/child_process.rb:57:in `spawn'
    2334:  # ./rb/lib/selenium/webdriver/common/child_process.rb:57:in `start'
    2335:  # ./rb/lib/selenium/server.rb:204:in `start'
    2336:  # //?/D:/a/selenium/selenium/rb/spec/integration/selenium/webdriver/spec_helper.rb:40:in `block (2 levels) in <top (required)>'
    2337:  Finished in 0.0458 seconds (files took 0.63943 seconds to load)
    2338:  0 examples, 0 failures, 1 error occurred outside of examples
    2339:  ================================================================================
    2340:  �[32m[2,911 / 2,912]�[0m 24 / 27 tests, �[31m�[1m24 failed�[0m;�[0m Testing //rb/spec/integration/selenium/webdriver/bidi:log_inspector-edge-remote; 0s disk-cache
    2341:  �[32m[2,911 / 2,912]�[0m 24 / 27 tests, �[31m�[1m24 failed�[0m;�[0m [Sched] Testing //rb/spec/integration/selenium/webdriver/bidi:log_inspector-edge-remote
    2342:  �[32m[2,911 / 2,912]�[0m 24 / 27 tests, �[31m�[1m24 failed�[0m;�[0m Testing //rb/spec/integration/selenium/webdriver/bidi:log_inspector-edge-remote; 1s local, disk-cache
    2343:  �[32m[2,911 / 2,912]�[0m 24 / 27 tests, �[31m�[1m24 failed�[0m;�[0m Testing //rb/spec/integration/selenium/webdriver/bidi:log_inspector-edge-remote; 6s local, disk-cache
    2344:  �[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)
    2345:  �[32m[2,911 / 2,912]�[0m 24 / 27 tests, �[31m�[1m24 failed�[0m;�[0m Testing //rb/spec/integration/selenium/webdriver/bidi:log_inspector-edge-remote; 8s local, disk-cache
    2346:  �[32m[2,911 / 2,912]�[0m 24 / 27 tests, �[31m�[1m24 failed�[0m;�[0m Testing //rb/spec/integration/selenium/webdriver/bidi:log_inspector-edge-remote; 13s local, disk-cache
    2347:  �[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)
    2348:  �[32m[2,911 / 2,912]�[0m 24 / 27 tests, �[31m�[1m24 failed�[0m;�[0m Testing //rb/spec/integration/selenium/webdriver/bidi:log_inspector-edge-remote; 15s local, disk-cache
    2349:  �[32m[2,911 / 2,912]�[0m 24 / 27 tests, �[31m�[1m24 failed�[0m;�[0m Testing //rb/spec/integration/selenium/webdriver/bidi:log_inspector-edge-remote; 21s local, disk-cache
    2350:  �[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)
    2351:  �[31m�[1mFAILED: �[0m//rb/spec/integration/selenium/webdriver/bidi:log_inspector-edge-remote (Summary)
    2352:  D:/_bazel/execroot/selenium/bazel-out/x64_windows-fastbuild/testlogs/rb/spec/integration/selenium/webdriver/bidi/log_inspector-edge-remote/test.log
    2353:  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
    2354:  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
    2355:  �[32mINFO: �[0mFrom Testing //rb/spec/integration/selenium/webdriver/bidi:log_inspector-edge-remote:
    2356:  ==================== Test output for //rb/spec/integration/selenium/webdriver/bidi:log_inspector-edge-remote:
    2357:  2024-04-11 01:01:43 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
    2358:  An error occurred in a `before(:suite)` hook.
    2359:  Failure/Error: @pid = Process.spawn(*@command, options)
    2360:  Errno::EACCES:
    2361:  Permission denied - java
    2362:  # ./rb/lib/selenium/webdriver/common/child_process.rb:57:in `spawn'
    2363:  # ./rb/lib/selenium/webdriver/common/child_process.rb:57:in `start'
    2364:  # ./rb/lib/selenium/server.rb:204:in `start'
    2365:  # //?/D:/a/selenium/selenium/rb/spec/integration/selenium/webdriver/spec_helper.rb:40:in `block (2 levels) in <top (required)>'
    2366:  Finished in 0.04715 seconds (files took 0.61043 seconds to load)
    2367:  0 examples, 0 failures, 1 error occurred outside of examples
    2368:  ================================================================================
    2369:  ==================== Test output for //rb/spec/integration/selenium/webdriver/bidi:log_inspector-edge-remote:
    2370:  2024-04-11 01:01:50 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
    2371:  An error occurred in a `before(:suite)` hook.
    2372:  Failure/Error: @pid = Process.spawn(*@command, options)
    2373:  Errno::EACCES:
    2374:  Permission denied - java
    2375:  # ./rb/lib/selenium/webdriver/common/child_process.rb:57:in `spawn'
    2376:  # ./rb/lib/selenium/webdriver/common/child_process.rb:57:in `start'
    2377:  # ./rb/lib/selenium/server.rb:204:in `start'
    2378:  # //?/D:/a/selenium/selenium/rb/spec/integration/selenium/webdriver/spec_helper.rb:40:in `block (2 levels) in <top (required)>'
    2379:  Finished in 0.04252 seconds (files took 0.60708 seconds to load)
    2380:  0 examples, 0 failures, 1 error occurred outside of examples
    2381:  ================================================================================
    2382:  ==================== Test output for //rb/spec/integration/selenium/webdriver/bidi:log_inspector-edge-remote:
    2383:  2024-04-11 01:01:57 INFO Selenium Server Location: D:/_bazel/execroot/selenium/bazel-out/x64_windows-fastbuild/bin/rb/spec/integration/selenium/webdriver/bidi/log_inspector-edge-remote.cmd.runfiles/selenium/java/src/org/openqa/selenium/grid/selenium_server_deploy.jar
    2384:  An error occurred in a `before(:suite)` hook.
    2385:  Failure/Error: @pid = Process.spawn(*@command, options)
    2386:  Errno::EACCES:
    2387:  Permission denied - java
    2388:  # ./rb/lib/selenium/webdriver/common/child_process.rb:57:in `spawn'
    2389:  # ./rb/lib/selenium/webdriver/common/child_process.rb:57:in `start'
    2390:  # ./rb/lib/selenium/server.rb:204:in `start'
    2391:  # //?/D:/a/selenium/selenium/rb/spec/integration/selenium/webdriver/spec_helper.rb:40:in `block (2 levels) in <top (required)>'
    2392:  Finished in 0.04586 seconds (files took 0.65408 seconds to load)
    2393:  0 examples, 0 failures, 1 error occurred outside of examples
    2394:  ================================================================================
    2395:  �[32m[2,912 / 2,913]�[0m 25 / 27 tests, �[31m�[1m25 failed�[0m;�[0m Testing //rb/spec/integration/selenium/webdriver/bidi:browsing_context-edge-remote; 0s disk-cache
    2396:  �[32m[2,912 / 2,913]�[0m 25 / 27 tests, �[31m�[1m25 failed�[0m;�[0m [Sched] Testing //rb/spec/integration/selenium/webdriver/bidi:browsing_context-edge-remote
    2397:  �[32m[2,912 / 2,913]�[0m 25 / 27 tests, �[31m�[1m25 failed�[0m;�[0m Testing //rb/spec/integration/selenium/webdriver/bidi:browsing_context-edge-remote; 1s local, disk-cache
    2398:  �[32m[2,912 / 2,913]�[0m 25 / 27 tests, �[31m�[1m25 failed�[0m;�[0m Testing //rb/spec/integration/selenium/webdriver/bidi:browsing_context-edge-remote; 6s local, disk-cache
    2399:  �[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)
    2400:  �[32m[2,912 / 2,913]�[0m 25 / 27 tests, �[31m�[1m25 failed�[0m;�[0m Testing //rb/spec/integration/selenium/webdriver/bidi:browsing_context-edge-remote; 8s local, disk-cache
    2401:  �[32m[2,912 / 2,913]�[0m 25 / 27 tests, �[31m�[1m25 failed�[0m;�[0m Testing //rb/spec/integration/selenium/webdriver/bidi:browsing_context-edge-remote; 13s local, disk-cache
    2402:  �[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)
    2403:  �[32m[2,912 / 2,913]�[0m 25 / 27 tests, �[31m�[1m25 failed�[0m;�[0m Testing //rb/spec/integration/selenium/webdriver/bidi:browsing_context-edge-remote; 15s local, disk-cache
    2404:  �[32m[2,912 / 2,913]�[0m 25 / 27 tests, �[31m�[1m25 failed�[0m;�[0m Testing //rb/spec/integration/selenium/webdriver/bidi:browsing_context-edge-remote; 20s local, disk-cache
    2405:  �[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)
    2406:  �[31m�[1mFAILED: �[0m//rb/spec/integration/selenium/webdriver/bidi:browsing_context-edge-remote (Summary)
    2407:  D:/_bazel/execroot/selenium/bazel-out/x64_windows-fastbuild/testlogs/rb/spec/integration/selenium/webdriver/bidi/browsing_context-edge-remote/test.log
    2408:  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
    2409:  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
    2410:  �[32mINFO: �[0mFrom Testing //rb/spec/integration/selenium/webdriver/bidi:browsing_context-edge-remote:
    2411:  ==================== Test output for //rb/spec/integration/selenium/webdriver/bidi:browsing_context-edge-remote:
    2412:  2024-04-11 01:02:14 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
    2413:  An error occurred in a `before(:suite)` hook.
    2414:  Failure/Error: @pid = Process.spawn(*@command, options)
    2415:  Errno::EACCES:
    2416:  Permission denied - java
    2417:  # ./rb/lib/selenium/webdriver/common/child_process.rb:57:in `spawn'
    2418:  # ./rb/lib/selenium/webdriver/common/child_process.rb:57:in `start'
    2419:  # ./rb/lib/selenium/server.rb:204:in `start'
    2420:  # //?/D:/a/selenium/selenium/rb/spec/integration/selenium/webdriver/spec_helper.rb:40:in `block (2 levels) in <top (required)>'
    2421:  Finished in 0.0416 seconds (files took 0.58602 seconds to load)
    2422:  0 examples, 0 failures, 1 error occurred outside of examples
    2423:  ================================================================================
    2424:  ==================== Test output for //rb/spec/integration/selenium/webdriver/bidi:browsing_context-edge-remote:
    2425:  2024-04-11 01:02:21 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
    2426:  An error occurred in a `before(:suite)` hook.
    2427:  Failure/Error: @pid = Process.spawn(*@command, options)
    2428:  Errno::EACCES:
    2429:  Permission denied - java
    2430:  # ./rb/lib/selenium/webdriver/common/child_process.rb:57:in `spawn'
    2431:  # ./rb/lib/selenium/webdriver/common/child_process.rb:57:in `start'
    2432:  # ./rb/lib/selenium/server.rb:204:in `start'
    2433:  # //?/D:/a/selenium/selenium/rb/spec/integration/selenium/webdriver/spec_helper.rb:40:in `block (2 levels) in <top (required)>'
    2434:  Finished in 0.0434 seconds (files took 0.6081 seconds to load)
    2435:  0 examples, 0 failures, 1 error occurred outside of examples
    2436:  ================================================================================
    2437:  ==================== Test output for //rb/spec/integration/selenium/webdriver/bidi:browsing_context-edge-remote:
    2438:  2024-04-11 01:02:29 INFO Selenium Server Location: D:/_bazel/execroot/selenium/bazel-out/x64_windows-fastbuild/bin/rb/spec/integration/selenium/webdriver/bidi/browsing_context-edge-remote.cmd.runfiles/selenium/java/src/org/openqa/selenium/grid/selenium_server_deploy.jar
    2439:  An error occurred in a `before(:suite)` hook.
    2440:  Failure/Error: @pid = Process.spawn(*@command, options)
    2441:  Errno::EACCES:
    2442:  Permission denied - java
    2443:  # ./rb/lib/selenium/webdriver/common/child_process.rb:57:in `spawn'
    2444:  # ./rb/lib/selenium/webdriver/common/child_process.rb:57:in `start'
    2445:  # ./rb/lib/selenium/server.rb:204:in `start'
    2446:  # //?/D:/a/selenium/selenium/rb/spec/integration/selenium/webdriver/spec_helper.rb:40:in `block (2 levels) in <top (required)>'
    2447:  Finished in 0.04258 seconds (files took 0.59302 seconds to load)
    2448:  0 examples, 0 failures, 1 error occurred outside of examples
    2449:  ================================================================================
    2450:  �[32m[2,913 / 2,914]�[0m 26 / 27 tests, �[31m�[1m26 failed�[0m;�[0m Testing //rb/spec/integration/selenium/webdriver:bidi-edge-remote; 0s disk-cache
    2451:  �[32m[2,913 / 2,914]�[0m 26 / 27 tests, �[31m�[1m26 failed�[0m;�[0m [Sched] Testing //rb/spec/integration/selenium/webdriver:bidi-edge-remote
    2452:  �[32m[2,913 / 2,914]�[0m 26 / 27 tests, �[31m�[1m26 failed�[0m;�[0m Testing //rb/spec/integration/selenium/webdriver:bidi-edge-remote; 1s local, disk-cache
    2453:  �[32m[2,913 / 2,914]�[0m 26 / 27 tests, �[31m�[1m26 failed�[0m;�[0m Testing //rb/spec/integration/selenium/webdriver:bidi-edge-remote; 6s local, disk-cache
    2454:  �[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)
    2455:  �[32m[2,913 / 2,914]�[0m 26 / 27 tests, �[31m�[1m26 failed�[0m;�[0m Testing //rb/spec/integration/selenium/webdriver:bidi-edge-remote; 8s local, disk-cache
    2456:  �[32m[2,913 / 2,914]�[0m 26 / 27 tests, �[31m�[1m26 failed�[0m;�[0m Testing //rb/spec/integration/selenium/webdriver:bidi-edge-remote; 13s local, disk-cache
    2457:  �[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)
    2458:  �[32m[2,913 / 2,914]�[0m 26 / 27 tests, �[31m�[1m26 failed�[0m;�[0m Testing //rb/spec/integration/selenium/webdriver:bidi-edge-remote; 15s local, disk-cache
    2459:  �[32m[2,913 / 2,914]�[0m 26 / 27 tests, �[31m�[1m26 failed�[0m;�[0m Testing //rb/spec/integration/selenium/webdriver:bidi-edge-remote; 20s local, disk-cache
    2460:  �[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)
    2461:  �[31m�[1mFAILED: �[0m//rb/spec/integration/selenium/webdriver:bidi-edge-remote (Summary)
    2462:  D:/_bazel/execroot/selenium/bazel-out/x64_windows-fastbuild/testlogs/rb/spec/integration/selenium/webdriver/bidi-edge-remote/test.log
    2463:  D:/_bazel/execroot/selenium/bazel-out/x64_windows-fastbuild/testlogs/rb/spec/integration/selenium/webdriver/bidi-edge-remote/test_attempts/attempt_1.log
    2464:  D:/_bazel/execroot/selenium/bazel-out/x64_windows-fastbuild/testlogs/rb/spec/integration/selenium/webdriver/bidi-edge-remote/test_attempts/attempt_2.log
    2465:  �[32mINFO: �[0mFrom Testing //rb/spec/integration/selenium/webdriver:bidi-edge-remote:
    2466:  ==================== Test output for //rb/spec/integration/selenium/webdriver:bidi-edge-remote:
    2467:  2024-04-11 01:02:45 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
    2468:  An error occurred in a `before(:suite)` hook.
    2469:  Failure/Error: @pid = Process.spawn(*@command, options)
    2470:  Errno::EACCES:
    2471:  Permission denied - java
    2472:  # ./rb/lib/selenium/webdriver/common/child_process.rb:57:in `spawn'
    2473:  # ./rb/lib/selenium/webdriver/common/child_process.rb:57:in `start'
    2474:  # ./rb/lib/selenium/server.rb:204:in `start'
    2475:  # //?/D:/a/selenium/selenium/rb/spec/integration/selenium/webdriver/spec_helper.rb:40:in `block (2 levels) in <top (required)>'
    2476:  Finished in 0.04221 seconds (files took 0.58484 seconds to load)
    2477:  0 examples, 0 failures, 1 error occurred outside of examples
    2478:  ================================================================================
    2479:  ==================== Test output for //rb/spec/integration/selenium/webdriver:bidi-edge-remote:
    2480:  2024-04-11 01:02:52 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
    2481:  An error occurred in a `before(:suite)` hook.
    2482:  Failure/Error: @pid = Process.spawn(*@command, options)
    2483:  Errno::EACCES:
    2484:  Permission denied - java
    2485:  # ./rb/lib/selenium/webdriver/common/child_process.rb:57:in `spawn'
    2486:  # ./rb/lib/selenium/webdriver/common/child_process.rb:57:in `start'
    2487:  # ./rb/lib/selenium/server.rb:204:in `start'
    2488:  # //?/D:/a/selenium/selenium/rb/spec/integration/selenium/webdriver/spec_helper.rb:40:in `block (2 levels) in <top (required)>'
    2489:  Finished in 0.04148 seconds (files took 0.56961 seconds to load)
    2490:  0 examples, 0 failures, 1 error occurred outside of examples
    2491:  ================================================================================
    2492:  ==================== Test output for //rb/spec/integration/selenium/webdriver:bidi-edge-remote:
    2493:  2024-04-11 01:02:59 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
    2494:  An error occurred in a `before(:suite)` hook.
    2495:  Failure/Error: @pid = Process.spawn(*@command, options)
    2496:  Errno::EACCES:
    2497:  Permission denied - java
    2498:  # ./rb/lib/selenium/webdriver/common/child_process.rb:57:in `spawn'
    2499:  # ./rb/lib/selenium/webdriver/common/child_process.rb:57:in `start'
    2500:  # ./rb/lib/selenium/server.rb:204:in `start'
    2501:  # //?/D:/a/selenium/selenium/rb/spec/integration/selenium/webdriver/spec_helper.rb:40:in `block (2 levels) in <top (required)>'
    2502:  Finished in 0.04321 seconds (files took 0.61578 seconds to load)
    2503:  0 examples, 0 failures, 1 error occurred outside of examples
    2504:  ================================================================================
    2505:  �[32mINFO: �[0mFound 27 test targets...
    2506:  �[32mINFO: �[0mElapsed time: 827.860s, Critical Path: 195.89s
    2507:  �[32mINFO: �[0m2684 processes: 1442 disk cache hit, 1059 internal, 181 local, 2 worker.
    2508:  �[32mINFO: �[0mBuild completed, 27 tests FAILED, 2684 total actions
    2509:  //rb/spec/integration/selenium/webdriver:action_builder-edge-remote      �[0m�[31m�[1mFAILED�[0m in 3 out of 3 in 7.1s
    2510:  Stats over 3 runs: max = 7.1s, min = 6.7s, avg = 6.8s, dev = 0.2s
    2511:  D:/_bazel/execroot/selenium/bazel-out/x64_windows-fastbuild/testlogs/rb/spec/integration/selenium/webdriver/action_builder-edge-remote/test.log
    2512:  D:/_bazel/execroot/selenium/bazel-out/x64_windows-fastbuild/testlogs/rb/spec/integration/selenium/webdriver/action_builder-edge-remote/test_attempts/attempt_1.log
    2513:  D:/_bazel/execroot/selenium/bazel-out/x64_windows-fastbuild/testlogs/rb/spec/integration/selenium/webdriver/action_builder-edge-remote/test_attempts/attempt_2.log
    2514:  //rb/spec/integration/selenium/webdriver:bidi-edge-remote                �[0m�[31m�[1mFAILED�[0m in 3 out of 3 in 6.7s
    2515:  Stats over 3 runs: max = 6.7s, min = 6.6s, avg = 6.6s, dev = 0.0s
    2516:  D:/_bazel/execroot/selenium/bazel-out/x64_windows-fastbuild/testlogs/rb/spec/integration/selenium/webdriver/bidi-edge-remote/test.log
    2517:  D:/_bazel/execroot/selenium/bazel-out/x64_windows-fastbuild/testlogs/rb/spec/integration/selenium/webdriver/bidi-edge-remote/test_attempts/attempt_1.log
    2518:  D:/_bazel/execroot/selenium/bazel-out/x64_windows-fastbuild/testlogs/rb/spec/integration/selenium/webdriver/bidi-edge-remote/test_attempts/attempt_2.log
    2519:  //rb/spec/integration/selenium/webdriver:devtools-edge-remote            �[0m�[31m�[1mFAILED�[0m in 3 out of 3 in 6.7s
    2520:  Stats over 3 runs: max = 6.7s, min = 6.7s, avg = 6.7s, dev = 0.0s
    2521:  D:/_bazel/execroot/selenium/bazel-out/x64_windows-fastbuild/testlogs/rb/spec/integration/selenium/webdriver/devtools-edge-remote/test.log
    2522:  D:/_bazel/execroot/selenium/bazel-out/x64_windows-fastbuild/testlogs/rb/spec/integration/selenium/webdriver/devtools-edge-remote/test_attempts/attempt_1.log
    2523:  D:/_bazel/execroot/selenium/bazel-out/x64_windows-fastbuild/testlogs/rb/spec/integration/selenium/webdriver/devtools-edge-remote/test_attempts/attempt_2.log
    2524:  //rb/spec/integration/selenium/webdriver:driver-edge-remote              �[0m�[31m�[1mFAILED�[0m in 3 out of 3 in 7.3s
    2525:  Stats over 3 runs: max = 7.3s, min = 6.7s, avg = 7.1s, dev = 0.2s
    2526:  D:/_bazel/execroot/selenium/bazel-out/x64_windows-fastbuild/testlogs/rb/spec/integration/selenium/webdriver/driver-edge-remote/test.log
    2527:  D:/_bazel/execroot/selenium/bazel-out/x64_windows-fastbuild/testlogs/rb/spec/integration/selenium/webdriver/driver-edge-remote/test_attempts/attempt_1.log
    2528:  D:/_bazel/execroot/selenium/bazel-out/x64_windows-fastbuild/testlogs/rb/spec/integration/selenium/webdriver/driver-edge-remote/test_attempts/attempt_2.log
    2529:  //rb/spec/integration/selenium/webdriver:element-edge-remote             �[0m�[31m�[1mFAILED�[0m in 3 out of 3 in 6.9s
    2530:  Stats over 3 runs: max = 6.9s, min = 6.7s, avg = 6.8s, dev = 0.1s
    2531:  D:/_bazel/execroot/selenium/bazel-out/x64_windows-fastbuild/testlogs/rb/spec/integration/selenium/webdriver/element-edge-remote/test.log
    2532:  D:/_bazel/execroot/selenium/bazel-out/x64_windows-fastbuild/testlogs/rb/spec/integration/selenium/webdriver/element-edge-remote/test_attempts/attempt_1.log
    2533:  D:/_bazel/execroot/selenium/bazel-out/x64_windows-fastbuild/testlogs/rb/spec/integration/selenium/webdriver/element-edge-remote/test_attempts/attempt_2.log
    2534:  //rb/spec/integration/selenium/webdriver:error-edge-remote               �[0m�[31m�[1mFAILED�[0m in 3 out of 3 in 7.4s
    2535:  Stats over 3 runs: max = 7.4s, min = 6.7s, avg = 7.0s, dev = 0.3s
    2536:  D:/_bazel/execroot/selenium/bazel-out/x64_windows-fastbuild/testlogs/rb/spec/integration/selenium/webdriver/error-edge-remote/test.log
    2537:  D:/_bazel/execroot/selenium/bazel-out/x64_windows-fastbuild/testlogs/rb/spec/integration/selenium/webdriver/error-edge-remote/test_attempts/attempt_1.log
    2538:  D:/_bazel/execroot/selenium/bazel-out/x64_windows-fastbuild/testlogs/rb/spec/integration/selenium/webdriver/error-edge-remote/test_attempts/attempt_2.log
    2539:  //rb/spec/integration/selenium/webdriver:guard-edge-remote               �[0m�[31m�[1mFAILED�[0m in 3 out of 3 in 7.2s
    2540:  Stats over 3 runs: max = 7.2s, min = 6.7s, avg = 6.9s, dev = 0.2s
    2541:  D:/_bazel/execroot/selenium/bazel-out/x64_windows-fastbuild/testlogs/rb/spec/integration/selenium/webdriver/guard-edge-remote/test.log
    2542:  D:/_bazel/execroot/selenium/bazel-out/x64_windows-fastbuild/testlogs/rb/spec/integration/selenium/webdriver/guard-edge-remote/test_attempts/attempt_1.log
    2543:  D:/_bazel/execroot/selenium/bazel-out/x64_windows-fastbuild/testlogs/rb/spec/integration/selenium/webdriver/guard-edge-remote/test_attempts/attempt_2.log
    2544:  //rb/spec/integration/selenium/webdriver:listener-edge-remote            �[0m�[31m�[1mFAILED�[0m in 3 out of 3 in 7.3s
    2545:  Stats over 3 runs: max = 7.3s, min = 6.7s, avg = 7.0s, dev = 0.2s
    2546:  D:/_bazel/execroot/selenium/bazel-out/x64_windows-fastbuild/testlogs/rb/spec/integration/selenium/webdriver/listener-edge-remote/test.log
    2547:  D:/_bazel/execroot/selenium/bazel-out/x64_windows-fastbuild/testlogs/rb/spec/integration/selenium/webdriver/listener-edge-remote/test_attempts/attempt_1.log
    2548:  D:/_bazel/execroot/selenium/bazel-out/x64_windows-fastbuild/testlogs/rb/spec/integration/selenium/webdriver/listener-edge-remote/test_attempts/attempt_2.log
    2549:  //rb/spec/integration/selenium/webdriver:manager-edge-remote             �[0m�[31m�[1mFAILED�[0m in 3 out of 3 in 7.3s
    2550:  Stats over 3 runs: max = 7.3s, min = 6.7s, avg = 6.9s, dev = 0.3s
    2551:  D:/_bazel/execroot/selenium/bazel-out/x64_windows-fastbuild/testlogs/rb/spec/integration/selenium/webdriver/manager-edge-remote/test.log
    2552:  D:/_bazel/execroot/selenium/bazel-out/x64_windows-fastbuild/testlogs/rb/spec/integration/selenium/webdriver/manager-edge-remote/test_attempts/attempt_1.log
    2553:  D:/_bazel/execroot/selenium/bazel-out/x64_windows-fastbuild/testlogs/rb/spec/integration/selenium/webdriver/manager-edge-remote/test_attempts/attempt_2.log
    2554:  //rb/spec/integration/selenium/webdriver:navigation-edge-remote          �[0m�[31m�[1mFAILED�[0m in 3 out of 3 in 7.0s
    2555:  Stats over 3 runs: max = 7.0s, min = 6.8s, avg = 6.9s, dev = 0.1s
    2556:  D:/_bazel/execroot/selenium/bazel-out/x64_windows-fastbuild/testlogs/rb/spec/integration/selenium/webdriver/navigation-edge-remote/test.log
    2557:  D:/_bazel/execroot/selenium/bazel-out/x64_windows-fastbuild/testlogs/rb/spec/integration/selenium/webdriver/navigation-edge-remote/test_attempts/attempt_1.log
    2558:  D:/_bazel/execroot/selenium/bazel-out/x64_windows-fastbuild/testlogs/rb/spec/integration/selenium/webdriver/navigation-edge-remote/test_attempts/attempt_2.log
    2559:  //rb/spec/integration/selenium/webdriver:select-edge-remote              �[0m�[31m�[1mFAILED�[0m in 3 out of 3 in 7.2s
    2560:  Stats over 3 runs: max = 7.2s, min = 6.6s, avg = 6.9s, dev = 0.3s
    2561:  D:/_bazel/execroot/selenium/bazel-out/x64_windows-fastbuild/testlogs/rb/spec/integration/selenium/webdriver/select-edge-remote/test.log
    2562:  D:/_bazel/execroot/selenium/bazel-out/x64_windows-fastbuild/testlogs/rb/spec/integration/selenium/webdriver/select-edge-remote/test_attempts/attempt_1.log
    2563:  D:/_bazel/execroot/selenium/bazel-out/x64_windows-fastbuild/testlogs/rb/spec/integration/selenium/webdriver/select-edge-remote/test_attempts/attempt_2.log
    2564:  //rb/spec/integration/selenium/webdriver:shadow_root-edge-remote         �[0m�[31m�[1mFAILED�[0m in 3 out of 3 in 7.0s
    2565:  Stats over 3 runs: max = 7.0s, min = 6.8s, avg = 6.9s, dev = 0.1s
    2566:  D:/_bazel/execroot/selenium/bazel-out/x64_windows-fastbuild/testlogs/rb/spec/integration/selenium/webdriver/shadow_root-edge-remote/test.log
    2567:  D:/_bazel/execroot/selenium/bazel-out/x64_windows-fastbuild/testlogs/rb/spec/integration/selenium/webdriver/shadow_root-edge-remote/test_attempts/attempt_1.log
    2568:  D:/_bazel/execroot/selenium/bazel-out/x64_windows-fastbuild/testlogs/rb/spec/integration/selenium/webdriver/shadow_root-edge-remote/test_attempts/attempt_2.log
    2569:  //rb/spec/integration/selenium/webdriver:storage-edge-remote             �[0m�[31m�[1mFAILED�[0m in 3 out of 3 in 7.0s
    2570:  Stats over 3 runs: max = 7.0s, min = 6.6s, avg = 6.8s, dev = 0.1s
    2571:  D:/_bazel/execroot/selenium/bazel-out/x64_windows-fastbuild/testlogs/rb/spec/integration/selenium/webdriver/storage-edge-remote/test.log
    2572:  D:/_bazel/execroot/selenium/bazel-out/x64_windows-fastbuild/testlogs/rb/spec/integration/selenium/webdriver/storage-edge-remote/test_attempts/attempt_1.log
    2573:  D:/_bazel/execroot/selenium/bazel-out/x64_windows-fastbuild/testlogs/rb/spec/integration/selenium/webdriver/storage-edge-remote/test_attempts/attempt_2.log
    2574:  //rb/spec/integration/selenium/webdriver:takes_screenshot-edge-remote    �[0m�[31m�[1mFAILED�[0m in 3 out of 3 in 7.3s
    2575:  Stats over 3 runs: max = 7.3s, min = 6.8s, avg = 7.0s, dev = 0.3s
    2576:  D:/_bazel/execroot/selenium/bazel-out/x64_windows-fastbuild/testlogs/rb/spec/integration/selenium/webdriver/takes_screenshot-edge-remote/test.log
    2577:  D:/_bazel/execroot/selenium/bazel-out/x64_windows-fastbuild/testlogs/rb/spec/integration/selenium/webdriver/takes_screenshot-edge-remote/test_attempts/attempt_1.log
    2578:  D:/_bazel/execroot/selenium/bazel-out/x64_windows-fastbuild/testlogs/rb/spec/integration/selenium/webdriver/takes_screenshot-edge-remote/test_attempts/attempt_2.log
    2579:  //rb/spec/integration/selenium/webdriver:target_locator-edge-remote      �[0m�[31m�[1mFAILED�[0m in 3 out of 3 in 7.0s
    2580:  Stats over 3 runs: max = 7.0s, min = 6.7s, avg = 6.8s, dev = 0.1s
    2581:  D:/_bazel/execroot/selenium/bazel-out/x64_windows-fastbuild/testlogs/rb/spec/integration/selenium/webdriver/target_locator-edge-remote/test.log
    2582:  D:/_bazel/execroot/selenium/bazel-out/x64_windows-fastbuild/testlogs/rb/spec/integration/selenium/webdriver/target_locator-edge-remote/test_attempts/attempt_1.log
    2583:  D:/_bazel/execroot/selenium/bazel-out/x64_windows-fastbuild/testlogs/rb/spec/integration/selenium/webdriver/target_locator-edge-remote/test_attempts/attempt_2.log
    2584:  //rb/spec/integration/selenium/webdriver:timeout-edge-remote             �[0m�[31m�[1mFAILED�[0m in 3 out of 3 in 6.8s
    2585:  Stats over 3 runs: max = 6.8s, min = 6.6s, avg = 6.7s, dev = 0.1s
    2586:  D:/_bazel/execroot/selenium/bazel-out/x64_windows-fastbuild/testlogs/rb/spec/integration/selenium/webdriver/timeout-edge-remote/test.log
    2587:  D:/_bazel/execroot/selenium/bazel-out/x64_windows-fastbuild/testlogs/rb/spec/integration/selenium/webdriver/timeout-edge-remote/test_attempts/attempt_1.log
    2588:  D:/_bazel/execroot/selenium/bazel-out/x64_windows-fastbuild/testlogs/rb/spec/integration/selenium/webdriver/timeout-edge-remote/test_attempts/attempt_2.log
    2589:  //rb/spec/integration/selenium/webdriver:virtual_authenticator-edge-remote �[0m�[31m�[1mFAILED�[0m in 3 out of 3 in 7.1s
    2590:  Stats over 3 runs: max = 7.1s, min = 6.8s, avg = 6.9s, dev = 0.1s
    2591:  D:/_bazel/execroot/selenium/bazel-out/x64_windows-fastbuild/testlogs/rb/spec/integration/selenium/webdriver/virtual_authenticator-edge-remote/test.log
    2592:  D:/_bazel/execroot/selenium/bazel-out/x64_windows-fastbuild/testlogs/rb/spec/integration/selenium/webdriver/virtual_authenticator-edge-remote/test_attempts/attempt_1.log
    2593:  D:/_bazel/execroot/selenium/bazel-out/x64_windows-fastbuild/testlogs/rb/spec/integration/selenium/webdriver/virtual_authenticator-edge-remote/test_attempts/attempt_2.log
    2594:  //rb/spec/integration/selenium/webdriver:window-edge-remote              �[0m�[31m�[1mFAILED�[0m in 3 out of 3 in 7.3s
    2595:  Stats over 3 runs: max = 7.3s, min = 6.7s, avg = 7.1s, dev = 0.3s
    2596:  D:/_bazel/execroot/selenium/bazel-out/x64_windows-fastbuild/testlogs/rb/spec/integration/selenium/webdriver/window-edge-remote/test.log
    2597:  D:/_bazel/execroot/selenium/bazel-out/x64_windows-fastbuild/testlogs/rb/spec/integration/selenium/webdriver/window-edge-remote/test_attempts/attempt_1.log
    2598:  D:/_bazel/execroot/selenium/bazel-out/x64_windows-fastbuild/testlogs/rb/spec/integration/selenium/webdriver/window-edge-remote/test_attempts/attempt_2.log
    2599:  //rb/spec/integration/selenium/webdriver:zipper-edge-remote              �[0m�[31m�[1mFAILED�[0m in 3 out of 3 in 7.5s
    2600:  Stats over 3 runs: max = 7.5s, min = 6.7s, avg = 7.0s, dev = 0.4s
    2601:  D:/_bazel/execroot/selenium/bazel-out/x64_windows-fastbuild/testlogs/rb/spec/integration/selenium/webdriver/zipper-edge-remote/test.log
    2602:  D:/_bazel/execroot/selenium/bazel-out/x64_windows-fastbuild/testlogs/rb/spec/integration/selenium/webdriver/zipper-edge-remote/test_attempts/attempt_1.log
    2603:  D:/_bazel/execroot/selenium/bazel-out/x64_windows-fastbuild/testlogs/rb/spec/integration/selenium/webdriver/zipper-edge-remote/test_attempts/attempt_2.log
    2604:  //rb/spec/integration/selenium/webdriver/bidi:browsing_context-edge-remote �[0m�[31m�[1mFAILED�[0m in 3 out of 3 in 6.6s
    2605:  Stats over 3 runs: max = 6.6s, min = 6.6s, avg = 6.6s, dev = 0.0s
    2606:  D:/_bazel/execroot/selenium/bazel-out/x64_windows-fastbuild/testlogs/rb/spec/integration/selenium/webdriver/bidi/browsing_context-edge-remote/test.log
    2607:  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
    2608:  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
    2609:  //rb/spec/integration/selenium/webdriver/bidi:log_inspector-edge-remote  �[0m�[31m�[1mFAILED�[0m in 3 out of 3 in 6.8s
    2610:  Stats over 3 runs: max = 6.8s, min = 6.6s, avg = 6.7s, dev = 0.1s
    2611:  D:/_bazel/execroot/selenium/bazel-out/x64_windows-fastbuild/testlogs/rb/spec/integration/selenium/webdriver/bidi/log_inspector-edge-remote/test.log
    2612:  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
    2613:  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
    2614:  //rb/spec/integration/selenium/webdriver/edge:driver-edge-remote         �[0m�[31m�[1mFAILED�[0m in 3 out of 3 in 7.3s
    2615:  Stats over 3 runs: max = 7.3s, min = 6.7s, avg = 6.9s, dev = 0.2s
    2616:  D:/_bazel/execroot/selenium/bazel-out/x64_windows-fastbuild/testlogs/rb/spec/integration/selenium/webdriver/edge/driver-edge-remote/test.log
    2617:  D:/_bazel/execroot/selenium/bazel-out/x64_windows-fastbuild/testlogs/rb/spec/integration/selenium/webdriver/edge/driver-edge-remote/test_attempts/attempt_1.log
    2618:  D:/_bazel/execroot/selenium/bazel-out/x64_windows-fastbuild/testlogs/rb/spec/integration/selenium/webdriver/edge/driver-edge-remote/test_attempts/attempt_2.log
    2619:  //rb/spec/integration/selenium/webdriver/edge:options-edge-remote        �[0m�[31m�[1mFAILED�[0m in 3 out of 3 in 7.4s
    2620:  Stats over 3 runs: max = 7.4s, min = 6.9s, avg = 7.1s, dev = 0.2s
    2621:  D:/_bazel/execroot/selenium/bazel-out/x64_windows-fastbuild/testlogs/rb/spec/integration/selenium/webdriver/edge/options-edge-remote/test.log
    2622:  D:/_bazel/execroot/selenium/bazel-out/x64_windows-fastbuild/testlogs/rb/spec/integration/selenium/webdriver/edge/options-edge-remote/test_attempts/attempt_1.log
    2623:  D:/_bazel/execroot/selenium/bazel-out/x64_windows-fastbuild/testlogs/rb/spec/integration/selenium/webdriver/edge/options-edge-remote/test_attempts/attempt_2.log
    2624:  //rb/spec/integration/selenium/webdriver/edge:profile-edge-remote        �[0m�[31m�[1mFAILED�[0m in 3 out of 3 in 7.0s
    2625:  Stats over 3 runs: max = 7.0s, min = 6.7s, avg = 6.8s, dev = 0.1s
    2626:  D:/_bazel/execroot/selenium/bazel-out/x64_windows-fastbuild/testlogs/rb/spec/integration/selenium/webdriver/edge/profile-edge-remote/test.log
    2627:  D:/_bazel/execroot/selenium/bazel-out/x64_windows-fastbuild/testlogs/rb/spec/integration/selenium/webdriver/edge/profile-edge-remote/test_attempts/attempt_1.log
    2628:  D:/_bazel/execroot/selenium/bazel-out/x64_windows-fastbuild/testlogs/rb/spec/integration/selenium/webdriver/edge/profile-edge-remote/test_attempts/attempt_2.log
    2629:  //rb/spec/integration/selenium/webdriver/edge:service-edge-remote        �[0m�[31m�[1mFAILED�[0m in 3 out of 3 in 6.9s
    2630:  Stats over 3 runs: max = 6.9s, min = 6.7s, avg = 6.8s, dev = 0.1s
    2631:  D:/_bazel/execroot/selenium/bazel-out/x64_windows-fastbuild/testlogs/rb/spec/integration/selenium/webdriver/edge/service-edge-remote/test.log
    2632:  D:/_bazel/execroot/selenium/bazel-out/x64_windows-fastbuild/testlogs/rb/spec/integration/selenium/webdriver/edge/service-edge-remote/test_attempts/attempt_1.log
    2633:  D:/_bazel/execroot/selenium/bazel-out/x64_windows-fastbuild/testlogs/rb/spec/integration/selenium/webdriver/edge/service-edge-remote/test_attempts/attempt_2.log
    2634:  //rb/spec/integration/selenium/webdriver/remote:driver-edge-remote       �[0m�[31m�[1mFAILED�[0m in 3 out of 3 in 6.8s
    2635:  Stats over 3 runs: max = 6.8s, min = 6.8s, avg = 6.8s, dev = 0.0s
    2636:  D:/_bazel/execroot/selenium/bazel-out/x64_windows-fastbuild/testlogs/rb/spec/integration/selenium/webdriver/remote/driver-edge-remote/test.log
    2637:  D:/_bazel/execroot/selenium/bazel-out/x64_windows-fastbuild/testlogs/rb/spec/integration/selenium/webdriver/remote/driver-edge-remote/test_attempts/attempt_1.log
    2638:  D:/_bazel/execroot/selenium/bazel-out/x64_windows-fastbuild/testlogs/rb/spec/integration/selenium/webdriver/remote/driver-edge-remote/test_attempts/attempt_2.log
    2639:  //rb/spec/integration/selenium/webdriver/remote:element-edge-remote      �[0m�[31m�[1mFAILED�[0m in 3 out of 3 in 7.3s
    2640:  Stats over 3 runs: max = 7.3s, min = 6.6s, avg = 6.9s, dev = 0.3s
    2641:  D:/_bazel/execroot/selenium/bazel-out/x64_windows-fastbuild/testlogs/rb/spec/integration/selenium/webdriver/remote/element-edge-remote/test.log
    2642:  D:/_bazel/execroot/selenium/bazel-out/x64_windows-fastbuild/testlogs/rb/spec/integration/selenium/webdriver/remote/element-edge-remote/test_attempts/attempt_1.log
    2643:  D:/_bazel/execroot/selenium/bazel-out/x64_windows-fastbuild/testlogs/rb/spec/integration/selenium/webdriver/remote/element-edge-remote/test_attempts/attempt_2.log
    2644:  Executed 27 out of 27 tests: �[0m�[31m�[1m27 fail locally�[0m.
    2645:  �[0m
    2646:  ##[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.

    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.

    2 participants