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

Merged
merged 4 commits into from
Apr 17, 2024

Conversation

selenium-ci
Copy link
Member

@selenium-ci selenium-ci commented Apr 17, 2024

User description

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

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


Type

enhancement


Description

  • Updated Firefox to version 125.0.1 for both Linux and Mac, including updating SHA256 checksums.
  • Updated Firefox Beta to version 126.0b1 for both Linux and Mac, with new SHA256 checksums.
  • Ensures compatibility and security by keeping browser versions up to date.

Changes walkthrough

Relevant files
Enhancement
repositories.bzl
Update Firefox and Firefox Beta Versions with New Checksums

common/repositories.bzl

  • Updated Firefox versions for Linux and Mac to 125.0.1.
  • Updated Firefox Beta versions for Linux and Mac to 126.0b1.
  • Updated SHA256 checksums for all new browser versions.
  • +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 (4fca574)

    Copy link

    PR Review

    ⏱️ Estimated effort to review [1-5]

    2, because the changes are straightforward version updates for browser dependencies with corresponding SHA256 checksums. The modifications are limited to URLs and checksums, which makes the review process relatively simple. However, verifying the correctness of the checksums and the functionality of the updated browser versions requires some effort.

    🧪 Relevant tests

    No

    🔍 Possible issues

    Possible Issue: Incorrect SHA256 checksums could lead to build failures or security risks if the files have been tampered with. It's crucial to ensure that the checksums match the files hosted at the specified URLs.

    Compatibility Issue: Updating browser versions might introduce compatibility issues with existing tests or functionalities that rely on specific browser behaviors. It's important to thoroughly test the updated browsers to ensure they work as expected with the system.

    🔒 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 correctness of sha256 checksums for browser versions.

    Consider verifying the sha256 checksums for the newly updated browser versions to ensure
    they are correct and have not been tampered with. Incorrect or maliciously altered
    checksums could compromise the integrity and security of the build process.

    common/repositories.bzl [15]

    -sha256 = "0f702f7690b02953e336fac27874276d9d471c9d264dc0feb7fcc6693d63bd4b",
    +sha256 = "<correct_sha256_checksum>",
     
    Verify and use direct, official URLs for browser downloads.

    Ensure that the URLs for the browser downloads are pointing to the correct and most
    reliable source. Using official and direct links can prevent potential issues with
    downloading incorrect or compromised files.

    common/repositories.bzl [38]

    -url = "https://ftp.mozilla.org/pub/firefox/releases/126.0b1/linux-x86_64/en-US/firefox-126.0b1.tar.bz2",
    +url = "<verified_direct_link_to_browser_download>",
     
    Maintainability
    Standardize the format of URLs for consistency.

    To maintain consistency and readability, consider using a single format for URLs.
    Currently, some URLs use %20 for spaces, while others might use different encodings or
    none at all. Standardizing URL formats can improve the maintainability of the code.

    common/repositories.bzl [31]

    -url = "https://ftp.mozilla.org/pub/firefox/releases/125.0.1/mac/en-US/Firefox%20125.0.1.dmg",
    +url = "https://ftp.mozilla.org/pub/firefox/releases/125.0.1/mac/en-US/Firefox 125.0.1.dmg",
     
    Abstract browser version numbers into variables for easier updates.

    For future-proofing and easier updates, consider abstracting the version numbers into a
    variable. This way, updating the browser versions in the future would be more
    straightforward and less error-prone.

    common/repositories.bzl [14]

    -url = "https://ftp.mozilla.org/pub/firefox/releases/125.0.1/linux-x86_64/en-US/firefox-125.0.1.tar.bz2",
    +firefox_version = "125.0.1"
    +url = "https://ftp.mozilla.org/pub/firefox/releases/" + firefox_version + "/linux-x86_64/en-US/firefox-" + firefox_version + ".tar.bz2",
     
    Use variables for platform and language in URLs for flexibility.

    To avoid hardcoding the platform (linux-x86_64, mac) and language (en-US) in each URL,
    consider using variables for these values. This approach enhances flexibility and makes it
    easier to support additional platforms or languages in the future.

    common/repositories.bzl [31]

    -url = "https://ftp.mozilla.org/pub/firefox/releases/125.0.1/mac/en-US/Firefox%20125.0.1.dmg",
    +platform = "mac"
    +language = "en-US"
    +url = "https://ftp.mozilla.org/pub/firefox/releases/125.0.1/" + platform + "/" + language + "/Firefox 125.0.1.dmg",
     

    ✨ 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 17, 2024

    CI Failure Feedback

    (Checks updated until commit 45be9aa)

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

    Failed stage: Run Bazel [❌]

    Failure summary:

    All tests failed due to a common issue: Permission denied when attempting to spawn a process for the
    Selenium Server. This indicates a problem with the environment setup, specifically with permissions
    to execute the Java command required to start the Selenium Server.

    Relevant error logs:
    1:  ##[group]Operating System
    2:  Microsoft Windows Server 2022
    ...
    
    658:  �[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
    659:  �[35mWARNING: �[0mD:/a/selenium/selenium/BUILD.bazel:13:22: input 'package' to //:.aspect_rules_js/node_modules/is-core-module@2.11.0/pkg is a directory; dependency checking of directories is unsound
    660:  �[35mWARNING: �[0mD:/a/selenium/selenium/BUILD.bazel:13:22: input 'package' to //:.aspect_rules_js/node_modules/has-flag@4.0.0/pkg is a directory; dependency checking of directories is unsound
    661:  �[35mWARNING: �[0mD:/a/selenium/selenium/BUILD.bazel:13:22: input 'package' to //:.aspect_rules_js/node_modules/import-fresh@3.3.0/pkg is a directory; dependency checking of directories is unsound
    662:  �[35mWARNING: �[0mD:/a/selenium/selenium/BUILD.bazel:13:22: input 'package' to //:.aspect_rules_js/node_modules/has@1.0.3/pkg is a directory; dependency checking of directories is unsound
    663:  �[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
    664:  �[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
    665:  �[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
    666:  �[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
    ...
    
    747:  �[35mWARNING: �[0mD:/a/selenium/selenium/BUILD.bazel:13:22: input 'package' to //:.aspect_rules_js/node_modules/js-tokens@4.0.0/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/@remix-run+router@1.14.2/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/parse-ms@4.0.0/pkg is a directory; dependency checking of directories is unsound
    750:  �[35mWARNING: �[0mD:/a/selenium/selenium/BUILD.bazel:13:22: input 'package' to //:.aspect_rules_js/node_modules/update-browserslist-db@1.0.10_browserslist_4.21.4/pkg is a directory; dependency checking of directories is unsound
    751:  �[35mWARNING: �[0mD:/a/selenium/selenium/BUILD.bazel:13:22: input 'package' to //:.aspect_rules_js/node_modules/picocolors@1.0.0/pkg is a directory; dependency checking of directories is unsound
    752:  �[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
    753:  �[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
    754:  �[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
    755:  �[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
    ...
    
    806:  �[35mWARNING: �[0mD:/a/selenium/selenium/BUILD.bazel:13:22: input 'package' to //:.aspect_rules_js/node_modules/@wry+trie@0.5.0/pkg is a directory; dependency checking of directories is unsound
    807:  �[35mWARNING: �[0mD:/a/selenium/selenium/BUILD.bazel:13:22: input 'package' to //:.aspect_rules_js/node_modules/@wry+trie@0.4.3/pkg is a directory; dependency checking of directories is unsound
    808:  �[35mWARNING: �[0mD:/a/selenium/selenium/BUILD.bazel:13:22: input 'package' to //:.aspect_rules_js/node_modules/@wry+equality@0.5.6/pkg is a directory; dependency checking of directories is unsound
    809:  �[35mWARNING: �[0mD:/a/selenium/selenium/BUILD.bazel:13:22: input 'package' to //:.aspect_rules_js/node_modules/@wry+context@0.7.4/pkg is a directory; dependency checking of directories is unsound
    810:  �[35mWARNING: �[0mD:/a/selenium/selenium/BUILD.bazel:13:22: input 'package' to //:.aspect_rules_js/node_modules/@wry+caches@1.0.1/pkg is a directory; dependency checking of directories is unsound
    811:  �[35mWARNING: �[0mD:/a/selenium/selenium/BUILD.bazel:13:22: input 'package' to //:.aspect_rules_js/node_modules/@graphql-typed-document-node+core@3.1.1_graphql_16.8.1/pkg is a directory; dependency checking of directories is unsound
    812:  �[32m[2,697 / 2,887]�[0m [Prepa] Copying directory npm__at_mui_icons-material__5.15.8__-554584225/package; 7s ... (4 actions, 1 running)
    813:  �[32mINFO: �[0mFrom Building java/src/org/openqa/selenium/remote/libapi-class.jar (66 source files):
    814:  java\src\org\openqa\selenium\remote\ErrorHandler.java:46: warning: [removal] ErrorCodes in org.openqa.selenium.remote has been deprecated and marked for removal
    815:  private final ErrorCodes errorCodes;
    816:  ^
    817:  java\src\org\openqa\selenium\remote\ErrorHandler.java:60: warning: [removal] ErrorCodes in org.openqa.selenium.remote has been deprecated and marked for removal
    818:  this.errorCodes = new ErrorCodes();
    819:  ^
    820:  java\src\org\openqa\selenium\remote\ErrorHandler.java:68: warning: [removal] ErrorCodes in org.openqa.selenium.remote has been deprecated and marked for removal
    821:  public ErrorHandler(ErrorCodes codes, boolean includeServerErrors) {
    822:  ^
    823:  java\src\org\openqa\selenium\remote\Response.java:97: warning: [removal] ErrorCodes in org.openqa.selenium.remote has been deprecated and marked for removal
    824:  ErrorCodes errorCodes = new ErrorCodes();
    825:  ^
    826:  java\src\org\openqa\selenium\remote\Response.java:97: warning: [removal] ErrorCodes in org.openqa.selenium.remote has been deprecated and marked for removal
    827:  ErrorCodes errorCodes = new ErrorCodes();
    828:  ^
    829:  java\src\org\openqa\selenium\remote\ProtocolHandshake.java:181: warning: [removal] ErrorCodes in org.openqa.selenium.remote has been deprecated and marked for removal
    830:  response.setStatus(ErrorCodes.SUCCESS);
    831:  ^
    832:  java\src\org\openqa\selenium\remote\ProtocolHandshake.java:182: warning: [removal] ErrorCodes in org.openqa.selenium.remote has been deprecated and marked for removal
    833:  response.setState(ErrorCodes.SUCCESS_STRING);
    834:  ^
    835:  java\src\org\openqa\selenium\remote\W3CHandshakeResponse.java:53: warning: [removal] ErrorCodes in org.openqa.selenium.remote has been deprecated and marked for removal
    836:  new ErrorCodes().toStatus((String) rawError, Optional.of(tuple.getStatusCode())));
    837:  ^
    838:  java\src\org\openqa\selenium\remote\W3CHandshakeResponse.java:56: warning: [removal] ErrorCodes in org.openqa.selenium.remote has been deprecated and marked for removal
    839:  new ErrorCodes().getExceptionType((String) rawError);
    840:  ^
    841:  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
    842:  private final ErrorCodes errorCodes = new ErrorCodes();
    843:  ^
    844:  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
    845:  private final ErrorCodes errorCodes = new ErrorCodes();
    846:  ^
    847:  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
    848:  int status = response.getStatus() == ErrorCodes.SUCCESS ? HTTP_OK : HTTP_INTERNAL_ERROR;
    849:  ^
    850:  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
    851:  response.setStatus(ErrorCodes.UNKNOWN_COMMAND);
    852:  ^
    853:  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
    854:  response.setStatus(ErrorCodes.UNHANDLED_ERROR);
    855:  ^
    856:  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
    857:  response.setStatus(ErrorCodes.SUCCESS);
    858:  ^
    859:  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
    860:  response.setState(errorCodes.toState(ErrorCodes.SUCCESS));
    861:  ^
    862:  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
    863:  response.setState(errorCodes.toState(ErrorCodes.SUCCESS));
    864:  ^
    865:  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
    866:  private final ErrorCodes errorCodes = new ErrorCodes();
    867:  ^
    868:  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
    869:  private final ErrorCodes errorCodes = new ErrorCodes();
    870:  ^
    871:  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
    872:  response.setStatus(ErrorCodes.UNKNOWN_COMMAND);
    873:  ^
    874:  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
    875:  response.setStatus(ErrorCodes.UNHANDLED_ERROR);
    876:  ^
    877:  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
    878:  response.setStatus(ErrorCodes.SUCCESS);
    ...
    
    1019:  �[32m[2,887 / 2,910]�[0m Testing //rb/spec/integration/selenium/webdriver/edge:options-edge-remote; 47s local, disk-cache ... (4 actions running)
    1020:  �[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)
    1021:  �[32m[2,887 / 2,910]�[0m Testing //rb/spec/integration/selenium/webdriver/edge:options-edge-remote; 49s local, disk-cache ... (4 actions running)
    1022:  �[32m[2,887 / 2,910]�[0m Testing //rb/spec/integration/selenium/webdriver/edge:options-edge-remote; 54s local, disk-cache ... (4 actions running)
    1023:  �[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)
    1024:  �[32m[2,887 / 2,910]�[0m Testing //rb/spec/integration/selenium/webdriver/edge:options-edge-remote; 55s local, disk-cache ... (4 actions running)
    1025:  �[32m[2,887 / 2,910]�[0m Testing //rb/spec/integration/selenium/webdriver/edge:options-edge-remote; 61s local, disk-cache ... (4 actions running)
    1026:  �[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)
    1027:  �[31m�[1mFAILED: �[0m//rb/spec/integration/selenium/webdriver/edge:options-edge-remote (Summary)
    1028:  ==================== Test output for //rb/spec/integration/selenium/webdriver/edge:options-edge-remote:
    1029:  D:/_bazel/execroot/selenium/bazel-out/x64_windows-fastbuild/testlogs/rb/spec/integration/selenium/webdriver/edge/options-edge-remote/test.log
    1030:  2024-04-17 08:29:18 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
    1031:  D:/_bazel/execroot/selenium/bazel-out/x64_windows-fastbuild/testlogs/rb/spec/integration/selenium/webdriver/edge/options-edge-remote/test_attempts/attempt_1.log
    1032:  An error occurred in a `before(:suite)` hook.
    1033:  D:/_bazel/execroot/selenium/bazel-out/x64_windows-fastbuild/testlogs/rb/spec/integration/selenium/webdriver/edge/options-edge-remote/test_attempts/attempt_2.log
    1034:  Failure/Error: @pid = Process.spawn(*@command, options)
    1035:  �[32mINFO: �[0mFrom Testing //rb/spec/integration/selenium/webdriver/edge:options-edge-remote:
    1036:  Errno::EACCES:
    1037:  Permission denied - java
    1038:  # ./rb/lib/selenium/webdriver/common/child_process.rb:57:in `spawn'
    1039:  # ./rb/lib/selenium/webdriver/common/child_process.rb:57:in `start'
    1040:  # ./rb/lib/selenium/server.rb:204:in `start'
    1041:  # //?/D:/a/selenium/selenium/rb/spec/integration/selenium/webdriver/spec_helper.rb:40:in `block (2 levels) in <top (required)>'
    1042:  Finished in 0.0493 seconds (files took 0.75514 seconds to load)
    1043:  0 examples, 0 failures, 1 error occurred outside of examples
    1044:  ================================================================================
    1045:  ==================== Test output for //rb/spec/integration/selenium/webdriver/edge:options-edge-remote:
    1046:  2024-04-17 08:29:45 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
    1047:  An error occurred in a `before(:suite)` hook.
    1048:  Failure/Error: @pid = Process.spawn(*@command, options)
    1049:  Errno::EACCES:
    1050:  Permission denied - java
    1051:  # ./rb/lib/selenium/webdriver/common/child_process.rb:57:in `spawn'
    1052:  # ./rb/lib/selenium/webdriver/common/child_process.rb:57:in `start'
    1053:  # ./rb/lib/selenium/server.rb:204:in `start'
    1054:  # //?/D:/a/selenium/selenium/rb/spec/integration/selenium/webdriver/spec_helper.rb:40:in `block (2 levels) in <top (required)>'
    1055:  Finished in 0.04474 seconds (files took 0.62786 seconds to load)
    1056:  0 examples, 0 failures, 1 error occurred outside of examples
    1057:  ================================================================================
    1058:  ==================== Test output for //rb/spec/integration/selenium/webdriver/edge:options-edge-remote:
    1059:  2024-04-17 08:30:12 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
    1060:  An error occurred in a `before(:suite)` hook.
    1061:  Failure/Error: @pid = Process.spawn(*@command, options)
    1062:  Errno::EACCES:
    1063:  Permission denied - java
    1064:  # ./rb/lib/selenium/webdriver/common/child_process.rb:57:in `spawn'
    1065:  # ./rb/lib/selenium/webdriver/common/child_process.rb:57:in `start'
    1066:  # ./rb/lib/selenium/server.rb:204:in `start'
    1067:  # //?/D:/a/selenium/selenium/rb/spec/integration/selenium/webdriver/spec_helper.rb:40:in `block (2 levels) in <top (required)>'
    1068:  Finished in 0.04676 seconds (files took 0.66473 seconds to load)
    1069:  0 examples, 0 failures, 1 error occurred outside of examples
    1070:  ================================================================================
    1071:  �[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)
    1072:  �[32m[2,888 / 2,910]�[0m 1 / 27 tests, �[31m�[1m1 failed�[0m;�[0m Testing //rb/spec/integration/selenium/webdriver/remote:driver-edge-remote; 61s local, disk-cache ... (4 actions, 3 running)
    1073:  �[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)
    1074:  ==================== Test output for //rb/spec/integration/selenium/webdriver/remote:driver-edge-remote:
    1075:  �[31m�[1mFAILED: �[0m//rb/spec/integration/selenium/webdriver/remote:driver-edge-remote (Summary)
    1076:  2024-04-17 08:29:25 INFO Selenium Server Location: D:/_bazel/execroot/selenium/bazel-out/x64_windows-fastbuild/bin/rb/spec/integration/selenium/webdriver/remote/driver-edge-remote.cmd.runfiles/selenium/java/src/org/openqa/selenium/grid/selenium_server_deploy.jar
    1077:  D:/_bazel/execroot/selenium/bazel-out/x64_windows-fastbuild/testlogs/rb/spec/integration/selenium/webdriver/remote/driver-edge-remote/test.log
    1078:  D:/_bazel/execroot/selenium/bazel-out/x64_windows-fastbuild/testlogs/rb/spec/integration/selenium/webdriver/remote/driver-edge-remote/test_attempts/attempt_1.log
    1079:  An error occurred in a `before(:suite)` hook.
    1080:  D:/_bazel/execroot/selenium/bazel-out/x64_windows-fastbuild/testlogs/rb/spec/integration/selenium/webdriver/remote/driver-edge-remote/test_attempts/attempt_2.log
    1081:  Failure/Error: @pid = Process.spawn(*@command, options)
    1082:  �[32mINFO: �[0mFrom Testing //rb/spec/integration/selenium/webdriver/remote:driver-edge-remote:
    1083:  Errno::EACCES:
    1084:  Permission denied - java
    1085:  # ./rb/lib/selenium/webdriver/common/child_process.rb:57:in `spawn'
    1086:  # ./rb/lib/selenium/webdriver/common/child_process.rb:57:in `start'
    1087:  # ./rb/lib/selenium/server.rb:204:in `start'
    1088:  # //?/D:/a/selenium/selenium/rb/spec/integration/selenium/webdriver/spec_helper.rb:40:in `block (2 levels) in <top (required)>'
    1089:  Finished in 0.0456 seconds (files took 0.63288 seconds to load)
    1090:  0 examples, 0 failures, 1 error occurred outside of examples
    1091:  ================================================================================
    1092:  ==================== Test output for //rb/spec/integration/selenium/webdriver/remote:driver-edge-remote:
    1093:  2024-04-17 08:29:52 INFO Selenium Server Location: D:/_bazel/execroot/selenium/bazel-out/x64_windows-fastbuild/bin/rb/spec/integration/selenium/webdriver/remote/driver-edge-remote.cmd.runfiles/selenium/java/src/org/openqa/selenium/grid/selenium_server_deploy.jar
    1094:  An error occurred in a `before(:suite)` hook.
    1095:  Failure/Error: @pid = Process.spawn(*@command, options)
    1096:  Errno::EACCES:
    1097:  Permission denied - java
    1098:  # ./rb/lib/selenium/webdriver/common/child_process.rb:57:in `spawn'
    1099:  # ./rb/lib/selenium/webdriver/common/child_process.rb:57:in `start'
    1100:  # ./rb/lib/selenium/server.rb:204:in `start'
    1101:  # //?/D:/a/selenium/selenium/rb/spec/integration/selenium/webdriver/spec_helper.rb:40:in `block (2 levels) in <top (required)>'
    1102:  Finished in 0.0462 seconds (files took 0.64362 seconds to load)
    1103:  0 examples, 0 failures, 1 error occurred outside of examples
    1104:  ================================================================================
    1105:  ==================== Test output for //rb/spec/integration/selenium/webdriver/remote:driver-edge-remote:
    1106:  2024-04-17 08:30:19 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
    1107:  An error occurred in a `before(:suite)` hook.
    1108:  Failure/Error: @pid = Process.spawn(*@command, options)
    1109:  Errno::EACCES:
    1110:  Permission denied - java
    1111:  # ./rb/lib/selenium/webdriver/common/child_process.rb:57:in `spawn'
    1112:  # ./rb/lib/selenium/webdriver/common/child_process.rb:57:in `start'
    1113:  # ./rb/lib/selenium/server.rb:204:in `start'
    1114:  # //?/D:/a/selenium/selenium/rb/spec/integration/selenium/webdriver/spec_helper.rb:40:in `block (2 levels) in <top (required)>'
    1115:  Finished in 0.04697 seconds (files took 0.75929 seconds to load)
    1116:  0 examples, 0 failures, 1 error occurred outside of examples
    1117:  ================================================================================
    1118:  �[32m[2,889 / 2,910]�[0m 2 / 27 tests, �[31m�[1m2 failed�[0m;�[0m Testing //rb/spec/integration/selenium/webdriver:driver-edge-remote; 56s local, disk-cache ... (4 actions, 2 running)
    1119:  �[32m[2,889 / 2,910]�[0m 2 / 27 tests, �[31m�[1m2 failed�[0m;�[0m Testing //rb/spec/integration/selenium/webdriver:driver-edge-remote; 59s local, disk-cache ... (4 actions, 2 running)
    1120:  �[32m[2,889 / 2,910]�[0m 2 / 27 tests, �[31m�[1m2 failed�[0m;�[0m Testing //rb/spec/integration/selenium/webdriver:driver-edge-remote; 62s local, disk-cache ... (4 actions, 2 running)
    1121:  �[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)
    1122:  ==================== Test output for //rb/spec/integration/selenium/webdriver:driver-edge-remote:
    1123:  �[31m�[1mFAILED: �[0m//rb/spec/integration/selenium/webdriver:driver-edge-remote (Summary)
    1124:  2024-04-17 08:29: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
    1125:  D:/_bazel/execroot/selenium/bazel-out/x64_windows-fastbuild/testlogs/rb/spec/integration/selenium/webdriver/driver-edge-remote/test.log
    1126:  D:/_bazel/execroot/selenium/bazel-out/x64_windows-fastbuild/testlogs/rb/spec/integration/selenium/webdriver/driver-edge-remote/test_attempts/attempt_1.log
    1127:  D:/_bazel/execroot/selenium/bazel-out/x64_windows-fastbuild/testlogs/rb/spec/integration/selenium/webdriver/driver-edge-remote/test_attempts/attempt_2.log
    1128:  �[32mINFO: �[0mFrom Testing //rb/spec/integration/selenium/webdriver:driver-edge-remote:
    1129:  An error occurred in a `before(:suite)` hook.
    1130:  Failure/Error: @pid = Process.spawn(*@command, options)
    1131:  Errno::EACCES:
    1132:  Permission denied - java
    1133:  # ./rb/lib/selenium/webdriver/common/child_process.rb:57:in `spawn'
    1134:  # ./rb/lib/selenium/webdriver/common/child_process.rb:57:in `start'
    1135:  # ./rb/lib/selenium/server.rb:204:in `start'
    1136:  # //?/D:/a/selenium/selenium/rb/spec/integration/selenium/webdriver/spec_helper.rb:40:in `block (2 levels) in <top (required)>'
    1137:  Finished in 0.04595 seconds (files took 0.66753 seconds to load)
    1138:  0 examples, 0 failures, 1 error occurred outside of examples
    1139:  ================================================================================
    1140:  ==================== Test output for //rb/spec/integration/selenium/webdriver:driver-edge-remote:
    1141:  2024-04-17 08:29:59 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
    1142:  An error occurred in a `before(:suite)` hook.
    1143:  Failure/Error: @pid = Process.spawn(*@command, options)
    1144:  Errno::EACCES:
    1145:  Permission denied - java
    1146:  # ./rb/lib/selenium/webdriver/common/child_process.rb:57:in `spawn'
    1147:  # ./rb/lib/selenium/webdriver/common/child_process.rb:57:in `start'
    1148:  # ./rb/lib/selenium/server.rb:204:in `start'
    1149:  # //?/D:/a/selenium/selenium/rb/spec/integration/selenium/webdriver/spec_helper.rb:40:in `block (2 levels) in <top (required)>'
    1150:  Finished in 0.04454 seconds (files took 0.59761 seconds to load)
    1151:  0 examples, 0 failures, 1 error occurred outside of examples
    1152:  ================================================================================
    1153:  ==================== Test output for //rb/spec/integration/selenium/webdriver:driver-edge-remote:
    1154:  2024-04-17 08:30:27 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
    1155:  An error occurred in a `before(:suite)` hook.
    1156:  Failure/Error: @pid = Process.spawn(*@command, options)
    1157:  Errno::EACCES:
    1158:  Permission denied - java
    1159:  # ./rb/lib/selenium/webdriver/common/child_process.rb:57:in `spawn'
    1160:  # ./rb/lib/selenium/webdriver/common/child_process.rb:57:in `start'
    1161:  # ./rb/lib/selenium/server.rb:204:in `start'
    1162:  # //?/D:/a/selenium/selenium/rb/spec/integration/selenium/webdriver/spec_helper.rb:40:in `block (2 levels) in <top (required)>'
    1163:  Finished in 0.0596 seconds (files took 0.80182 seconds to load)
    1164:  0 examples, 0 failures, 1 error occurred outside of examples
    1165:  ================================================================================
    1166:  �[32m[2,890 / 2,910]�[0m 3 / 27 tests, �[31m�[1m3 failed�[0m;�[0m Testing //rb/spec/integration/selenium/webdriver:virtual_authenticator-edge-remote; 57s local, disk-cache ... (4 actions, 1 running)
    1167:  �[32m[2,890 / 2,910]�[0m 3 / 27 tests, �[31m�[1m3 failed�[0m;�[0m Testing //rb/spec/integration/selenium/webdriver:virtual_authenticator-edge-remote; 60s local, disk-cache ... (4 actions, 1 running)
    1168:  �[32m[2,890 / 2,910]�[0m 3 / 27 tests, �[31m�[1m3 failed�[0m;�[0m Testing //rb/spec/integration/selenium/webdriver:virtual_authenticator-edge-remote; 62s local, disk-cache ... (4 actions, 2 running)
    1169:  �[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)
    1170:  ==================== Test output for //rb/spec/integration/selenium/webdriver:virtual_authenticator-edge-remote:
    1171:  2024-04-17 08:29:38 INFO Selenium Server Location: D:/_bazel/execroot/selenium/bazel-out/x64_windows-fastbuild/bin/rb/spec/integration/selenium/webdriver/virtual_authenticator-edge-remote.cmd.runfiles/selenium/java/src/org/openqa/selenium/grid/selenium_server_deploy.jar
    1172:  �[31m�[1mFAILED: �[0m//rb/spec/integration/selenium/webdriver:virtual_authenticator-edge-remote (Summary)
    1173:  D:/_bazel/execroot/selenium/bazel-out/x64_windows-fastbuild/testlogs/rb/spec/integration/selenium/webdriver/virtual_authenticator-edge-remote/test.log
    1174:  D:/_bazel/execroot/selenium/bazel-out/x64_windows-fastbuild/testlogs/rb/spec/integration/selenium/webdriver/virtual_authenticator-edge-remote/test_attempts/attempt_1.log
    1175:  D:/_bazel/execroot/selenium/bazel-out/x64_windows-fastbuild/testlogs/rb/spec/integration/selenium/webdriver/virtual_authenticator-edge-remote/test_attempts/attempt_2.log
    1176:  �[32mINFO: �[0mFrom Testing //rb/spec/integration/selenium/webdriver:virtual_authenticator-edge-remote:
    1177:  An error occurred in a `before(:suite)` hook.
    1178:  Failure/Error: @pid = Process.spawn(*@command, options)
    1179:  Errno::EACCES:
    1180:  Permission denied - java
    1181:  # ./rb/lib/selenium/webdriver/common/child_process.rb:57:in `spawn'
    1182:  # ./rb/lib/selenium/webdriver/common/child_process.rb:57:in `start'
    1183:  # ./rb/lib/selenium/server.rb:204:in `start'
    1184:  # //?/D:/a/selenium/selenium/rb/spec/integration/selenium/webdriver/spec_helper.rb:40:in `block (2 levels) in <top (required)>'
    1185:  Finished in 0.04351 seconds (files took 0.57876 seconds to load)
    1186:  0 examples, 0 failures, 1 error occurred outside of examples
    1187:  ================================================================================
    1188:  ==================== Test output for //rb/spec/integration/selenium/webdriver:virtual_authenticator-edge-remote:
    1189:  2024-04-17 08:30:05 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
    1190:  An error occurred in a `before(:suite)` hook.
    1191:  Failure/Error: @pid = Process.spawn(*@command, options)
    1192:  Errno::EACCES:
    1193:  Permission denied - java
    1194:  # ./rb/lib/selenium/webdriver/common/child_process.rb:57:in `spawn'
    1195:  # ./rb/lib/selenium/webdriver/common/child_process.rb:57:in `start'
    1196:  # ./rb/lib/selenium/server.rb:204:in `start'
    1197:  # //?/D:/a/selenium/selenium/rb/spec/integration/selenium/webdriver/spec_helper.rb:40:in `block (2 levels) in <top (required)>'
    1198:  Finished in 0.04453 seconds (files took 0.58246 seconds to load)
    1199:  0 examples, 0 failures, 1 error occurred outside of examples
    1200:  ================================================================================
    1201:  ==================== Test output for //rb/spec/integration/selenium/webdriver:virtual_authenticator-edge-remote:
    1202:  2024-04-17 08:30:34 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
    1203:  An error occurred in a `before(:suite)` hook.
    1204:  Failure/Error: @pid = Process.spawn(*@command, options)
    1205:  Errno::EACCES:
    1206:  Permission denied - java
    1207:  # ./rb/lib/selenium/webdriver/common/child_process.rb:57:in `spawn'
    1208:  # ./rb/lib/selenium/webdriver/common/child_process.rb:57:in `start'
    1209:  # ./rb/lib/selenium/server.rb:204:in `start'
    1210:  # //?/D:/a/selenium/selenium/rb/spec/integration/selenium/webdriver/spec_helper.rb:40:in `block (2 levels) in <top (required)>'
    1211:  Finished in 0.07052 seconds (files took 0.77014 seconds to load)
    1212:  0 examples, 0 failures, 1 error occurred outside of examples
    1213:  ================================================================================
    1214:  �[32m[2,891 / 2,910]�[0m 4 / 27 tests, �[31m�[1m4 failed�[0m;�[0m Testing //rb/spec/integration/selenium/webdriver:zipper-edge-remote; 8s disk-cache ... (4 actions, 1 running)
    1215:  �[32m[2,891 / 2,910]�[0m 4 / 27 tests, �[31m�[1m4 failed�[0m;�[0m [Sched] Testing //rb/spec/integration/selenium/webdriver/edge:service-edge-remote; 8s ... (4 actions, 1 running)
    1216:  �[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)
    1217:  �[32m[2,891 / 2,910]�[0m 4 / 27 tests, �[31m�[1m4 failed�[0m;�[0m Testing //rb/spec/integration/selenium/webdriver:takes_screenshot-edge-remote; 8s local, disk-cache ... (4 actions, 2 running)
    1218:  �[32m[2,891 / 2,910]�[0m 4 / 27 tests, �[31m�[1m4 failed�[0m;�[0m Testing //rb/spec/integration/selenium/webdriver:takes_screenshot-edge-remote; 11s local, disk-cache ... (4 actions, 2 running)
    1219:  �[32m[2,891 / 2,910]�[0m 4 / 27 tests, �[31m�[1m4 failed�[0m;�[0m Testing //rb/spec/integration/selenium/webdriver:takes_screenshot-edge-remote; 12s local, disk-cache ... (4 actions, 2 running)
    1220:  �[32m[2,891 / 2,910]�[0m 4 / 27 tests, �[31m�[1m4 failed�[0m;�[0m Testing //rb/spec/integration/selenium/webdriver:takes_screenshot-edge-remote; 14s local, disk-cache ... (4 actions, 3 running)
    1221:  �[31m�[1mFAIL: �[0m//rb/spec/integration/selenium/webdriver/edge:service-edge-remote (see D:/_bazel/execroot/selenium/bazel-out/x64_windows-fastbuild/testlogs/rb/spec/integration/selenium/webdriver/edge/service-edge-remote/test_attempts/attempt_1.log)
    1222:  �[32m[2,891 / 2,910]�[0m 4 / 27 tests, �[31m�[1m4 failed�[0m;�[0m Testing //rb/spec/integration/selenium/webdriver:takes_screenshot-edge-remote; 15s local, disk-cache ... (4 actions, 3 running)
    1223:  �[32m[2,891 / 2,910]�[0m 4 / 27 tests, �[31m�[1m4 failed�[0m;�[0m Testing //rb/spec/integration/selenium/webdriver:takes_screenshot-edge-remote; 21s local, disk-cache ... (4 actions, 3 running)
    1224:  �[31m�[1mFAIL: �[0m//rb/spec/integration/selenium/webdriver:zipper-edge-remote (see D:/_bazel/execroot/selenium/bazel-out/x64_windows-fastbuild/testlogs/rb/spec/integration/selenium/webdriver/zipper-edge-remote/test_attempts/attempt_1.log)
    1225:  �[32m[2,891 / 2,910]�[0m 4 / 27 tests, �[31m�[1m4 failed�[0m;�[0m Testing //rb/spec/integration/selenium/webdriver:takes_screenshot-edge-remote; 22s local, disk-cache ... (4 actions, 3 running)
    1226:  �[32m[2,891 / 2,910]�[0m 4 / 27 tests, �[31m�[1m4 failed�[0m;�[0m Testing //rb/spec/integration/selenium/webdriver:takes_screenshot-edge-remote; 27s local, disk-cache ... (4 actions running)
    1227:  �[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)
    1228:  �[32m[2,891 / 2,910]�[0m 4 / 27 tests, �[31m�[1m4 failed�[0m;�[0m Testing //rb/spec/integration/selenium/webdriver:takes_screenshot-edge-remote; 29s local, disk-cache ... (4 actions running)
    1229:  �[32m[2,891 / 2,910]�[0m 4 / 27 tests, �[31m�[1m4 failed�[0m;�[0m Testing //rb/spec/integration/selenium/webdriver:takes_screenshot-edge-remote; 34s local, disk-cache ... (4 actions running)
    1230:  �[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)
    1231:  �[32m[2,891 / 2,910]�[0m 4 / 27 tests, �[31m�[1m4 failed�[0m;�[0m Testing //rb/spec/integration/selenium/webdriver:takes_screenshot-edge-remote; 35s local, disk-cache ... (4 actions running)
    1232:  �[32m[2,891 / 2,910]�[0m 4 / 27 tests, �[31m�[1m4 failed�[0m;�[0m Testing //rb/spec/integration/selenium/webdriver:takes_screenshot-edge-remote; 41s local, disk-cache ... (4 actions running)
    1233:  �[31m�[1mFAIL: �[0m//rb/spec/integration/selenium/webdriver/edge:service-edge-remote (see D:/_bazel/execroot/selenium/bazel-out/x64_windows-fastbuild/testlogs/rb/spec/integration/selenium/webdriver/edge/service-edge-remote/test_attempts/attempt_2.log)
    1234:  �[32m[2,891 / 2,910]�[0m 4 / 27 tests, �[31m�[1m4 failed�[0m;�[0m Testing //rb/spec/integration/selenium/webdriver:takes_screenshot-edge-remote; 42s local, disk-cache ... (4 actions running)
    1235:  �[32m[2,891 / 2,910]�[0m 4 / 27 tests, �[31m�[1m4 failed�[0m;�[0m Testing //rb/spec/integration/selenium/webdriver:takes_screenshot-edge-remote; 48s local, disk-cache ... (4 actions running)
    1236:  �[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)
    1237:  �[32m[2,891 / 2,910]�[0m 4 / 27 tests, �[31m�[1m4 failed�[0m;�[0m Testing //rb/spec/integration/selenium/webdriver:takes_screenshot-edge-remote; 49s local, disk-cache ... (4 actions running)
    1238:  �[32m[2,891 / 2,910]�[0m 4 / 27 tests, �[31m�[1m4 failed�[0m;�[0m Testing //rb/spec/integration/selenium/webdriver:takes_screenshot-edge-remote; 55s local, disk-cache ... (4 actions running)
    1239:  �[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)
    1240:  �[31m�[1mFAILED: �[0m//rb/spec/integration/selenium/webdriver:takes_screenshot-edge-remote (Summary)
    1241:  D:/_bazel/execroot/selenium/bazel-out/x64_windows-fastbuild/testlogs/rb/spec/integration/selenium/webdriver/takes_screenshot-edge-remote/test.log
    1242:  D:/_bazel/execroot/selenium/bazel-out/x64_windows-fastbuild/testlogs/rb/spec/integration/selenium/webdriver/takes_screenshot-edge-remote/test_attempts/attempt_1.log
    1243:  D:/_bazel/execroot/selenium/bazel-out/x64_windows-fastbuild/testlogs/rb/spec/integration/selenium/webdriver/takes_screenshot-edge-remote/test_attempts/attempt_2.log
    1244:  �[32mINFO: �[0mFrom Testing //rb/spec/integration/selenium/webdriver:takes_screenshot-edge-remote:
    1245:  ==================== Test output for //rb/spec/integration/selenium/webdriver:takes_screenshot-edge-remote:
    1246:  2024-04-17 08:30:41 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
    1247:  An error occurred in a `before(:suite)` hook.
    1248:  Failure/Error: @pid = Process.spawn(*@command, options)
    1249:  Errno::EACCES:
    1250:  Permission denied - java
    1251:  # ./rb/lib/selenium/webdriver/common/child_process.rb:57:in `spawn'
    1252:  # ./rb/lib/selenium/webdriver/common/child_process.rb:57:in `start'
    1253:  # ./rb/lib/selenium/server.rb:204:in `start'
    1254:  # //?/D:/a/selenium/selenium/rb/spec/integration/selenium/webdriver/spec_helper.rb:40:in `block (2 levels) in <top (required)>'
    1255:  Finished in 0.05635 seconds (files took 0.81283 seconds to load)
    1256:  0 examples, 0 failures, 1 error occurred outside of examples
    1257:  ================================================================================
    1258:  ==================== Test output for //rb/spec/integration/selenium/webdriver:takes_screenshot-edge-remote:
    1259:  2024-04-17 08:31: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
    1260:  An error occurred in a `before(:suite)` hook.
    1261:  Failure/Error: @pid = Process.spawn(*@command, options)
    1262:  Errno::EACCES:
    1263:  Permission denied - java
    1264:  # ./rb/lib/selenium/webdriver/common/child_process.rb:57:in `spawn'
    1265:  # ./rb/lib/selenium/webdriver/common/child_process.rb:57:in `start'
    1266:  # ./rb/lib/selenium/server.rb:204:in `start'
    1267:  # //?/D:/a/selenium/selenium/rb/spec/integration/selenium/webdriver/spec_helper.rb:40:in `block (2 levels) in <top (required)>'
    1268:  Finished in 0.04419 seconds (files took 0.59279 seconds to load)
    1269:  0 examples, 0 failures, 1 error occurred outside of examples
    1270:  ================================================================================
    1271:  ==================== Test output for //rb/spec/integration/selenium/webdriver:takes_screenshot-edge-remote:
    1272:  2024-04-17 08:31:29 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
    1273:  An error occurred in a `before(:suite)` hook.
    1274:  Failure/Error: @pid = Process.spawn(*@command, options)
    1275:  Errno::EACCES:
    1276:  Permission denied - java
    1277:  # ./rb/lib/selenium/webdriver/common/child_process.rb:57:in `spawn'
    1278:  # ./rb/lib/selenium/webdriver/common/child_process.rb:57:in `start'
    1279:  # ./rb/lib/selenium/server.rb:204:in `start'
    1280:  # //?/D:/a/selenium/selenium/rb/spec/integration/selenium/webdriver/spec_helper.rb:40:in `block (2 levels) in <top (required)>'
    1281:  Finished in 0.04429 seconds (files took 0.58545 seconds to load)
    1282:  0 examples, 0 failures, 1 error occurred outside of examples
    1283:  ================================================================================
    1284:  �[32m[2,892 / 2,910]�[0m 5 / 27 tests, �[31m�[1m5 failed�[0m;�[0m Testing //rb/spec/integration/selenium/webdriver/edge:service-edge-remote; 49s local, disk-cache ... (4 actions, 3 running)
    1285:  �[32m[2,892 / 2,910]�[0m 5 / 27 tests, �[31m�[1m5 failed�[0m;�[0m Testing //rb/spec/integration/selenium/webdriver/edge:service-edge-remote; 54s local, disk-cache ... (4 actions, 3 running)
    1286:  �[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)
    1287:  �[32m[2,892 / 2,910]�[0m 5 / 27 tests, �[31m�[1m5 failed�[0m;�[0m Testing //rb/spec/integration/selenium/webdriver/edge:service-edge-remote; 56s local, disk-cache ... (4 actions, 3 running)
    1288:  �[32m[2,892 / 2,910]�[0m 5 / 27 tests, �[31m�[1m5 failed�[0m;�[0m Testing //rb/spec/integration/selenium/webdriver/edge:service-edge-remote; 58s local, disk-cache ... (4 actions, 3 running)
    1289:  �[32m[2,892 / 2,910]�[0m 5 / 27 tests, �[31m�[1m5 failed�[0m;�[0m Testing //rb/spec/integration/selenium/webdriver/edge:service-edge-remote; 60s local, disk-cache ... (4 actions, 3 running)
    1290:  �[32m[2,892 / 2,910]�[0m 5 / 27 tests, �[31m�[1m5 failed�[0m;�[0m Testing //rb/spec/integration/selenium/webdriver/edge:service-edge-remote; 61s local, disk-cache ... (4 actions, 3 running)
    1291:  �[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)
    1292:  �[31m�[1mFAILED: �[0m//rb/spec/integration/selenium/webdriver/edge:service-edge-remote (Summary)
    1293:  D:/_bazel/execroot/selenium/bazel-out/x64_windows-fastbuild/testlogs/rb/spec/integration/selenium/webdriver/edge/service-edge-remote/test.log
    1294:  ==================== Test output for //rb/spec/integration/selenium/webdriver/edge:service-edge-remote:
    1295:  D:/_bazel/execroot/selenium/bazel-out/x64_windows-fastbuild/testlogs/rb/spec/integration/selenium/webdriver/edge/service-edge-remote/test_attempts/attempt_1.log
    1296:  2024-04-17 08:30:48 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
    1297:  D:/_bazel/execroot/selenium/bazel-out/x64_windows-fastbuild/testlogs/rb/spec/integration/selenium/webdriver/edge/service-edge-remote/test_attempts/attempt_2.log
    1298:  �[32mINFO: �[0mFrom Testing //rb/spec/integration/selenium/webdriver/edge:service-edge-remote:
    1299:  An error occurred in a `before(:suite)` hook.
    1300:  Failure/Error: @pid = Process.spawn(*@command, options)
    1301:  Errno::EACCES:
    1302:  Permission denied - java
    1303:  # ./rb/lib/selenium/webdriver/common/child_process.rb:57:in `spawn'
    1304:  # ./rb/lib/selenium/webdriver/common/child_process.rb:57:in `start'
    1305:  # ./rb/lib/selenium/server.rb:204:in `start'
    1306:  # //?/D:/a/selenium/selenium/rb/spec/integration/selenium/webdriver/spec_helper.rb:40:in `block (2 levels) in <top (required)>'
    1307:  Finished in 0.04628 seconds (files took 0.6643 seconds to load)
    1308:  0 examples, 0 failures, 1 error occurred outside of examples
    1309:  ================================================================================
    1310:  ==================== Test output for //rb/spec/integration/selenium/webdriver/edge:service-edge-remote:
    1311:  2024-04-17 08:31:15 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
    1312:  An error occurred in a `before(:suite)` hook.
    1313:  Failure/Error: @pid = Process.spawn(*@command, options)
    1314:  Errno::EACCES:
    1315:  Permission denied - java
    1316:  # ./rb/lib/selenium/webdriver/common/child_process.rb:57:in `spawn'
    1317:  # ./rb/lib/selenium/webdriver/common/child_process.rb:57:in `start'
    1318:  # ./rb/lib/selenium/server.rb:204:in `start'
    1319:  # //?/D:/a/selenium/selenium/rb/spec/integration/selenium/webdriver/spec_helper.rb:40:in `block (2 levels) in <top (required)>'
    1320:  Finished in 0.04548 seconds (files took 0.61967 seconds to load)
    1321:  0 examples, 0 failures, 1 error occurred outside of examples
    1322:  ================================================================================
    1323:  ==================== Test output for //rb/spec/integration/selenium/webdriver/edge:service-edge-remote:
    1324:  2024-04-17 08:31:43 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
    1325:  An error occurred in a `before(:suite)` hook.
    1326:  Failure/Error: @pid = Process.spawn(*@command, options)
    1327:  Errno::EACCES:
    1328:  Permission denied - java
    1329:  # ./rb/lib/selenium/webdriver/common/child_process.rb:57:in `spawn'
    1330:  # ./rb/lib/selenium/webdriver/common/child_process.rb:57:in `start'
    1331:  # ./rb/lib/selenium/server.rb:204:in `start'
    1332:  # //?/D:/a/selenium/selenium/rb/spec/integration/selenium/webdriver/spec_helper.rb:40:in `block (2 levels) in <top (required)>'
    1333:  Finished in 0.05567 seconds (files took 0.67178 seconds to load)
    1334:  0 examples, 0 failures, 1 error occurred outside of examples
    1335:  ================================================================================
    1336:  �[32m[2,893 / 2,910]�[0m 6 / 27 tests, �[31m�[1m6 failed�[0m;�[0m Testing //rb/spec/integration/selenium/webdriver:zipper-edge-remote; 56s local, disk-cache ... (4 actions, 2 running)
    1337:  �[32m[2,893 / 2,910]�[0m 6 / 27 tests, �[31m�[1m6 failed�[0m;�[0m Testing //rb/spec/integration/selenium/webdriver:zipper-edge-remote; 61s local, disk-cache ... (4 actions, 2 running)
    1338:  �[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)
    1339:  ==================== Test output for //rb/spec/integration/selenium/webdriver:zipper-edge-remote:
    1340:  �[31m�[1mFAILED: �[0m//rb/spec/integration/selenium/webdriver:zipper-edge-remote (Summary)
    1341:  2024-04-17 08:30:55 INFO Selenium Server Location: D:/_bazel/execroot/selenium/bazel-out/x64_windows-fastbuild/bin/rb/spec/integration/selenium/webdriver/zipper-edge-remote.cmd.runfiles/selenium/java/src/org/openqa/selenium/grid/selenium_server_deploy.jar
    1342:  D:/_bazel/execroot/selenium/bazel-out/x64_windows-fastbuild/testlogs/rb/spec/integration/selenium/webdriver/zipper-edge-remote/test.log
    1343:  D:/_bazel/execroot/selenium/bazel-out/x64_windows-fastbuild/testlogs/rb/spec/integration/selenium/webdriver/zipper-edge-remote/test_attempts/attempt_1.log
    1344:  An error occurred in a `before(:suite)` hook.
    1345:  D:/_bazel/execroot/selenium/bazel-out/x64_windows-fastbuild/testlogs/rb/spec/integration/selenium/webdriver/zipper-edge-remote/test_attempts/attempt_2.log
    1346:  Failure/Error: @pid = Process.spawn(*@command, options)
    1347:  �[32mINFO: �[0mFrom Testing //rb/spec/integration/selenium/webdriver:zipper-edge-remote:
    1348:  Errno::EACCES:
    1349:  Permission denied - java
    1350:  # ./rb/lib/selenium/webdriver/common/child_process.rb:57:in `spawn'
    1351:  # ./rb/lib/selenium/webdriver/common/child_process.rb:57:in `start'
    1352:  # ./rb/lib/selenium/server.rb:204:in `start'
    1353:  # //?/D:/a/selenium/selenium/rb/spec/integration/selenium/webdriver/spec_helper.rb:40:in `block (2 levels) in <top (required)>'
    1354:  Finished in 0.04551 seconds (files took 0.6628 seconds to load)
    1355:  0 examples, 0 failures, 1 error occurred outside of examples
    1356:  ================================================================================
    1357:  ==================== Test output for //rb/spec/integration/selenium/webdriver:zipper-edge-remote:
    1358:  2024-04-17 08:31:22 INFO Selenium Server Location: D:/_bazel/execroot/selenium/bazel-out/x64_windows-fastbuild/bin/rb/spec/integration/selenium/webdriver/zipper-edge-remote.cmd.runfiles/selenium/java/src/org/openqa/selenium/grid/selenium_server_deploy.jar
    1359:  An error occurred in a `before(:suite)` hook.
    1360:  Failure/Error: @pid = Process.spawn(*@command, options)
    1361:  Errno::EACCES:
    1362:  Permission denied - java
    1363:  # ./rb/lib/selenium/webdriver/common/child_process.rb:57:in `spawn'
    1364:  # ./rb/lib/selenium/webdriver/common/child_process.rb:57:in `start'
    1365:  # ./rb/lib/selenium/server.rb:204:in `start'
    1366:  # //?/D:/a/selenium/selenium/rb/spec/integration/selenium/webdriver/spec_helper.rb:40:in `block (2 levels) in <top (required)>'
    1367:  Finished in 0.04544 seconds (files took 0.6205 seconds to load)
    1368:  0 examples, 0 failures, 1 error occurred outside of examples
    1369:  ================================================================================
    1370:  ==================== Test output for //rb/spec/integration/selenium/webdriver:zipper-edge-remote:
    1371:  2024-04-17 08:31:50 INFO Selenium Server Location: D:/_bazel/execroot/selenium/bazel-out/x64_windows-fastbuild/bin/rb/spec/integration/selenium/webdriver/zipper-edge-remote.cmd.runfiles/selenium/java/src/org/openqa/selenium/grid/selenium_server_deploy.jar
    1372:  An error occurred in a `before(:suite)` hook.
    1373:  Failure/Error: @pid = Process.spawn(*@command, options)
    1374:  Errno::EACCES:
    1375:  Permission denied - java
    1376:  # ./rb/lib/selenium/webdriver/common/child_process.rb:57:in `spawn'
    1377:  # ./rb/lib/selenium/webdriver/common/child_process.rb:57:in `start'
    1378:  # ./rb/lib/selenium/server.rb:204:in `start'
    1379:  # //?/D:/a/selenium/selenium/rb/spec/integration/selenium/webdriver/spec_helper.rb:40:in `block (2 levels) in <top (required)>'
    1380:  Finished in 0.04616 seconds (files took 0.62934 seconds to load)
    1381:  0 examples, 0 failures, 1 error occurred outside of examples
    1382:  ================================================================================
    1383:  �[32m[2,894 / 2,910]�[0m 7 / 27 tests, �[31m�[1m7 failed�[0m;�[0m Testing //rb/spec/integration/selenium/webdriver:listener-edge-remote; 49s local, disk-cache ... (4 actions, 1 running)
    1384:  �[32m[2,894 / 2,910]�[0m 7 / 27 tests, �[31m�[1m7 failed�[0m;�[0m Testing //rb/spec/integration/selenium/webdriver:listener-edge-remote; 52s local, disk-cache ... (4 actions, 1 running)
    1385:  �[32m[2,894 / 2,910]�[0m 7 / 27 tests, �[31m�[1m7 failed�[0m;�[0m Testing //rb/spec/integration/selenium/webdriver:listener-edge-remote; 55s local, disk-cache ... (4 actions, 2 running)
    1386:  �[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)
    1387:  ==================== Test output for //rb/spec/integration/selenium/webdriver:listener-edge-remote:
    1388:  2024-04-17 08:31:09 INFO Selenium Server Location: D:/_bazel/execroot/selenium/bazel-out/x64_windows-fastbuild/bin/rb/spec/integration/selenium/webdriver/listener-edge-remote.cmd.runfiles/selenium/java/src/org/openqa/selenium/grid/selenium_server_deploy.jar
    1389:  An error occurred in a `before(:suite)` hook.
    1390:  Failure/Error: @pid = Process.spawn(*@command, options)
    1391:  Errno::EACCES:
    1392:  Permission denied - java
    1393:  # ./rb/lib/selenium/webdriver/common/child_process.rb:57:in `spawn'
    1394:  # ./rb/lib/selenium/webdriver/common/child_process.rb:57:in `start'
    1395:  # ./rb/lib/selenium/server.rb:204:in `start'
    1396:  # //?/D:/a/selenium/selenium/rb/spec/integration/selenium/webdriver/spec_helper.rb:40:in `block (2 levels) in <top (required)>'
    1397:  Finished in 0.04359 seconds (files took 0.59169 seconds to load)
    1398:  0 examples, 0 failures, 1 error occurred outside of examples
    1399:  ================================================================================
    1400:  ==================== Test output for //rb/spec/integration/selenium/webdriver:listener-edge-remote:
    1401:  2024-04-17 08:31:36 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
    1402:  An error occurred in a `before(:suite)` hook.
    1403:  Failure/Error: @pid = Process.spawn(*@command, options)
    1404:  Errno::EACCES:
    1405:  Permission denied - java
    1406:  # ./rb/lib/selenium/webdriver/common/child_process.rb:57:in `spawn'
    1407:  # ./rb/lib/selenium/webdriver/common/child_process.rb:57:in `start'
    1408:  # ./rb/lib/selenium/server.rb:204:in `start'
    1409:  # //?/D:/a/selenium/selenium/rb/spec/integration/selenium/webdriver/spec_helper.rb:40:in `block (2 levels) in <top (required)>'
    1410:  Finished in 0.05431 seconds (files took 0.74386 seconds to load)
    1411:  0 examples, 0 failures, 1 error occurred outside of examples
    1412:  ================================================================================
    1413:  ==================== Test output for //rb/spec/integration/selenium/webdriver:listener-edge-remote:
    1414:  2024-04-17 08:31:57 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
    1415:  An error occurred in a `before(:suite)` hook.
    1416:  Failure/Error: @pid = Process.spawn(*@command, options)
    1417:  Errno::EACCES:
    1418:  Permission denied - java
    1419:  # ./rb/lib/selenium/webdriver/common/child_process.rb:57:in `spawn'
    1420:  # ./rb/lib/selenium/webdriver/common/child_process.rb:57:in `start'
    1421:  # ./rb/lib/selenium/server.rb:204:in `start'
    1422:  # //?/D:/a/selenium/selenium/rb/spec/integration/selenium/webdriver/spec_helper.rb:40:in `block (2 levels) in <top (required)>'
    1423:  Finished in 0.06376 seconds (files took 0.80963 seconds to load)
    1424:  0 examples, 0 failures, 1 error occurred outside of examples
    1425:  ================================================================================
    1426:  �[31m�[1mFAILED: �[0m//rb/spec/integration/selenium/webdriver:listener-edge-remote (Summary)
    1427:  D:/_bazel/execroot/selenium/bazel-out/x64_windows-fastbuild/testlogs/rb/spec/integration/selenium/webdriver/listener-edge-remote/test.log
    1428:  D:/_bazel/execroot/selenium/bazel-out/x64_windows-fastbuild/testlogs/rb/spec/integration/selenium/webdriver/listener-edge-remote/test_attempts/attempt_1.log
    1429:  D:/_bazel/execroot/selenium/bazel-out/x64_windows-fastbuild/testlogs/rb/spec/integration/selenium/webdriver/listener-edge-remote/test_attempts/attempt_2.log
    1430:  �[32mINFO: �[0mFrom Testing //rb/spec/integration/selenium/webdriver:listener-edge-remote:
    1431:  �[32m[2,895 / 2,910]�[0m 8 / 27 tests, �[31m�[1m8 failed�[0m;�[0m Testing //rb/spec/integration/selenium/webdriver:navigation-edge-remote; 7s disk-cache ... (4 actions, 1 running)
    1432:  �[32m[2,895 / 2,910]�[0m 8 / 27 tests, �[31m�[1m8 failed�[0m;�[0m [Sched] Testing //rb/spec/integration/selenium/webdriver:manager-edge-remote; 9s ... (4 actions, 1 running)
    1433:  �[32m[2,895 / 2,910]�[0m 8 / 27 tests, �[31m�[1m8 failed�[0m;�[0m Testing //rb/spec/integration/selenium/webdriver:target_locator-edge-remote; 7s local, disk-cache ... (4 actions, 2 running)
    1434:  �[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)
    1435:  �[32m[2,895 / 2,910]�[0m 8 / 27 tests, �[31m�[1m8 failed�[0m;�[0m Testing //rb/spec/integration/selenium/webdriver:target_locator-edge-remote; 9s local, disk-cache ... (4 actions, 2 running)
    1436:  �[32m[2,895 / 2,910]�[0m 8 / 27 tests, �[31m�[1m8 failed�[0m;�[0m Testing //rb/spec/integration/selenium/webdriver:target_locator-edge-remote; 11s local, disk-cache ... (4 actions, 2 running)
    1437:  �[32m[2,895 / 2,910]�[0m 8 / 27 tests, �[31m�[1m8 failed�[0m;�[0m Testing //rb/spec/integration/selenium/webdriver:target_locator-edge-remote; 12s local, disk-cache ... (4 actions, 2 running)
    1438:  �[32m[2,895 / 2,910]�[0m 8 / 27 tests, �[31m�[1m8 failed�[0m;�[0m Testing //rb/spec/integration/selenium/webdriver:target_locator-edge-remote; 14s local, disk-cache ... (4 actions, 3 running)
    1439:  �[31m�[1mFAIL: �[0m//rb/spec/integration/selenium/webdriver:manager-edge-remote (see D:/_bazel/execroot/selenium/bazel-out/x64_windows-fastbuild/testlogs/rb/spec/integration/selenium/webdriver/manager-edge-remote/test_attempts/attempt_1.log)
    1440:  �[32m[2,895 / 2,910]�[0m 8 / 27 tests, �[31m�[1m8 failed�[0m;�[0m Testing //rb/spec/integration/selenium/webdriver:target_locator-edge-remote; 16s local, disk-cache ... (4 actions, 3 running)
    1441:  �[32m[2,895 / 2,910]�[0m 8 / 27 tests, �[31m�[1m8 failed�[0m;�[0m Testing //rb/spec/integration/selenium/webdriver:target_locator-edge-remote; 21s local, disk-cache ... (4 actions, 3 running)
    1442:  �[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)
    1443:  �[32m[2,895 / 2,910]�[0m 8 / 27 tests, �[31m�[1m8 failed�[0m;�[0m Testing //rb/spec/integration/selenium/webdriver:target_locator-edge-remote; 22s local, disk-cache ... (4 actions, 3 running)
    1444:  �[32m[2,895 / 2,910]�[0m 8 / 27 tests, �[31m�[1m8 failed�[0m;�[0m Testing //rb/spec/integration/selenium/webdriver:target_locator-edge-remote; 28s local, disk-cache ... (4 actions running)
    1445:  �[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)
    1446:  �[32m[2,895 / 2,910]�[0m 8 / 27 tests, �[31m�[1m8 failed�[0m;�[0m Testing //rb/spec/integration/selenium/webdriver:target_locator-edge-remote; 29s local, disk-cache ... (4 actions running)
    1447:  �[32m[2,895 / 2,910]�[0m 8 / 27 tests, �[31m�[1m8 failed�[0m;�[0m Testing //rb/spec/integration/selenium/webdriver:target_locator-edge-remote; 35s local, disk-cache ... (4 actions running)
    1448:  �[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)
    1449:  �[32m[2,895 / 2,910]�[0m 8 / 27 tests, �[31m�[1m8 failed�[0m;�[0m Testing //rb/spec/integration/selenium/webdriver:target_locator-edge-remote; 36s local, disk-cache ... (4 actions running)
    1450:  �[32m[2,895 / 2,910]�[0m 8 / 27 tests, �[31m�[1m8 failed�[0m;�[0m Testing //rb/spec/integration/selenium/webdriver:target_locator-edge-remote; 41s local, disk-cache ... (4 actions running)
    1451:  �[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)
    1452:  �[32m[2,895 / 2,910]�[0m 8 / 27 tests, �[31m�[1m8 failed�[0m;�[0m Testing //rb/spec/integration/selenium/webdriver:target_locator-edge-remote; 42s local, disk-cache ... (4 actions running)
    1453:  �[32m[2,895 / 2,910]�[0m 8 / 27 tests, �[31m�[1m8 failed�[0m;�[0m Testing //rb/spec/integration/selenium/webdriver:target_locator-edge-remote; 43s local, disk-cache ... (4 actions running)
    1454:  �[32m[2,895 / 2,910]�[0m 8 / 27 tests, �[31m�[1m8 failed�[0m;�[0m Testing //rb/spec/integration/selenium/webdriver:target_locator-edge-remote; 48s local, disk-cache ... (4 actions running)
    1455:  �[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)
    1456:  �[32m[2,895 / 2,910]�[0m 8 / 27 tests, �[31m�[1m8 failed�[0m;�[0m Testing //rb/spec/integration/selenium/webdriver:target_locator-edge-remote; 50s local, disk-cache ... (4 actions running)
    1457:  �[32m[2,895 / 2,910]�[0m 8 / 27 tests, �[31m�[1m8 failed�[0m;�[0m Testing //rb/spec/integration/selenium/webdriver:target_locator-edge-remote; 55s local, disk-cache ... (4 actions running)
    1458:  �[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)
    1459:  �[31m�[1mFAILED: �[0m//rb/spec/integration/selenium/webdriver:target_locator-edge-remote (Summary)
    1460:  D:/_bazel/execroot/selenium/bazel-out/x64_windows-fastbuild/testlogs/rb/spec/integration/selenium/webdriver/target_locator-edge-remote/test.log
    1461:  D:/_bazel/execroot/selenium/bazel-out/x64_windows-fastbuild/testlogs/rb/spec/integration/selenium/webdriver/target_locator-edge-remote/test_attempts/attempt_1.log
    1462:  D:/_bazel/execroot/selenium/bazel-out/x64_windows-fastbuild/testlogs/rb/spec/integration/selenium/webdriver/target_locator-edge-remote/test_attempts/attempt_2.log
    1463:  �[32mINFO: �[0mFrom Testing //rb/spec/integration/selenium/webdriver:target_locator-edge-remote:
    1464:  ==================== Test output for //rb/spec/integration/selenium/webdriver:target_locator-edge-remote:
    1465:  2024-04-17 08:32:05 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
    1466:  An error occurred in a `before(:suite)` hook.
    1467:  Failure/Error: @pid = Process.spawn(*@command, options)
    1468:  Errno::EACCES:
    1469:  Permission denied - java
    1470:  # ./rb/lib/selenium/webdriver/common/child_process.rb:57:in `spawn'
    1471:  # ./rb/lib/selenium/webdriver/common/child_process.rb:57:in `start'
    1472:  # ./rb/lib/selenium/server.rb:204:in `start'
    1473:  # //?/D:/a/selenium/selenium/rb/spec/integration/selenium/webdriver/spec_helper.rb:40:in `block (2 levels) in <top (required)>'
    1474:  Finished in 0.05644 seconds (files took 1.06 seconds to load)
    1475:  0 examples, 0 failures, 1 error occurred outside of examples
    1476:  ================================================================================
    1477:  ==================== Test output for //rb/spec/integration/selenium/webdriver:target_locator-edge-remote:
    1478:  2024-04-17 08:32:26 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
    1479:  An error occurred in a `before(:suite)` hook.
    1480:  Failure/Error: @pid = Process.spawn(*@command, options)
    1481:  Errno::EACCES:
    1482:  Permission denied - java
    1483:  # ./rb/lib/selenium/webdriver/common/child_process.rb:57:in `spawn'
    1484:  # ./rb/lib/selenium/webdriver/common/child_process.rb:57:in `start'
    1485:  # ./rb/lib/selenium/server.rb:204:in `start'
    1486:  # //?/D:/a/selenium/selenium/rb/spec/integration/selenium/webdriver/spec_helper.rb:40:in `block (2 levels) in <top (required)>'
    1487:  Finished in 0.04629 seconds (files took 0.63318 seconds to load)
    1488:  0 examples, 0 failures, 1 error occurred outside of examples
    1489:  ================================================================================
    1490:  ==================== Test output for //rb/spec/integration/selenium/webdriver:target_locator-edge-remote:
    1491:  2024-04-17 08:32:53 INFO Selenium Server Location: D:/_bazel/execroot/selenium/bazel-out/x64_windows-fastbuild/bin/rb/spec/integration/selenium/webdriver/target_locator-edge-remote.cmd.runfiles/selenium/java/src/org/openqa/selenium/grid/selenium_server_deploy.jar
    1492:  An error occurred in a `before(:suite)` hook.
    1493:  Failure/Error: @pid = Process.spawn(*@command, options)
    1494:  Errno::EACCES:
    1495:  Permission denied - java
    1496:  # ./rb/lib/selenium/webdriver/common/child_process.rb:57:in `spawn'
    1497:  # ./rb/lib/selenium/webdriver/common/child_process.rb:57:in `start'
    1498:  # ./rb/lib/selenium/server.rb:204:in `start'
    1499:  # //?/D:/a/selenium/selenium/rb/spec/integration/selenium/webdriver/spec_helper.rb:40:in `block (2 levels) in <top (required)>'
    1500:  Finished in 0.04478 seconds (files took 0.61759 seconds to load)
    1501:  0 examples, 0 failures, 1 error occurred outside of examples
    1502:  ================================================================================
    1503:  �[32m[2,896 / 2,910]�[0m 9 / 27 tests, �[31m�[1m9 failed�[0m;�[0m Testing //rb/spec/integration/selenium/webdriver:manager-edge-remote; 49s local, disk-cache ... (4 actions, 3 running)
    1504:  �[32m[2,896 / 2,910]�[0m 9 / 27 tests, �[31m�[1m9 failed�[0m;�[0m Testing //rb/spec/integration/selenium/webdriver:manager-edge-remote; 54s local, disk-cache ... (4 actions, 3 running)
    1505:  �[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)
    1506:  �[32m[2,896 / 2,910]�[0m 9 / 27 tests, �[31m�[1m9 failed�[0m;�[0m Testing //rb/spec/integration/selenium/webdriver:manager-edge-remote; 56s local, disk-cache ... (4 actions, 3 running)
    1507:  �[32m[2,896 / 2,910]�[0m 9 / 27 tests, �[31m�[1m9 failed�[0m;�[0m Testing //rb/spec/integration/selenium/webdriver:manager-edge-remote; 58s local, disk-cache ... (4 actions, 3 running)
    1508:  �[32m[2,896 / 2,910]�[0m 9 / 27 tests, �[31m�[1m9 failed�[0m;�[0m Testing //rb/spec/integration/selenium/webdriver:manager-edge-remote; 60s local, disk-cache ... (4 actions, 3 running)
    1509:  �[32m[2,896 / 2,910]�[0m 9 / 27 tests, �[31m�[1m9 failed�[0m;�[0m Testing //rb/spec/integration/selenium/webdriver:manager-edge-remote; 61s local, disk-cache ... (4 actions, 3 running)
    1510:  �[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)
    1511:  �[31m�[1mFAILED: �[0m//rb/spec/integration/selenium/webdriver:manager-edge-remote (Summary)
    1512:  D:/_bazel/execroot/selenium/bazel-out/x64_windows-fastbuild/testlogs/rb/spec/integration/selenium/webdriver/manager-edge-remote/test.log
    1513:  D:/_bazel/execroot/selenium/bazel-out/x64_windows-fastbuild/testlogs/rb/spec/integration/selenium/webdriver/manager-edge-remote/test_attempts/attempt_1.log
    1514:  D:/_bazel/execroot/selenium/bazel-out/x64_windows-fastbuild/testlogs/rb/spec/integration/selenium/webdriver/manager-edge-remote/test_attempts/attempt_2.log
    1515:  �[32mINFO: �[0mFrom Testing //rb/spec/integration/selenium/webdriver:manager-edge-remote:
    1516:  ==================== Test output for //rb/spec/integration/selenium/webdriver:manager-edge-remote:
    1517:  2024-04-17 08:32:12 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
    1518:  An error occurred in a `before(:suite)` hook.
    1519:  Failure/Error: @pid = Process.spawn(*@command, options)
    1520:  Errno::EACCES:
    1521:  Permission denied - java
    1522:  # ./rb/lib/selenium/webdriver/common/child_process.rb:57:in `spawn'
    1523:  # ./rb/lib/selenium/webdriver/common/child_process.rb:57:in `start'
    1524:  # ./rb/lib/selenium/server.rb:204:in `start'
    1525:  # //?/D:/a/selenium/selenium/rb/spec/integration/selenium/webdriver/spec_helper.rb:40:in `block (2 levels) in <top (required)>'
    1526:  Finished in 0.04873 seconds (files took 0.68857 seconds to load)
    1527:  0 examples, 0 failures, 1 error occurred outside of examples
    1528:  ================================================================================
    1529:  ==================== Test output for //rb/spec/integration/selenium/webdriver:manager-edge-remote:
    1530:  2024-04-17 08:32:39 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
    1531:  An error occurred in a `before(:suite)` hook.
    1532:  Failure/Error: @pid = Process.spawn(*@command, options)
    1533:  Errno::EACCES:
    1534:  Permission denied - java
    1535:  # ./rb/lib/selenium/webdriver/common/child_process.rb:57:in `spawn'
    1536:  # ./rb/lib/selenium/webdriver/common/child_process.rb:57:in `start'
    1537:  # ./rb/lib/selenium/server.rb:204:in `start'
    1538:  # //?/D:/a/selenium/selenium/rb/spec/integration/selenium/webdriver/spec_helper.rb:40:in `block (2 levels) in <top (required)>'
    1539:  Finished in 0.04402 seconds (files took 0.61267 seconds to load)
    1540:  0 examples, 0 failures, 1 error occurred outside of examples
    1541:  ================================================================================
    1542:  ==================== Test output for //rb/spec/integration/selenium/webdriver:manager-edge-remote:
    1543:  2024-04-17 08:33:07 INFO Selenium Server Location: D:/_bazel/execroot/selenium/bazel-out/x64_windows-fastbuild/bin/rb/spec/integration/selenium/webdriver/manager-edge-remote.cmd.runfiles/selenium/java/src/org/openqa/selenium/grid/selenium_server_deploy.jar
    1544:  An error occurred in a `before(:suite)` hook.
    1545:  Failure/Error: @pid = Process.spawn(*@command, options)
    1546:  Errno::EACCES:
    1547:  Permission denied - java
    1548:  # ./rb/lib/selenium/webdriver/common/child_process.rb:57:in `spawn'
    1549:  # ./rb/lib/selenium/webdriver/common/child_process.rb:57:in `start'
    1550:  # ./rb/lib/selenium/server.rb:204:in `start'
    1551:  # //?/D:/a/selenium/selenium/rb/spec/integration/selenium/webdriver/spec_helper.rb:40:in `block (2 levels) in <top (required)>'
    1552:  Finished in 0.05317 seconds (files took 0.64796 seconds to load)
    1553:  0 examples, 0 failures, 1 error occurred outside of examples
    1554:  ================================================================================
    1555:  �[32m[2,897 / 2,910]�[0m 10 / 27 tests, �[31m�[1m10 failed�[0m;�[0m Testing //rb/spec/integration/selenium/webdriver:navigation-edge-remote; 56s local, disk-cache ... (4 actions, 2 running)
    1556:  �[32m[2,897 / 2,910]�[0m 10 / 27 tests, �[31m�[1m10 failed�[0m;�[0m Testing //rb/spec/integration/selenium/webdriver:navigation-edge-remote; 61s local, disk-cache ... (4 actions, 2 running)
    1557:  �[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)
    1558:  ==================== Test output for //rb/spec/integration/selenium/webdriver:navigation-edge-remote:
    1559:  2024-04-17 08:32:19 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
    1560:  �[31m�[1mFAILED: �[0m//rb/spec/integration/selenium/webdriver:navigation-edge-remote (Summary)
    1561:  D:/_bazel/execroot/selenium/bazel-out/x64_windows-fastbuild/testlogs/rb/spec/integration/selenium/webdriver/navigation-edge-remote/test.log
    1562:  An error occurred in a `before(:suite)` hook.
    1563:  D:/_bazel/execroot/selenium/bazel-out/x64_windows-fastbuild/testlogs/rb/spec/integration/selenium/webdriver/navigation-edge-remote/test_attempts/attempt_1.log
    1564:  Failure/Error: @pid = Process.spawn(*@command, options)
    ...
    
    1566:  �[32mINFO: �[0mFrom Testing //rb/spec/integration/selenium/webdriver:navigation-edge-remote:
    1567:  Errno::EACCES:
    1568:  Permission denied - java
    1569:  # ./rb/lib/selenium/webdriver/common/child_process.rb:57:in `spawn'
    1570:  # ./rb/lib/selenium/webdriver/common/child_process.rb:57:in `start'
    1571:  # ./rb/lib/selenium/server.rb:204:in `start'
    1572:  # //?/D:/a/selenium/selenium/rb/spec/integration/selenium/webdriver/spec_helper.rb:40:in `block (2 levels) in <top (required)>'
    1573:  Finished in 0.04608 seconds (files took 0.68526 seconds to load)
    1574:  0 examples, 0 failures, 1 error occurred outside of examples
    1575:  ================================================================================
    1576:  ==================== Test output for //rb/spec/integration/selenium/webdriver:navigation-edge-remote:
    1577:  2024-04-17 08:32:46 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
    1578:  An error occurred in a `before(:suite)` hook.
    1579:  Failure/Error: @pid = Process.spawn(*@command, options)
    1580:  Errno::EACCES:
    1581:  Permission denied - java
    1582:  # ./rb/lib/selenium/webdriver/common/child_process.rb:57:in `spawn'
    1583:  # ./rb/lib/selenium/webdriver/common/child_process.rb:57:in `start'
    1584:  # ./rb/lib/selenium/server.rb:204:in `start'
    1585:  # //?/D:/a/selenium/selenium/rb/spec/integration/selenium/webdriver/spec_helper.rb:40:in `block (2 levels) in <top (required)>'
    1586:  Finished in 0.046 seconds (files took 0.61258 seconds to load)
    1587:  0 examples, 0 failures, 1 error occurred outside of examples
    1588:  ================================================================================
    1589:  ==================== Test output for //rb/spec/integration/selenium/webdriver:navigation-edge-remote:
    1590:  2024-04-17 08:33:14 INFO Selenium Server Location: D:/_bazel/execroot/selenium/bazel-out/x64_windows-fastbuild/bin/rb/spec/integration/selenium/webdriver/navigation-edge-remote.cmd.runfiles/selenium/java/src/org/openqa/selenium/grid/selenium_server_deploy.jar
    1591:  An error occurred in a `before(:suite)` hook.
    1592:  Failure/Error: @pid = Process.spawn(*@command, options)
    1593:  Errno::EACCES:
    1594:  Permission denied - java
    1595:  # ./rb/lib/selenium/webdriver/common/child_process.rb:57:in `spawn'
    1596:  # ./rb/lib/selenium/webdriver/common/child_process.rb:57:in `start'
    1597:  # ./rb/lib/selenium/server.rb:204:in `start'
    1598:  # //?/D:/a/selenium/selenium/rb/spec/integration/selenium/webdriver/spec_helper.rb:40:in `block (2 levels) in <top (required)>'
    1599:  Finished in 0.04648 seconds (files took 0.67157 seconds to load)
    1600:  0 examples, 0 failures, 1 error occurred outside of examples
    1601:  ================================================================================
    1602:  �[32m[2,898 / 2,910]�[0m 11 / 27 tests, �[31m�[1m11 failed�[0m;�[0m Testing //rb/spec/integration/selenium/webdriver:timeout-edge-remote; 49s local, disk-cache ... (4 actions, 1 running)
    1603:  �[32m[2,898 / 2,910]�[0m 11 / 27 tests, �[31m�[1m11 failed�[0m;�[0m Testing //rb/spec/integration/selenium/webdriver:timeout-edge-remote; 52s local, disk-cache ... (4 actions, 1 running)
    1604:  �[32m[2,898 / 2,910]�[0m 11 / 27 tests, �[31m�[1m11 failed�[0m;�[0m Testing //rb/spec/integration/selenium/webdriver:timeout-edge-remote; 55s local, disk-cache ... (4 actions, 2 running)
    1605:  �[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)
    1606:  ==================== Test output for //rb/spec/integration/selenium/webdriver:timeout-edge-remote:
    1607:  �[31m�[1mFAILED: �[0m//rb/spec/integration/selenium/webdriver:timeout-edge-remote (Summary)
    1608:  2024-04-17 08:32:32 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
    1609:  D:/_bazel/execroot/selenium/bazel-out/x64_windows-fastbuild/testlogs/rb/spec/integration/selenium/webdriver/timeout-edge-remote/test.log
    1610:  An error occurred in a `before(:suite)` hook.
    1611:  Failure/Error: @pid = Process.spawn(*@command, options)
    1612:  Errno::EACCES:
    1613:  Permission denied - java
    1614:  # ./rb/lib/selenium/webdriver/common/child_process.rb:57:in `spawn'
    1615:  # ./rb/lib/selenium/webdriver/common/child_process.rb:57:in `start'
    1616:  # ./rb/lib/selenium/server.rb:204:in `start'
    1617:  # //?/D:/a/selenium/selenium/rb/spec/integration/selenium/webdriver/spec_helper.rb:40:in `block (2 levels) in <top (required)>'
    1618:  Finished in 0.0436 seconds (files took 0.58065 seconds to load)
    1619:  0 examples, 0 failures, 1 error occurred outside of examples
    1620:  ================================================================================
    1621:  ==================== Test output for //rb/spec/integration/selenium/webdriver:timeout-edge-remote:
    1622:  2024-04-17 08:33:00 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
    1623:  An error occurred in a `before(:suite)` hook.
    1624:  Failure/Error: @pid = Process.spawn(*@command, options)
    1625:  Errno::EACCES:
    1626:  Permission denied - java
    1627:  # ./rb/lib/selenium/webdriver/common/child_process.rb:57:in `spawn'
    1628:  # ./rb/lib/selenium/webdriver/common/child_process.rb:57:in `start'
    1629:  # ./rb/lib/selenium/server.rb:204:in `start'
    1630:  # //?/D:/a/selenium/selenium/rb/spec/integration/selenium/webdriver/spec_helper.rb:40:in `block (2 levels) in <top (required)>'
    1631:  Finished in 0.04522 seconds (files took 0.71724 seconds to load)
    1632:  0 examples, 0 failures, 1 error occurred outside of examples
    1633:  ================================================================================
    1634:  ==================== Test output for //rb/spec/integration/selenium/webdriver:timeout-edge-remote:
    1635:  2024-04-17 08:33:21 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
    1636:  An error occurred in a `before(:suite)` hook.
    1637:  Failure/Error: @pid = Process.spawn(*@command, options)
    1638:  Errno::EACCES:
    1639:  Permission denied - java
    1640:  # ./rb/lib/selenium/webdriver/common/child_process.rb:57:in `spawn'
    1641:  # ./rb/lib/selenium/webdriver/common/child_process.rb:57:in `start'
    1642:  # ./rb/lib/selenium/server.rb:204:in `start'
    1643:  # //?/D:/a/selenium/selenium/rb/spec/integration/selenium/webdriver/spec_helper.rb:40:in `block (2 levels) in <top (required)>'
    1644:  Finished in 0.05621 seconds (files took 0.71498 seconds to load)
    1645:  0 examples, 0 failures, 1 error occurred outside of examples
    1646:  ================================================================================
    1647:  D:/_bazel/execroot/selenium/bazel-out/x64_windows-fastbuild/testlogs/rb/spec/integration/selenium/webdriver/timeout-edge-remote/test_attempts/attempt_1.log
    1648:  D:/_bazel/execroot/selenium/bazel-out/x64_windows-fastbuild/testlogs/rb/spec/integration/selenium/webdriver/timeout-edge-remote/test_attempts/attempt_2.log
    1649:  �[32mINFO: �[0mFrom Testing //rb/spec/integration/selenium/webdriver:timeout-edge-remote:
    1650:  �[32m[2,899 / 2,910]�[0m 12 / 27 tests, �[31m�[1m12 failed�[0m;�[0m Testing //rb/spec/integration/selenium/webdriver/edge:profile-edge-remote; 7s disk-cache ... (4 actions, 1 running)
    1651:  �[32m[2,899 / 2,910]�[0m 12 / 27 tests, �[31m�[1m12 failed�[0m;�[0m [Sched] Testing //rb/spec/integration/selenium/webdriver/remote:element-edge-remote; 9s ... (4 actions, 1 running)
    1652:  �[32m[2,899 / 2,910]�[0m 12 / 27 tests, �[31m�[1m12 failed�[0m;�[0m Testing //rb/spec/integration/selenium/webdriver:select-edge-remote; 7s local, disk-cache ... (4 actions, 2 running)
    1653:  �[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)
    1654:  �[32m[2,899 / 2,910]�[0m 12 / 27 tests, �[31m�[1m12 failed�[0m;�[0m Testing //rb/spec/integration/selenium/webdriver:select-edge-remote; 9s local, disk-cache ... (4 actions, 2 running)
    1655:  �[32m[2,899 / 2,910]�[0m 12 / 27 tests, �[31m�[1m12 failed�[0m;�[0m Testing //rb/spec/integration/selenium/webdriver:select-edge-remote; 11s local, disk-cache ... (4 actions, 2 running)
    1656:  �[32m[2,899 / 2,910]�[0m 12 / 27 tests, �[31m�[1m12 failed�[0m;�[0m Testing //rb/spec/integration/selenium/webdriver:select-edge-remote; 12s local, disk-cache ... (4 actions, 2 running)
    1657:  �[32m[2,899 / 2,910]�[0m 12 / 27 tests, �[31m�[1m12 failed�[0m;�[0m Testing //rb/spec/integration/selenium/webdriver:select-edge-remote; 14s local, disk-cache ... (4 actions, 3 running)
    1658:  �[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)
    1659:  �[32m[2,899 / 2,910]�[0m 12 / 27 tests, �[31m�[1m12 failed�[0m;�[0m Testing //rb/spec/integration/selenium/webdriver:select-edge-remote; 16s local, disk-cache ... (4 actions, 3 running)
    1660:  �[32m[2,899 / 2,910]�[0m 12 / 27 tests, �[31m�[1m12 failed�[0m;�[0m Testing //rb/spec/integration/selenium/webdriver:select-edge-remote; 21s local, disk-cache ... (4 actions, 3 running)
    1661:  �[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)
    1662:  �[32m[2,899 / 2,910]�[0m 12 / 27 tests, �[31m�[1m12 failed�[0m;�[0m Testing //rb/spec/integration/selenium/webdriver:select-edge-remote; 23s local, disk-cache ... (4 actions, 3 running)
    1663:  �[32m[2,899 / 2,910]�[0m 12 / 27 tests, �[31m�[1m12 failed�[0m;�[0m Testing //rb/spec/integration/selenium/webdriver:select-edge-remote; 28s local, disk-cache ... (4 actions running)
    1664:  �[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)
    1665:  �[32m[2,899 / 2,910]�[0m 12 / 27 tests, �[31m�[1m12 failed�[0m;�[0m Testing //rb/spec/integration/selenium/webdriver:select-edge-remote; 29s local, disk-cache ... (4 actions running)
    1666:  �[32m[2,899 / 2,910]�[0m 12 / 27 tests, �[31m�[1m12 failed�[0m;�[0m Testing //rb/spec/integration/selenium/webdriver:select-edge-remote; 35s local, disk-cache ... (4 actions running)
    1667:  �[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)
    1668:  �[32m[2,899 / 2,910]�[0m 12 / 27 tests, �[31m�[1m12 failed�[0m;�[0m Testing //rb/spec/integration/selenium/webdriver:select-edge-remote; 36s local, disk-cache ... (4 actions running)
    1669:  �[32m[2,899 / 2,910]�[0m 12 / 27 tests, �[31m�[1m12 failed�[0m;�[0m Testing //rb/spec/integration/selenium/webdriver:select-edge-remote; 41s local, disk-cache ... (4 actions running)
    1670:  �[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)
    1671:  �[32m[2,899 / 2,910]�[0m 12 / 27 tests, �[31m�[1m12 failed�[0m;�[0m Testing //rb/spec/integration/selenium/webdriver:select-edge-remote; 42s local, disk-cache ... (4 actions running)
    1672:  �[32m[2,899 / 2,910]�[0m 12 / 27 tests, �[31m�[1m12 failed�[0m;�[0m Testing //rb/spec/integration/selenium/webdriver:select-edge-remote; 43s local, disk-cache ... (4 actions running)
    1673:  �[32m[2,899 / 2,910]�[0m 12 / 27 tests, �[31m�[1m12 failed�[0m;�[0m Testing //rb/spec/integration/selenium/webdriver:select-edge-remote; 48s local, disk-cache ... (4 actions running)
    1674:  �[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)
    1675:  �[32m[2,899 / 2,910]�[0m 12 / 27 tests, �[31m�[1m12 failed�[0m;�[0m Testing //rb/spec/integration/selenium/webdriver:select-edge-remote; 50s local, disk-cache ... (4 actions running)
    1676:  �[32m[2,899 / 2,910]�[0m 12 / 27 tests, �[31m�[1m12 failed�[0m;�[0m Testing //rb/spec/integration/selenium/webdriver:select-edge-remote; 55s local, disk-cache ... (4 actions running)
    1677:  �[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)
    1678:  �[31m�[1mFAILED: �[0m//rb/spec/integration/selenium/webdriver:select-edge-remote (Summary)
    1679:  D:/_bazel/execroot/selenium/bazel-out/x64_windows-fastbuild/testlogs/rb/spec/integration/selenium/webdriver/select-edge-remote/test.log
    1680:  D:/_bazel/execroot/selenium/bazel-out/x64_windows-fastbuild/testlogs/rb/spec/integration/selenium/webdriver/select-edge-remote/test_attempts/attempt_1.log
    1681:  ==================== Test output for //rb/spec/integration/selenium/webdriver:select-edge-remote:
    1682:  D:/_bazel/execroot/selenium/bazel-out/x64_windows-fastbuild/testlogs/rb/spec/integration/selenium/webdriver/select-edge-remote/test_attempts/attempt_2.log
    1683:  2024-04-17 08:33:28 INFO Selenium Server Location: D:/_bazel/execroot/selenium/bazel-out/x64_windows-fastbuild/bin/rb/spec/integration/selenium/webdriver/select-edge-remote.cmd.runfiles/selenium/java/src/org/openqa/selenium/grid/selenium_server_deploy.jar
    1684:  An error occurred in a `before(:suite)` hook.
    1685:  �[32mINFO: �[0mFrom Testing //rb/spec/integration/selenium/webdriver:select-edge-remote:
    1686:  Failure/Error: @pid = Process.spawn(*@command, options)
    1687:  Errno::EACCES:
    1688:  Permission denied - java
    1689:  # ./rb/lib/selenium/webdriver/common/child_process.rb:57:in `spawn'
    1690:  # ./rb/lib/selenium/webdriver/common/child_process.rb:57:in `start'
    1691:  # ./rb/lib/selenium/server.rb:204:in `start'
    1692:  # //?/D:/a/selenium/selenium/rb/spec/integration/selenium/webdriver/spec_helper.rb:40:in `block (2 levels) in <top (required)>'
    1693:  Finished in 0.05959 seconds (files took 0.78611 seconds to load)
    1694:  0 examples, 0 failures, 1 error occurred outside of examples
    1695:  ================================================================================
    1696:  ==================== Test output for //rb/spec/integration/selenium/webdriver:select-edge-remote:
    1697:  2024-04-17 08:33:49 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
    1698:  An error occurred in a `before(:suite)` hook.
    1699:  Failure/Error: @pid = Process.spawn(*@command, options)
    1700:  Errno::EACCES:
    1701:  Permission denied - java
    1702:  # ./rb/lib/selenium/webdriver/common/child_process.rb:57:in `spawn'
    1703:  # ./rb/lib/selenium/webdriver/common/child_process.rb:57:in `start'
    1704:  # ./rb/lib/selenium/server.rb:204:in `start'
    1705:  # //?/D:/a/selenium/selenium/rb/spec/integration/selenium/webdriver/spec_helper.rb:40:in `block (2 levels) in <top (required)>'
    1706:  Finished in 0.04453 seconds (files took 0.62645 seconds to load)
    1707:  0 examples, 0 failures, 1 error occurred outside of examples
    1708:  ================================================================================
    1709:  ==================== Test output for //rb/spec/integration/selenium/webdriver:select-edge-remote:
    1710:  2024-04-17 08:34:16 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
    1711:  An error occurred in a `before(:suite)` hook.
    1712:  Failure/Error: @pid = Process.spawn(*@command, options)
    1713:  Errno::EACCES:
    1714:  Permission denied - java
    1715:  # ./rb/lib/selenium/webdriver/common/child_process.rb:57:in `spawn'
    1716:  # ./rb/lib/selenium/webdriver/common/child_process.rb:57:in `start'
    1717:  # ./rb/lib/selenium/server.rb:204:in `start'
    1718:  # //?/D:/a/selenium/selenium/rb/spec/integration/selenium/webdriver/spec_helper.rb:40:in `block (2 levels) in <top (required)>'
    1719:  Finished in 0.04638 seconds (files took 0.60639 seconds to load)
    1720:  0 examples, 0 failures, 1 error occurred outside of examples
    1721:  ================================================================================
    1722:  �[32m[2,900 / 2,910]�[0m 13 / 27 tests, �[31m�[1m13 failed�[0m;�[0m Testing //rb/spec/integration/selenium/webdriver/remote:element-edge-remote; 48s local, disk-cache ... (4 actions, 3 running)
    1723:  �[32m[2,900 / 2,910]�[0m 13 / 27 tests, �[31m�[1m13 failed�[0m;�[0m Testing //rb/spec/integration/selenium/webdriver/remote:element-edge-remote; 54s local, disk-cache ... (4 actions, 3 running)
    1724:  �[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)
    1725:  �[32m[2,900 / 2,910]�[0m 13 / 27 tests, �[31m�[1m13 failed�[0m;�[0m Testing //rb/spec/integration/selenium/webdriver/remote:element-edge-remote; 55s local, disk-cache ... (4 actions, 3 running)
    1726:  �[32m[2,900 / 2,910]�[0m 13 / 27 tests, �[31m�[1m13 failed�[0m;�[0m Testing //rb/spec/integration/selenium/webdriver/remote:element-edge-remote; 58s local, disk-cache ... (4 actions, 3 running)
    1727:  �[32m[2,900 / 2,910]�[0m 13 / 27 tests, �[31m�[1m13 failed�[0m;�[0m Testing //rb/spec/integration/selenium/webdriver/remote:element-edge-remote; 59s local, disk-cache ... (4 actions, 3 running)
    1728:  �[32m[2,900 / 2,910]�[0m 13 / 27 tests, �[31m�[1m13 failed�[0m;�[0m Testing //rb/spec/integration/selenium/webdriver/remote:element-edge-remote; 62s local, disk-cache ... (4 actions, 3 running)
    1729:  �[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)
    1730:  �[31m�[1mFAILED: �[0m//rb/spec/integration/selenium/webdriver/remote:element-edge-remote (Summary)
    1731:  D:/_bazel/execroot/selenium/bazel-out/x64_windows-fastbuild/testlogs/rb/spec/integration/selenium/webdriver/remote/element-edge-remote/test.log
    1732:  D:/_bazel/execroot/selenium/bazel-out/x64_windows-fastbuild/testlogs/rb/spec/integration/selenium/webdriver/remote/element-edge-remote/test_attempts/attempt_1.log
    1733:  D:/_bazel/execroot/selenium/bazel-out/x64_windows-fastbuild/testlogs/rb/spec/integration/selenium/webdriver/remote/element-edge-remote/test_attempts/attempt_2.log
    1734:  �[32mINFO: �[0mFrom Testing //rb/spec/integration/selenium/webdriver/remote:element-edge-remote:
    1735:  ==================== Test output for //rb/spec/integration/selenium/webdriver/remote:element-edge-remote:
    1736:  2024-04-17 08:33:35 INFO Selenium Server Location: D:/_bazel/execroot/selenium/bazel-out/x64_windows-fastbuild/bin/rb/spec/integration/selenium/webdriver/remote/element-edge-remote.cmd.runfiles/selenium/java/src/org/openqa/selenium/grid/selenium_server_deploy.jar
    1737:  An error occurred in a `before(:suite)` hook.
    1738:  Failure/Error: @pid = Process.spawn(*@command, options)
    1739:  Errno::EACCES:
    1740:  Permission denied - java
    1741:  # ./rb/lib/selenium/webdriver/common/child_process.rb:57:in `spawn'
    1742:  # ./rb/lib/selenium/webdriver/common/child_process.rb:57:in `start'
    1743:  # ./rb/lib/selenium/server.rb:204:in `start'
    1744:  # //?/D:/a/selenium/selenium/rb/spec/integration/selenium/webdriver/spec_helper.rb:40:in `block (2 levels) in <top (required)>'
    1745:  Finished in 0.04509 seconds (files took 0.62936 seconds to load)
    1746:  0 examples, 0 failures, 1 error occurred outside of examples
    1747:  ================================================================================
    1748:  ==================== Test output for //rb/spec/integration/selenium/webdriver/remote:element-edge-remote:
    1749:  2024-04-17 08:34:03 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
    1750:  An error occurred in a `before(:suite)` hook.
    1751:  Failure/Error: @pid = Process.spawn(*@command, options)
    1752:  Errno::EACCES:
    1753:  Permission denied - java
    1754:  # ./rb/lib/selenium/webdriver/common/child_process.rb:57:in `spawn'
    1755:  # ./rb/lib/selenium/webdriver/common/child_process.rb:57:in `start'
    1756:  # ./rb/lib/selenium/server.rb:204:in `start'
    1757:  # //?/D:/a/selenium/selenium/rb/spec/integration/selenium/webdriver/spec_helper.rb:40:in `block (2 levels) in <top (required)>'
    1758:  Finished in 0.04465 seconds (files took 0.58702 seconds to load)
    1759:  0 examples, 0 failures, 1 error occurred outside of examples
    1760:  ================================================================================
    1761:  ==================== Test output for //rb/spec/integration/selenium/webdriver/remote:element-edge-remote:
    1762:  2024-04-17 08:34:30 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
    1763:  An error occurred in a `before(:suite)` hook.
    1764:  Failure/Error: @pid = Process.spawn(*@command, options)
    1765:  Errno::EACCES:
    1766:  Permission denied - java
    1767:  # ./rb/lib/selenium/webdriver/common/child_process.rb:57:in `spawn'
    1768:  # ./rb/lib/selenium/webdriver/common/child_process.rb:57:in `start'
    1769:  # ./rb/lib/selenium/server.rb:204:in `start'
    1770:  # //?/D:/a/selenium/selenium/rb/spec/integration/selenium/webdriver/spec_helper.rb:40:in `block (2 levels) in <top (required)>'
    1771:  Finished in 0.04791 seconds (files took 0.70537 seconds to load)
    1772:  0 examples, 0 failures, 1 error occurred outside of examples
    1773:  ================================================================================
    1774:  �[32m[2,901 / 2,910]�[0m 14 / 27 tests, �[31m�[1m14 failed�[0m;�[0m Testing //rb/spec/integration/selenium/webdriver/edge:profile-edge-remote; 56s local, disk-cache ... (4 actions, 2 running)
    1775:  �[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)
    1776:  �[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)
    1777:  ==================== Test output for //rb/spec/integration/selenium/webdriver/edge:profile-edge-remote:
    1778:  2024-04-17 08:33:42 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
    1779:  �[31m�[1mFAILED: �[0m//rb/spec/integration/selenium/webdriver/edge:profile-edge-remote (Summary)
    1780:  An error occurred in a `before(:suite)` hook.
    1781:  Failure/Error: @pid = Process.spawn(*@command, options)
    1782:  Errno::EACCES:
    1783:  Permission denied - java
    1784:  # ./rb/lib/selenium/webdriver/common/child_process.rb:57:in `spawn'
    1785:  # ./rb/lib/selenium/webdriver/common/child_process.rb:57:in `start'
    1786:  # ./rb/lib/selenium/server.rb:204:in `start'
    1787:  # //?/D:/a/selenium/selenium/rb/spec/integration/selenium/webdriver/spec_helper.rb:40:in `block (2 levels) in <top (required)>'
    1788:  Finished in 0.05009 seconds (files took 0.71674 seconds to load)
    1789:  0 examples, 0 failures, 1 error occurred outside of examples
    1790:  ================================================================================
    1791:  ==================== Test output for //rb/spec/integration/selenium/webdriver/edge:profile-edge-remote:
    1792:  2024-04-17 08:34:09 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
    1793:  An error occurred in a `before(:suite)` hook.
    1794:  Failure/Error: @pid = Process.spawn(*@command, options)
    1795:  Errno::EACCES:
    1796:  Permission denied - java
    1797:  # ./rb/lib/selenium/webdriver/common/child_process.rb:57:in `spawn'
    1798:  # ./rb/lib/selenium/webdriver/common/child_process.rb:57:in `start'
    1799:  # ./rb/lib/selenium/server.rb:204:in `start'
    1800:  # //?/D:/a/selenium/selenium/rb/spec/integration/selenium/webdriver/spec_helper.rb:40:in `block (2 levels) in <top (required)>'
    1801:  Finished in 0.04706 seconds (files took 0.64852 seconds to load)
    1802:  0 examples, 0 failures, 1 error occurred outside of examples
    1803:  ================================================================================
    1804:  ==================== Test output for //rb/spec/integration/selenium/webdriver/edge:profile-edge-remote:
    1805:  2024-04-17 08:34:37 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
    1806:  An error occurred in a `before(:suite)` hook.
    1807:  Failure/Error: @pid = Process.spawn(*@command, options)
    1808:  Errno::EACCES:
    1809:  Permission denied - java
    1810:  # ./rb/lib/selenium/webdriver/common/child_process.rb:57:in `spawn'
    1811:  # ./rb/lib/selenium/webdriver/common/child_process.rb:57:in `start'
    1812:  # ./rb/lib/selenium/server.rb:204:in `start'
    1813:  # //?/D:/a/selenium/selenium/rb/spec/integration/selenium/webdriver/spec_helper.rb:40:in `block (2 levels) in <top (required)>'
    1814:  Finished in 0.05179 seconds (files took 0.66264 seconds to load)
    1815:  0 examples, 0 failures, 1 error occurred outside of examples
    1816:  ================================================================================
    1817:  D:/_bazel/execroot/selenium/bazel-out/x64_windows-fastbuild/testlogs/rb/spec/integration/selenium/webdriver/edge/profile-edge-remote/test.log
    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:  �[32m[2,902 / 2,910]�[0m 15 / 27 tests, �[31m�[1m15 failed�[0m;�[0m Testing //rb/spec/integration/selenium/webdriver:error-edge-remote; 49s local, disk-cache ... (4 actions, 1 running)
    1822:  �[32m[2,902 / 2,910]�[0m 15 / 27 tests, �[31m�[1m15 failed�[0m;�[0m Testing //rb/spec/integration/selenium/webdriver:error-edge-remote; 52s local, disk-cache ... (4 actions, 1 running)
    1823:  �[32m[2,902 / 2,910]�[0m 15 / 27 tests, �[31m�[1m15 failed�[0m;�[0m Testing //rb/spec/integration/selenium/webdriver:error-edge-remote; 55s local, disk-cache ... (4 actions, 2 running)
    1824:  �[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)
    1825:  ==================== Test output for //rb/spec/integration/selenium/webdriver:error-edge-remote:
    1826:  2024-04-17 08:33:56 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
    1827:  �[31m�[1mFAILED: �[0m//rb/spec/integration/selenium/webdriver:error-edge-remote (Summary)
    1828:  D:/_bazel/execroot/selenium/bazel-out/x64_windows-fastbuild/testlogs/rb/spec/integration/selenium/webdriver/error-edge-remote/test.log
    1829:  An error occurred in a `before(:suite)` hook.
    1830:  D:/_bazel/execroot/selenium/bazel-out/x64_windows-fastbuild/testlogs/rb/spec/integration/selenium/webdriver/error-edge-remote/test_attempts/attempt_1.log
    1831:  Failure/Error: @pid = Process.spawn(*@command, options)
    1832:  D:/_bazel/execroot/selenium/bazel-out/x64_windows-fastbuild/testlogs/rb/spec/integration/selenium/webdriver/error-edge-remote/test_attempts/attempt_2.log
    1833:  �[32mINFO: �[0mFrom Testing //rb/spec/integration/selenium/webdriver:error-edge-remote:
    1834:  Errno::EACCES:
    1835:  Permission denied - java
    1836:  # ./rb/lib/selenium/webdriver/common/child_process.rb:57:in `spawn'
    1837:  # ./rb/lib/selenium/webdriver/common/child_process.rb:57:in `start'
    1838:  # ./rb/lib/selenium/server.rb:204:in `start'
    1839:  # //?/D:/a/selenium/selenium/rb/spec/integration/selenium/webdriver/spec_helper.rb:40:in `block (2 levels) in <top (required)>'
    1840:  Finished in 0.04441 seconds (files took 0.58637 seconds to load)
    1841:  0 examples, 0 failures, 1 error occurred outside of examples
    1842:  ================================================================================
    1843:  ==================== Test output for //rb/spec/integration/selenium/webdriver:error-edge-remote:
    1844:  2024-04-17 08:34:23 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
    1845:  An error occurred in a `before(:suite)` hook.
    1846:  Failure/Error: @pid = Process.spawn(*@command, options)
    1847:  Errno::EACCES:
    1848:  Permission denied - java
    1849:  # ./rb/lib/selenium/webdriver/common/child_process.rb:57:in `spawn'
    1850:  # ./rb/lib/selenium/webdriver/common/child_process.rb:57:in `start'
    1851:  # ./rb/lib/selenium/server.rb:204:in `start'
    1852:  # //?/D:/a/selenium/selenium/rb/spec/integration/selenium/webdriver/spec_helper.rb:40:in `block (2 levels) in <top (required)>'
    1853:  Finished in 0.04609 seconds (files took 0.7222 seconds to load)
    1854:  0 examples, 0 failures, 1 error occurred outside of examples
    1855:  ================================================================================
    1856:  ==================== Test output for //rb/spec/integration/selenium/webdriver:error-edge-remote:
    1857:  2024-04-17 08:34:44 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
    1858:  An error occurred in a `before(:suite)` hook.
    1859:  Failure/Error: @pid = Process.spawn(*@command, options)
    1860:  Errno::EACCES:
    1861:  Permission denied - java
    1862:  # ./rb/lib/selenium/webdriver/common/child_process.rb:57:in `spawn'
    1863:  # ./rb/lib/selenium/webdriver/common/child_process.rb:57:in `start'
    1864:  # ./rb/lib/selenium/server.rb:204:in `start'
    1865:  # //?/D:/a/selenium/selenium/rb/spec/integration/selenium/webdriver/spec_helper.rb:40:in `block (2 levels) in <top (required)>'
    1866:  Finished in 0.05425 seconds (files took 0.91135 seconds to load)
    1867:  0 examples, 0 failures, 1 error occurred outside of examples
    1868:  ================================================================================
    1869:  �[32m[2,903 / 2,910]�[0m 16 / 27 tests, �[31m�[1m16 failed�[0m;�[0m Testing //rb/spec/integration/selenium/webdriver:action_builder-edge-remote; 8s disk-cache ... (4 actions, 1 running)
    1870:  �[32m[2,903 / 2,910]�[0m 16 / 27 tests, �[31m�[1m16 failed�[0m;�[0m [Sched] Testing //rb/spec/integration/selenium/webdriver:window-edge-remote; 9s ... (4 actions, 1 running)
    1871:  �[32m[2,903 / 2,910]�[0m 16 / 27 tests, �[31m�[1m16 failed�[0m;�[0m Testing //rb/spec/integration/selenium/webdriver/edge:driver-edge-remote; 7s local, disk-cache ... (4 actions, 2 running)
    1872:  �[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)
    1873:  �[32m[2,903 / 2,910]�[0m 16 / 27 tests, �[31m�[1m16 failed�[0m;�[0m Testing //rb/spec/integration/selenium/webdriver/edge:driver-edge-remote; 8s local, disk-cache ... (4 actions, 2 running)
    1874:  �[32m[2,903 / 2,910]�[0m 16 / 27 tests, �[31m�[1m16 failed�[0m;�[0m Testing //rb/spec/integration/selenium/webdriver/edge:driver-edge-remote; 11s local, disk-cache ... (4 actions, 2 running)
    1875:  �[32m[2,903 / 2,910]�[0m 16 / 27 tests, �[31m�[1m16 failed�[0m;�[0m Testing //rb/spec/integration/selenium/webdriver/edge:driver-edge-remote; 13s local, disk-cache ... (4 actions, 2 running)
    1876:  �[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)
    1877:  �[32m[2,903 / 2,910]�[0m 16 / 27 tests, �[31m�[1m16 failed�[0m;�[0m Testing //rb/spec/integration/selenium/webdriver/edge:driver-edge-remote; 14s local, disk-cache ... (4 actions, 3 running)
    1878:  �[32m[2,903 / 2,910]�[0m 16 / 27 tests, �[31m�[1m16 failed�[0m;�[0m Testing //rb/spec/integration/selenium/webdriver/edge:driver-edge-remote; 15s local, disk-cache ... (4 actions, 3 running)
    1879:  �[32m[2,903 / 2,910]�[0m 16 / 27 tests, �[31m�[1m16 failed�[0m;�[0m Testing //rb/spec/integration/selenium/webdriver/edge:driver-edge-remote; 21s local, disk-cache ... (4 actions, 3 running)
    1880:  �[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)
    1881:  �[32m[2,903 / 2,910]�[0m 16 / 27 tests, �[31m�[1m16 failed�[0m;�[0m Testing //rb/spec/integration/selenium/webdriver/edge:driver-edge-remote; 22s local, disk-cache ... (4 actions, 3 running)
    1882:  �[32m[2,903 / 2,910]�[0m 16 / 27 tests, �[31m�[1m16 failed�[0m;�[0m Testing //rb/spec/integration/selenium/webdriver/edge:driver-edge-remote; 28s local, disk-cache ... (4 actions running)
    1883:  �[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)
    1884:  �[32m[2,903 / 2,910]�[0m 16 / 27 tests, �[31m�[1m16 failed�[0m;�[0m Testing //rb/spec/integration/selenium/webdriver/edge:driver-edge-remote; 29s local, disk-cache ... (4 actions running)
    1885:  �[32m[2,903 / 2,910]�[0m 16 / 27 tests, �[31m�[1m16 failed�[0m;�[0m Testing //rb/spec/integration/selenium/webdriver/edge:driver-edge-remote; 34s local, disk-cache ... (4 actions running)
    1886:  �[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)
    1887:  �[32m[2,903 / 2,910]�[0m 16 / 27 tests, �[31m�[1m16 failed�[0m;�[0m Testing //rb/spec/integration/selenium/webdriver/edge:driver-edge-remote; 36s local, disk-cache ... (4 actions running)
    1888:  �[32m[2,903 / 2,910]�[0m 16 / 27 tests, �[31m�[1m16 failed�[0m;�[0m Testing //rb/spec/integration/selenium/webdriver/edge:driver-edge-remote; 41s local, disk-cache ... (4 actions running)
    1889:  �[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)
    1890:  �[32m[2,903 / 2,910]�[0m 16 / 27 tests, �[31m�[1m16 failed�[0m;�[0m Testing //rb/spec/integration/selenium/webdriver/edge:driver-edge-remote; 42s local, disk-cache ... (4 actions running)
    1891:  �[32m[2,903 / 2,910]�[0m 16 / 27 tests, �[31m�[1m16 failed�[0m;�[0m Testing //rb/spec/integration/selenium/webdriver/edge:driver-edge-remote; 48s local, disk-cache ... (4 actions running)
    1892:  �[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)
    1893:  �[32m[2,903 / 2,910]�[0m 16 / 27 tests, �[31m�[1m16 failed�[0m;�[0m Testing //rb/spec/integration/selenium/webdriver/edge:driver-edge-remote; 49s local, disk-cache ... (4 actions running)
    1894:  �[32m[2,903 / 2,910]�[0m 16 / 27 tests, �[31m�[1m16 failed�[0m;�[0m Testing //rb/spec/integration/selenium/webdriver/edge:driver-edge-remote; 55s local, disk-cache ... (4 actions running)
    1895:  �[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)
    1896:  �[31m�[1mFAILED: �[0m//rb/spec/integration/selenium/webdriver/edge:driver-edge-remote (Summary)
    1897:  D:/_bazel/execroot/selenium/bazel-out/x64_windows-fastbuild/testlogs/rb/spec/integration/selenium/webdriver/edge/driver-edge-remote/test.log
    1898:  D:/_bazel/execroot/selenium/bazel-out/x64_windows-fastbuild/testlogs/rb/spec/integration/selenium/webdriver/edge/driver-edge-remote/test_attempts/attempt_1.log
    1899:  D:/_bazel/execroot/selenium/bazel-out/x64_windows-fastbuild/testlogs/rb/spec/integration/selenium/webdriver/edge/driver-edge-remote/test_attempts/attempt_2.log
    1900:  �[32mINFO: �[0mFrom Testing //rb/spec/integration/selenium/webdriver/edge:driver-edge-remote:
    1901:  ==================== Test output for //rb/spec/integration/selenium/webdriver/edge:driver-edge-remote:
    1902:  2024-04-17 08:34:52 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
    1903:  An error occurred in a `before(:suite)` hook.
    1904:  Failure/Error: @pid = Process.spawn(*@command, options)
    1905:  Errno::EACCES:
    1906:  Permission denied - java
    1907:  # ./rb/lib/selenium/webdriver/common/child_process.rb:57:in `spawn'
    1908:  # ./rb/lib/selenium/webdriver/common/child_process.rb:57:in `start'
    1909:  # ./rb/lib/selenium/server.rb:204:in `start'
    1910:  # //?/D:/a/selenium/selenium/rb/spec/integration/selenium/webdriver/spec_helper.rb:40:in `block (2 levels) in <top (required)>'
    1911:  Finished in 0.05246 seconds (files took 0.80328 seconds to load)
    1912:  0 examples, 0 failures, 1 error occurred outside of examples
    1913:  ================================================================================
    1914:  ==================== Test output for //rb/spec/integration/selenium/webdriver/edge:driver-edge-remote:
    1915:  2024-04-17 08:35:13 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
    1916:  An error occurred in a `before(:suite)` hook.
    1917:  Failure/Error: @pid = Process.spawn(*@command, options)
    1918:  Errno::EACCES:
    1919:  Permission denied - java
    1920:  # ./rb/lib/selenium/webdriver/common/child_process.rb:57:in `spawn'
    1921:  # ./rb/lib/selenium/webdriver/common/child_process.rb:57:in `start'
    1922:  # ./rb/lib/selenium/server.rb:204:in `start'
    1923:  # //?/D:/a/selenium/selenium/rb/spec/integration/selenium/webdriver/spec_helper.rb:40:in `block (2 levels) in <top (required)>'
    1924:  Finished in 0.04925 seconds (files took 0.72153 seconds to load)
    1925:  0 examples, 0 failures, 1 error occurred outside of examples
    1926:  ================================================================================
    1927:  ==================== Test output for //rb/spec/integration/selenium/webdriver/edge:driver-edge-remote:
    1928:  2024-04-17 08:35:40 INFO Selenium Server Location: D:/_bazel/execroot/selenium/bazel-out/x64_windows-fastbuild/bin/rb/spec/integration/selenium/webdriver/edge/driver-edge-remote.cmd.runfiles/selenium/java/src/org/openqa/selenium/grid/selenium_server_deploy.jar
    1929:  An error occurred in a `before(:suite)` hook.
    1930:  Failure/Error: @pid = Process.spawn(*@command, options)
    1931:  Errno::EACCES:
    1932:  Permission denied - java
    1933:  # ./rb/lib/selenium/webdriver/common/child_process.rb:57:in `spawn'
    1934:  # ./rb/lib/selenium/webdriver/common/child_process.rb:57:in `start'
    1935:  # ./rb/lib/selenium/server.rb:204:in `start'
    1936:  # //?/D:/a/selenium/selenium/rb/spec/integration/selenium/webdriver/spec_helper.rb:40:in `block (2 levels) in <top (required)>'
    1937:  Finished in 0.04567 seconds (files took 0.63596 seconds to load)
    1938:  0 examples, 0 failures, 1 error occurred outside of examples
    1939:  ================================================================================
    1940:  �[32m[2,904 / 2,910]�[0m 17 / 27 tests, �[31m�[1m17 failed�[0m;�[0m Testing //rb/spec/integration/selenium/webdriver:window-edge-remote; 49s local, disk-cache ... (4 actions, 3 running)
    1941:  �[32m[2,904 / 2,910]�[0m 17 / 27 tests, �[31m�[1m17 failed�[0m;�[0m Testing //rb/spec/integration/selenium/webdriver:window-edge-remote; 54s local, disk-cache ... (4 actions, 3 running)
    1942:  �[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)
    1943:  �[32m[2,904 / 2,910]�[0m 17 / 27 tests, �[31m�[1m17 failed�[0m;�[0m Testing //rb/spec/integration/selenium/webdriver:window-edge-remote; 56s local, disk-cache ... (4 actions, 3 running)
    1944:  �[32m[2,904 / 2,910]�[0m 17 / 27 tests, �[31m�[1m17 failed�[0m;�[0m Testing //rb/spec/integration/selenium/webdriver:window-edge-remote; 57s local, disk-cache ... (4 actions, 3 running)
    1945:  �[32m[2,904 / 2,910]�[0m 17 / 27 tests, �[31m�[1m17 failed�[0m;�[0m Testing //rb/spec/integration/selenium/webdriver:window-edge-remote; 59s local, disk-cache ... (4 actions, 3 running)
    1946:  �[32m[2,904 / 2,910]�[0m 17 / 27 tests, �[31m�[1m17 failed�[0m;�[0m Testing //rb/spec/integration/selenium/webdriver:window-edge-remote; 61s local, disk-cache ... (4 actions, 3 running)
    1947:  �[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)
    1948:  �[31m�[1mFAILED: �[0m//rb/spec/integration/selenium/webdriver:window-edge-remote (Summary)
    1949:  ==================== Test output for //rb/spec/integration/selenium/webdriver:window-edge-remote:
    1950:  D:/_bazel/execroot/selenium/bazel-out/x64_windows-fastbuild/testlogs/rb/spec/integration/selenium/webdriver/window-edge-remote/test.log
    1951:  2024-04-17 08:34:59 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
    1952:  D:/_bazel/execroot/selenium/bazel-out/x64_windows-fastbuild/testlogs/rb/spec/integration/selenium/webdriver/window-edge-remote/test_attempts/attempt_1.log
    1953:  D:/_bazel/execroot/selenium/bazel-out/x64_windows-fastbuild/testlogs/rb/spec/integration/selenium/webdriver/window-edge-remote/test_attempts/attempt_2.log
    1954:  An error occurred in a `before(:suite)` hook.
    1955:  �[32mINFO: �[0mFrom Testing //rb/spec/integration/selenium/webdriver:window-edge-remote:
    1956:  Failure/Error: @pid = Process.spawn(*@command, options)
    1957:  Errno::EACCES:
    1958:  Permission denied - java
    1959:  # ./rb/lib/selenium/webdriver/common/child_process.rb:57:in `spawn'
    1960:  # ./rb/lib/selenium/webdriver/common/child_process.rb:57:in `start'
    1961:  # ./rb/lib/selenium/server.rb:204:in `start'
    1962:  # //?/D:/a/selenium/selenium/rb/spec/integration/selenium/webdriver/spec_helper.rb:40:in `block (2 levels) in <top (required)>'
    1963:  Finished in 0.0509 seconds (files took 0.62314 seconds to load)
    1964:  0 examples, 0 failures, 1 error occurred outside of examples
    1965:  ================================================================================
    1966:  ==================== Test output for //rb/spec/integration/selenium/webdriver:window-edge-remote:
    1967:  2024-04-17 08:35:26 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
    1968:  An error occurred in a `before(:suite)` hook.
    1969:  Failure/Error: @pid = Process.spawn(*@command, options)
    1970:  Errno::EACCES:
    1971:  Permission denied - java
    1972:  # ./rb/lib/selenium/webdriver/common/child_process.rb:57:in `spawn'
    1973:  # ./rb/lib/selenium/webdriver/common/child_process.rb:57:in `start'
    1974:  # ./rb/lib/selenium/server.rb:204:in `start'
    1975:  # //?/D:/a/selenium/selenium/rb/spec/integration/selenium/webdriver/spec_helper.rb:40:in `block (2 levels) in <top (required)>'
    1976:  Finished in 0.04382 seconds (files took 0.58377 seconds to load)
    1977:  0 examples, 0 failures, 1 error occurred outside of examples
    1978:  ================================================================================
    1979:  ==================== Test output for //rb/spec/integration/selenium/webdriver:window-edge-remote:
    1980:  2024-04-17 08:35:53 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
    1981:  An error occurred in a `before(:suite)` hook.
    1982:  Failure/Error: @pid = Process.spawn(*@command, options)
    1983:  Errno::EACCES:
    1984:  Permission denied - java
    1985:  # ./rb/lib/selenium/webdriver/common/child_process.rb:57:in `spawn'
    1986:  # ./rb/lib/selenium/webdriver/common/child_process.rb:57:in `start'
    1987:  # ./rb/lib/selenium/server.rb:204:in `start'
    1988:  # //?/D:/a/selenium/selenium/rb/spec/integration/selenium/webdriver/spec_helper.rb:40:in `block (2 levels) in <top (required)>'
    1989:  Finished in 0.04789 seconds (files took 0.63436 seconds to load)
    1990:  0 examples, 0 failures, 1 error occurred outside of examples
    1991:  ================================================================================
    1992:  �[32m[2,905 / 2,910]�[0m 18 / 27 tests, �[31m�[1m18 failed�[0m;�[0m Testing //rb/spec/integration/selenium/webdriver:action_builder-edge-remote; 56s local, disk-cache ... (4 actions, 2 running)
    1993:  �[32m[2,905 / 2,910]�[0m 18 / 27 tests, �[31m�[1m18 failed�[0m;�[0m Testing //rb/spec/integration/selenium/webdriver:action_builder-edge-remote; 61s local, disk-cache ... (4 actions, 2 running)
    1994:  �[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)
    1995:  ==================== Test output for //rb/spec/integration/selenium/webdriver:action_builder-edge-remote:
    1996:  2024-04-17 08:35:06 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
    1997:  �[31m�[1mFAILED: �[0m//rb/spec/integration/selenium/webdriver:action_builder-edge-remote (Summary)
    1998:  D:/_bazel/execroot/selenium/bazel-out/x64_windows-fastbuild/testlogs/rb/spec/integration/selenium/webdriver/action_builder-edge-remote/test.log
    1999:  An error occurred in a `before(:suite)` hook.
    2000:  Failure/Error: @pid = Process.spawn(*@command, options)
    ...
    
    2003:  Errno::EACCES:
    2004:  �[32mINFO: �[0mFrom Testing //rb/spec/integration/selenium/webdriver:action_builder-edge-remote:
    2005:  Permission denied - java
    2006:  # ./rb/lib/selenium/webdriver/common/child_process.rb:57:in `spawn'
    2007:  # ./rb/lib/selenium/webdriver/common/child_process.rb:57:in `start'
    2008:  # ./rb/lib/selenium/server.rb:204:in `start'
    2009:  # //?/D:/a/selenium/selenium/rb/spec/integration/selenium/webdriver/spec_helper.rb:40:in `block (2 levels) in <top (required)>'
    2010:  Finished in 0.04451 seconds (files took 0.59121 seconds to load)
    2011:  0 examples, 0 failures, 1 error occurred outside of examples
    2012:  ================================================================================
    2013:  ==================== Test output for //rb/spec/integration/selenium/webdriver:action_builder-edge-remote:
    2014:  2024-04-17 08:35: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
    2015:  An error occurred in a `before(:suite)` hook.
    2016:  Failure/Error: @pid = Process.spawn(*@command, options)
    2017:  Errno::EACCES:
    2018:  Permission denied - java
    2019:  # ./rb/lib/selenium/webdriver/common/child_process.rb:57:in `spawn'
    2020:  # ./rb/lib/selenium/webdriver/common/child_process.rb:57:in `start'
    2021:  # ./rb/lib/selenium/server.rb:204:in `start'
    2022:  # //?/D:/a/selenium/selenium/rb/spec/integration/selenium/webdriver/spec_helper.rb:40:in `block (2 levels) in <top (required)>'
    2023:  Finished in 0.04426 seconds (files took 0.58648 seconds to load)
    2024:  0 examples, 0 failures, 1 error occurred outside of examples
    2025:  ================================================================================
    2026:  ==================== Test output for //rb/spec/integration/selenium/webdriver:action_builder-edge-remote:
    2027:  2024-04-17 08:36: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
    2028:  An error occurred in a `before(:suite)` hook.
    2029:  Failure/Error: @pid = Process.spawn(*@command, options)
    2030:  Errno::EACCES:
    2031:  Permission denied - java
    2032:  # ./rb/lib/selenium/webdriver/common/child_process.rb:57:in `spawn'
    2033:  # ./rb/lib/selenium/webdriver/common/child_process.rb:57:in `start'
    2034:  # ./rb/lib/selenium/server.rb:204:in `start'
    2035:  # //?/D:/a/selenium/selenium/rb/spec/integration/selenium/webdriver/spec_helper.rb:40:in `block (2 levels) in <top (required)>'
    2036:  Finished in 0.05723 seconds (files took 0.75003 seconds to load)
    2037:  0 examples, 0 failures, 1 error occurred outside of examples
    2038:  ================================================================================
    2039:  �[32m[2,906 / 2,910]�[0m 19 / 27 tests, �[31m�[1m19 failed�[0m;�[0m Testing //rb/spec/integration/selenium/webdriver:element-edge-remote; 48s local, disk-cache ... (4 actions, 1 running)
    2040:  �[32m[2,906 / 2,910]�[0m 19 / 27 tests, �[31m�[1m19 failed�[0m;�[0m Testing //rb/spec/integration/selenium/webdriver:element-edge-remote; 52s local, disk-cache ... (4 actions, 1 running)
    2041:  �[32m[2,906 / 2,910]�[0m 19 / 27 tests, �[31m�[1m19 failed�[0m;�[0m Testing //rb/spec/integration/selenium/webdriver:element-edge-remote; 55s local, disk-cache ... (4 actions, 2 running)
    2042:  �[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)
    2043:  ==================== Test output for //rb/spec/integration/selenium/webdriver:element-edge-remote:
    2044:  2024-04-17 08:35:19 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
    2045:  �[31m�[1mFAILED: �[0m//rb/spec/integration/selenium/webdriver:element-edge-remote (Summary)
    2046:  D:/_bazel/execroot/selenium/bazel-out/x64_windows-fastbuild/testlogs/rb/spec/integration/selenium/webdriver/element-edge-remote/test.log
    2047:  D:/_bazel/execroot/selenium/bazel-out/x64_windows-fastbuild/testlogs/rb/spec/integration/selenium/webdriver/element-edge-remote/test_attempts/attempt_1.log
    2048:  An error occurred in a `before(:suite)` hook.
    2049:  D:/_bazel/execroot/selenium/bazel-out/x64_windows-fastbuild/testlogs/rb/spec/integration/selenium/webdriver/element-edge-remote/test_attempts/attempt_2.log
    2050:  Failure/Error: @pid = Process.spawn(*@command, options)
    2051:  �[32mINFO: �[0mFrom Testing //rb/spec/integration/selenium/webdriver:element-edge-remote:
    2052:  Errno::EACCES:
    2053:  Permission denied - java
    2054:  # ./rb/lib/selenium/webdriver/common/child_process.rb:57:in `spawn'
    2055:  # ./rb/lib/selenium/webdriver/common/child_process.rb:57:in `start'
    2056:  # ./rb/lib/selenium/server.rb:204:in `start'
    2057:  # //?/D:/a/selenium/selenium/rb/spec/integration/selenium/webdriver/spec_helper.rb:40:in `block (2 levels) in <top (required)>'
    2058:  Finished in 0.04511 seconds (files took 0.62801 seconds to load)
    2059:  0 examples, 0 failures, 1 error occurred outside of examples
    2060:  ================================================================================
    2061:  ==================== Test output for //rb/spec/integration/selenium/webdriver:element-edge-remote:
    2062:  2024-04-17 08:35:46 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
    2063:  An error occurred in a `before(:suite)` hook.
    2064:  Failure/Error: @pid = Process.spawn(*@command, options)
    2065:  Errno::EACCES:
    2066:  Permission denied - java
    2067:  # ./rb/lib/selenium/webdriver/common/child_process.rb:57:in `spawn'
    2068:  # ./rb/lib/selenium/webdriver/common/child_process.rb:57:in `start'
    2069:  # ./rb/lib/selenium/server.rb:204:in `start'
    2070:  # //?/D:/a/selenium/selenium/rb/spec/integration/selenium/webdriver/spec_helper.rb:40:in `block (2 levels) in <top (required)>'
    2071:  Finished in 0.0553 seconds (files took 0.67595 seconds to load)
    2072:  0 examples, 0 failures, 1 error occurred outside of examples
    2073:  ================================================================================
    2074:  ==================== Test output for //rb/spec/integration/selenium/webdriver:element-edge-remote:
    2075:  2024-04-17 08:36:08 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
    2076:  An error occurred in a `before(:suite)` hook.
    2077:  Failure/Error: @pid = Process.spawn(*@command, options)
    2078:  Errno::EACCES:
    2079:  Permission denied - java
    2080:  # ./rb/lib/selenium/webdriver/common/child_process.rb:57:in `spawn'
    2081:  # ./rb/lib/selenium/webdriver/common/child_process.rb:57:in `start'
    2082:  # ./rb/lib/selenium/server.rb:204:in `start'
    2083:  # //?/D:/a/selenium/selenium/rb/spec/integration/selenium/webdriver/spec_helper.rb:40:in `block (2 levels) in <top (required)>'
    2084:  Finished in 0.07533 seconds (files took 0.84577 seconds to load)
    2085:  0 examples, 0 failures, 1 error occurred outside of examples
    2086:  ================================================================================
    2087:  �[32m[2,907 / 2,910]�[0m 20 / 27 tests, �[31m�[1m20 failed�[0m;�[0m Testing //rb/spec/integration/selenium/webdriver:guard-edge-remote; 7s disk-cache ... (3 actions, 1 running)
    2088:  �[32m[2,907 / 2,910]�[0m 20 / 27 tests, �[31m�[1m20 failed�[0m;�[0m [Sched] Testing //rb/spec/integration/selenium/webdriver:storage-edge-remote; 7s ... (3 actions, 1 running)
    2089:  �[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)
    2090:  �[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)
    2091:  �[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)
    2092:  �[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)
    2093:  �[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)
    2094:  �[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)
    2095:  �[32m[2,907 / 2,910]�[0m 20 / 27 tests, �[31m�[1m20 failed�[0m;�[0m Testing //rb/spec/integration/selenium/webdriver:shadow_root-edge-remote; 15s local, disk-cache ... (3 actions running)
    2096:  �[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)
    2097:  �[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)
    2098:  �[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)
    2099:  �[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)
    2100:  �[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)
    2101:  �[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)
    2102:  �[32m[2,907 / 2,910]�[0m 20 / 27 tests, �[31m�[1m20 failed�[0m;�[0m Testing //rb/spec/integration/selenium/webdriver:shadow_root-edge-remote; 33s local, disk-cache ... (3 actions running)
    2103:  �[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)
    2104:  �[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)
    2105:  �[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)
    2106:  �[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)
    2107:  �[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)
    2108:  �[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)
    2109:  �[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)
    2110:  �[31m�[1mFAILED: �[0m//rb/spec/integration/selenium/webdriver:shadow_root-edge-remote (Summary)
    2111:  D:/_bazel/execroot/selenium/bazel-out/x64_windows-fastbuild/testlogs/rb/spec/integration/selenium/webdriver/shadow_root-edge-remote/test.log
    2112:  D:/_bazel/execroot/selenium/bazel-out/x64_windows-fastbuild/testlogs/rb/spec/integration/selenium/webdriver/shadow_root-edge-remote/test_attempts/attempt_1.log
    2113:  D:/_bazel/execroot/selenium/bazel-out/x64_windows-fastbuild/testlogs/rb/spec/integration/selenium/webdriver/shadow_root-edge-remote/test_attempts/attempt_2.log
    2114:  �[32mINFO: �[0mFrom Testing //rb/spec/integration/selenium/webdriver:shadow_root-edge-remote:
    2115:  ==================== Test output for //rb/spec/integration/selenium/webdriver:shadow_root-edge-remote:
    2116:  2024-04-17 08:36:15 INFO Selenium Server Location: D:/_bazel/execroot/selenium/bazel-out/x64_windows-fastbuild/bin/rb/spec/integration/selenium/webdriver/shadow_root-edge-remote.cmd.runfiles/selenium/java/src/org/openqa/selenium/grid/selenium_server_deploy.jar
    2117:  An error occurred in a `before(:suite)` hook.
    2118:  Failure/Error: @pid = Process.spawn(*@command, options)
    2119:  Errno::EACCES:
    2120:  Permission denied - java
    2121:  # ./rb/lib/selenium/webdriver/common/child_process.rb:57:in `spawn'
    2122:  # ./rb/lib/selenium/webdriver/common/child_process.rb:57:in `start'
    2123:  # ./rb/lib/selenium/server.rb:204:in `start'
    2124:  # //?/D:/a/selenium/selenium/rb/spec/integration/selenium/webdriver/spec_helper.rb:40:in `block (2 levels) in <top (required)>'
    2125:  Finished in 0.05026 seconds (files took 0.61241 seconds to load)
    2126:  0 examples, 0 failures, 1 error occurred outside of examples
    2127:  ================================================================================
    2128:  ==================== Test output for //rb/spec/integration/selenium/webdriver:shadow_root-edge-remote:
    2129:  2024-04-17 08:36:35 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
    2130:  An error occurred in a `before(:suite)` hook.
    2131:  Failure/Error: @pid = Process.spawn(*@command, options)
    2132:  Errno::EACCES:
    2133:  Permission denied - java
    2134:  # ./rb/lib/selenium/webdriver/common/child_process.rb:57:in `spawn'
    2135:  # ./rb/lib/selenium/webdriver/common/child_process.rb:57:in `start'
    2136:  # ./rb/lib/selenium/server.rb:204:in `start'
    2137:  # //?/D:/a/selenium/selenium/rb/spec/integration/selenium/webdriver/spec_helper.rb:40:in `block (2 levels) in <top (required)>'
    2138:  Finished in 0.04407 seconds (files took 0.62633 seconds to load)
    2139:  0 examples, 0 failures, 1 error occurred outside of examples
    2140:  ================================================================================
    2141:  ==================== Test output for //rb/spec/integration/selenium/webdriver:shadow_root-edge-remote:
    2142:  2024-04-17 08:36:55 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
    2143:  An error occurred in a `before(:suite)` hook.
    2144:  Failure/Error: @pid = Process.spawn(*@command, options)
    2145:  Errno::EACCES:
    2146:  Permission denied - java
    2147:  # ./rb/lib/selenium/webdriver/common/child_process.rb:57:in `spawn'
    2148:  # ./rb/lib/selenium/webdriver/common/child_process.rb:57:in `start'
    2149:  # ./rb/lib/selenium/server.rb:204:in `start'
    2150:  # //?/D:/a/selenium/selenium/rb/spec/integration/selenium/webdriver/spec_helper.rb:40:in `block (2 levels) in <top (required)>'
    2151:  Finished in 0.0469 seconds (files took 0.61015 seconds to load)
    2152:  0 examples, 0 failures, 1 error occurred outside of examples
    2153:  ================================================================================
    2154:  �[32m[2,908 / 2,910]�[0m 21 / 27 tests, �[31m�[1m21 failed�[0m;�[0m Testing //rb/spec/integration/selenium/webdriver:storage-edge-remote; 41s local, disk-cache ... (2 actions running)
    2155:  �[32m[2,908 / 2,910]�[0m 21 / 27 tests, �[31m�[1m21 failed�[0m;�[0m Testing //rb/spec/integration/selenium/webdriver:storage-edge-remote; 47s local, disk-cache ... (2 actions running)
    2156:  �[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)
    2157:  �[31m�[1mFAILED: �[0m//rb/spec/integration/selenium/webdriver:storage-edge-remote (Summary)
    2158:  D:/_bazel/execroot/selenium/bazel-out/x64_windows-fastbuild/testlogs/rb/spec/integration/selenium/webdriver/storage-edge-remote/test.log
    2159:  D:/_bazel/execroot/selenium/bazel-out/x64_windows-fastbuild/testlogs/rb/spec/integration/selenium/webdriver/storage-edge-remote/test_attempts/attempt_1.log
    2160:  D:/_bazel/execroot/selenium/bazel-out/x64_windows-fastbuild/testlogs/rb/spec/integration/selenium/webdriver/storage-edge-remote/test_attempts/attempt_2.log
    2161:  �[32mINFO: �[0mFrom Testing //rb/spec/integration/selenium/webdriver:storage-edge-remote:
    2162:  ==================== Test output for //rb/spec/integration/selenium/webdriver:storage-edge-remote:
    2163:  2024-04-17 08:36:22 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
    2164:  An error occurred in a `before(:suite)` hook.
    2165:  Failure/Error: @pid = Process.spawn(*@command, options)
    2166:  Errno::EACCES:
    2167:  Permission denied - java
    2168:  # ./rb/lib/selenium/webdriver/common/child_process.rb:57:in `spawn'
    2169:  # ./rb/lib/selenium/webdriver/common/child_process.rb:57:in `start'
    2170:  # ./rb/lib/selenium/server.rb:204:in `start'
    2171:  # //?/D:/a/selenium/selenium/rb/spec/integration/selenium/webdriver/spec_helper.rb:40:in `block (2 levels) in <top (required)>'
    2172:  Finished in 0.05392 seconds (files took 0.59604 seconds to load)
    2173:  0 examples, 0 failures, 1 error occurred outside of examples
    2174:  ================================================================================
    2175:  ==================== Test output for //rb/spec/integration/selenium/webdriver:storage-edge-remote:
    2176:  2024-04-17 08:36:42 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
    2177:  An error occurred in a `before(:suite)` hook.
    2178:  Failure/Error: @pid = Process.spawn(*@command, options)
    2179:  Errno::EACCES:
    2180:  Permission denied - java
    2181:  # ./rb/lib/selenium/webdriver/common/child_process.rb:57:in `spawn'
    2182:  # ./rb/lib/selenium/webdriver/common/child_process.rb:57:in `start'
    2183:  # ./rb/lib/selenium/server.rb:204:in `start'
    2184:  # //?/D:/a/selenium/selenium/rb/spec/integration/selenium/webdriver/spec_helper.rb:40:in `block (2 levels) in <top (required)>'
    2185:  Finished in 0.04223 seconds (files took 0.57843 seconds to load)
    2186:  0 examples, 0 failures, 1 error occurred outside of examples
    2187:  ================================================================================
    2188:  ==================== Test output for //rb/spec/integration/selenium/webdriver:storage-edge-remote:
    2189:  2024-04-17 08:37:02 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
    2190:  An error occurred in a `before(:suite)` hook.
    2191:  Failure/Error: @pid = Process.spawn(*@command, options)
    2192:  Errno::EACCES:
    2193:  Permission denied - java
    2194:  # ./rb/lib/selenium/webdriver/common/child_process.rb:57:in `spawn'
    2195:  # ./rb/lib/selenium/webdriver/common/child_process.rb:57:in `start'
    2196:  # ./rb/lib/selenium/server.rb:204:in `start'
    2197:  # //?/D:/a/selenium/selenium/rb/spec/integration/selenium/webdriver/spec_helper.rb:40:in `block (2 levels) in <top (required)>'
    2198:  Finished in 0.04394 seconds (files took 0.61795 seconds to load)
    2199:  0 examples, 0 failures, 1 error occurred outside of examples
    2200:  ================================================================================
    2201:  �[32m[2,909 / 2,910]�[0m 22 / 27 tests, �[31m�[1m22 failed�[0m;�[0m Testing //rb/spec/integration/selenium/webdriver:guard-edge-remote; 41s local, disk-cache
    2202:  �[32m[2,909 / 2,910]�[0m 22 / 27 tests, �[31m�[1m22 failed�[0m;�[0m Testing //rb/spec/integration/selenium/webdriver:guard-edge-remote; 46s local, disk-cache
    2203:  �[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)
    2204:  �[31m�[1mFAILED: �[0m//rb/spec/integration/selenium/webdriver:guard-edge-remote (Summary)
    2205:  D:/_bazel/execroot/selenium/bazel-out/x64_windows-fastbuild/testlogs/rb/spec/integration/selenium/webdriver/guard-edge-remote/test.log
    2206:  D:/_bazel/execroot/selenium/bazel-out/x64_windows-fastbuild/testlogs/rb/spec/integration/selenium/webdriver/guard-edge-remote/test_attempts/attempt_1.log
    2207:  D:/_bazel/execroot/selenium/bazel-out/x64_windows-fastbuild/testlogs/rb/spec/integration/selenium/webdriver/guard-edge-remote/test_attempts/attempt_2.log
    2208:  �[32mINFO: �[0mFrom Testing //rb/spec/integration/selenium/webdriver:guard-edge-remote:
    2209:  ==================== Test output for //rb/spec/integration/selenium/webdriver:guard-edge-remote:
    2210:  2024-04-17 08:36:28 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
    2211:  An error occurred in a `before(:suite)` hook.
    2212:  Failure/Error: @pid = Process.spawn(*@command, options)
    2213:  Errno::EACCES:
    2214:  Permission denied - java
    2215:  # ./rb/lib/selenium/webdriver/common/child_process.rb:57:in `spawn'
    2216:  # ./rb/lib/selenium/webdriver/common/child_process.rb:57:in `start'
    2217:  # ./rb/lib/selenium/server.rb:204:in `start'
    2218:  # //?/D:/a/selenium/selenium/rb/spec/integration/selenium/webdriver/spec_helper.rb:40:in `block (2 levels) in <top (required)>'
    2219:  Finished in 0.04513 seconds (files took 0.61008 seconds to load)
    2220:  0 examples, 0 failures, 1 error occurred outside of examples
    2221:  ================================================================================
    2222:  ==================== Test output for //rb/spec/integration/selenium/webdriver:guard-edge-remote:
    2223:  2024-04-17 08:36:48 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
    2224:  An error occurred in a `before(:suite)` hook.
    2225:  Failure/Error: @pid = Process.spawn(*@command, options)
    2226:  Errno::EACCES:
    2227:  Permission denied - java
    2228:  # ./rb/lib/selenium/webdriver/common/child_process.rb:57:in `spawn'
    2229:  # ./rb/lib/selenium/webdriver/common/child_process.rb:57:in `start'
    2230:  # ./rb/lib/selenium/server.rb:204:in `start'
    2231:  # //?/D:/a/selenium/selenium/rb/spec/integration/selenium/webdriver/spec_helper.rb:40:in `block (2 levels) in <top (required)>'
    2232:  Finished in 0.04654 seconds (files took 0.62956 seconds to load)
    2233:  0 examples, 0 failures, 1 error occurred outside of examples
    2234:  ================================================================================
    2235:  ==================== Test output for //rb/spec/integration/selenium/webdriver:guard-edge-remote:
    2236:  2024-04-17 08:37: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
    2237:  An error occurred in a `before(:suite)` hook.
    2238:  Failure/Error: @pid = Process.spawn(*@command, options)
    2239:  Errno::EACCES:
    2240:  Permission denied - java
    2241:  # ./rb/lib/selenium/webdriver/common/child_process.rb:57:in `spawn'
    2242:  # ./rb/lib/selenium/webdriver/common/child_process.rb:57:in `start'
    2243:  # ./rb/lib/selenium/server.rb:204:in `start'
    2244:  # //?/D:/a/selenium/selenium/rb/spec/integration/selenium/webdriver/spec_helper.rb:40:in `block (2 levels) in <top (required)>'
    2245:  Finished in 0.04434 seconds (files took 0.58264 seconds to load)
    2246:  0 examples, 0 failures, 1 error occurred outside of examples
    2247:  ================================================================================
    2248:  �[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
    2249:  �[32m[2,910 / 2,911]�[0m 23 / 27 tests, �[31m�[1m23 failed�[0m;�[0m [Sched] Testing //rb/spec/integration/selenium/webdriver:devtools-edge-remote
    2250:  �[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
    2251:  �[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
    2252:  �[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)
    2253:  �[32m[2,910 / 2,911]�[0m 23 / 27 tests, �[31m�[1m23 failed�[0m;�[0m Testing //rb/spec/integration/selenium/webdriver:devtools-edge-remote; 7s local, disk-cache
    2254:  �[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
    2255:  �[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)
    2256:  �[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
    2257:  �[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
    2258:  �[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)
    2259:  �[31m�[1mFAILED: �[0m//rb/spec/integration/selenium/webdriver:devtools-edge-remote (Summary)
    2260:  D:/_bazel/execroot/selenium/bazel-out/x64_windows-fastbuild/testlogs/rb/spec/integration/selenium/webdriver/devtools-edge-remote/test.log
    2261:  D:/_bazel/execroot/selenium/bazel-out/x64_windows-fastbuild/testlogs/rb/spec/integration/selenium/webdriver/devtools-edge-remote/test_attempts/attempt_1.log
    2262:  D:/_bazel/execroot/selenium/bazel-out/x64_windows-fastbuild/testlogs/rb/spec/integration/selenium/webdriver/devtools-edge-remote/test_attempts/attempt_2.log
    2263:  �[32mINFO: �[0mFrom Testing //rb/spec/integration/selenium/webdriver:devtools-edge-remote:
    2264:  ==================== Test output for //rb/spec/integration/selenium/webdriver:devtools-edge-remote:
    2265:  2024-04-17 08:37:25 INFO Selenium Server Location: D:/_bazel/execroot/selenium/bazel-out/x64_windows-fastbuild/bin/rb/spec/integration/selenium/webdriver/devtools-edge-remote.cmd.runfiles/selenium/java/src/org/openqa/selenium/grid/selenium_server_deploy.jar
    2266:  An error occurred in a `before(:suite)` hook.
    2267:  Failure/Error: @pid = Process.spawn(*@command, options)
    2268:  Errno::EACCES:
    2269:  Permission denied - java
    2270:  # ./rb/lib/selenium/webdriver/common/child_process.rb:57:in `spawn'
    2271:  # ./rb/lib/selenium/webdriver/common/child_process.rb:57:in `start'
    2272:  # ./rb/lib/selenium/server.rb:204:in `start'
    2273:  # //?/D:/a/selenium/selenium/rb/spec/integration/selenium/webdriver/spec_helper.rb:40:in `block (2 levels) in <top (required)>'
    2274:  Finished in 0.04277 seconds (files took 0.59274 seconds to load)
    2275:  0 examples, 0 failures, 1 error occurred outside of examples
    2276:  ================================================================================
    2277:  ==================== Test output for //rb/spec/integration/selenium/webdriver:devtools-edge-remote:
    2278:  2024-04-17 08:37:33 INFO Selenium Server Location: D:/_bazel/execroot/selenium/bazel-out/x64_windows-fastbuild/bin/rb/spec/integration/selenium/webdriver/devtools-edge-remote.cmd.runfiles/selenium/java/src/org/openqa/selenium/grid/selenium_server_deploy.jar
    2279:  An error occurred in a `before(:suite)` hook.
    2280:  Failure/Error: @pid = Process.spawn(*@command, options)
    2281:  Errno::EACCES:
    2282:  Permission denied - java
    2283:  # ./rb/lib/selenium/webdriver/common/child_process.rb:57:in `spawn'
    2284:  # ./rb/lib/selenium/webdriver/common/child_process.rb:57:in `start'
    2285:  # ./rb/lib/selenium/server.rb:204:in `start'
    2286:  # //?/D:/a/selenium/selenium/rb/spec/integration/selenium/webdriver/spec_helper.rb:40:in `block (2 levels) in <top (required)>'
    2287:  Finished in 0.04303 seconds (files took 0.58112 seconds to load)
    2288:  0 examples, 0 failures, 1 error occurred outside of examples
    2289:  ================================================================================
    2290:  ==================== Test output for //rb/spec/integration/selenium/webdriver:devtools-edge-remote:
    2291:  2024-04-17 08:37:40 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
    2292:  An error occurred in a `before(:suite)` hook.
    2293:  Failure/Error: @pid = Process.spawn(*@command, options)
    2294:  Errno::EACCES:
    2295:  Permission denied - java
    2296:  # ./rb/lib/selenium/webdriver/common/child_process.rb:57:in `spawn'
    2297:  # ./rb/lib/selenium/webdriver/common/child_process.rb:57:in `start'
    2298:  # ./rb/lib/selenium/server.rb:204:in `start'
    2299:  # //?/D:/a/selenium/selenium/rb/spec/integration/selenium/webdriver/spec_helper.rb:40:in `block (2 levels) in <top (required)>'
    2300:  Finished in 0.04533 seconds (files took 0.6328 seconds to load)
    2301:  0 examples, 0 failures, 1 error occurred outside of examples
    2302:  ================================================================================
    2303:  �[32m[2,911 / 2,912]�[0m 24 / 27 tests, �[31m�[1m24 failed�[0m;�[0m Testing //rb/spec/integration/selenium/webdriver/bidi:log_inspector-edge-remote; 1s disk-cache
    2304:  �[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
    2305:  �[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
    2306:  �[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
    2307:  �[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)
    2308:  �[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; 7s local, disk-cache
    2309:  �[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
    2310:  �[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)
    2311:  �[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
    2312:  �[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
    2313:  �[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)
    2314:  �[31m�[1mFAILED: �[0m//rb/spec/integration/selenium/webdriver/bidi:log_inspector-edge-remote (Summary)
    2315:  D:/_bazel/execroot/selenium/bazel-out/x64_windows-fastbuild/testlogs/rb/spec/integration/selenium/webdriver/bidi/log_inspector-edge-remote/test.log
    2316:  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
    2317:  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
    2318:  �[32mINFO: �[0mFrom Testing //rb/spec/integration/selenium/webdriver/bidi:log_inspector-edge-remote:
    2319:  ==================== Test output for //rb/spec/integration/selenium/webdriver/bidi:log_inspector-edge-remote:
    2320:  2024-04-17 08:37:56 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
    2321:  An error occurred in a `before(:suite)` hook.
    2322:  Failure/Error: @pid = Process.spawn(*@command, options)
    2323:  Errno::EACCES:
    2324:  Permission denied - java
    2325:  # ./rb/lib/selenium/webdriver/common/child_process.rb:57:in `spawn'
    2326:  # ./rb/lib/selenium/webdriver/common/child_process.rb:57:in `start'
    2327:  # ./rb/lib/selenium/server.rb:204:in `start'
    2328:  # //?/D:/a/selenium/selenium/rb/spec/integration/selenium/webdriver/spec_helper.rb:40:in `block (2 levels) in <top (required)>'
    2329:  Finished in 0.04337 seconds (files took 0.59766 seconds to load)
    2330:  0 examples, 0 failures, 1 error occurred outside of examples
    2331:  ================================================================================
    2332:  ==================== Test output for //rb/spec/integration/selenium/webdriver/bidi:log_inspector-edge-remote:
    2333:  2024-04-17 08:38:04 INFO Selenium Server Location: D:/_bazel/execroot/selenium/bazel-out/x64_windows-fastbuild/bin/rb/spec/integration/selenium/webdriver/bidi/log_inspector-edge-remote.cmd.runfiles/selenium/java/src/org/openqa/selenium/grid/selenium_server_deploy.jar
    2334:  An error occurred in a `before(:suite)` hook.
    2335:  Failure/Error: @pid = Process.spawn(*@command, options)
    2336:  Errno::EACCES:
    2337:  Permission denied - java
    2338:  # ./rb/lib/selenium/webdriver/common/child_process.rb:57:in `spawn'
    2339:  # ./rb/lib/selenium/webdriver/common/child_process.rb:57:in `start'
    2340:  # ./rb/lib/selenium/server.rb:204:in `start'
    2341:  # //?/D:/a/selenium/selenium/rb/spec/integration/selenium/webdriver/spec_helper.rb:40:in `block (2 levels) in <top (required)>'
    2342:  Finished in 0.04522 seconds (files took 0.62635 seconds to load)
    2343:  0 examples, 0 failures, 1 error occurred outside of examples
    2344:  ================================================================================
    2345:  ==================== Test output for //rb/spec/integration/selenium/webdriver/bidi:log_inspector-edge-remote:
    2346:  2024-04-17 08:38:11 INFO Selenium Server Location: D:/_bazel/execroot/selenium/bazel-out/x64_windows-fastbuild/bin/rb/spec/integration/selenium/webdriver/bidi/log_inspector-edge-remote.cmd.runfiles/selenium/java/src/org/openqa/selenium/grid/selenium_server_deploy.jar
    2347:  An error occurred in a `before(:suite)` hook.
    2348:  Failure/Error: @pid = Process.spawn(*@command, options)
    2349:  Errno::EACCES:
    2350:  Permission denied - java
    2351:  # ./rb/lib/selenium/webdriver/common/child_process.rb:57:in `spawn'
    2352:  # ./rb/lib/selenium/webdriver/common/child_process.rb:57:in `start'
    2353:  # ./rb/lib/selenium/server.rb:204:in `start'
    2354:  # //?/D:/a/selenium/selenium/rb/spec/integration/selenium/webdriver/spec_helper.rb:40:in `block (2 levels) in <top (required)>'
    2355:  Finished in 0.04835 seconds (files took 0.637 seconds to load)
    2356:  0 examples, 0 failures, 1 error occurred outside of examples
    2357:  ================================================================================
    2358:  �[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
    2359:  �[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
    2360:  �[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
    2361:  �[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
    2362:  �[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)
    2363:  �[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
    2364:  �[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
    2365:  �[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)
    2366:  �[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
    2367:  �[32m[2,912 / 2,913]�[0m 25 / 27 tests, �[31m�[1m25 failed�[0m;�[0m Testing //rb/spec/integration/selenium/webdriver/bidi:browsing_context-edge-remote; 21s local, disk-cache
    2368:  �[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)
    2369:  �[31m�[1mFAILED: �[0m//rb/spec/integration/selenium/webdriver/bidi:browsing_context-edge-remote (Summary)
    2370:  D:/_bazel/execroot/selenium/bazel-out/x64_windows-fastbuild/testlogs/rb/spec/integration/selenium/webdriver/bidi/browsing_context-edge-remote/test.log
    2371:  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
    2372:  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
    2373:  �[32mINFO: �[0mFrom Testing //rb/spec/integration/selenium/webdriver/bidi:browsing_context-edge-remote:
    2374:  ==================== Test output for //rb/spec/integration/selenium/webdriver/bidi:browsing_context-edge-remote:
    2375:  2024-04-17 08:38:28 INFO Selenium Server Location: D:/_bazel/execroot/selenium/bazel-out/x64_windows-fastbuild/bin/rb/spec/integration/selenium/webdriver/bidi/browsing_context-edge-remote.cmd.runfiles/selenium/java/src/org/openqa/selenium/grid/selenium_server_deploy.jar
    2376:  An error occurred in a `before(:suite)` hook.
    2377:  Failure/Error: @pid = Process.spawn(*@command, options)
    2378:  Errno::EACCES:
    2379:  Permission denied - java
    2380:  # ./rb/lib/selenium/webdriver/common/child_process.rb:57:in `spawn'
    2381:  # ./rb/lib/selenium/webdriver/common/child_process.rb:57:in `start'
    2382:  # ./rb/lib/selenium/server.rb:204:in `start'
    2383:  # //?/D:/a/selenium/selenium/rb/spec/integration/selenium/webdriver/spec_helper.rb:40:in `block (2 levels) in <top (required)>'
    2384:  Finished in 0.04478 seconds (files took 0.60946 seconds to load)
    2385:  0 examples, 0 failures, 1 error occurred outside of examples
    2386:  ================================================================================
    2387:  ==================== Test output for //rb/spec/integration/selenium/webdriver/bidi:browsing_context-edge-remote:
    2388:  2024-04-17 08:38:35 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
    2389:  An error occurred in a `before(:suite)` hook.
    2390:  Failure/Error: @pid = Process.spawn(*@command, options)
    2391:  Errno::EACCES:
    2392:  Permission denied - java
    2393:  # ./rb/lib/selenium/webdriver/common/child_process.rb:57:in `spawn'
    2394:  # ./rb/lib/selenium/webdriver/common/child_process.rb:57:in `start'
    2395:  # ./rb/lib/selenium/server.rb:204:in `start'
    2396:  # //?/D:/a/selenium/selenium/rb/spec/integration/selenium/webdriver/spec_helper.rb:40:in `block (2 levels) in <top (required)>'
    2397:  Finished in 0.04258 seconds (files took 0.61268 seconds to load)
    2398:  0 examples, 0 failures, 1 error occurred outside of examples
    2399:  ================================================================================
    2400:  ==================== Test output for //rb/spec/integration/selenium/webdriver/bidi:browsing_context-edge-remote:
    2401:  2024-04-17 08:38:42 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
    2402:  An error occurred in a `before(:suite)` hook.
    2403:  Failure/Error: @pid = Process.spawn(*@command, options)
    2404:  Errno::EACCES:
    2405:  Permission denied - java
    2406:  # ./rb/lib/selenium/webdriver/common/child_process.rb:57:in `spawn'
    2407:  # ./rb/lib/selenium/webdriver/common/child_process.rb:57:in `start'
    2408:  # ./rb/lib/selenium/server.rb:204:in `start'
    2409:  # //?/D:/a/selenium/selenium/rb/spec/integration/selenium/webdriver/spec_helper.rb:40:in `block (2 levels) in <top (required)>'
    2410:  Finished in 0.04427 seconds (files took 0.61564 seconds to load)
    2411:  0 examples, 0 failures, 1 error occurred outside of examples
    2412:  ================================================================================
    2413:  �[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
    2414:  �[32m[2,913 / 2,914]�[0m 26 / 27 tests, �[31m�[1m26 failed�[0m;�[0m [Sched] Testing //rb/spec/integration/selenium/webdriver:bidi-edge-remote
    2415:  �[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
    2416:  �[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
    2417:  �[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)
    2418:  �[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
    2419:  �[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
    2420:  �[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)
    2421:  �[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
    2422:  �[32m[2,913 / 2,914]�[0m 26 / 27 tests, �[31m�[1m26 failed�[0m;�[0m Testing //rb/spec/integration/selenium/webdriver:bidi-edge-remote; 21s local, disk-cache
    2423:  �[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)
    2424:  �[31m�[1mFAILED: �[0m//rb/spec/integration/selenium/webdriver:bidi-edge-remote (Summary)
    2425:  D:/_bazel/execroot/selenium/bazel-out/x64_windows-fastbuild/testlogs/rb/spec/integration/selenium/webdriver/bidi-edge-remote/test.log
    2426:  D:/_bazel/execroot/selenium/bazel-out/x64_windows-fastbuild/testlogs/rb/spec/integration/selenium/webdriver/bidi-edge-remote/test_attempts/attempt_1.log
    2427:  D:/_bazel/execroot/selenium/bazel-out/x64_windows-fastbuild/testlogs/rb/spec/integration/selenium/webdriver/bidi-edge-remote/test_attempts/attempt_2.log
    2428:  �[32mINFO: �[0mFrom Testing //rb/spec/integration/selenium/webdriver:bidi-edge-remote:
    2429:  ==================== Test output for //rb/spec/integration/selenium/webdriver:bidi-edge-remote:
    2430:  2024-04-17 08:38: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
    2431:  An error occurred in a `before(:suite)` hook.
    2432:  Failure/Error: @pid = Process.spawn(*@command, options)
    2433:  Errno::EACCES:
    2434:  Permission denied - java
    2435:  # ./rb/lib/selenium/webdriver/common/child_process.rb:57:in `spawn'
    2436:  # ./rb/lib/selenium/webdriver/common/child_process.rb:57:in `start'
    2437:  # ./rb/lib/selenium/server.rb:204:in `start'
    2438:  # //?/D:/a/selenium/selenium/rb/spec/integration/selenium/webdriver/spec_helper.rb:40:in `block (2 levels) in <top (required)>'
    2439:  Finished in 0.04506 seconds (files took 0.59679 seconds to load)
    2440:  0 examples, 0 failures, 1 error occurred outside of examples
    2441:  ================================================================================
    2442:  ==================== Test output for //rb/spec/integration/selenium/webdriver:bidi-edge-remote:
    2443:  2024-04-17 08:39:06 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
    2444:  An error occurred in a `before(:suite)` hook.
    2445:  Failure/Error: @pid = Process.spawn(*@command, options)
    2446:  Errno::EACCES:
    2447:  Permission denied - java
    2448:  # ./rb/lib/selenium/webdriver/common/child_process.rb:57:in `spawn'
    2449:  # ./rb/lib/selenium/webdriver/common/child_process.rb:57:in `start'
    2450:  # ./rb/lib/selenium/server.rb:204:in `start'
    2451:  # //?/D:/a/selenium/selenium/rb/spec/integration/selenium/webdriver/spec_helper.rb:40:in `block (2 levels) in <top (required)>'
    2452:  Finished in 0.04259 seconds (files took 0.59256 seconds to load)
    2453:  0 examples, 0 failures, 1 error occurred outside of examples
    2454:  ================================================================================
    2455:  ==================== Test output for //rb/spec/integration/selenium/webdriver:bidi-edge-remote:
    2456:  2024-04-17 08:39:13 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
    2457:  An error occurred in a `before(:suite)` hook.
    2458:  Failure/Error: @pid = Process.spawn(*@command, options)
    2459:  Errno::EACCES:
    2460:  Permission denied - java
    2461:  # ./rb/lib/selenium/webdriver/common/child_process.rb:57:in `spawn'
    2462:  # ./rb/lib/selenium/webdriver/common/child_process.rb:57:in `start'
    2463:  # ./rb/lib/selenium/server.rb:204:in `start'
    2464:  # //?/D:/a/selenium/selenium/rb/spec/integration/selenium/webdriver/spec_helper.rb:40:in `block (2 levels) in <top (required)>'
    2465:  Finished in 0.04377 seconds (files took 0.61094 seconds to load)
    2466:  0 examples, 0 failures, 1 error occurred outside of examples
    2467:  ================================================================================
    2468:  �[32mINFO: �[0mFound 27 test targets...
    2469:  �[32mINFO: �[0mElapsed time: 827.322s, Critical Path: 184.05s
    2470:  �[32mINFO: �[0m2684 processes: 1470 disk cache hit, 1059 internal, 151 local, 4 worker.
    2471:  �[32mINFO: �[0mBuild completed, 27 tests FAILED, 2684 total actions
    2472:  //rb/spec/integration/selenium/webdriver:action_builder-edge-remote      �[0m�[31m�[1mFAILED�[0m in 3 out of 3 in 7.1s
    2473:  Stats over 3 runs: max = 7.1s, min = 6.7s, avg = 6.8s, dev = 0.2s
    2474:  D:/_bazel/execroot/selenium/bazel-out/x64_windows-fastbuild/testlogs/rb/spec/integration/selenium/webdriver/action_builder-edge-remote/test.log
    2475:  D:/_bazel/execroot/selenium/bazel-out/x64_windows-fastbuild/testlogs/rb/spec/integration/selenium/webdriver/action_builder-edge-remote/test_attempts/attempt_1.log
    2476:  D:/_bazel/execroot/selenium/bazel-out/x64_windows-fastbuild/testlogs/rb/spec/integration/selenium/webdriver/action_builder-edge-remote/test_attempts/attempt_2.log
    2477:  //rb/spec/integration/selenium/webdriver:bidi-edge-remote                �[0m�[31m�[1mFAILED�[0m in 3 out of 3 in 6.7s
    2478:  Stats over 3 runs: max = 6.7s, min = 6.6s, avg = 6.7s, dev = 0.0s
    2479:  D:/_bazel/execroot/selenium/bazel-out/x64_windows-fastbuild/testlogs/rb/spec/integration/selenium/webdriver/bidi-edge-remote/test.log
    2480:  D:/_bazel/execroot/selenium/bazel-out/x64_windows-fastbuild/testlogs/rb/spec/integration/selenium/webdriver/bidi-edge-remote/test_attempts/attempt_1.log
    2481:  D:/_bazel/execroot/selenium/bazel-out/x64_windows-fastbuild/testlogs/rb/spec/integration/selenium/webdriver/bidi-edge-remote/test_attempts/attempt_2.log
    2482:  //rb/spec/integration/selenium/webdriver:devtools-edge-remote            �[0m�[31m�[1mFAILED�[0m in 3 out of 3 in 6.7s
    2483:  Stats over 3 runs: max = 6.7s, min = 6.6s, avg = 6.6s, dev = 0.0s
    2484:  D:/_bazel/execroot/selenium/bazel-out/x64_windows-fastbuild/testlogs/rb/spec/integration/selenium/webdriver/devtools-edge-remote/test.log
    2485:  D:/_bazel/execroot/selenium/bazel-out/x64_windows-fastbuild/testlogs/rb/spec/integration/selenium/webdriver/devtools-edge-remote/test_attempts/attempt_1.log
    2486:  D:/_bazel/execroot/selenium/bazel-out/x64_windows-fastbuild/testlogs/rb/spec/integration/selenium/webdriver/devtools-edge-remote/test_attempts/attempt_2.log
    2487:  //rb/spec/integration/selenium/webdriver:driver-edge-remote              �[0m�[31m�[1mFAILED�[0m in 3 out of 3 in 7.3s
    2488:  Stats over 3 runs: max = 7.3s, min = 6.9s, avg = 7.1s, dev = 0.2s
    2489:  D:/_bazel/execroot/selenium/bazel-out/x64_windows-fastbuild/testlogs/rb/spec/integration/selenium/webdriver/driver-edge-remote/test.log
    2490:  D:/_bazel/execroot/selenium/bazel-out/x64_windows-fastbuild/testlogs/rb/spec/integration/selenium/webdriver/driver-edge-remote/test_attempts/attempt_1.log
    2491:  D:/_bazel/execroot/selenium/bazel-out/x64_windows-fastbuild/testlogs/rb/spec/integration/selenium/webdriver/driver-edge-remote/test_attempts/attempt_2.log
    2492:  //rb/spec/integration/selenium/webdriver:element-edge-remote             �[0m�[31m�[1mFAILED�[0m in 3 out of 3 in 7.5s
    2493:  Stats over 3 runs: max = 7.5s, min = 6.7s, avg = 7.1s, dev = 0.3s
    2494:  D:/_bazel/execroot/selenium/bazel-out/x64_windows-fastbuild/testlogs/rb/spec/integration/selenium/webdriver/element-edge-remote/test.log
    2495:  D:/_bazel/execroot/selenium/bazel-out/x64_windows-fastbuild/testlogs/rb/spec/integration/selenium/webdriver/element-edge-remote/test_attempts/attempt_1.log
    2496:  D:/_bazel/execroot/selenium/bazel-out/x64_windows-fastbuild/testlogs/rb/spec/integration/selenium/webdriver/element-edge-remote/test_attempts/attempt_2.log
    2497:  //rb/spec/integration/selenium/webdriver:error-edge-remote               �[0m�[31m�[1mFAILED�[0m in 3 out of 3 in 7.4s
    2498:  Stats over 3 runs: max = 7.4s, min = 6.8s, avg = 7.0s, dev = 0.3s
    2499:  D:/_bazel/execroot/selenium/bazel-out/x64_windows-fastbuild/testlogs/rb/spec/integration/selenium/webdriver/error-edge-remote/test.log
    2500:  D:/_bazel/execroot/selenium/bazel-out/x64_windows-fastbuild/testlogs/rb/spec/integration/selenium/webdriver/error-edge-remote/test_attempts/attempt_1.log
    2501:  D:/_bazel/execroot/selenium/bazel-out/x64_windows-fastbuild/testlogs/rb/spec/integration/selenium/webdriver/error-edge-remote/test_attempts/attempt_2.log
    2502:  //rb/spec/integration/selenium/webdriver:guard-edge-remote               �[0m�[31m�[1mFAILED�[0m in 3 out of 3 in 6.7s
    2503:  Stats over 3 runs: max = 6.7s, min = 6.6s, avg = 6.7s, dev = 0.0s
    2504:  D:/_bazel/execroot/selenium/bazel-out/x64_windows-fastbuild/testlogs/rb/spec/integration/selenium/webdriver/guard-edge-remote/test.log
    2505:  D:/_bazel/execroot/selenium/bazel-out/x64_windows-fastbuild/testlogs/rb/spec/integration/selenium/webdriver/guard-edge-remote/test_attempts/attempt_1.log
    2506:  D:/_bazel/execroot/selenium/bazel-out/x64_windows-fastbuild/testlogs/rb/spec/integration/selenium/webdriver/guard-edge-remote/test_attempts/attempt_2.log
    2507:  //rb/spec/integration/selenium/webdriver:listener-edge-remote            �[0m�[31m�[1mFAILED�[0m in 3 out of 3 in 7.2s
    2508:  Stats over 3 runs: max = 7.2s, min = 6.8s, avg = 7.0s, dev = 0.2s
    2509:  D:/_bazel/execroot/selenium/bazel-out/x64_windows-fastbuild/testlogs/rb/spec/integration/selenium/webdriver/listener-edge-remote/test.log
    2510:  D:/_bazel/execroot/selenium/bazel-out/x64_windows-fastbuild/testlogs/rb/spec/integration/selenium/webdriver/listener-edge-remote/test_attempts/attempt_1.log
    2511:  D:/_bazel/execroot/selenium/bazel-out/x64_windows-fastbuild/testlogs/rb/spec/integration/selenium/webdriver/listener-edge-remote/test_attempts/attempt_2.log
    2512:  //rb/spec/integration/selenium/webdriver:manager-edge-remote             �[0m�[31m�[1mFAILED�[0m in 3 out of 3 in 7.0s
    2513:  Stats over 3 runs: max = 7.0s, min = 6.8s, avg = 6.9s, dev = 0.1s
    2514:  D:/_bazel/execroot/selenium/bazel-out/x64_windows-fastbuild/testlogs/rb/spec/integration/selenium/webdriver/manager-edge-remote/test.log
    2515:  D:/_bazel/execroot/selenium/bazel-out/x64_windows-fastbuild/testlogs/rb/spec/integration/selenium/webdriver/manager-edge-remote/test_attempts/attempt_1.log
    2516:  D:/_bazel/execroot/selenium/bazel-out/x64_windows-fastbuild/testlogs/rb/spec/integration/selenium/webdriver/manager-edge-remote/test_attempts/attempt_2.log
    2517:  //rb/spec/integration/selenium/webdriver:navigation-edge-remote          �[0m�[31m�[1mFAILED�[0m in 3 out of 3 in 7.0s
    2518:  Stats over 3 runs: max = 7.0s, min = 6.9s, avg = 6.9s, dev = 0.1s
    2519:  D:/_bazel/execroot/selenium/bazel-out/x64_windows-fastbuild/testlogs/rb/spec/integration/selenium/webdriver/navigation-edge-remote/test.log
    2520:  D:/_bazel/execroot/selenium/bazel-out/x64_windows-fastbuild/testlogs/rb/spec/integration/selenium/webdriver/navigation-edge-remote/test_attempts/attempt_1.log
    2521:  D:/_bazel/execroot/selenium/bazel-out/x64_windows-fastbuild/testlogs/rb/spec/integration/selenium/webdriver/navigation-edge-remote/test_attempts/attempt_2.log
    2522:  //rb/spec/integration/selenium/webdriver:select-edge-remote              �[0m�[31m�[1mFAILED�[0m in 3 out of 3 in 7.4s
    2523:  Stats over 3 runs: max = 7.4s, min = 6.7s, avg = 7.0s, dev = 0.3s
    2524:  D:/_bazel/execroot/selenium/bazel-out/x64_windows-fastbuild/testlogs/rb/spec/integration/selenium/webdriver/select-edge-remote/test.log
    2525:  D:/_bazel/execroot/selenium/bazel-out/x64_windows-fastbuild/testlogs/rb/spec/integration/selenium/webdriver/select-edge-remote/test_attempts/attempt_1.log
    2526:  D:/_bazel/execroot/selenium/bazel-out/x64_windows-fastbuild/testlogs/rb/spec/integration/selenium/webdriver/select-edge-remote/test_attempts/attempt_2.log
    2527:  //rb/spec/integration/selenium/webdriver:shadow_root-edge-remote         �[0m�[31m�[1mFAILED�[0m in 3 out of 3 in 6.8s
    2528:  Stats over 3 runs: max = 6.8s, min = 6.7s, avg = 6.8s, dev = 0.0s
    2529:  D:/_bazel/execroot/selenium/bazel-out/x64_windows-fastbuild/testlogs/rb/spec/integration/selenium/webdriver/shadow_root-edge-remote/test.log
    2530:  D:/_bazel/execroot/selenium/bazel-out/x64_windows-fastbuild/testlogs/rb/spec/integration/selenium/webdriver/shadow_root-edge-remote/test_attempts/attempt_1.log
    2531:  D:/_bazel/execroot/selenium/bazel-out/x64_windows-fastbuild/testlogs/rb/spec/integration/selenium/webdriver/shadow_root-edge-remote/test_attempts/attempt_2.log
    2532:  //rb/spec/integration/selenium/webdriver:storage-edge-remote             �[0m�[31m�[1mFAILED�[0m in 3 out of 3 in 6.8s
    2533:  Stats over 3 runs: max = 6.8s, min = 6.7s, avg = 6.7s, dev = 0.0s
    2534:  D:/_bazel/execroot/selenium/bazel-out/x64_windows-fastbuild/testlogs/rb/spec/integration/selenium/webdriver/storage-edge-remote/test.log
    2535:  D:/_bazel/execroot/selenium/bazel-out/x64_windows-fastbuild/testlogs/rb/spec/integration/selenium/webdriver/storage-edge-remote/test_attempts/attempt_1.log
    2536:  D:/_bazel/execroot/selenium/bazel-out/x64_windows-fastbuild/testlogs/rb/spec/integration/selenium/webdriver/storage-edge-remote/test_attempts/attempt_2.log
    2537:  //rb/spec/integration/selenium/webdriver:takes_screenshot-edge-remote    �[0m�[31m�[1mFAILED�[0m in 3 out of 3 in 7.4s
    2538:  Stats over 3 runs: max = 7.4s, min = 6.7s, avg = 6.9s, dev = 0.3s
    2539:  D:/_bazel/execroot/selenium/bazel-out/x64_windows-fastbuild/testlogs/rb/spec/integration/selenium/webdriver/takes_screenshot-edge-remote/test.log
    2540:  D:/_bazel/execroot/selenium/bazel-out/x64_windows-fastbuild/testlogs/rb/spec/integration/selenium/webdriver/takes_screenshot-edge-remote/test_attempts/attempt_1.log
    2541:  D:/_bazel/execroot/selenium/bazel-out/x64_windows-fastbuild/testlogs/rb/spec/integration/selenium/webdriver/takes_screenshot-edge-remote/test_attempts/attempt_2.log
    2542:  //rb/spec/integration/selenium/webdriver:target_locator-edge-remote      �[0m�[31m�[1mFAILED�[0m in 3 out of 3 in 7.6s
    2543:  Stats over 3 runs: max = 7.6s, min = 6.7s, avg = 7.0s, dev = 0.4s
    2544:  D:/_bazel/execroot/selenium/bazel-out/x64_windows-fastbuild/testlogs/rb/spec/integration/selenium/webdriver/target_locator-edge-remote/test.log
    2545:  D:/_bazel/execroot/selenium/bazel-out/x64_windows-fastbuild/testlogs/rb/spec/integration/selenium/webdriver/target_locator-edge-remote/test_attempts/attempt_1.log
    2546:  D:/_bazel/execroot/selenium/bazel-out/x64_windows-fastbuild/testlogs/rb/spec/integration/selenium/webdriver/target_locator-edge-remote/test_attempts/attempt_2.log
    2547:  //rb/spec/integration/selenium/webdriver:timeout-edge-remote             �[0m�[31m�[1mFAILED�[0m in 3 out of 3 in 7.1s
    2548:  Stats over 3 runs: max = 7.1s, min = 6.7s, avg = 7.0s, dev = 0.2s
    2549:  D:/_bazel/execroot/selenium/bazel-out/x64_windows-fastbuild/testlogs/rb/spec/integration/selenium/webdriver/timeout-edge-remote/test.log
    2550:  D:/_bazel/execroot/selenium/bazel-out/x64_windows-fastbuild/testlogs/rb/spec/integration/selenium/webdriver/timeout-edge-remote/test_attempts/attempt_1.log
    2551:  D:/_bazel/execroot/selenium/bazel-out/x64_windows-fastbuild/testlogs/rb/spec/integration/selenium/webdriver/timeout-edge-remote/test_attempts/attempt_2.log
    2552:  //rb/spec/integration/selenium/webdriver:virtual_authenticator-edge-remote �[0m�[31m�[1mFAILED�[0m in 3 out of 3 in 7.2s
    2553:  Stats over 3 runs: max = 7.2s, min = 6.7s, avg = 6.9s, dev = 0.3s
    2554:  D:/_bazel/execroot/selenium/bazel-out/x64_windows-fastbuild/testlogs/rb/spec/integration/selenium/webdriver/virtual_authenticator-edge-remote/test.log
    2555:  D:/_bazel/execroot/selenium/bazel-out/x64_windows-fastbuild/testlogs/rb/spec/integration/selenium/webdriver/virtual_authenticator-edge-remote/test_attempts/attempt_1.log
    2556:  D:/_bazel/execroot/selenium/bazel-out/x64_windows-fastbuild/testlogs/rb/spec/integration/selenium/webdriver/virtual_authenticator-edge-remote/test_attempts/attempt_2.log
    2557:  //rb/spec/integration/selenium/webdriver:window-edge-remote              �[0m�[31m�[1mFAILED�[0m in 3 out of 3 in 7.0s
    2558:  Stats over 3 runs: max = 7.0s, min = 6.8s, avg = 6.9s, dev = 0.1s
    2559:  D:/_bazel/execroot/selenium/bazel-out/x64_windows-fastbuild/testlogs/rb/spec/integration/selenium/webdriver/window-edge-remote/test.log
    2560:  D:/_bazel/execroot/selenium/bazel-out/x64_windows-fastbuild/testlogs/rb/spec/integration/selenium/webdriver/window-edge-remote/test_attempts/attempt_1.log
    2561:  D:/_bazel/execroot/selenium/bazel-out/x64_windows-fastbuild/testlogs/rb/spec/integration/selenium/webdriver/window-edge-remote/test_attempts/attempt_2.log
    2562:  //rb/spec/integration/selenium/webdriver:zipper-edge-remote              �[0m�[31m�[1mFAILED�[0m in 3 out of 3 in 6.9s
    2563:  Stats over 3 runs: max = 6.9s, min = 6.9s, avg = 6.9s, dev = 0.0s
    2564:  D:/_bazel/execroot/selenium/bazel-out/x64_windows-fastbuild/testlogs/rb/spec/integration/selenium/webdriver/zipper-edge-remote/test.log
    2565:  D:/_bazel/execroot/selenium/bazel-out/x64_windows-fastbuild/testlogs/rb/spec/integration/selenium/webdriver/zipper-edge-remote/test_attempts/attempt_1.log
    2566:  D:/_bazel/execroot/selenium/bazel-out/x64_windows-fastbuild/testlogs/rb/spec/integration/selenium/webdriver/zipper-edge-remote/test_attempts/attempt_2.log
    2567:  //rb/spec/integration/selenium/webdriver/bidi:browsing_context-edge-remote �[0m�[31m�[1mFAILED�[0m in 3 out of 3 in 6.7s
    2568:  Stats over 3 runs: max = 6.7s, min = 6.6s, avg = 6.7s, dev = 0.0s
    2569:  D:/_bazel/execroot/selenium/bazel-out/x64_windows-fastbuild/testlogs/rb/spec/integration/selenium/webdriver/bidi/browsing_context-edge-remote/test.log
    2570:  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
    2571:  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
    2572:  //rb/spec/integration/selenium/webdriver/bidi:log_inspector-edge-remote  �[0m�[31m�[1mFAILED�[0m in 3 out of 3 in 6.7s
    2573:  Stats over 3 runs: max = 6.7s, min = 6.6s, avg = 6.7s, dev = 0.0s
    2574:  D:/_bazel/execroot/selenium/bazel-out/x64_windows-fastbuild/testlogs/rb/spec/integration/selenium/webdriver/bidi/log_inspector-edge-remote/test.log
    2575:  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
    2576:  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
    2577:  //rb/spec/integration/selenium/webdriver/edge:driver-edge-remote         �[0m�[31m�[1mFAILED�[0m in 3 out of 3 in 7.5s
    2578:  Stats over 3 runs: max = 7.5s, min = 6.7s, avg = 7.1s, dev = 0.3s
    2579:  D:/_bazel/execroot/selenium/bazel-out/x64_windows-fastbuild/testlogs/rb/spec/integration/selenium/webdriver/edge/driver-edge-remote/test.log
    2580:  D:/_bazel/execroot/selenium/bazel-out/x64_windows-fastbuild/testlogs/rb/spec/integration/selenium/webdriver/edge/driver-edge-remote/test_attempts/attempt_1.log
    2581:  D:/_bazel/execroot/selenium/bazel-out/x64_windows-fastbuild/testlogs/rb/spec/integration/selenium/webdriver/edge/driver-edge-remote/test_attempts/attempt_2.log
    2582:  //rb/spec/integration/selenium/webdriver/edge:options-edge-remote        �[0m�[31m�[1mFAILED�[0m in 3 out of 3 in 6.9s
    2583:  Stats over 3 runs: max = 6.9s, min = 6.9s, avg = 6.9s, dev = 0.0s
    2584:  D:/_bazel/execroot/selenium/bazel-out/x64_windows-fastbuild/testlogs/rb/spec/integration/selenium/webdriver/edge/options-edge-remote/test.log
    2585:  D:/_bazel/execroot/selenium/bazel-out/x64_windows-fastbuild/testlogs/rb/spec/integration/selenium/webdriver/edge/options-edge-remote/test_attempts/attempt_1.log
    2586:  D:/_bazel/execroot/selenium/bazel-out/x64_windows-fastbuild/testlogs/rb/spec/integration/selenium/webdriver/edge/options-edge-remote/test_attempts/attempt_2.log
    2587:  //rb/spec/integration/selenium/webdriver/edge:profile-edge-remote        �[0m�[31m�[1mFAILED�[0m in 3 out of 3 in 6.9s
    2588:  Stats over 3 runs: max = 6.9s, min = 6.8s, avg = 6.9s, dev = 0.0s
    2589:  D:/_bazel/execroot/selenium/bazel-out/x64_windows-fastbuild/testlogs/rb/spec/integration/selenium/webdriver/edge/profile-edge-remote/test.log
    2590:  D:/_bazel/execroot/selenium/bazel-out/x64_windows-fastbuild/testlogs/rb/spec/integration/selenium/webdriver/edge/profile-edge-remote/test_attempts/attempt_1.log
    2591:  D:/_bazel/execroot/selenium/bazel-out/x64_windows-fastbuild/testlogs/rb/spec/integration/selenium/webdriver/edge/profile-edge-remote/test_attempts/attempt_2.log
    2592:  //rb/spec/integration/selenium/webdriver/edge:service-edge-remote        �[0m�[31m�[1mFAILED�[0m in 3 out of 3 in 7.1s
    2593:  Stats over 3 runs: max = 7.1s, min = 6.7s, avg = 6.9s, dev = 0.2s
    2594:  D:/_bazel/execroot/selenium/bazel-out/x64_windows-fastbuild/testlogs/rb/spec/integration/selenium/webdriver/edge/service-edge-remote/test.log
    2595:  D:/_bazel/execroot/selenium/bazel-out/x64_windows-fastbuild/testlogs/rb/spec/integration/selenium/webdriver/edge/service-edge-remote/test_attempts/attempt_1.log
    2596:  D:/_bazel/execroot/selenium/bazel-out/x64_windows-fastbuild/testlogs/rb/spec/integration/selenium/webdriver/edge/service-edge-remote/test_attempts/attempt_2.log
    2597:  //rb/spec/integration/selenium/webdriver/remote:driver-edge-remote       �[0m�[31m�[1mFAILED�[0m in 3 out of 3 in 6.9s
    2598:  Stats over 3 runs: max = 6.9s, min = 6.7s, avg = 6.8s, dev = 0.1s
    2599:  D:/_bazel/execroot/selenium/bazel-out/x64_windows-fastbuild/testlogs/rb/spec/integration/selenium/webdriver/remote/driver-edge-remote/test.log
    2600:  D:/_bazel/execroot/selenium/bazel-out/x64_windows-fastbuild/testlogs/rb/spec/integration/selenium/webdriver/remote/driver-edge-remote/test_attempts/attempt_1.log
    2601:  D:/_bazel/execroot/selenium/bazel-out/x64_windows-fastbuild/testlogs/rb/spec/integration/selenium/webdriver/remote/driver-edge-remote/test_attempts/attempt_2.log
    2602:  //rb/spec/integration/selenium/webdriver/remote:element-edge-remote      �[0m�[31m�[1mFAILED�[0m in 3 out of 3 in 7.3s
    2603:  Stats over 3 runs: max = 7.3s, min = 6.7s, avg = 7.1s, dev = 0.3s
    2604:  D:/_bazel/execroot/selenium/bazel-out/x64_windows-fastbuild/testlogs/rb/spec/integration/selenium/webdriver/remote/element-edge-remote/test.log
    2605:  D:/_bazel/execroot/selenium/bazel-out/x64_windows-fastbuild/testlogs/rb/spec/integration/selenium/webdriver/remote/element-edge-remote/test_attempts/attempt_1.log
    2606:  D:/_bazel/execroot/selenium/bazel-out/x64_windows-fastbuild/testlogs/rb/spec/integration/selenium/webdriver/remote/element-edge-remote/test_attempts/attempt_2.log
    2607:  Executed 27 out of 27 tests: �[0m�[31m�[1m27 fail locally�[0m.
    2608:  �[0m
    2609:  ##[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