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

Merged
merged 1 commit into from
Mar 25, 2024

Conversation

selenium-ci
Copy link
Member

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

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

Copy link
Contributor

PR Description updated to latest commit (479a70f)

Copy link
Contributor

PR Review

⏱️ Estimated effort to review [1-5]

2, because the changes are straightforward version updates for browsers and their checksums. The structure of the changes is repetitive and does not involve complex logic, making it easier to review.

🧪 Relevant tests

No

🔍 Possible issues

Dependency on External URLs: The PR relies on external URLs for downloading browser versions. If these URLs become unavailable or compromised, it could affect the build process or security.

Version Compatibility: While the PR updates to newer browser versions, there's no explicit mention of testing these versions for compatibility with existing features or tests. This could potentially introduce bugs if the new versions have breaking changes.

🔒 Security concerns

No


✨ Review tool usage guide:

Overview:
The review tool scans the PR code changes, and generates a PR review. 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=...

With a configuration file, use the following template:

[pr_reviewer]
some_config1=...
some_config2=...
Utilizing extra instructions

The review tool can be configured with extra instructions, which can be used to guide the model to a feedback tailored to the needs of your project.

Be specific, clear, and concise in the instructions. With extra instructions, you are the prompter. Specify the relevant sub-tool, and the relevant aspects of the PR that you want to emphasize.

Examples for extra instructions:

[pr_reviewer] # /review #
extra_instructions="""
In the 'possible issues' section, emphasize the following:
- Does the code logic cover relevant edge cases?
- Is the code logic clear and easy to understand?
- Is the code logic efficient?
...
"""

Use triple quotes to write multi-line instructions. Use bullet points to make the instructions more readable.

How to enable\disable automation
  • When you first install PR-Agent app, the default mode for the review tool is:
pr_commands = ["/review", ...]

meaning the review tool will run automatically on every PR, with the default configuration.
Edit this field to enable/disable the tool, or to change the used configurations

Auto-labels

The review tool can auto-generate two specific types of labels for a PR:

  • a possible security issue label, that detects possible security issues (enable_review_labels_security flag)
  • a Review effort [1-5]: x label, where x is the estimated effort to review the PR (enable_review_labels_effort flag)
Extra sub-tools

The review tool provides a collection of possible feedbacks about a PR.
It is recommended to review the possible options, and choose the ones relevant for your use case.
Some of the feature that are disabled by default are quite useful, and should be considered for enabling. For example:
require_score_review, require_soc2_ticket, require_can_be_split_review, and more.

Auto-approve PRs

By invoking:

/review auto_approve

The tool will automatically approve the PR, and add a comment with the approval.

To ensure safety, the auto-approval feature is disabled by default. To enable auto-approval, you need to actively set in a pre-defined configuration file the following:

[pr_reviewer]
enable_auto_approval = true

(this specific flag cannot be set with a command line argument, only in the configuration file, committed to the repository)

You can also enable auto-approval only if the PR meets certain requirements, such as that the estimated_review_effort is equal or below a certain threshold, by adjusting the flag:

[pr_reviewer]
maximal_review_effort = 5
More PR-Agent commands

To invoke the PR-Agent, add a comment using one of the following commands:

  • /review: Request a review of your Pull Request.
  • /describe: Update the PR title and description based on the contents of the PR.
  • /improve [--extended]: Suggest code improvements. Extended mode provides a higher quality feedback.
  • /ask <QUESTION>: Ask a question about the PR.
  • /update_changelog: Update the changelog based on the PR's contents.
  • /add_docs 💎: Generate docstring for new components introduced in the PR.
  • /generate_labels 💎: Generate labels for the PR based on the PR's contents.
  • /analyze 💎: Automatically analyzes the PR, and presents changes walkthrough for each component.

See the tools guide for more details.
To list the possible configuration parameters, add a /config comment.

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

Copy link
Contributor

qodo-merge-pro bot commented Mar 23, 2024

PR Code Suggestions

CategorySuggestions                                                                                                                                                       
Security
Verify the integrity of downloaded files by checking SHA256 checksums against a trusted source.

Consider verifying the integrity of the downloaded files by adding a step to check the
SHA256 checksums against a trusted source or using a secure method to obtain the
checksums. This ensures that the files have not been tampered with and are exactly as the
publisher intended.

common/repositories.bzl [15]

-sha256 = "b419cb0a10f6f601b1066d75f57b10e378f56b961be8c9dc1c7f73b869ecf82d",
+# Example: Verify SHA256 checksum
+# sha256 = "<verified-checksum>"
+# Ensure to replace <verified-checksum> with the checksum obtained from a trusted source.
 
Maintainability
Centralize browser version management to simplify updates and ensure consistency.

To improve maintainability, consider creating a centralized location or a configuration
file for managing browser versions and their corresponding download URLs and SHA256
checksums. This approach simplifies updates and ensures consistency across different parts
of the codebase.

common/repositories.bzl [14-15]

-url = "https://ftp.mozilla.org/pub/firefox/releases/124.0.1/linux-x86_64/en-US/firefox-124.0.1.tar.bz2",
-sha256 = "b419cb0a10f6f601b1066d75f57b10e378f56b961be8c9dc1c7f73b869ecf82d",
+# Example: Use a centralized configuration for browser versions
+# firefox_linux_version = "124.0.1"
+# firefox_linux_url = f"https://ftp.mozilla.org/pub/firefox/releases/{firefox_linux_version}/linux-x86_64/en-US/firefox-{firefox_linux_version}.tar.bz2"
+# firefox_linux_sha256 = "<verified-checksum>"
 
Enhancement
Add retry logic for downloads to improve robustness against network issues.

For better error handling and user feedback, consider adding a fallback mechanism or retry
logic for the download process. This can help mitigate issues with temporary network
problems or server downtime, ensuring the build process is more robust.

common/repositories.bzl [14]

-url = "https://ftp.mozilla.org/pub/firefox/releases/124.0.1/linux-x86_64/en-US/firefox-124.0.1.tar.bz2",
+# Example: Add retry logic for the download process
+# try:
+#     download(url, sha256)
+# except DownloadError as e:
+#     log("Download failed, retrying...")
+#     download(url, sha256)
 
Add support for multiple architectures to ensure compatibility.

To ensure compatibility and prevent potential issues with different architectures,
consider adding support for downloading browser versions specific to the architecture
(e.g., ARM64) in addition to the existing x86_64 versions.

common/repositories.bzl [14]

-url = "https://ftp.mozilla.org/pub/firefox/releases/124.0.1/linux-x86_64/en-US/firefox-124.0.1.tar.bz2",
+# Example: Add support for ARM64 architecture
+# if architecture == "ARM64":
+#     url = "https://ftp.mozilla.org/pub/firefox/releases/124.0.1/linux-arm64/en-US/firefox-124.0.1.tar.bz2"
+# else:
+#     url = "https://ftp.mozilla.org/pub/firefox/releases/124.0.1/linux-x86_64/en-US/firefox-124.0.1.tar.bz2"
 
Implement automatic fetching of the latest browser versions and checksums to simplify updates.

To facilitate easier updates and maintenance, consider implementing a function or
mechanism to automatically fetch the latest browser versions and their SHA256 checksums
from a trusted API or source. This can reduce manual update efforts and minimize the risk
of using outdated versions.

common/repositories.bzl [14-15]

-url = "https://ftp.mozilla.org/pub/firefox/releases/124.0.1/linux-x86_64/en-US/firefox-124.0.1.tar.bz2",
-sha256 = "b419cb0a10f6f601b1066d75f57b10e378f56b961be8c9dc1c7f73b869ecf82d",
+# Example: Automatically fetch the latest version and checksum
+# version, sha256 = fetch_latest_browser_version("firefox", "linux-x86_64")
+# url = f"https://ftp.mozilla.org/pub/firefox/releases/{version}/linux-x86_64/en-US/firefox-{version}.tar.bz2"
 

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

With a configuration file, use the following template:

[pr_code_suggestions]
some_config1=...
some_config2=...
Enabling\disabling automation

When you first install the app, the default mode for the improve tool is:

pr_commands = ["/improve --pr_code_suggestions.summarize=true", ...]

meaning the improve tool will run automatically on every PR, with summarization enabled. Delete this line to disable the tool from running automatically.

Utilizing extra instructions

Extra instructions are very important for the improve tool, since they enable to guide the model to suggestions that are more relevant to the specific needs of the project.

Be specific, clear, and concise in the instructions. With extra instructions, you are the prompter. Specify relevant aspects that you want the model to focus on.

Examples for extra instructions:

[pr_code_suggestions] # /improve #
extra_instructions="""
Emphasize the following aspects:
- Does the code logic cover relevant edge cases?
- Is the code logic clear and easy to understand?
- Is the code logic efficient?
...
"""

Use triple quotes to write multi-line instructions. Use bullet points to make the instructions more readable.

A note on code suggestions quality
  • While the current AI for code is getting better and better (GPT-4), it's not flawless. Not all the suggestions will be perfect, and a user should not accept all of them automatically.
  • Suggestions are not meant to be simplistic. Instead, they aim to give deep feedback and raise questions, ideas and thoughts to the user, who can then use his judgment, experience, and understanding of the code base.
  • Recommended to use the 'extra_instructions' field to guide the model to suggestions that are more relevant to the specific needs of the project, or use the custom suggestions 💎 tool
  • With large PRs, best quality will be obtained by using 'improve --extended' mode.
More PR-Agent commands

To invoke the PR-Agent, add a comment using one of the following commands:

  • /review: Request a review of your Pull Request.
  • /describe: Update the PR title and description based on the contents of the PR.
  • /improve [--extended]: Suggest code improvements. Extended mode provides a higher quality feedback.
  • /ask <QUESTION>: Ask a question about the PR.
  • /update_changelog: Update the changelog based on the PR's contents.
  • /add_docs 💎: Generate docstring for new components introduced in the PR.
  • /generate_labels 💎: Generate labels for the PR based on the PR's contents.
  • /analyze 💎: Automatically analyzes the PR, and presents changes walkthrough for each component.

See the tools guide for more details.
To list the possible configuration parameters, add a /config comment.

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

@codecov-commenter
Copy link

codecov-commenter commented Mar 23, 2024

Codecov Report

All modified and coverable lines are covered by tests ✅

Project coverage is 58.48%. Comparing base (f437fdd) to head (8487a86).

❗ Current head 8487a86 differs from pull request most recent head 8d73e2d. Consider uploading reports for the commit 8d73e2d to get more accurate results

❗ Your organization needs to install the Codecov GitHub app to enable full functionality.

Additional details and impacted files
@@           Coverage Diff           @@
##            trunk   #13725   +/-   ##
=======================================
  Coverage   58.48%   58.48%           
=======================================
  Files          86       86           
  Lines        5270     5270           
  Branches      220      220           
=======================================
  Hits         3082     3082           
  Misses       1968     1968           
  Partials      220      220           

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

Copy link
Contributor

qodo-merge-pro bot commented Mar 23, 2024

CI Failure Feedback

(Checks updated until commit f226eb7)

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

Failed stage: Run Bazel [❌]

Failure summary:

All tests failed due to a permission denied error when attempting to spawn a process. This is likely
due to insufficient permissions to execute the Java command required for the tests. The error
Errno::EACCES: Permission denied - java indicates that the environment running the tests does not
have the necessary permissions to execute Java commands, which are essential for running the
Selenium WebDriver tests.

Relevant error logs:
1:  ##[group]Operating System
2:  Microsoft Windows Server 2022
...

652:  �[32mAnalyzing:�[0m 27 targets (634 packages loaded, 11372 targets configured)
653:  �[32m[1 / 1]�[0m checking cached actions
654:  �[32mAnalyzing:�[0m 27 targets (634 packages loaded, 38401 targets configured)
655:  �[32m[1 / 22]�[0m [Prepa] Writing repo mapping manifest for //rb/spec/integration/selenium/webdriver:driver-edge-remote
656:  �[32mINFO: �[0mAnalyzed 27 targets (634 packages loaded, 38401 targets configured).
657:  �[32m[8 / 33]�[0m Creating source manifest for //rb/spec/integration/selenium/webdriver:select-edge-remote; 0s local ... (3 actions, 2 running)
658:  �[32m[19 / 53]�[0m Creating source manifest for //rb/spec/integration/selenium/webdriver:manager-edge-remote; 0s local ... (4 actions, 2 running)
659:  �[32m[199 / 1,037]�[0m [Prepa] Creating source manifest for //rb/spec/integration/selenium/webdriver:navigation-edge-remote ... (3 actions, 2 running)
660:  �[32m[605 / 1,418]�[0m Writing file external/io_bazel_rules_closure/closure/library/debug/errorcontext_worker_input; 0s local ... (2 actions running)
...

681:  �[35mWARNING: �[0mD:/a/selenium/selenium/BUILD.bazel:13:22: input 'package' to //:.aspect_rules_js/node_modules/path-type@4.0.0/pkg is a directory; dependency checking of directories is unsound
682:  �[35mWARNING: �[0mD:/a/selenium/selenium/BUILD.bazel:13:22: input 'package' to //:.aspect_rules_js/node_modules/path-parse@1.0.7/pkg is a directory; dependency checking of directories is unsound
683:  �[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
684:  �[35mWARNING: �[0mD:/a/selenium/selenium/BUILD.bazel:13:22: input 'package' to //:.aspect_rules_js/node_modules/parent-module@1.0.1/pkg is a directory; dependency checking of directories is unsound
685:  �[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
686:  �[35mWARNING: �[0mD:/a/selenium/selenium/BUILD.bazel:13:22: input 'package' to //:.aspect_rules_js/node_modules/ms@2.1.2/pkg is a directory; dependency checking of directories is unsound
687:  �[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
688:  �[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
689:  �[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
...

697:  �[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
698:  �[35mWARNING: �[0mD:/a/selenium/selenium/BUILD.bazel:13:22: input 'package' to //:.aspect_rules_js/node_modules/graphql-tag@2.12.6_graphql_16.8.1/pkg is a directory; dependency checking of directories is unsound
699:  �[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
700:  �[35mWARNING: �[0mD:/a/selenium/selenium/BUILD.bazel:13:22: input 'package' to //:.aspect_rules_js/node_modules/globals@11.12.0/pkg is a directory; dependency checking of directories is unsound
701:  �[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
702:  �[35mWARNING: �[0mD:/a/selenium/selenium/BUILD.bazel:13:22: input 'package' to //:.aspect_rules_js/node_modules/function-bind@1.1.1/pkg is a directory; dependency checking of directories is unsound
703:  �[35mWARNING: �[0mD:/a/selenium/selenium/BUILD.bazel:13:22: input 'package' to //:.aspect_rules_js/node_modules/escape-string-regexp@1.0.5/pkg is a directory; dependency checking of directories is unsound
704:  �[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
705:  �[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
...

824:  �[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
825:  �[35mWARNING: �[0mD:/a/selenium/selenium/BUILD.bazel:13:22: input 'package' to //:.aspect_rules_js/node_modules/@wry+trie@0.4.3/pkg is a directory; dependency checking of directories is unsound
826:  �[35mWARNING: �[0mD:/a/selenium/selenium/BUILD.bazel:13:22: input 'package' to //:.aspect_rules_js/node_modules/@wry+equality@0.5.6/pkg is a directory; dependency checking of directories is unsound
827:  �[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
828:  �[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
829:  �[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
830:  �[32m[2,658 / 2,875]�[0m [Prepa] Copying directory npm__at_mui_icons-material__5.15.8__-108852140/package ... (3 actions, 0 running)
831:  �[32mINFO: �[0mFrom Building java/src/org/openqa/selenium/remote/libapi-class.jar (65 source files):
832:  java\src\org\openqa\selenium\remote\ErrorHandler.java:46: warning: [removal] ErrorCodes in org.openqa.selenium.remote has been deprecated and marked for removal
833:  private final ErrorCodes errorCodes;
834:  ^
835:  java\src\org\openqa\selenium\remote\ErrorHandler.java:60: warning: [removal] ErrorCodes in org.openqa.selenium.remote has been deprecated and marked for removal
836:  this.errorCodes = new ErrorCodes();
837:  ^
838:  java\src\org\openqa\selenium\remote\ErrorHandler.java:68: warning: [removal] ErrorCodes in org.openqa.selenium.remote has been deprecated and marked for removal
839:  public ErrorHandler(ErrorCodes codes, boolean includeServerErrors) {
840:  ^
841:  java\src\org\openqa\selenium\remote\Response.java:97: warning: [removal] ErrorCodes in org.openqa.selenium.remote has been deprecated and marked for removal
842:  ErrorCodes errorCodes = new ErrorCodes();
843:  ^
844:  java\src\org\openqa\selenium\remote\Response.java:97: warning: [removal] ErrorCodes in org.openqa.selenium.remote has been deprecated and marked for removal
845:  ErrorCodes errorCodes = new ErrorCodes();
846:  ^
847:  java\src\org\openqa\selenium\remote\ProtocolHandshake.java:206: warning: [removal] ErrorCodes in org.openqa.selenium.remote has been deprecated and marked for removal
848:  response.setStatus(ErrorCodes.SUCCESS);
849:  ^
850:  java\src\org\openqa\selenium\remote\ProtocolHandshake.java:207: warning: [removal] ErrorCodes in org.openqa.selenium.remote has been deprecated and marked for removal
851:  response.setState(ErrorCodes.SUCCESS_STRING);
852:  ^
853:  java\src\org\openqa\selenium\remote\W3CHandshakeResponse.java:53: warning: [removal] ErrorCodes in org.openqa.selenium.remote has been deprecated and marked for removal
854:  new ErrorCodes().toStatus((String) rawError, Optional.of(tuple.getStatusCode())));
855:  ^
856:  java\src\org\openqa\selenium\remote\W3CHandshakeResponse.java:56: warning: [removal] ErrorCodes in org.openqa.selenium.remote has been deprecated and marked for removal
857:  new ErrorCodes().getExceptionType((String) rawError);
858:  ^
859:  java\src\org\openqa\selenium\remote\codec\AbstractHttpResponseCodec.java:44: warning: [removal] ErrorCodes in org.openqa.selenium.remote has been deprecated and marked for removal
860:  private final ErrorCodes errorCodes = new ErrorCodes();
861:  ^
862:  java\src\org\openqa\selenium\remote\codec\AbstractHttpResponseCodec.java:44: warning: [removal] ErrorCodes in org.openqa.selenium.remote has been deprecated and marked for removal
863:  private final ErrorCodes errorCodes = new ErrorCodes();
864:  ^
865:  java\src\org\openqa\selenium\remote\codec\AbstractHttpResponseCodec.java:55: warning: [removal] ErrorCodes in org.openqa.selenium.remote has been deprecated and marked for removal
866:  int status = response.getStatus() == ErrorCodes.SUCCESS ? HTTP_OK : HTTP_INTERNAL_ERROR;
867:  ^
868:  java\src\org\openqa\selenium\remote\codec\AbstractHttpResponseCodec.java:101: warning: [removal] ErrorCodes in org.openqa.selenium.remote has been deprecated and marked for removal
869:  response.setStatus(ErrorCodes.UNKNOWN_COMMAND);
870:  ^
871:  java\src\org\openqa\selenium\remote\codec\AbstractHttpResponseCodec.java:103: warning: [removal] ErrorCodes in org.openqa.selenium.remote has been deprecated and marked for removal
872:  response.setStatus(ErrorCodes.UNHANDLED_ERROR);
873:  ^
874:  java\src\org\openqa\selenium\remote\codec\AbstractHttpResponseCodec.java:124: warning: [removal] ErrorCodes in org.openqa.selenium.remote has been deprecated and marked for removal
875:  response.setStatus(ErrorCodes.SUCCESS);
876:  ^
877:  java\src\org\openqa\selenium\remote\codec\AbstractHttpResponseCodec.java:125: warning: [removal] ErrorCodes in org.openqa.selenium.remote has been deprecated and marked for removal
878:  response.setState(errorCodes.toState(ErrorCodes.SUCCESS));
879:  ^
880:  java\src\org\openqa\selenium\remote\codec\AbstractHttpResponseCodec.java:131: warning: [removal] ErrorCodes in org.openqa.selenium.remote has been deprecated and marked for removal
881:  response.setState(errorCodes.toState(ErrorCodes.SUCCESS));
882:  ^
883:  java\src\org\openqa\selenium\remote\codec\w3c\W3CHttpResponseCodec.java:70: warning: [removal] ErrorCodes in org.openqa.selenium.remote has been deprecated and marked for removal
884:  private final ErrorCodes errorCodes = new ErrorCodes();
885:  ^
886:  java\src\org\openqa\selenium\remote\codec\w3c\W3CHttpResponseCodec.java:70: warning: [removal] ErrorCodes in org.openqa.selenium.remote has been deprecated and marked for removal
887:  private final ErrorCodes errorCodes = new ErrorCodes();
888:  ^
889:  java\src\org\openqa\selenium\remote\codec\w3c\W3CHttpResponseCodec.java:93: warning: [removal] ErrorCodes in org.openqa.selenium.remote has been deprecated and marked for removal
890:  response.setStatus(ErrorCodes.UNKNOWN_COMMAND);
891:  ^
892:  java\src\org\openqa\selenium\remote\codec\w3c\W3CHttpResponseCodec.java:98: warning: [removal] ErrorCodes in org.openqa.selenium.remote has been deprecated and marked for removal
893:  response.setStatus(ErrorCodes.UNHANDLED_ERROR);
894:  ^
895:  java\src\org\openqa\selenium\remote\codec\w3c\W3CHttpResponseCodec.java:145: warning: [removal] ErrorCodes in org.openqa.selenium.remote has been deprecated and marked for removal
896:  response.setStatus(ErrorCodes.SUCCESS);
...

1029:  �[32m[2,875 / 2,898]�[0m Testing //rb/spec/integration/selenium/webdriver:listener-edge-remote; 47s local, disk-cache ... (4 actions running)
1030:  �[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)
1031:  �[32m[2,875 / 2,898]�[0m Testing //rb/spec/integration/selenium/webdriver:listener-edge-remote; 48s local, disk-cache ... (4 actions running)
1032:  �[32m[2,875 / 2,898]�[0m Testing //rb/spec/integration/selenium/webdriver:listener-edge-remote; 54s local, disk-cache ... (4 actions running)
1033:  �[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)
1034:  �[32m[2,875 / 2,898]�[0m Testing //rb/spec/integration/selenium/webdriver:listener-edge-remote; 55s local, disk-cache ... (4 actions running)
1035:  �[32m[2,875 / 2,898]�[0m Testing //rb/spec/integration/selenium/webdriver:listener-edge-remote; 61s local, disk-cache ... (4 actions running)
1036:  �[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)
1037:  �[31m�[1mFAILED: �[0m//rb/spec/integration/selenium/webdriver:listener-edge-remote (Summary)
1038:  D:/_bazel/execroot/selenium/bazel-out/x64_windows-fastbuild/testlogs/rb/spec/integration/selenium/webdriver/listener-edge-remote/test.log
1039:  ==================== Test output for //rb/spec/integration/selenium/webdriver:listener-edge-remote:
1040:  D:/_bazel/execroot/selenium/bazel-out/x64_windows-fastbuild/testlogs/rb/spec/integration/selenium/webdriver/listener-edge-remote/test_attempts/attempt_1.log
1041:  2024-03-25 13:48:23 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
1042:  D:/_bazel/execroot/selenium/bazel-out/x64_windows-fastbuild/testlogs/rb/spec/integration/selenium/webdriver/listener-edge-remote/test_attempts/attempt_2.log
1043:  �[32mINFO: �[0mFrom Testing //rb/spec/integration/selenium/webdriver:listener-edge-remote:
1044:  An error occurred in a `before(:suite)` hook.
1045:  Failure/Error: @pid = Process.spawn(*@command, options)
1046:  Errno::EACCES:
1047:  Permission denied - java
1048:  # ./rb/lib/selenium/webdriver/common/child_process.rb:57:in `spawn'
1049:  # ./rb/lib/selenium/webdriver/common/child_process.rb:57:in `start'
1050:  # ./rb/lib/selenium/server.rb:204:in `start'
1051:  # //?/D:/a/selenium/selenium/rb/spec/integration/selenium/webdriver/spec_helper.rb:40:in `block (2 levels) in <top (required)>'
1052:  Finished in 0.05431 seconds (files took 0.647 seconds to load)
1053:  0 examples, 0 failures, 1 error occurred outside of examples
1054:  ================================================================================
1055:  ==================== Test output for //rb/spec/integration/selenium/webdriver:listener-edge-remote:
1056:  2024-03-25 13:48:51 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
1057:  An error occurred in a `before(:suite)` hook.
1058:  Failure/Error: @pid = Process.spawn(*@command, options)
1059:  Errno::EACCES:
1060:  Permission denied - java
1061:  # ./rb/lib/selenium/webdriver/common/child_process.rb:57:in `spawn'
1062:  # ./rb/lib/selenium/webdriver/common/child_process.rb:57:in `start'
1063:  # ./rb/lib/selenium/server.rb:204:in `start'
1064:  # //?/D:/a/selenium/selenium/rb/spec/integration/selenium/webdriver/spec_helper.rb:40:in `block (2 levels) in <top (required)>'
1065:  Finished in 0.05174 seconds (files took 0.65453 seconds to load)
1066:  0 examples, 0 failures, 1 error occurred outside of examples
1067:  ================================================================================
1068:  ==================== Test output for //rb/spec/integration/selenium/webdriver:listener-edge-remote:
1069:  2024-03-25 13:49:18 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
1070:  An error occurred in a `before(:suite)` hook.
1071:  Failure/Error: @pid = Process.spawn(*@command, options)
1072:  Errno::EACCES:
1073:  Permission denied - java
1074:  # ./rb/lib/selenium/webdriver/common/child_process.rb:57:in `spawn'
1075:  # ./rb/lib/selenium/webdriver/common/child_process.rb:57:in `start'
1076:  # ./rb/lib/selenium/server.rb:204:in `start'
1077:  # //?/D:/a/selenium/selenium/rb/spec/integration/selenium/webdriver/spec_helper.rb:40:in `block (2 levels) in <top (required)>'
1078:  Finished in 0.04741 seconds (files took 0.59742 seconds to load)
1079:  0 examples, 0 failures, 1 error occurred outside of examples
1080:  ================================================================================
1081:  �[32m[2,876 / 2,898]�[0m 1 / 27 tests, �[31m�[1m1 failed�[0m;�[0m Testing //rb/spec/integration/selenium/webdriver:manager-edge-remote; 56s local, disk-cache ... (4 actions, 3 running)
1082:  �[32m[2,876 / 2,898]�[0m 1 / 27 tests, �[31m�[1m1 failed�[0m;�[0m Testing //rb/spec/integration/selenium/webdriver:manager-edge-remote; 61s local, disk-cache ... (4 actions, 3 running)
1083:  �[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)
1084:  ==================== Test output for //rb/spec/integration/selenium/webdriver:manager-edge-remote:
1085:  �[31m�[1mFAILED: �[0m//rb/spec/integration/selenium/webdriver:manager-edge-remote (Summary)
1086:  2024-03-25 13:48:30 INFO Selenium Server Location: D:/_bazel/execroot/selenium/bazel-out/x64_windows-fastbuild/bin/rb/spec/integration/selenium/webdriver/manager-edge-remote.cmd.runfiles/selenium/java/src/org/openqa/selenium/grid/selenium_server_deploy.jar
1087:  D:/_bazel/execroot/selenium/bazel-out/x64_windows-fastbuild/testlogs/rb/spec/integration/selenium/webdriver/manager-edge-remote/test.log
1088:  D:/_bazel/execroot/selenium/bazel-out/x64_windows-fastbuild/testlogs/rb/spec/integration/selenium/webdriver/manager-edge-remote/test_attempts/attempt_1.log
1089:  D:/_bazel/execroot/selenium/bazel-out/x64_windows-fastbuild/testlogs/rb/spec/integration/selenium/webdriver/manager-edge-remote/test_attempts/attempt_2.log
1090:  �[32mINFO: �[0mFrom Testing //rb/spec/integration/selenium/webdriver:manager-edge-remote:
1091:  An error occurred in a `before(:suite)` hook.
1092:  Failure/Error: @pid = Process.spawn(*@command, options)
1093:  Errno::EACCES:
1094:  Permission denied - java
1095:  # ./rb/lib/selenium/webdriver/common/child_process.rb:57:in `spawn'
1096:  # ./rb/lib/selenium/webdriver/common/child_process.rb:57:in `start'
1097:  # ./rb/lib/selenium/server.rb:204:in `start'
1098:  # //?/D:/a/selenium/selenium/rb/spec/integration/selenium/webdriver/spec_helper.rb:40:in `block (2 levels) in <top (required)>'
1099:  Finished in 0.04633 seconds (files took 0.60586 seconds to load)
1100:  0 examples, 0 failures, 1 error occurred outside of examples
1101:  ================================================================================
1102:  ==================== Test output for //rb/spec/integration/selenium/webdriver:manager-edge-remote:
1103:  2024-03-25 13:48:57 INFO Selenium Server Location: D:/_bazel/execroot/selenium/bazel-out/x64_windows-fastbuild/bin/rb/spec/integration/selenium/webdriver/manager-edge-remote.cmd.runfiles/selenium/java/src/org/openqa/selenium/grid/selenium_server_deploy.jar
1104:  An error occurred in a `before(:suite)` hook.
1105:  Failure/Error: @pid = Process.spawn(*@command, options)
1106:  Errno::EACCES:
1107:  Permission denied - java
1108:  # ./rb/lib/selenium/webdriver/common/child_process.rb:57:in `spawn'
1109:  # ./rb/lib/selenium/webdriver/common/child_process.rb:57:in `start'
1110:  # ./rb/lib/selenium/server.rb:204:in `start'
1111:  # //?/D:/a/selenium/selenium/rb/spec/integration/selenium/webdriver/spec_helper.rb:40:in `block (2 levels) in <top (required)>'
1112:  Finished in 0.04661 seconds (files took 0.60236 seconds to load)
1113:  0 examples, 0 failures, 1 error occurred outside of examples
1114:  ================================================================================
1115:  ==================== Test output for //rb/spec/integration/selenium/webdriver:manager-edge-remote:
1116:  2024-03-25 13:49:25 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
1117:  An error occurred in a `before(:suite)` hook.
1118:  Failure/Error: @pid = Process.spawn(*@command, options)
1119:  Errno::EACCES:
1120:  Permission denied - java
1121:  # ./rb/lib/selenium/webdriver/common/child_process.rb:57:in `spawn'
1122:  # ./rb/lib/selenium/webdriver/common/child_process.rb:57:in `start'
1123:  # ./rb/lib/selenium/server.rb:204:in `start'
1124:  # //?/D:/a/selenium/selenium/rb/spec/integration/selenium/webdriver/spec_helper.rb:40:in `block (2 levels) in <top (required)>'
1125:  Finished in 0.05068 seconds (files took 0.71984 seconds to load)
1126:  0 examples, 0 failures, 1 error occurred outside of examples
1127:  ================================================================================
1128:  �[32m[2,877 / 2,898]�[0m 2 / 27 tests, �[31m�[1m2 failed�[0m;�[0m Testing //rb/spec/integration/selenium/webdriver:select-edge-remote; 56s local, disk-cache ... (4 actions, 2 running)
1129:  �[32m[2,877 / 2,898]�[0m 2 / 27 tests, �[31m�[1m2 failed�[0m;�[0m Testing //rb/spec/integration/selenium/webdriver:select-edge-remote; 59s local, disk-cache ... (4 actions, 2 running)
1130:  �[32m[2,877 / 2,898]�[0m 2 / 27 tests, �[31m�[1m2 failed�[0m;�[0m Testing //rb/spec/integration/selenium/webdriver:select-edge-remote; 62s local, disk-cache ... (4 actions, 2 running)
1131:  �[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)
1132:  �[31m�[1mFAILED: �[0m//rb/spec/integration/selenium/webdriver:select-edge-remote (Summary)
1133:  D:/_bazel/execroot/selenium/bazel-out/x64_windows-fastbuild/testlogs/rb/spec/integration/selenium/webdriver/select-edge-remote/test.log
1134:  D:/_bazel/execroot/selenium/bazel-out/x64_windows-fastbuild/testlogs/rb/spec/integration/selenium/webdriver/select-edge-remote/test_attempts/attempt_1.log
1135:  D:/_bazel/execroot/selenium/bazel-out/x64_windows-fastbuild/testlogs/rb/spec/integration/selenium/webdriver/select-edge-remote/test_attempts/attempt_2.log
1136:  �[32mINFO: �[0mFrom Testing //rb/spec/integration/selenium/webdriver:select-edge-remote:
1137:  ==================== Test output for //rb/spec/integration/selenium/webdriver:select-edge-remote:
1138:  2024-03-25 13:48:37 INFO Selenium Server Location: D:/_bazel/execroot/selenium/bazel-out/x64_windows-fastbuild/bin/rb/spec/integration/selenium/webdriver/select-edge-remote.cmd.runfiles/selenium/java/src/org/openqa/selenium/grid/selenium_server_deploy.jar
1139:  An error occurred in a `before(:suite)` hook.
1140:  Failure/Error: @pid = Process.spawn(*@command, options)
1141:  Errno::EACCES:
1142:  Permission denied - java
1143:  # ./rb/lib/selenium/webdriver/common/child_process.rb:57:in `spawn'
1144:  # ./rb/lib/selenium/webdriver/common/child_process.rb:57:in `start'
1145:  # ./rb/lib/selenium/server.rb:204:in `start'
1146:  # //?/D:/a/selenium/selenium/rb/spec/integration/selenium/webdriver/spec_helper.rb:40:in `block (2 levels) in <top (required)>'
1147:  Finished in 0.04647 seconds (files took 0.63896 seconds to load)
1148:  0 examples, 0 failures, 1 error occurred outside of examples
1149:  ================================================================================
1150:  ==================== Test output for //rb/spec/integration/selenium/webdriver:select-edge-remote:
1151:  2024-03-25 13:49:04 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
1152:  An error occurred in a `before(:suite)` hook.
1153:  Failure/Error: @pid = Process.spawn(*@command, options)
1154:  Errno::EACCES:
1155:  Permission denied - java
1156:  # ./rb/lib/selenium/webdriver/common/child_process.rb:57:in `spawn'
1157:  # ./rb/lib/selenium/webdriver/common/child_process.rb:57:in `start'
1158:  # ./rb/lib/selenium/server.rb:204:in `start'
1159:  # //?/D:/a/selenium/selenium/rb/spec/integration/selenium/webdriver/spec_helper.rb:40:in `block (2 levels) in <top (required)>'
1160:  Finished in 0.04849 seconds (files took 0.63456 seconds to load)
1161:  0 examples, 0 failures, 1 error occurred outside of examples
1162:  ================================================================================
1163:  ==================== Test output for //rb/spec/integration/selenium/webdriver:select-edge-remote:
1164:  2024-03-25 13:49:32 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
1165:  An error occurred in a `before(:suite)` hook.
1166:  Failure/Error: @pid = Process.spawn(*@command, options)
1167:  Errno::EACCES:
1168:  Permission denied - java
1169:  # ./rb/lib/selenium/webdriver/common/child_process.rb:57:in `spawn'
1170:  # ./rb/lib/selenium/webdriver/common/child_process.rb:57:in `start'
1171:  # ./rb/lib/selenium/server.rb:204:in `start'
1172:  # //?/D:/a/selenium/selenium/rb/spec/integration/selenium/webdriver/spec_helper.rb:40:in `block (2 levels) in <top (required)>'
1173:  Finished in 0.06936 seconds (files took 0.84853 seconds to load)
1174:  0 examples, 0 failures, 1 error occurred outside of examples
1175:  ================================================================================
1176:  �[32m[2,878 / 2,898]�[0m 3 / 27 tests, �[31m�[1m3 failed�[0m;�[0m Testing //rb/spec/integration/selenium/webdriver:driver-edge-remote; 56s local, disk-cache ... (4 actions, 1 running)
1177:  �[32m[2,878 / 2,898]�[0m 3 / 27 tests, �[31m�[1m3 failed�[0m;�[0m Testing //rb/spec/integration/selenium/webdriver:driver-edge-remote; 62s local, disk-cache ... (4 actions, 1 running)
1178:  �[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)
1179:  ==================== Test output for //rb/spec/integration/selenium/webdriver:driver-edge-remote:
1180:  �[31m�[1mFAILED: �[0m//rb/spec/integration/selenium/webdriver:driver-edge-remote (Summary)
1181:  2024-03-25 13:48:44 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
1182:  D:/_bazel/execroot/selenium/bazel-out/x64_windows-fastbuild/testlogs/rb/spec/integration/selenium/webdriver/driver-edge-remote/test.log
1183:  An error occurred in a `before(:suite)` hook.
1184:  D:/_bazel/execroot/selenium/bazel-out/x64_windows-fastbuild/testlogs/rb/spec/integration/selenium/webdriver/driver-edge-remote/test_attempts/attempt_1.log
1185:  Failure/Error: @pid = Process.spawn(*@command, options)
...

1187:  �[32mINFO: �[0mFrom Testing //rb/spec/integration/selenium/webdriver:driver-edge-remote:
1188:  Errno::EACCES:
1189:  Permission denied - java
1190:  # ./rb/lib/selenium/webdriver/common/child_process.rb:57:in `spawn'
1191:  # ./rb/lib/selenium/webdriver/common/child_process.rb:57:in `start'
1192:  # ./rb/lib/selenium/server.rb:204:in `start'
1193:  # //?/D:/a/selenium/selenium/rb/spec/integration/selenium/webdriver/spec_helper.rb:40:in `block (2 levels) in <top (required)>'
1194:  Finished in 0.04329 seconds (files took 0.61224 seconds to load)
1195:  0 examples, 0 failures, 1 error occurred outside of examples
1196:  ================================================================================
1197:  ==================== Test output for //rb/spec/integration/selenium/webdriver:driver-edge-remote:
1198:  2024-03-25 13:49:11 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
1199:  An error occurred in a `before(:suite)` hook.
1200:  Failure/Error: @pid = Process.spawn(*@command, options)
1201:  Errno::EACCES:
1202:  Permission denied - java
1203:  # ./rb/lib/selenium/webdriver/common/child_process.rb:57:in `spawn'
1204:  # ./rb/lib/selenium/webdriver/common/child_process.rb:57:in `start'
1205:  # ./rb/lib/selenium/server.rb:204:in `start'
1206:  # //?/D:/a/selenium/selenium/rb/spec/integration/selenium/webdriver/spec_helper.rb:40:in `block (2 levels) in <top (required)>'
1207:  Finished in 0.04671 seconds (files took 0.62787 seconds to load)
1208:  0 examples, 0 failures, 1 error occurred outside of examples
1209:  ================================================================================
1210:  ==================== Test output for //rb/spec/integration/selenium/webdriver:driver-edge-remote:
1211:  2024-03-25 13:49:40 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
1212:  An error occurred in a `before(:suite)` hook.
1213:  Failure/Error: @pid = Process.spawn(*@command, options)
1214:  Errno::EACCES:
1215:  Permission denied - java
1216:  # ./rb/lib/selenium/webdriver/common/child_process.rb:57:in `spawn'
1217:  # ./rb/lib/selenium/webdriver/common/child_process.rb:57:in `start'
1218:  # ./rb/lib/selenium/server.rb:204:in `start'
1219:  # //?/D:/a/selenium/selenium/rb/spec/integration/selenium/webdriver/spec_helper.rb:40:in `block (2 levels) in <top (required)>'
1220:  Finished in 0.07253 seconds (files took 0.79529 seconds to load)
1221:  0 examples, 0 failures, 1 error occurred outside of examples
1222:  ================================================================================
1223:  �[32m[2,879 / 2,898]�[0m 4 / 27 tests, �[31m�[1m4 failed�[0m;�[0m Testing //rb/spec/integration/selenium/webdriver:storage-edge-remote; 7s disk-cache ... (4 actions, 1 running)
1224:  �[32m[2,879 / 2,898]�[0m 4 / 27 tests, �[31m�[1m4 failed�[0m;�[0m Testing //rb/spec/integration/selenium/webdriver:storage-edge-remote; 8s disk-cache ... (4 actions, 1 running)
1225:  �[32m[2,879 / 2,898]�[0m 4 / 27 tests, �[31m�[1m4 failed�[0m;�[0m Testing //rb/spec/integration/selenium/webdriver:storage-edge-remote; 14s disk-cache ... (4 actions, 2 running)
1226:  �[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)
1227:  �[32m[2,879 / 2,898]�[0m 4 / 27 tests, �[31m�[1m4 failed�[0m;�[0m Testing //rb/spec/integration/selenium/webdriver:guard-edge-remote; 8s local, disk-cache ... (4 actions, 2 running)
1228:  �[32m[2,879 / 2,898]�[0m 4 / 27 tests, �[31m�[1m4 failed�[0m;�[0m Testing //rb/spec/integration/selenium/webdriver:guard-edge-remote; 9s local, disk-cache ... (4 actions, 2 running)
1229:  �[32m[2,879 / 2,898]�[0m 4 / 27 tests, �[31m�[1m4 failed�[0m;�[0m Testing //rb/spec/integration/selenium/webdriver:guard-edge-remote; 11s local, disk-cache ... (4 actions, 2 running)
1230:  �[32m[2,879 / 2,898]�[0m 4 / 27 tests, �[31m�[1m4 failed�[0m;�[0m Testing //rb/spec/integration/selenium/webdriver:guard-edge-remote; 14s local, disk-cache ... (4 actions, 2 running)
1231:  �[32m[2,879 / 2,898]�[0m 4 / 27 tests, �[31m�[1m4 failed�[0m;�[0m Testing //rb/spec/integration/selenium/webdriver:guard-edge-remote; 15s local, disk-cache ... (4 actions, 3 running)
1232:  �[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)
1233:  �[32m[2,879 / 2,898]�[0m 4 / 27 tests, �[31m�[1m4 failed�[0m;�[0m Testing //rb/spec/integration/selenium/webdriver:guard-edge-remote; 16s local, disk-cache ... (4 actions, 3 running)
1234:  �[32m[2,879 / 2,898]�[0m 4 / 27 tests, �[31m�[1m4 failed�[0m;�[0m Testing //rb/spec/integration/selenium/webdriver:guard-edge-remote; 22s local, disk-cache ... (4 actions, 3 running)
1235:  �[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)
1236:  �[32m[2,879 / 2,898]�[0m 4 / 27 tests, �[31m�[1m4 failed�[0m;�[0m Testing //rb/spec/integration/selenium/webdriver:guard-edge-remote; 23s local, disk-cache ... (4 actions, 3 running)
1237:  �[32m[2,879 / 2,898]�[0m 4 / 27 tests, �[31m�[1m4 failed�[0m;�[0m Testing //rb/spec/integration/selenium/webdriver:guard-edge-remote; 29s local, disk-cache ... (4 actions running)
1238:  �[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)
1239:  �[32m[2,879 / 2,898]�[0m 4 / 27 tests, �[31m�[1m4 failed�[0m;�[0m Testing //rb/spec/integration/selenium/webdriver:guard-edge-remote; 30s local, disk-cache ... (4 actions running)
1240:  �[32m[2,879 / 2,898]�[0m 4 / 27 tests, �[31m�[1m4 failed�[0m;�[0m Testing //rb/spec/integration/selenium/webdriver:guard-edge-remote; 35s local, disk-cache ... (4 actions running)
1241:  �[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)
1242:  �[32m[2,879 / 2,898]�[0m 4 / 27 tests, �[31m�[1m4 failed�[0m;�[0m Testing //rb/spec/integration/selenium/webdriver:guard-edge-remote; 36s local, disk-cache ... (4 actions running)
1243:  �[32m[2,879 / 2,898]�[0m 4 / 27 tests, �[31m�[1m4 failed�[0m;�[0m Testing //rb/spec/integration/selenium/webdriver:guard-edge-remote; 41s local, disk-cache ... (4 actions running)
1244:  �[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)
1245:  �[32m[2,879 / 2,898]�[0m 4 / 27 tests, �[31m�[1m4 failed�[0m;�[0m Testing //rb/spec/integration/selenium/webdriver:guard-edge-remote; 43s local, disk-cache ... (4 actions running)
1246:  �[32m[2,879 / 2,898]�[0m 4 / 27 tests, �[31m�[1m4 failed�[0m;�[0m Testing //rb/spec/integration/selenium/webdriver:guard-edge-remote; 44s local, disk-cache ... (4 actions running)
1247:  �[32m[2,879 / 2,898]�[0m 4 / 27 tests, �[31m�[1m4 failed�[0m;�[0m Testing //rb/spec/integration/selenium/webdriver:guard-edge-remote; 49s local, disk-cache ... (4 actions running)
1248:  �[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)
1249:  �[32m[2,879 / 2,898]�[0m 4 / 27 tests, �[31m�[1m4 failed�[0m;�[0m Testing //rb/spec/integration/selenium/webdriver:guard-edge-remote; 50s local, disk-cache ... (4 actions running)
1250:  �[32m[2,879 / 2,898]�[0m 4 / 27 tests, �[31m�[1m4 failed�[0m;�[0m Testing //rb/spec/integration/selenium/webdriver:guard-edge-remote; 56s local, disk-cache ... (4 actions running)
1251:  �[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)
1252:  �[31m�[1mFAILED: �[0m//rb/spec/integration/selenium/webdriver:guard-edge-remote (Summary)
1253:  D:/_bazel/execroot/selenium/bazel-out/x64_windows-fastbuild/testlogs/rb/spec/integration/selenium/webdriver/guard-edge-remote/test.log
1254:  D:/_bazel/execroot/selenium/bazel-out/x64_windows-fastbuild/testlogs/rb/spec/integration/selenium/webdriver/guard-edge-remote/test_attempts/attempt_1.log
1255:  D:/_bazel/execroot/selenium/bazel-out/x64_windows-fastbuild/testlogs/rb/spec/integration/selenium/webdriver/guard-edge-remote/test_attempts/attempt_2.log
1256:  �[32mINFO: �[0mFrom Testing //rb/spec/integration/selenium/webdriver:guard-edge-remote:
1257:  ==================== Test output for //rb/spec/integration/selenium/webdriver:guard-edge-remote:
1258:  2024-03-25 13:49: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
1259:  An error occurred in a `before(:suite)` hook.
1260:  Failure/Error: @pid = Process.spawn(*@command, options)
1261:  Errno::EACCES:
1262:  Permission denied - java
1263:  # ./rb/lib/selenium/webdriver/common/child_process.rb:57:in `spawn'
1264:  # ./rb/lib/selenium/webdriver/common/child_process.rb:57:in `start'
1265:  # ./rb/lib/selenium/server.rb:204:in `start'
1266:  # //?/D:/a/selenium/selenium/rb/spec/integration/selenium/webdriver/spec_helper.rb:40:in `block (2 levels) in <top (required)>'
1267:  Finished in 0.05281 seconds (files took 1.11 seconds to load)
1268:  0 examples, 0 failures, 1 error occurred outside of examples
1269:  ================================================================================
1270:  ==================== Test output for //rb/spec/integration/selenium/webdriver:guard-edge-remote:
1271:  2024-03-25 13:50: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
1272:  An error occurred in a `before(:suite)` hook.
1273:  Failure/Error: @pid = Process.spawn(*@command, options)
1274:  Errno::EACCES:
1275:  Permission denied - java
1276:  # ./rb/lib/selenium/webdriver/common/child_process.rb:57:in `spawn'
1277:  # ./rb/lib/selenium/webdriver/common/child_process.rb:57:in `start'
1278:  # ./rb/lib/selenium/server.rb:204:in `start'
1279:  # //?/D:/a/selenium/selenium/rb/spec/integration/selenium/webdriver/spec_helper.rb:40:in `block (2 levels) in <top (required)>'
1280:  Finished in 0.04703 seconds (files took 0.59854 seconds to load)
1281:  0 examples, 0 failures, 1 error occurred outside of examples
1282:  ================================================================================
1283:  ==================== Test output for //rb/spec/integration/selenium/webdriver:guard-edge-remote:
1284:  2024-03-25 13:50:36 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
1285:  An error occurred in a `before(:suite)` hook.
1286:  Failure/Error: @pid = Process.spawn(*@command, options)
1287:  Errno::EACCES:
1288:  Permission denied - java
1289:  # ./rb/lib/selenium/webdriver/common/child_process.rb:57:in `spawn'
1290:  # ./rb/lib/selenium/webdriver/common/child_process.rb:57:in `start'
1291:  # ./rb/lib/selenium/server.rb:204:in `start'
1292:  # //?/D:/a/selenium/selenium/rb/spec/integration/selenium/webdriver/spec_helper.rb:40:in `block (2 levels) in <top (required)>'
1293:  Finished in 0.04604 seconds (files took 0.58257 seconds to load)
1294:  0 examples, 0 failures, 1 error occurred outside of examples
1295:  ================================================================================
1296:  �[32m[2,880 / 2,898]�[0m 5 / 27 tests, �[31m�[1m5 failed�[0m;�[0m Testing //rb/spec/integration/selenium/webdriver:error-edge-remote; 50s local, disk-cache ... (4 actions, 3 running)
1297:  �[32m[2,880 / 2,898]�[0m 5 / 27 tests, �[31m�[1m5 failed�[0m;�[0m Testing //rb/spec/integration/selenium/webdriver:error-edge-remote; 55s local, disk-cache ... (4 actions, 3 running)
1298:  �[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)
1299:  �[32m[2,880 / 2,898]�[0m 5 / 27 tests, �[31m�[1m5 failed�[0m;�[0m Testing //rb/spec/integration/selenium/webdriver:error-edge-remote; 56s local, disk-cache ... (4 actions, 3 running)
1300:  �[32m[2,880 / 2,898]�[0m 5 / 27 tests, �[31m�[1m5 failed�[0m;�[0m Testing //rb/spec/integration/selenium/webdriver:error-edge-remote; 59s local, disk-cache ... (4 actions, 3 running)
1301:  �[32m[2,880 / 2,898]�[0m 5 / 27 tests, �[31m�[1m5 failed�[0m;�[0m Testing //rb/spec/integration/selenium/webdriver:error-edge-remote; 61s local, disk-cache ... (4 actions, 3 running)
1302:  �[32m[2,880 / 2,898]�[0m 5 / 27 tests, �[31m�[1m5 failed�[0m;�[0m Testing //rb/spec/integration/selenium/webdriver:error-edge-remote; 62s local, disk-cache ... (4 actions, 3 running)
1303:  �[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)
1304:  �[31m�[1mFAILED: �[0m//rb/spec/integration/selenium/webdriver:error-edge-remote (Summary)
1305:  D:/_bazel/execroot/selenium/bazel-out/x64_windows-fastbuild/testlogs/rb/spec/integration/selenium/webdriver/error-edge-remote/test.log
1306:  D:/_bazel/execroot/selenium/bazel-out/x64_windows-fastbuild/testlogs/rb/spec/integration/selenium/webdriver/error-edge-remote/test_attempts/attempt_1.log
1307:  ==================== Test output for //rb/spec/integration/selenium/webdriver:error-edge-remote:
1308:  2024-03-25 13:49:55 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
1309:  D:/_bazel/execroot/selenium/bazel-out/x64_windows-fastbuild/testlogs/rb/spec/integration/selenium/webdriver/error-edge-remote/test_attempts/attempt_2.log
1310:  An error occurred in a `before(:suite)` hook.
1311:  �[32mINFO: �[0mFrom Testing //rb/spec/integration/selenium/webdriver:error-edge-remote:
1312:  Failure/Error: @pid = Process.spawn(*@command, options)
1313:  Errno::EACCES:
1314:  Permission denied - java
1315:  # ./rb/lib/selenium/webdriver/common/child_process.rb:57:in `spawn'
1316:  # ./rb/lib/selenium/webdriver/common/child_process.rb:57:in `start'
1317:  # ./rb/lib/selenium/server.rb:204:in `start'
1318:  # //?/D:/a/selenium/selenium/rb/spec/integration/selenium/webdriver/spec_helper.rb:40:in `block (2 levels) in <top (required)>'
1319:  Finished in 0.06914 seconds (files took 0.90377 seconds to load)
1320:  0 examples, 0 failures, 1 error occurred outside of examples
1321:  ================================================================================
1322:  ==================== Test output for //rb/spec/integration/selenium/webdriver:error-edge-remote:
1323:  2024-03-25 13:50:22 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
1324:  An error occurred in a `before(:suite)` hook.
1325:  Failure/Error: @pid = Process.spawn(*@command, options)
1326:  Errno::EACCES:
1327:  Permission denied - java
1328:  # ./rb/lib/selenium/webdriver/common/child_process.rb:57:in `spawn'
1329:  # ./rb/lib/selenium/webdriver/common/child_process.rb:57:in `start'
1330:  # ./rb/lib/selenium/server.rb:204:in `start'
1331:  # //?/D:/a/selenium/selenium/rb/spec/integration/selenium/webdriver/spec_helper.rb:40:in `block (2 levels) in <top (required)>'
1332:  Finished in 0.04625 seconds (files took 0.61694 seconds to load)
1333:  0 examples, 0 failures, 1 error occurred outside of examples
1334:  ================================================================================
1335:  ==================== Test output for //rb/spec/integration/selenium/webdriver:error-edge-remote:
1336:  2024-03-25 13:50:50 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
1337:  An error occurred in a `before(:suite)` hook.
1338:  Failure/Error: @pid = Process.spawn(*@command, options)
1339:  Errno::EACCES:
1340:  Permission denied - java
1341:  # ./rb/lib/selenium/webdriver/common/child_process.rb:57:in `spawn'
1342:  # ./rb/lib/selenium/webdriver/common/child_process.rb:57:in `start'
1343:  # ./rb/lib/selenium/server.rb:204:in `start'
1344:  # //?/D:/a/selenium/selenium/rb/spec/integration/selenium/webdriver/spec_helper.rb:40:in `block (2 levels) in <top (required)>'
1345:  Finished in 0.0525 seconds (files took 0.83975 seconds to load)
1346:  0 examples, 0 failures, 1 error occurred outside of examples
1347:  ================================================================================
1348:  �[32m[2,881 / 2,898]�[0m 6 / 27 tests, �[31m�[1m6 failed�[0m;�[0m Testing //rb/spec/integration/selenium/webdriver:storage-edge-remote; 56s local, disk-cache ... (4 actions, 2 running)
1349:  �[32m[2,881 / 2,898]�[0m 6 / 27 tests, �[31m�[1m6 failed�[0m;�[0m Testing //rb/spec/integration/selenium/webdriver:storage-edge-remote; 62s local, disk-cache ... (4 actions, 2 running)
1350:  �[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)
1351:  ==================== Test output for //rb/spec/integration/selenium/webdriver:storage-edge-remote:
1352:  2024-03-25 13:50: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
1353:  An error occurred in a `before(:suite)` hook.
1354:  Failure/Error: @pid = Process.spawn(*@command, options)
1355:  Errno::EACCES:
1356:  Permission denied - java
1357:  # ./rb/lib/selenium/webdriver/common/child_process.rb:57:in `spawn'
1358:  # ./rb/lib/selenium/webdriver/common/child_process.rb:57:in `start'
1359:  # ./rb/lib/selenium/server.rb:204:in `start'
1360:  # //?/D:/a/selenium/selenium/rb/spec/integration/selenium/webdriver/spec_helper.rb:40:in `block (2 levels) in <top (required)>'
1361:  Finished in 0.04758 seconds (files took 0.62123 seconds to load)
1362:  0 examples, 0 failures, 1 error occurred outside of examples
1363:  ================================================================================
1364:  ==================== Test output for //rb/spec/integration/selenium/webdriver:storage-edge-remote:
1365:  2024-03-25 13:50:29 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
1366:  An error occurred in a `before(:suite)` hook.
1367:  Failure/Error: @pid = Process.spawn(*@command, options)
1368:  Errno::EACCES:
1369:  Permission denied - java
1370:  # ./rb/lib/selenium/webdriver/common/child_process.rb:57:in `spawn'
1371:  # ./rb/lib/selenium/webdriver/common/child_process.rb:57:in `start'
1372:  # ./rb/lib/selenium/server.rb:204:in `start'
1373:  # //?/D:/a/selenium/selenium/rb/spec/integration/selenium/webdriver/spec_helper.rb:40:in `block (2 levels) in <top (required)>'
1374:  Finished in 0.04386 seconds (files took 0.61486 seconds to load)
1375:  0 examples, 0 failures, 1 error occurred outside of examples
1376:  ================================================================================
1377:  ==================== Test output for //rb/spec/integration/selenium/webdriver:storage-edge-remote:
1378:  2024-03-25 13:50:57 INFO Selenium Server Location: D:/_bazel/execroot/selenium/bazel-out/x64_windows-fastbuild/bin/rb/spec/integration/selenium/webdriver/storage-edge-remote.cmd.runfiles/selenium/java/src/org/openqa/selenium/grid/selenium_server_deploy.jar
1379:  An error occurred in a `before(:suite)` hook.
1380:  Failure/Error: @pid = Process.spawn(*@command, options)
1381:  Errno::EACCES:
1382:  Permission denied - java
1383:  # ./rb/lib/selenium/webdriver/common/child_process.rb:57:in `spawn'
1384:  # ./rb/lib/selenium/webdriver/common/child_process.rb:57:in `start'
1385:  # ./rb/lib/selenium/server.rb:204:in `start'
1386:  # //?/D:/a/selenium/selenium/rb/spec/integration/selenium/webdriver/spec_helper.rb:40:in `block (2 levels) in <top (required)>'
1387:  Finished in 0.0482 seconds (files took 0.62488 seconds to load)
1388:  0 examples, 0 failures, 1 error occurred outside of examples
1389:  ================================================================================
1390:  �[31m�[1mFAILED: �[0m//rb/spec/integration/selenium/webdriver:storage-edge-remote (Summary)
1391:  D:/_bazel/execroot/selenium/bazel-out/x64_windows-fastbuild/testlogs/rb/spec/integration/selenium/webdriver/storage-edge-remote/test.log
1392:  D:/_bazel/execroot/selenium/bazel-out/x64_windows-fastbuild/testlogs/rb/spec/integration/selenium/webdriver/storage-edge-remote/test_attempts/attempt_1.log
1393:  D:/_bazel/execroot/selenium/bazel-out/x64_windows-fastbuild/testlogs/rb/spec/integration/selenium/webdriver/storage-edge-remote/test_attempts/attempt_2.log
1394:  �[32mINFO: �[0mFrom Testing //rb/spec/integration/selenium/webdriver:storage-edge-remote:
1395:  �[32m[2,882 / 2,898]�[0m 7 / 27 tests, �[31m�[1m7 failed�[0m;�[0m Testing //rb/spec/integration/selenium/webdriver:shadow_root-edge-remote; 49s local, disk-cache ... (4 actions, 1 running)
1396:  �[32m[2,882 / 2,898]�[0m 7 / 27 tests, �[31m�[1m7 failed�[0m;�[0m Testing //rb/spec/integration/selenium/webdriver:shadow_root-edge-remote; 53s local, disk-cache ... (4 actions, 1 running)
1397:  �[32m[2,882 / 2,898]�[0m 7 / 27 tests, �[31m�[1m7 failed�[0m;�[0m Testing //rb/spec/integration/selenium/webdriver:shadow_root-edge-remote; 55s local, disk-cache ... (4 actions, 2 running)
1398:  �[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)
1399:  ==================== Test output for //rb/spec/integration/selenium/webdriver:shadow_root-edge-remote:
1400:  2024-03-25 13:50:16 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
1401:  �[31m�[1mFAILED: �[0m//rb/spec/integration/selenium/webdriver:shadow_root-edge-remote (Summary)
1402:  D:/_bazel/execroot/selenium/bazel-out/x64_windows-fastbuild/testlogs/rb/spec/integration/selenium/webdriver/shadow_root-edge-remote/test.log
1403:  An error occurred in a `before(:suite)` hook.
1404:  D:/_bazel/execroot/selenium/bazel-out/x64_windows-fastbuild/testlogs/rb/spec/integration/selenium/webdriver/shadow_root-edge-remote/test_attempts/attempt_1.log
1405:  Failure/Error: @pid = Process.spawn(*@command, options)
...

1407:  �[32mINFO: �[0mFrom Testing //rb/spec/integration/selenium/webdriver:shadow_root-edge-remote:
1408:  Errno::EACCES:
1409:  Permission denied - java
1410:  # ./rb/lib/selenium/webdriver/common/child_process.rb:57:in `spawn'
1411:  # ./rb/lib/selenium/webdriver/common/child_process.rb:57:in `start'
1412:  # ./rb/lib/selenium/server.rb:204:in `start'
1413:  # //?/D:/a/selenium/selenium/rb/spec/integration/selenium/webdriver/spec_helper.rb:40:in `block (2 levels) in <top (required)>'
1414:  Finished in 0.04509 seconds (files took 0.60756 seconds to load)
1415:  0 examples, 0 failures, 1 error occurred outside of examples
1416:  ================================================================================
1417:  ==================== Test output for //rb/spec/integration/selenium/webdriver:shadow_root-edge-remote:
1418:  2024-03-25 13:50:43 INFO Selenium Server Location: D:/_bazel/execroot/selenium/bazel-out/x64_windows-fastbuild/bin/rb/spec/integration/selenium/webdriver/shadow_root-edge-remote.cmd.runfiles/selenium/java/src/org/openqa/selenium/grid/selenium_server_deploy.jar
1419:  An error occurred in a `before(:suite)` hook.
1420:  Failure/Error: @pid = Process.spawn(*@command, options)
1421:  Errno::EACCES:
1422:  Permission denied - java
1423:  # ./rb/lib/selenium/webdriver/common/child_process.rb:57:in `spawn'
1424:  # ./rb/lib/selenium/webdriver/common/child_process.rb:57:in `start'
1425:  # ./rb/lib/selenium/server.rb:204:in `start'
1426:  # //?/D:/a/selenium/selenium/rb/spec/integration/selenium/webdriver/spec_helper.rb:40:in `block (2 levels) in <top (required)>'
1427:  Finished in 0.04776 seconds (files took 0.68621 seconds to load)
1428:  0 examples, 0 failures, 1 error occurred outside of examples
1429:  ================================================================================
1430:  ==================== Test output for //rb/spec/integration/selenium/webdriver:shadow_root-edge-remote:
1431:  2024-03-25 13:51:05 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
1432:  An error occurred in a `before(:suite)` hook.
1433:  Failure/Error: @pid = Process.spawn(*@command, options)
1434:  Errno::EACCES:
1435:  Permission denied - java
1436:  # ./rb/lib/selenium/webdriver/common/child_process.rb:57:in `spawn'
1437:  # ./rb/lib/selenium/webdriver/common/child_process.rb:57:in `start'
1438:  # ./rb/lib/selenium/server.rb:204:in `start'
1439:  # //?/D:/a/selenium/selenium/rb/spec/integration/selenium/webdriver/spec_helper.rb:40:in `block (2 levels) in <top (required)>'
1440:  Finished in 0.0635 seconds (files took 0.83328 seconds to load)
1441:  0 examples, 0 failures, 1 error occurred outside of examples
1442:  ================================================================================
1443:  �[32m[2,883 / 2,898]�[0m 8 / 27 tests, �[31m�[1m8 failed�[0m;�[0m Testing //rb/spec/integration/selenium/webdriver:virtual_authenticator-edge-remote; 7s disk-cache ... (4 actions, 1 running)
1444:  �[32m[2,883 / 2,898]�[0m 8 / 27 tests, �[31m�[1m8 failed�[0m;�[0m [Sched] Testing //rb/spec/integration/selenium/webdriver:navigation-edge-remote; 8s ... (4 actions, 1 running)
1445:  �[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)
1446:  �[32m[2,883 / 2,898]�[0m 8 / 27 tests, �[31m�[1m8 failed�[0m;�[0m Testing //rb/spec/integration/selenium/webdriver/edge:profile-edge-remote; 8s local, disk-cache ... (4 actions, 2 running)
1447:  �[32m[2,883 / 2,898]�[0m 8 / 27 tests, �[31m�[1m8 failed�[0m;�[0m Testing //rb/spec/integration/selenium/webdriver/edge:profile-edge-remote; 9s local, disk-cache ... (4 actions, 2 running)
1448:  �[32m[2,883 / 2,898]�[0m 8 / 27 tests, �[31m�[1m8 failed�[0m;�[0m Testing //rb/spec/integration/selenium/webdriver/edge:profile-edge-remote; 11s local, disk-cache ... (4 actions, 2 running)
1449:  �[32m[2,883 / 2,898]�[0m 8 / 27 tests, �[31m�[1m8 failed�[0m;�[0m Testing //rb/spec/integration/selenium/webdriver/edge:profile-edge-remote; 12s local, disk-cache ... (4 actions, 2 running)
1450:  �[32m[2,883 / 2,898]�[0m 8 / 27 tests, �[31m�[1m8 failed�[0m;�[0m Testing //rb/spec/integration/selenium/webdriver/edge:profile-edge-remote; 14s local, disk-cache ... (4 actions, 3 running)
1451:  �[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)
1452:  �[32m[2,883 / 2,898]�[0m 8 / 27 tests, �[31m�[1m8 failed�[0m;�[0m Testing //rb/spec/integration/selenium/webdriver/edge:profile-edge-remote; 16s local, disk-cache ... (4 actions, 3 running)
1453:  �[32m[2,883 / 2,898]�[0m 8 / 27 tests, �[31m�[1m8 failed�[0m;�[0m Testing //rb/spec/integration/selenium/webdriver/edge:profile-edge-remote; 21s local, disk-cache ... (4 actions, 3 running)
1454:  �[31m�[1mFAIL: �[0m//rb/spec/integration/selenium/webdriver:virtual_authenticator-edge-remote (see D:/_bazel/execroot/selenium/bazel-out/x64_windows-fastbuild/testlogs/rb/spec/integration/selenium/webdriver/virtual_authenticator-edge-remote/test_attempts/attempt_1.log)
1455:  �[32m[2,883 / 2,898]�[0m 8 / 27 tests, �[31m�[1m8 failed�[0m;�[0m Testing //rb/spec/integration/selenium/webdriver/edge:profile-edge-remote; 23s local, disk-cache ... (4 actions, 3 running)
1456:  �[32m[2,883 / 2,898]�[0m 8 / 27 tests, �[31m�[1m8 failed�[0m;�[0m Testing //rb/spec/integration/selenium/webdriver/edge:profile-edge-remote; 28s local, disk-cache ... (4 actions running)
1457:  �[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)
1458:  �[32m[2,883 / 2,898]�[0m 8 / 27 tests, �[31m�[1m8 failed�[0m;�[0m Testing //rb/spec/integration/selenium/webdriver/edge:profile-edge-remote; 30s local, disk-cache ... (4 actions running)
1459:  �[32m[2,883 / 2,898]�[0m 8 / 27 tests, �[31m�[1m8 failed�[0m;�[0m Testing //rb/spec/integration/selenium/webdriver/edge:profile-edge-remote; 35s local, disk-cache ... (4 actions running)
1460:  �[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)
1461:  �[32m[2,883 / 2,898]�[0m 8 / 27 tests, �[31m�[1m8 failed�[0m;�[0m Testing //rb/spec/integration/selenium/webdriver/edge:profile-edge-remote; 36s local, disk-cache ... (4 actions running)
1462:  �[32m[2,883 / 2,898]�[0m 8 / 27 tests, �[31m�[1m8 failed�[0m;�[0m Testing //rb/spec/integration/selenium/webdriver/edge:profile-edge-remote; 41s local, disk-cache ... (4 actions running)
1463:  �[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)
1464:  �[32m[2,883 / 2,898]�[0m 8 / 27 tests, �[31m�[1m8 failed�[0m;�[0m Testing //rb/spec/integration/selenium/webdriver/edge:profile-edge-remote; 42s local, disk-cache ... (4 actions running)
1465:  �[32m[2,883 / 2,898]�[0m 8 / 27 tests, �[31m�[1m8 failed�[0m;�[0m Testing //rb/spec/integration/selenium/webdriver/edge:profile-edge-remote; 43s local, disk-cache ... (4 actions running)
1466:  �[32m[2,883 / 2,898]�[0m 8 / 27 tests, �[31m�[1m8 failed�[0m;�[0m Testing //rb/spec/integration/selenium/webdriver/edge:profile-edge-remote; 48s local, disk-cache ... (4 actions running)
1467:  �[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)
1468:  �[32m[2,883 / 2,898]�[0m 8 / 27 tests, �[31m�[1m8 failed�[0m;�[0m Testing //rb/spec/integration/selenium/webdriver/edge:profile-edge-remote; 50s local, disk-cache ... (4 actions running)
1469:  �[32m[2,883 / 2,898]�[0m 8 / 27 tests, �[31m�[1m8 failed�[0m;�[0m Testing //rb/spec/integration/selenium/webdriver/edge:profile-edge-remote; 55s local, disk-cache ... (4 actions running)
1470:  �[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)
1471:  ==================== Test output for //rb/spec/integration/selenium/webdriver/edge:profile-edge-remote:
1472:  2024-03-25 13:51:12 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
1473:  �[31m�[1mFAILED: �[0m//rb/spec/integration/selenium/webdriver/edge:profile-edge-remote (Summary)
1474:  D:/_bazel/execroot/selenium/bazel-out/x64_windows-fastbuild/testlogs/rb/spec/integration/selenium/webdriver/edge/profile-edge-remote/test.log
1475:  D:/_bazel/execroot/selenium/bazel-out/x64_windows-fastbuild/testlogs/rb/spec/integration/selenium/webdriver/edge/profile-edge-remote/test_attempts/attempt_1.log
1476:  An error occurred in a `before(:suite)` hook.
1477:  D:/_bazel/execroot/selenium/bazel-out/x64_windows-fastbuild/testlogs/rb/spec/integration/selenium/webdriver/edge/profile-edge-remote/test_attempts/attempt_2.log
1478:  Failure/Error: @pid = Process.spawn(*@command, options)
1479:  �[32mINFO: �[0mFrom Testing //rb/spec/integration/selenium/webdriver/edge:profile-edge-remote:
1480:  Errno::EACCES:
1481:  Permission denied - java
1482:  # ./rb/lib/selenium/webdriver/common/child_process.rb:57:in `spawn'
1483:  # ./rb/lib/selenium/webdriver/common/child_process.rb:57:in `start'
1484:  # ./rb/lib/selenium/server.rb:204:in `start'
1485:  # //?/D:/a/selenium/selenium/rb/spec/integration/selenium/webdriver/spec_helper.rb:40:in `block (2 levels) in <top (required)>'
1486:  Finished in 0.05702 seconds (files took 0.87892 seconds to load)
1487:  0 examples, 0 failures, 1 error occurred outside of examples
1488:  ================================================================================
1489:  ==================== Test output for //rb/spec/integration/selenium/webdriver/edge:profile-edge-remote:
1490:  2024-03-25 13:51:33 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
1491:  An error occurred in a `before(:suite)` hook.
1492:  Failure/Error: @pid = Process.spawn(*@command, options)
1493:  Errno::EACCES:
1494:  Permission denied - java
1495:  # ./rb/lib/selenium/webdriver/common/child_process.rb:57:in `spawn'
1496:  # ./rb/lib/selenium/webdriver/common/child_process.rb:57:in `start'
1497:  # ./rb/lib/selenium/server.rb:204:in `start'
1498:  # //?/D:/a/selenium/selenium/rb/spec/integration/selenium/webdriver/spec_helper.rb:40:in `block (2 levels) in <top (required)>'
1499:  Finished in 0.04726 seconds (files took 0.61958 seconds to load)
1500:  0 examples, 0 failures, 1 error occurred outside of examples
1501:  ================================================================================
1502:  ==================== Test output for //rb/spec/integration/selenium/webdriver/edge:profile-edge-remote:
1503:  2024-03-25 13:52:00 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
1504:  An error occurred in a `before(:suite)` hook.
1505:  Failure/Error: @pid = Process.spawn(*@command, options)
1506:  Errno::EACCES:
1507:  Permission denied - java
1508:  # ./rb/lib/selenium/webdriver/common/child_process.rb:57:in `spawn'
1509:  # ./rb/lib/selenium/webdriver/common/child_process.rb:57:in `start'
1510:  # ./rb/lib/selenium/server.rb:204:in `start'
1511:  # //?/D:/a/selenium/selenium/rb/spec/integration/selenium/webdriver/spec_helper.rb:40:in `block (2 levels) in <top (required)>'
1512:  Finished in 0.04684 seconds (files took 0.63858 seconds to load)
1513:  0 examples, 0 failures, 1 error occurred outside of examples
1514:  ================================================================================
1515:  �[32m[2,884 / 2,898]�[0m 9 / 27 tests, �[31m�[1m9 failed�[0m;�[0m Testing //rb/spec/integration/selenium/webdriver:navigation-edge-remote; 49s local, disk-cache ... (4 actions, 3 running)
1516:  �[32m[2,884 / 2,898]�[0m 9 / 27 tests, �[31m�[1m9 failed�[0m;�[0m Testing //rb/spec/integration/selenium/webdriver:navigation-edge-remote; 55s local, disk-cache ... (4 actions, 3 running)
1517:  �[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)
1518:  �[32m[2,884 / 2,898]�[0m 9 / 27 tests, �[31m�[1m9 failed�[0m;�[0m Testing //rb/spec/integration/selenium/webdriver:navigation-edge-remote; 56s local, disk-cache ... (4 actions, 3 running)
1519:  �[32m[2,884 / 2,898]�[0m 9 / 27 tests, �[31m�[1m9 failed�[0m;�[0m Testing //rb/spec/integration/selenium/webdriver:navigation-edge-remote; 59s local, disk-cache ... (4 actions, 3 running)
1520:  �[32m[2,884 / 2,898]�[0m 9 / 27 tests, �[31m�[1m9 failed�[0m;�[0m Testing //rb/spec/integration/selenium/webdriver:navigation-edge-remote; 60s local, disk-cache ... (4 actions, 3 running)
1521:  �[32m[2,884 / 2,898]�[0m 9 / 27 tests, �[31m�[1m9 failed�[0m;�[0m Testing //rb/spec/integration/selenium/webdriver:navigation-edge-remote; 62s local, disk-cache ... (4 actions, 3 running)
1522:  �[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)
1523:  �[31m�[1mFAILED: �[0m//rb/spec/integration/selenium/webdriver:navigation-edge-remote (Summary)
1524:  D:/_bazel/execroot/selenium/bazel-out/x64_windows-fastbuild/testlogs/rb/spec/integration/selenium/webdriver/navigation-edge-remote/test.log
1525:  D:/_bazel/execroot/selenium/bazel-out/x64_windows-fastbuild/testlogs/rb/spec/integration/selenium/webdriver/navigation-edge-remote/test_attempts/attempt_1.log
1526:  D:/_bazel/execroot/selenium/bazel-out/x64_windows-fastbuild/testlogs/rb/spec/integration/selenium/webdriver/navigation-edge-remote/test_attempts/attempt_2.log
1527:  �[32mINFO: �[0mFrom Testing //rb/spec/integration/selenium/webdriver:navigation-edge-remote:
1528:  ==================== Test output for //rb/spec/integration/selenium/webdriver:navigation-edge-remote:
1529:  2024-03-25 13:51: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
1530:  An error occurred in a `before(:suite)` hook.
1531:  Failure/Error: @pid = Process.spawn(*@command, options)
1532:  Errno::EACCES:
1533:  Permission denied - java
1534:  # ./rb/lib/selenium/webdriver/common/child_process.rb:57:in `spawn'
1535:  # ./rb/lib/selenium/webdriver/common/child_process.rb:57:in `start'
1536:  # ./rb/lib/selenium/server.rb:204:in `start'
1537:  # //?/D:/a/selenium/selenium/rb/spec/integration/selenium/webdriver/spec_helper.rb:40:in `block (2 levels) in <top (required)>'
1538:  Finished in 0.05071 seconds (files took 0.96676 seconds to load)
1539:  0 examples, 0 failures, 1 error occurred outside of examples
1540:  ================================================================================
1541:  ==================== Test output for //rb/spec/integration/selenium/webdriver:navigation-edge-remote:
1542:  2024-03-25 13:51: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
1543:  An error occurred in a `before(:suite)` hook.
1544:  Failure/Error: @pid = Process.spawn(*@command, options)
1545:  Errno::EACCES:
1546:  Permission denied - java
1547:  # ./rb/lib/selenium/webdriver/common/child_process.rb:57:in `spawn'
1548:  # ./rb/lib/selenium/webdriver/common/child_process.rb:57:in `start'
1549:  # ./rb/lib/selenium/server.rb:204:in `start'
1550:  # //?/D:/a/selenium/selenium/rb/spec/integration/selenium/webdriver/spec_helper.rb:40:in `block (2 levels) in <top (required)>'
1551:  Finished in 0.04739 seconds (files took 0.61456 seconds to load)
1552:  0 examples, 0 failures, 1 error occurred outside of examples
1553:  ================================================================================
1554:  ==================== Test output for //rb/spec/integration/selenium/webdriver:navigation-edge-remote:
1555:  2024-03-25 13:52: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
1556:  An error occurred in a `before(:suite)` hook.
1557:  Failure/Error: @pid = Process.spawn(*@command, options)
1558:  Errno::EACCES:
1559:  Permission denied - java
1560:  # ./rb/lib/selenium/webdriver/common/child_process.rb:57:in `spawn'
1561:  # ./rb/lib/selenium/webdriver/common/child_process.rb:57:in `start'
1562:  # ./rb/lib/selenium/server.rb:204:in `start'
1563:  # //?/D:/a/selenium/selenium/rb/spec/integration/selenium/webdriver/spec_helper.rb:40:in `block (2 levels) in <top (required)>'
1564:  Finished in 0.05199 seconds (files took 0.64487 seconds to load)
1565:  0 examples, 0 failures, 1 error occurred outside of examples
1566:  ================================================================================
1567:  �[32m[2,885 / 2,898]�[0m 10 / 27 tests, �[31m�[1m10 failed�[0m;�[0m Testing //rb/spec/integration/selenium/webdriver:virtual_authenticator-edge-remote; 56s local, disk-cache ... (4 actions, 2 running)
1568:  �[32m[2,885 / 2,898]�[0m 10 / 27 tests, �[31m�[1m10 failed�[0m;�[0m Testing //rb/spec/integration/selenium/webdriver:virtual_authenticator-edge-remote; 61s local, disk-cache ... (4 actions, 2 running)
1569:  �[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)
1570:  �[31m�[1mFAILED: �[0m//rb/spec/integration/selenium/webdriver:virtual_authenticator-edge-remote (Summary)
1571:  D:/_bazel/execroot/selenium/bazel-out/x64_windows-fastbuild/testlogs/rb/spec/integration/selenium/webdriver/virtual_authenticator-edge-remote/test.log
1572:  D:/_bazel/execroot/selenium/bazel-out/x64_windows-fastbuild/testlogs/rb/spec/integration/selenium/webdriver/virtual_authenticator-edge-remote/test_attempts/attempt_1.log
1573:  D:/_bazel/execroot/selenium/bazel-out/x64_windows-fastbuild/testlogs/rb/spec/integration/selenium/webdriver/virtual_authenticator-edge-remote/test_attempts/attempt_2.log
1574:  �[32mINFO: �[0mFrom Testing //rb/spec/integration/selenium/webdriver:virtual_authenticator-edge-remote:
1575:  ==================== Test output for //rb/spec/integration/selenium/webdriver:virtual_authenticator-edge-remote:
1576:  2024-03-25 13:51:26 INFO Selenium Server Location: D:/_bazel/execroot/selenium/bazel-out/x64_windows-fastbuild/bin/rb/spec/integration/selenium/webdriver/virtual_authenticator-edge-remote.cmd.runfiles/selenium/java/src/org/openqa/selenium/grid/selenium_server_deploy.jar
1577:  An error occurred in a `before(:suite)` hook.
1578:  Failure/Error: @pid = Process.spawn(*@command, options)
1579:  Errno::EACCES:
1580:  Permission denied - java
1581:  # ./rb/lib/selenium/webdriver/common/child_process.rb:57:in `spawn'
1582:  # ./rb/lib/selenium/webdriver/common/child_process.rb:57:in `start'
1583:  # ./rb/lib/selenium/server.rb:204:in `start'
1584:  # //?/D:/a/selenium/selenium/rb/spec/integration/selenium/webdriver/spec_helper.rb:40:in `block (2 levels) in <top (required)>'
1585:  Finished in 0.04615 seconds (files took 0.62608 seconds to load)
1586:  0 examples, 0 failures, 1 error occurred outside of examples
1587:  ================================================================================
1588:  ==================== Test output for //rb/spec/integration/selenium/webdriver:virtual_authenticator-edge-remote:
1589:  2024-03-25 13:51:53 INFO Selenium Server Location: D:/_bazel/execroot/selenium/bazel-out/x64_windows-fastbuild/bin/rb/spec/integration/selenium/webdriver/virtual_authenticator-edge-remote.cmd.runfiles/selenium/java/src/org/openqa/selenium/grid/selenium_server_deploy.jar
1590:  An error occurred in a `before(:suite)` hook.
1591:  Failure/Error: @pid = Process.spawn(*@command, options)
1592:  Errno::EACCES:
1593:  Permission denied - java
1594:  # ./rb/lib/selenium/webdriver/common/child_process.rb:57:in `spawn'
1595:  # ./rb/lib/selenium/webdriver/common/child_process.rb:57:in `start'
1596:  # ./rb/lib/selenium/server.rb:204:in `start'
1597:  # //?/D:/a/selenium/selenium/rb/spec/integration/selenium/webdriver/spec_helper.rb:40:in `block (2 levels) in <top (required)>'
1598:  Finished in 0.04757 seconds (files took 0.64504 seconds to load)
1599:  0 examples, 0 failures, 1 error occurred outside of examples
1600:  ================================================================================
1601:  ==================== Test output for //rb/spec/integration/selenium/webdriver:virtual_authenticator-edge-remote:
1602:  2024-03-25 13:52:21 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
1603:  An error occurred in a `before(:suite)` hook.
1604:  Failure/Error: @pid = Process.spawn(*@command, options)
1605:  Errno::EACCES:
1606:  Permission denied - java
1607:  # ./rb/lib/selenium/webdriver/common/child_process.rb:57:in `spawn'
1608:  # ./rb/lib/selenium/webdriver/common/child_process.rb:57:in `start'
1609:  # ./rb/lib/selenium/server.rb:204:in `start'
1610:  # //?/D:/a/selenium/selenium/rb/spec/integration/selenium/webdriver/spec_helper.rb:40:in `block (2 levels) in <top (required)>'
1611:  Finished in 0.05303 seconds (files took 0.62857 seconds to load)
1612:  0 examples, 0 failures, 1 error occurred outside of examples
1613:  ================================================================================
1614:  �[32m[2,886 / 2,898]�[0m 11 / 27 tests, �[31m�[1m11 failed�[0m;�[0m Testing //rb/spec/integration/selenium/webdriver:action_builder-edge-remote; 50s local, disk-cache ... (4 actions, 1 running)
1615:  �[32m[2,886 / 2,898]�[0m 11 / 27 tests, �[31m�[1m11 failed�[0m;�[0m Testing //rb/spec/integration/selenium/webdriver:action_builder-edge-remote; 53s local, disk-cache ... (4 actions, 1 running)
1616:  �[32m[2,886 / 2,898]�[0m 11 / 27 tests, �[31m�[1m11 failed�[0m;�[0m Testing //rb/spec/integration/selenium/webdriver:action_builder-edge-remote; 56s local, disk-cache ... (4 actions, 2 running)
1617:  �[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)
1618:  ==================== Test output for //rb/spec/integration/selenium/webdriver:action_builder-edge-remote:
1619:  2024-03-25 13:51:40 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
1620:  �[31m�[1mFAILED: �[0m//rb/spec/integration/selenium/webdriver:action_builder-edge-remote (Summary)
1621:  D:/_bazel/execroot/selenium/bazel-out/x64_windows-fastbuild/testlogs/rb/spec/integration/selenium/webdriver/action_builder-edge-remote/test.log
1622:  An error occurred in a `before(:suite)` hook.
1623:  D:/_bazel/execroot/selenium/bazel-out/x64_windows-fastbuild/testlogs/rb/spec/integration/selenium/webdriver/action_builder-edge-remote/test_attempts/attempt_1.log
1624:  Failure/Error: @pid = Process.spawn(*@command, options)
...

1626:  �[32mINFO: �[0mFrom Testing //rb/spec/integration/selenium/webdriver:action_builder-edge-remote:
1627:  Errno::EACCES:
1628:  Permission denied - java
1629:  # ./rb/lib/selenium/webdriver/common/child_process.rb:57:in `spawn'
1630:  # ./rb/lib/selenium/webdriver/common/child_process.rb:57:in `start'
1631:  # ./rb/lib/selenium/server.rb:204:in `start'
1632:  # //?/D:/a/selenium/selenium/rb/spec/integration/selenium/webdriver/spec_helper.rb:40:in `block (2 levels) in <top (required)>'
1633:  Finished in 0.04564 seconds (files took 0.67438 seconds to load)
1634:  0 examples, 0 failures, 1 error occurred outside of examples
1635:  ================================================================================
1636:  ==================== Test output for //rb/spec/integration/selenium/webdriver:action_builder-edge-remote:
1637:  2024-03-25 13:52:07 INFO Selenium Server Location: D:/_bazel/execroot/selenium/bazel-out/x64_windows-fastbuild/bin/rb/spec/integration/selenium/webdriver/action_builder-edge-remote.cmd.runfiles/selenium/java/src/org/openqa/selenium/grid/selenium_server_deploy.jar
1638:  An error occurred in a `before(:suite)` hook.
1639:  Failure/Error: @pid = Process.spawn(*@command, options)
1640:  Errno::EACCES:
1641:  Permission denied - java
1642:  # ./rb/lib/selenium/webdriver/common/child_process.rb:57:in `spawn'
1643:  # ./rb/lib/selenium/webdriver/common/child_process.rb:57:in `start'
1644:  # ./rb/lib/selenium/server.rb:204:in `start'
1645:  # //?/D:/a/selenium/selenium/rb/spec/integration/selenium/webdriver/spec_helper.rb:40:in `block (2 levels) in <top (required)>'
1646:  Finished in 0.05641 seconds (files took 0.76601 seconds to load)
1647:  0 examples, 0 failures, 1 error occurred outside of examples
1648:  ================================================================================
1649:  ==================== Test output for //rb/spec/integration/selenium/webdriver:action_builder-edge-remote:
1650:  2024-03-25 13:52:29 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
1651:  An error occurred in a `before(:suite)` hook.
1652:  Failure/Error: @pid = Process.spawn(*@command, options)
1653:  Errno::EACCES:
1654:  Permission denied - java
1655:  # ./rb/lib/selenium/webdriver/common/child_process.rb:57:in `spawn'
1656:  # ./rb/lib/selenium/webdriver/common/child_process.rb:57:in `start'
1657:  # ./rb/lib/selenium/server.rb:204:in `start'
1658:  # //?/D:/a/selenium/selenium/rb/spec/integration/selenium/webdriver/spec_helper.rb:40:in `block (2 levels) in <top (required)>'
1659:  Finished in 0.06227 seconds (files took 0.95212 seconds to load)
1660:  0 examples, 0 failures, 1 error occurred outside of examples
1661:  ================================================================================
1662:  �[32m[2,887 / 2,898]�[0m 12 / 27 tests, �[31m�[1m12 failed�[0m;�[0m Testing //rb/spec/integration/selenium/webdriver/edge:service-edge-remote; 9s disk-cache ... (4 actions, 1 running)
1663:  �[32m[2,887 / 2,898]�[0m 12 / 27 tests, �[31m�[1m12 failed�[0m;�[0m [Sched] Testing //rb/spec/integration/selenium/webdriver:timeout-edge-remote; 9s ... (4 actions, 1 running)
1664:  �[31m�[1mFAIL: �[0m//rb/spec/integration/selenium/webdriver/remote:driver-edge-remote (see D:/_bazel/execroot/selenium/bazel-out/x64_windows-fastbuild/testlogs/rb/spec/integration/selenium/webdriver/remote/driver-edge-remote/test_attempts/attempt_1.log)
1665:  �[32m[2,887 / 2,898]�[0m 12 / 27 tests, �[31m�[1m12 failed�[0m;�[0m Testing //rb/spec/integration/selenium/webdriver/remote:driver-edge-remote; 8s local, disk-cache ... (4 actions, 2 running)
1666:  �[32m[2,887 / 2,898]�[0m 12 / 27 tests, �[31m�[1m12 failed�[0m;�[0m Testing //rb/spec/integration/selenium/webdriver/remote:driver-edge-remote; 9s local, disk-cache ... (4 actions, 2 running)
1667:  �[32m[2,887 / 2,898]�[0m 12 / 27 tests, �[31m�[1m12 failed�[0m;�[0m Testing //rb/spec/integration/selenium/webdriver/remote:driver-edge-remote; 11s local, disk-cache ... (4 actions, 2 running)
1668:  �[32m[2,887 / 2,898]�[0m 12 / 27 tests, �[31m�[1m12 failed�[0m;�[0m Testing //rb/spec/integration/selenium/webdriver/remote:driver-edge-remote; 13s local, disk-cache ... (4 actions, 2 running)
1669:  �[32m[2,887 / 2,898]�[0m 12 / 27 tests, �[31m�[1m12 failed�[0m;�[0m Testing //rb/spec/integration/selenium/webdriver/remote:driver-edge-remote; 14s local, disk-cache ... (4 actions, 3 running)
1670:  �[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)
1671:  �[32m[2,887 / 2,898]�[0m 12 / 27 tests, �[31m�[1m12 failed�[0m;�[0m Testing //rb/spec/integration/selenium/webdriver/remote:driver-edge-remote; 16s local, disk-cache ... (4 actions, 3 running)
1672:  �[32m[2,887 / 2,898]�[0m 12 / 27 tests, �[31m�[1m12 failed�[0m;�[0m Testing //rb/spec/integration/selenium/webdriver/remote:driver-edge-remote; 21s local, disk-cache ... (4 actions, 3 running)
1673:  �[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)
1674:  �[32m[2,887 / 2,898]�[0m 12 / 27 tests, �[31m�[1m12 failed�[0m;�[0m Testing //rb/spec/integration/selenium/webdriver/remote:driver-edge-remote; 22s local, disk-cache ... (4 actions, 3 running)
1675:  �[32m[2,887 / 2,898]�[0m 12 / 27 tests, �[31m�[1m12 failed�[0m;�[0m Testing //rb/spec/integration/selenium/webdriver/remote:driver-edge-remote; 28s local, disk-cache ... (4 actions running)
1676:  �[31m�[1mFAIL: �[0m//rb/spec/integration/selenium/webdriver/remote:driver-edge-remote (see D:/_bazel/execroot/selenium/bazel-out/x64_windows-fastbuild/testlogs/rb/spec/integration/selenium/webdriver/remote/driver-edge-remote/test_attempts/attempt_2.log)
1677:  �[32m[2,887 / 2,898]�[0m 12 / 27 tests, �[31m�[1m12 failed�[0m;�[0m Testing //rb/spec/integration/selenium/webdriver/remote:driver-edge-remote; 29s local, disk-cache ... (4 actions running)
1678:  �[32m[2,887 / 2,898]�[0m 12 / 27 tests, �[31m�[1m12 failed�[0m;�[0m Testing //rb/spec/integration/selenium/webdriver/remote:driver-edge-remote; 35s local, disk-cache ... (4 actions running)
1679:  �[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)
1680:  �[32m[2,887 / 2,898]�[0m 12 / 27 tests, �[31m�[1m12 failed�[0m;�[0m Testing //rb/spec/integration/selenium/webdriver/remote:driver-edge-remote; 36s local, disk-cache ... (4 actions running)
1681:  �[32m[2,887 / 2,898]�[0m 12 / 27 tests, �[31m�[1m12 failed�[0m;�[0m Testing //rb/spec/integration/selenium/webdriver/remote:driver-edge-remote; 41s local, disk-cache ... (4 actions running)
1682:  �[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)
1683:  �[32m[2,887 / 2,898]�[0m 12 / 27 tests, �[31m�[1m12 failed�[0m;�[0m Testing //rb/spec/integration/selenium/webdriver/remote:driver-edge-remote; 42s local, disk-cache ... (4 actions running)
1684:  �[32m[2,887 / 2,898]�[0m 12 / 27 tests, �[31m�[1m12 failed�[0m;�[0m Testing //rb/spec/integration/selenium/webdriver/remote:driver-edge-remote; 44s local, disk-cache ... (4 actions running)
1685:  �[32m[2,887 / 2,898]�[0m 12 / 27 tests, �[31m�[1m12 failed�[0m;�[0m Testing //rb/spec/integration/selenium/webdriver/remote:driver-edge-remote; 49s local, disk-cache ... (4 actions running)
1686:  �[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)
1687:  �[32m[2,887 / 2,898]�[0m 12 / 27 tests, �[31m�[1m12 failed�[0m;�[0m Testing //rb/spec/integration/selenium/webdriver/remote:driver-edge-remote; 50s local, disk-cache ... (4 actions running)
1688:  �[32m[2,887 / 2,898]�[0m 12 / 27 tests, �[31m�[1m12 failed�[0m;�[0m Testing //rb/spec/integration/selenium/webdriver/remote:driver-edge-remote; 56s local, disk-cache ... (4 actions running)
1689:  �[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)
1690:  �[31m�[1mFAILED: �[0m//rb/spec/integration/selenium/webdriver/remote:driver-edge-remote (Summary)
1691:  D:/_bazel/execroot/selenium/bazel-out/x64_windows-fastbuild/testlogs/rb/spec/integration/selenium/webdriver/remote/driver-edge-remote/test.log
1692:  D:/_bazel/execroot/selenium/bazel-out/x64_windows-fastbuild/testlogs/rb/spec/integration/selenium/webdriver/remote/driver-edge-remote/test_attempts/attempt_1.log
1693:  D:/_bazel/execroot/selenium/bazel-out/x64_windows-fastbuild/testlogs/rb/spec/integration/selenium/webdriver/remote/driver-edge-remote/test_attempts/attempt_2.log
1694:  �[32mINFO: �[0mFrom Testing //rb/spec/integration/selenium/webdriver/remote:driver-edge-remote:
1695:  ==================== Test output for //rb/spec/integration/selenium/webdriver/remote:driver-edge-remote:
1696:  2024-03-25 13:52:37 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
1697:  An error occurred in a `before(:suite)` hook.
1698:  Failure/Error: @pid = Process.spawn(*@command, options)
1699:  Errno::EACCES:
1700:  Permission denied - java
1701:  # ./rb/lib/selenium/webdriver/common/child_process.rb:57:in `spawn'
1702:  # ./rb/lib/selenium/webdriver/common/child_process.rb:57:in `start'
1703:  # ./rb/lib/selenium/server.rb:204:in `start'
1704:  # //?/D:/a/selenium/selenium/rb/spec/integration/selenium/webdriver/spec_helper.rb:40:in `block (2 levels) in <top (required)>'
1705:  Finished in 0.06542 seconds (files took 0.8565 seconds to load)
1706:  0 examples, 0 failures, 1 error occurred outside of examples
1707:  ================================================================================
1708:  ==================== Test output for //rb/spec/integration/selenium/webdriver/remote:driver-edge-remote:
1709:  2024-03-25 13:52:58 INFO Selenium Server Location: D:/_bazel/execroot/selenium/bazel-out/x64_windows-fastbuild/bin/rb/spec/integration/selenium/webdriver/remote/driver-edge-remote.cmd.runfiles/selenium/java/src/org/openqa/selenium/grid/selenium_server_deploy.jar
1710:  An error occurred in a `before(:suite)` hook.
1711:  Failure/Error: @pid = Process.spawn(*@command, options)
1712:  Errno::EACCES:
1713:  Permission denied - java
1714:  # ./rb/lib/selenium/webdriver/common/child_process.rb:57:in `spawn'
1715:  # ./rb/lib/selenium/webdriver/common/child_process.rb:57:in `start'
1716:  # ./rb/lib/selenium/server.rb:204:in `start'
1717:  # //?/D:/a/selenium/selenium/rb/spec/integration/selenium/webdriver/spec_helper.rb:40:in `block (2 levels) in <top (required)>'
1718:  Finished in 0.05027 seconds (files took 0.62051 seconds to load)
1719:  0 examples, 0 failures, 1 error occurred outside of examples
1720:  ================================================================================
1721:  ==================== Test output for //rb/spec/integration/selenium/webdriver/remote:driver-edge-remote:
1722:  2024-03-25 13:53:25 INFO Selenium Server Location: D:/_bazel/execroot/selenium/bazel-out/x64_windows-fastbuild/bin/rb/spec/integration/selenium/webdriver/remote/driver-edge-remote.cmd.runfiles/selenium/java/src/org/openqa/selenium/grid/selenium_server_deploy.jar
1723:  An error occurred in a `before(:suite)` hook.
1724:  Failure/Error: @pid = Process.spawn(*@command, options)
1725:  Errno::EACCES:
1726:  Permission denied - java
1727:  # ./rb/lib/selenium/webdriver/common/child_process.rb:57:in `spawn'
1728:  # ./rb/lib/selenium/webdriver/common/child_process.rb:57:in `start'
1729:  # ./rb/lib/selenium/server.rb:204:in `start'
1730:  # //?/D:/a/selenium/selenium/rb/spec/integration/selenium/webdriver/spec_helper.rb:40:in `block (2 levels) in <top (required)>'
1731:  Finished in 0.04786 seconds (files took 0.64873 seconds to load)
1732:  0 examples, 0 failures, 1 error occurred outside of examples
1733:  ================================================================================
1734:  �[32m[2,888 / 2,898]�[0m 13 / 27 tests, �[31m�[1m13 failed�[0m;�[0m Testing //rb/spec/integration/selenium/webdriver:timeout-edge-remote; 50s local, disk-cache ... (4 actions, 3 running)
1735:  �[32m[2,888 / 2,898]�[0m 13 / 27 tests, �[31m�[1m13 failed�[0m;�[0m Testing //rb/spec/integration/selenium/webdriver:timeout-edge-remote; 55s local, disk-cache ... (4 actions, 3 running)
1736:  �[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)
1737:  �[32m[2,888 / 2,898]�[0m 13 / 27 tests, �[31m�[1m13 failed�[0m;�[0m Testing //rb/spec/integration/selenium/webdriver:timeout-edge-remote; 57s local, disk-cache ... (4 actions, 3 running)
1738:  �[32m[2,888 / 2,898]�[0m 13 / 27 tests, �[31m�[1m13 failed�[0m;�[0m Testing //rb/spec/integration/selenium/webdriver:timeout-edge-remote; 59s local, disk-cache ... (4 actions, 3 running)
1739:  �[32m[2,888 / 2,898]�[0m 13 / 27 tests, �[31m�[1m13 failed�[0m;�[0m Testing //rb/spec/integration/selenium/webdriver:timeout-edge-remote; 61s local, disk-cache ... (4 actions, 3 running)
1740:  �[32m[2,888 / 2,898]�[0m 13 / 27 tests, �[31m�[1m13 failed�[0m;�[0m Testing //rb/spec/integration/selenium/webdriver:timeout-edge-remote; 62s local, disk-cache ... (4 actions, 3 running)
1741:  �[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)
1742:  �[31m�[1mFAILED: �[0m//rb/spec/integration/selenium/webdriver:timeout-edge-remote (Summary)
1743:  D:/_bazel/execroot/selenium/bazel-out/x64_windows-fastbuild/testlogs/rb/spec/integration/selenium/webdriver/timeout-edge-remote/test.log
1744:  D:/_bazel/execroot/selenium/bazel-out/x64_windows-fastbuild/testlogs/rb/spec/integration/selenium/webdriver/timeout-edge-remote/test_attempts/attempt_1.log
1745:  D:/_bazel/execroot/selenium/bazel-out/x64_windows-fastbuild/testlogs/rb/spec/integration/selenium/webdriver/timeout-edge-remote/test_attempts/attempt_2.log
1746:  �[32mINFO: �[0mFrom Testing //rb/spec/integration/selenium/webdriver:timeout-edge-remote:
1747:  ==================== Test output for //rb/spec/integration/selenium/webdriver:timeout-edge-remote:
1748:  2024-03-25 13:52:44 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
1749:  An error occurred in a `before(:suite)` hook.
1750:  Failure/Error: @pid = Process.spawn(*@command, options)
1751:  Errno::EACCES:
1752:  Permission denied - java
1753:  # ./rb/lib/selenium/webdriver/common/child_process.rb:57:in `spawn'
1754:  # ./rb/lib/selenium/webdriver/common/child_process.rb:57:in `start'
1755:  # ./rb/lib/selenium/server.rb:204:in `start'
1756:  # //?/D:/a/selenium/selenium/rb/spec/integration/selenium/webdriver/spec_helper.rb:40:in `block (2 levels) in <top (required)>'
1757:  Finished in 0.0578 seconds (files took 0.86091 seconds to load)
1758:  0 examples, 0 failures, 1 error occurred outside of examples
1759:  ================================================================================
1760:  ==================== Test output for //rb/spec/integration/selenium/webdriver:timeout-edge-remote:
1761:  2024-03-25 13:53:11 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
1762:  An error occurred in a `before(:suite)` hook.
1763:  Failure/Error: @pid = Process.spawn(*@command, options)
1764:  Errno::EACCES:
1765:  Permission denied - java
1766:  # ./rb/lib/selenium/webdriver/common/child_process.rb:57:in `spawn'
1767:  # ./rb/lib/selenium/webdriver/common/child_process.rb:57:in `start'
1768:  # ./rb/lib/selenium/server.rb:204:in `start'
1769:  # //?/D:/a/selenium/selenium/rb/spec/integration/selenium/webdriver/spec_helper.rb:40:in `block (2 levels) in <top (required)>'
1770:  Finished in 0.0496 seconds (files took 0.64864 seconds to load)
1771:  0 examples, 0 failures, 1 error occurred outside of examples
1772:  ================================================================================
1773:  ==================== Test output for //rb/spec/integration/selenium/webdriver:timeout-edge-remote:
1774:  2024-03-25 13:53:39 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
1775:  An error occurred in a `before(:suite)` hook.
1776:  Failure/Error: @pid = Process.spawn(*@command, options)
1777:  Errno::EACCES:
1778:  Permission denied - java
1779:  # ./rb/lib/selenium/webdriver/common/child_process.rb:57:in `spawn'
1780:  # ./rb/lib/selenium/webdriver/common/child_process.rb:57:in `start'
1781:  # ./rb/lib/selenium/server.rb:204:in `start'
1782:  # //?/D:/a/selenium/selenium/rb/spec/integration/selenium/webdriver/spec_helper.rb:40:in `block (2 levels) in <top (required)>'
1783:  Finished in 0.05935 seconds (files took 0.68393 seconds to load)
1784:  0 examples, 0 failures, 1 error occurred outside of examples
1785:  ================================================================================
1786:  �[32m[2,889 / 2,898]�[0m 14 / 27 tests, �[31m�[1m14 failed�[0m;�[0m Testing //rb/spec/integration/selenium/webdriver/edge:service-edge-remote; 56s local, disk-cache ... (4 actions, 2 running)
1787:  �[32m[2,889 / 2,898]�[0m 14 / 27 tests, �[31m�[1m14 failed�[0m;�[0m Testing //rb/spec/integration/selenium/webdriver/edge:service-edge-remote; 62s local, disk-cache ... (4 actions, 2 running)
1788:  �[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)
1789:  ==================== Test output for //rb/spec/integration/selenium/webdriver/edge:service-edge-remote:
1790:  2024-03-25 13:52:51 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
1791:  �[31m�[1mFAILED: �[0m//rb/spec/integration/selenium/webdriver/edge:service-edge-remote (Summary)
1792:  D:/_bazel/execroot/selenium/bazel-out/x64_windows-fastbuild/testlogs/rb/spec/integration/selenium/webdriver/edge/service-edge-remote/test.log
1793:  An error occurred in a `before(:suite)` hook.
1794:  D:/_bazel/execroot/selenium/bazel-out/x64_windows-fastbuild/testlogs/rb/spec/integration/selenium/webdriver/edge/service-edge-remote/test_attempts/attempt_1.log
1795:  Failure/Error: @pid = Process.spawn(*@command, options)
...

1797:  �[32mINFO: �[0mFrom Testing //rb/spec/integration/selenium/webdriver/edge:service-edge-remote:
1798:  Errno::EACCES:
1799:  Permission denied - java
1800:  # ./rb/lib/selenium/webdriver/common/child_process.rb:57:in `spawn'
1801:  # ./rb/lib/selenium/webdriver/common/child_process.rb:57:in `start'
1802:  # ./rb/lib/selenium/server.rb:204:in `start'
1803:  # //?/D:/a/selenium/selenium/rb/spec/integration/selenium/webdriver/spec_helper.rb:40:in `block (2 levels) in <top (required)>'
1804:  Finished in 0.05041 seconds (files took 0.65238 seconds to load)
1805:  0 examples, 0 failures, 1 error occurred outside of examples
1806:  ================================================================================
1807:  ==================== Test output for //rb/spec/integration/selenium/webdriver/edge:service-edge-remote:
1808:  2024-03-25 13:53:18 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
1809:  An error occurred in a `before(:suite)` hook.
1810:  Failure/Error: @pid = Process.spawn(*@command, options)
1811:  Errno::EACCES:
1812:  Permission denied - java
1813:  # ./rb/lib/selenium/webdriver/common/child_process.rb:57:in `spawn'
1814:  # ./rb/lib/selenium/webdriver/common/child_process.rb:57:in `start'
1815:  # ./rb/lib/selenium/server.rb:204:in `start'
1816:  # //?/D:/a/selenium/selenium/rb/spec/integration/selenium/webdriver/spec_helper.rb:40:in `block (2 levels) in <top (required)>'
1817:  Finished in 0.05229 seconds (files took 0.66539 seconds to load)
1818:  0 examples, 0 failures, 1 error occurred outside of examples
1819:  ================================================================================
1820:  ==================== Test output for //rb/spec/integration/selenium/webdriver/edge:service-edge-remote:
1821:  2024-03-25 13:53:46 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
1822:  An error occurred in a `before(:suite)` hook.
1823:  Failure/Error: @pid = Process.spawn(*@command, options)
1824:  Errno::EACCES:
1825:  Permission denied - java
1826:  # ./rb/lib/selenium/webdriver/common/child_process.rb:57:in `spawn'
1827:  # ./rb/lib/selenium/webdriver/common/child_process.rb:57:in `start'
1828:  # ./rb/lib/selenium/server.rb:204:in `start'
1829:  # //?/D:/a/selenium/selenium/rb/spec/integration/selenium/webdriver/spec_helper.rb:40:in `block (2 levels) in <top (required)>'
1830:  Finished in 0.04864 seconds (files took 0.70633 seconds to load)
1831:  0 examples, 0 failures, 1 error occurred outside of examples
1832:  ================================================================================
1833:  �[32m[2,890 / 2,898]�[0m 15 / 27 tests, �[31m�[1m15 failed�[0m;�[0m Testing //rb/spec/integration/selenium/webdriver:zipper-edge-remote; 50s local, disk-cache ... (4 actions, 1 running)
1834:  �[32m[2,890 / 2,898]�[0m 15 / 27 tests, �[31m�[1m15 failed�[0m;�[0m Testing //rb/spec/integration/selenium/webdriver:zipper-edge-remote; 53s local, disk-cache ... (4 actions, 1 running)
1835:  �[32m[2,890 / 2,898]�[0m 15 / 27 tests, �[31m�[1m15 failed�[0m;�[0m Testing //rb/spec/integration/selenium/webdriver:zipper-edge-remote; 56s local, disk-cache ... (4 actions, 2 running)
1836:  �[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)
1837:  ==================== Test output for //rb/spec/integration/selenium/webdriver:zipper-edge-remote:
1838:  2024-03-25 13:53:05 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
1839:  �[31m�[1mFAILED: �[0m//rb/spec/integration/selenium/webdriver:zipper-edge-remote (Summary)
1840:  D:/_bazel/execroot/selenium/bazel-out/x64_windows-fastbuild/testlogs/rb/spec/integration/selenium/webdriver/zipper-edge-remote/test.log
1841:  An error occurred in a `before(:suite)` hook.
1842:  D:/_bazel/execroot/selenium/bazel-out/x64_windows-fastbuild/testlogs/rb/spec/integration/selenium/webdriver/zipper-edge-remote/test_attempts/attempt_1.log
1843:  Failure/Error: @pid = Process.spawn(*@command, options)
...

1845:  D:/_bazel/execroot/selenium/bazel-out/x64_windows-fastbuild/testlogs/rb/spec/integration/selenium/webdriver/zipper-edge-remote/test_attempts/attempt_2.log
1846:  Permission denied - java
1847:  �[32mINFO: �[0mFrom Testing //rb/spec/integration/selenium/webdriver:zipper-edge-remote:
1848:  # ./rb/lib/selenium/webdriver/common/child_process.rb:57:in `spawn'
1849:  # ./rb/lib/selenium/webdriver/common/child_process.rb:57:in `start'
1850:  # ./rb/lib/selenium/server.rb:204:in `start'
1851:  # //?/D:/a/selenium/selenium/rb/spec/integration/selenium/webdriver/spec_helper.rb:40:in `block (2 levels) in <top (required)>'
1852:  Finished in 0.04563 seconds (files took 0.64108 seconds to load)
1853:  0 examples, 0 failures, 1 error occurred outside of examples
1854:  ================================================================================
1855:  ==================== Test output for //rb/spec/integration/selenium/webdriver:zipper-edge-remote:
1856:  2024-03-25 13:53:32 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
1857:  An error occurred in a `before(:suite)` hook.
1858:  Failure/Error: @pid = Process.spawn(*@command, options)
1859:  Errno::EACCES:
1860:  Permission denied - java
1861:  # ./rb/lib/selenium/webdriver/common/child_process.rb:57:in `spawn'
1862:  # ./rb/lib/selenium/webdriver/common/child_process.rb:57:in `start'
1863:  # ./rb/lib/selenium/server.rb:204:in `start'
1864:  # //?/D:/a/selenium/selenium/rb/spec/integration/selenium/webdriver/spec_helper.rb:40:in `block (2 levels) in <top (required)>'
1865:  Finished in 0.05355 seconds (files took 0.64279 seconds to load)
1866:  0 examples, 0 failures, 1 error occurred outside of examples
1867:  ================================================================================
1868:  ==================== Test output for //rb/spec/integration/selenium/webdriver:zipper-edge-remote:
1869:  2024-03-25 13:53:54 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
1870:  An error occurred in a `before(:suite)` hook.
1871:  Failure/Error: @pid = Process.spawn(*@command, options)
1872:  Errno::EACCES:
1873:  Permission denied - java
1874:  # ./rb/lib/selenium/webdriver/common/child_process.rb:57:in `spawn'
1875:  # ./rb/lib/selenium/webdriver/common/child_process.rb:57:in `start'
1876:  # ./rb/lib/selenium/server.rb:204:in `start'
1877:  # //?/D:/a/selenium/selenium/rb/spec/integration/selenium/webdriver/spec_helper.rb:40:in `block (2 levels) in <top (required)>'
1878:  Finished in 0.06167 seconds (files took 0.9078 seconds to load)
1879:  0 examples, 0 failures, 1 error occurred outside of examples
1880:  ================================================================================
1881:  �[32m[2,891 / 2,898]�[0m 16 / 27 tests, �[31m�[1m16 failed�[0m;�[0m Testing //rb/spec/integration/selenium/webdriver:element-edge-remote; 8s disk-cache ... (4 actions, 1 running)
1882:  �[32m[2,891 / 2,898]�[0m 16 / 27 tests, �[31m�[1m16 failed�[0m;�[0m [Sched] Testing //rb/spec/integration/selenium/webdriver:target_locator-edge-remote; 9s ... (4 actions, 1 running)
1883:  �[31m�[1mFAIL: �[0m//rb/spec/integration/selenium/webdriver/edge:options-edge-remote (see D:/_bazel/execroot/selenium/bazel-out/x64_windows-fastbuild/testlogs/rb/spec/integration/selenium/webdriver/edge/options-edge-remote/test_attempts/attempt_1.log)
1884:  �[32m[2,891 / 2,898]�[0m 16 / 27 tests, �[31m�[1m16 failed�[0m;�[0m Testing //rb/spec/integration/selenium/webdriver/edge:options-edge-remote; 8s local, disk-cache ... (4 actions, 2 running)
1885:  �[32m[2,891 / 2,898]�[0m 16 / 27 tests, �[31m�[1m16 failed�[0m;�[0m Testing //rb/spec/integration/selenium/webdriver/edge:options-edge-remote; 9s local, disk-cache ... (4 actions, 2 running)
1886:  �[32m[2,891 / 2,898]�[0m 16 / 27 tests, �[31m�[1m16 failed�[0m;�[0m Testing //rb/spec/integration/selenium/webdriver/edge:options-edge-remote; 11s local, disk-cache ... (4 actions, 2 running)
1887:  �[32m[2,891 / 2,898]�[0m 16 / 27 tests, �[31m�[1m16 failed�[0m;�[0m Testing //rb/spec/integration/selenium/webdriver/edge:options-edge-remote; 14s local, disk-cache ... (4 actions, 2 running)
1888:  �[32m[2,891 / 2,898]�[0m 16 / 27 tests, �[31m�[1m16 failed�[0m;�[0m Testing //rb/spec/integration/selenium/webdriver/edge:options-edge-remote; 15s local, disk-cache ... (4 actions, 3 running)
1889:  �[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)
1890:  �[32m[2,891 / 2,898]�[0m 16 / 27 tests, �[31m�[1m16 failed�[0m;�[0m Testing //rb/spec/integration/selenium/webdriver/edge:options-edge-remote; 16s local, disk-cache ... (4 actions, 3 running)
1891:  �[32m[2,891 / 2,898]�[0m 16 / 27 tests, �[31m�[1m16 failed�[0m;�[0m Testing //rb/spec/integration/selenium/webdriver/edge:options-edge-remote; 22s local, disk-cache ... (4 actions, 3 running)
1892:  �[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)
1893:  �[32m[2,891 / 2,898]�[0m 16 / 27 tests, �[31m�[1m16 failed�[0m;�[0m Testing //rb/spec/integration/selenium/webdriver/edge:options-edge-remote; 23s local, disk-cache ... (4 actions, 3 running)
1894:  �[32m[2,891 / 2,898]�[0m 16 / 27 tests, �[31m�[1m16 failed�[0m;�[0m Testing //rb/spec/integration/selenium/webdriver/edge:options-edge-remote; 29s local, disk-cache ... (4 actions running)
1895:  �[31m�[1mFAIL: �[0m//rb/spec/integration/selenium/webdriver/edge:options-edge-remote (see D:/_bazel/execroot/selenium/bazel-out/x64_windows-fastbuild/testlogs/rb/spec/integration/selenium/webdriver/edge/options-edge-remote/test_attempts/attempt_2.log)
1896:  �[32m[2,891 / 2,898]�[0m 16 / 27 tests, �[31m�[1m16 failed�[0m;�[0m Testing //rb/spec/integration/selenium/webdriver/edge:options-edge-remote; 30s local, disk-cache ... (4 actions running)
1897:  �[32m[2,891 / 2,898]�[0m 16 / 27 tests, �[31m�[1m16 failed�[0m;�[0m Testing //rb/spec/integration/selenium/webdriver/edge:options-edge-remote; 35s local, disk-cache ... (4 actions running)
1898:  �[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)
1899:  �[32m[2,891 / 2,898]�[0m 16 / 27 tests, �[31m�[1m16 failed�[0m;�[0m Testing //rb/spec/integration/selenium/webdriver/edge:options-edge-remote; 37s local, disk-cache ... (4 actions running)
1900:  �[32m[2,891 / 2,898]�[0m 16 / 27 tests, �[31m�[1m16 failed�[0m;�[0m Testing //rb/spec/integration/selenium/webdriver/edge:options-edge-remote; 41s local, disk-cache ... (4 actions running)
1901:  �[32m[2,891 / 2,898]�[0m 16 / 27 tests, �[31m�[1m16 failed�[0m;�[0m Testing //rb/spec/integration/selenium/webdriver/edge:options-edge-remote; 42s local, disk-cache ... (4 actions running)
1902:  �[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)
1903:  �[32m[2,891 / 2,898]�[0m 16 / 27 tests, �[31m�[1m16 failed�[0m;�[0m Testing //rb/spec/integration/selenium/webdriver/edge:options-edge-remote; 44s local, disk-cache ... (4 actions running)
1904:  �[32m[2,891 / 2,898]�[0m 16 / 27 tests, �[31m�[1m16 failed�[0m;�[0m Testing //rb/spec/integration/selenium/webdriver/edge:options-edge-remote; 49s local, disk-cache ... (4 actions running)
1905:  �[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)
1906:  �[32m[2,891 / 2,898]�[0m 16 / 27 tests, �[31m�[1m16 failed�[0m;�[0m Testing //rb/spec/integration/selenium/webdriver/edge:options-edge-remote; 51s local, disk-cache ... (4 actions running)
1907:  �[32m[2,891 / 2,898]�[0m 16 / 27 tests, �[31m�[1m16 failed�[0m;�[0m Testing //rb/spec/integration/selenium/webdriver/edge:options-edge-remote; 56s local, disk-cache ... (4 actions running)
1908:  �[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)
1909:  �[31m�[1mFAILED: �[0m//rb/spec/integration/selenium/webdriver/edge:options-edge-remote (Summary)
1910:  D:/_bazel/execroot/selenium/bazel-out/x64_windows-fastbuild/testlogs/rb/spec/integration/selenium/webdriver/edge/options-edge-remote/test.log
1911:  D:/_bazel/execroot/selenium/bazel-out/x64_windows-fastbuild/testlogs/rb/spec/integration/selenium/webdriver/edge/options-edge-remote/test_attempts/attempt_1.log
1912:  D:/_bazel/execroot/selenium/bazel-out/x64_windows-fastbuild/testlogs/rb/spec/integration/selenium/webdriver/edge/options-edge-remote/test_attempts/attempt_2.log
1913:  �[32mINFO: �[0mFrom Testing //rb/spec/integration/selenium/webdriver/edge:options-edge-remote:
1914:  ==================== Test output for //rb/spec/integration/selenium/webdriver/edge:options-edge-remote:
1915:  2024-03-25 13:54:01 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
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.06929 seconds (files took 1.04 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:options-edge-remote:
1928:  2024-03-25 13:54:23 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
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.04846 seconds (files took 0.6594 seconds to load)
1938:  0 examples, 0 failures, 1 error occurred outside of examples
1939:  ================================================================================
1940:  ==================== Test output for //rb/spec/integration/selenium/webdriver/edge:options-edge-remote:
1941:  2024-03-25 13:54:50 INFO Selenium Server Location: D:/_bazel/execroot/selenium/bazel-out/x64_windows-fastbuild/bin/rb/spec/integration/selenium/webdriver/edge/options-edge-remote.cmd.runfiles/selenium/java/src/org/openqa/selenium/grid/selenium_server_deploy.jar
1942:  An error occurred in a `before(:suite)` hook.
1943:  Failure/Error: @pid = Process.spawn(*@command, options)
1944:  Errno::EACCES:
1945:  Permission denied - java
1946:  # ./rb/lib/selenium/webdriver/common/child_process.rb:57:in `spawn'
1947:  # ./rb/lib/selenium/webdriver/common/child_process.rb:57:in `start'
1948:  # ./rb/lib/selenium/server.rb:204:in `start'
1949:  # //?/D:/a/selenium/selenium/rb/spec/integration/selenium/webdriver/spec_helper.rb:40:in `block (2 levels) in <top (required)>'
1950:  Finished in 0.0484 seconds (files took 0.67878 seconds to load)
1951:  0 examples, 0 failures, 1 error occurred outside of examples
1952:  ================================================================================
1953:  �[32m[2,892 / 2,898]�[0m 17 / 27 tests, �[31m�[1m17 failed�[0m;�[0m Testing //rb/spec/integration/selenium/webdriver:target_locator-edge-remote; 49s local, disk-cache ... (4 actions, 3 running)
1954:  �[32m[2,892 / 2,898]�[0m 17 / 27 tests, �[31m�[1m17 failed�[0m;�[0m Testing //rb/spec/integration/selenium/webdriver:target_locator-edge-remote; 55s local, disk-cache ... (4 actions, 3 running)
1955:  �[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)
1956:  �[32m[2,892 / 2,898]�[0m 17 / 27 tests, �[31m�[1m17 failed�[0m;�[0m Testing //rb/spec/integration/selenium/webdriver:target_locator-edge-remote; 56s local, disk-cache ... (4 actions, 3 running)
1957:  �[32m[2,892 / 2,898]�[0m 17 / 27 tests, �[31m�[1m17 failed�[0m;�[0m Testing //rb/spec/integration/selenium/webdriver:target_locator-edge-remote; 59s local, disk-cache ... (4 actions, 3 running)
1958:  �[32m[2,892 / 2,898]�[0m 17 / 27 tests, �[31m�[1m17 failed�[0m;�[0m Testing //rb/spec/integration/selenium/webdriver:target_locator-edge-remote; 61s local, disk-cache ... (4 actions, 3 running)
1959:  �[32m[2,892 / 2,898]�[0m 17 / 27 tests, �[31m�[1m17 failed�[0m;�[0m Testing //rb/spec/integration/selenium/webdriver:target_locator-edge-remote; 63s local, disk-cache ... (4 actions, 3 running)
1960:  �[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)
1961:  ==================== Test output for //rb/spec/integration/selenium/webdriver:target_locator-edge-remote:
1962:  �[31m�[1mFAILED: �[0m//rb/spec/integration/selenium/webdriver:target_locator-edge-remote (Summary)
1963:  D:/_bazel/execroot/selenium/bazel-out/x64_windows-fastbuild/testlogs/rb/spec/integration/selenium/webdriver/target_locator-edge-remote/test.log
1964:  D:/_bazel/execroot/selenium/bazel-out/x64_windows-fastbuild/testlogs/rb/spec/integration/selenium/webdriver/target_locator-edge-remote/test_attempts/attempt_1.log
1965:  D:/_bazel/execroot/selenium/bazel-out/x64_windows-fastbuild/testlogs/rb/spec/integration/selenium/webdriver/target_locator-edge-remote/test_attempts/attempt_2.log
1966:  �[32mINFO: �[0mFrom Testing //rb/spec/integration/selenium/webdriver:target_locator-edge-remote:
1967:  2024-03-25 13:54:09 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
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.07101 seconds (files took 0.98928 seconds to load)
1977:  0 examples, 0 failures, 1 error occurred outside of examples
1978:  ================================================================================
1979:  ==================== Test output for //rb/spec/integration/selenium/webdriver:target_locator-edge-remote:
1980:  2024-03-25 13:54:36 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
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.04614 seconds (files took 0.60059 seconds to load)
1990:  0 examples, 0 failures, 1 error occurred outside of examples
1991:  ================================================================================
1992:  ==================== Test output for //rb/spec/integration/selenium/webdriver:target_locator-edge-remote:
1993:  2024-03-25 13:55: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
1994:  An error occurred in a `before(:suite)` hook.
1995:  Failure/Error: @pid = Process.spawn(*@command, options)
1996:  Errno::EACCES:
1997:  Permission denied - java
1998:  # ./rb/lib/selenium/webdriver/common/child_process.rb:57:in `spawn'
1999:  # ./rb/lib/selenium/webdriver/common/child_process.rb:57:in `start'
2000:  # ./rb/lib/selenium/server.rb:204:in `start'
2001:  # //?/D:/a/selenium/selenium/rb/spec/integration/selenium/webdriver/spec_helper.rb:40:in `block (2 levels) in <top (required)>'
2002:  Finished in 0.06699 seconds (files took 0.84156 seconds to load)
2003:  0 examples, 0 failures, 1 error occurred outside of examples
2004:  ================================================================================
2005:  �[32m[2,893 / 2,898]�[0m 18 / 27 tests, �[31m�[1m18 failed�[0m;�[0m Testing //rb/spec/integration/selenium/webdriver:element-edge-remote; 57s local, disk-cache ... (4 actions, 2 running)
2006:  �[32m[2,893 / 2,898]�[0m 18 / 27 tests, �[31m�[1m18 failed�[0m;�[0m Testing //rb/spec/integration/selenium/webdriver:element-edge-remote; 62s local, disk-cache ... (4 actions, 2 running)
2007:  �[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)
2008:  ==================== Test output for //rb/spec/integration/selenium/webdriver:element-edge-remote:
2009:  2024-03-25 13:54:16 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
2010:  �[31m�[1mFAILED: �[0m//rb/spec/integration/selenium/webdriver:element-edge-remote (Summary)
2011:  D:/_bazel/execroot/selenium/bazel-out/x64_windows-fastbuild/testlogs/rb/spec/integration/selenium/webdriver/element-edge-remote/test.log
2012:  An error occurred in a `before(:suite)` hook.
2013:  D:/_bazel/execroot/selenium/bazel-out/x64_windows-fastbuild/testlogs/rb/spec/integration/selenium/webdriver/element-edge-remote/test_attempts/attempt_1.log
2014:  Failure/Error: @pid = Process.spawn(*@command, options)
...

2016:  �[32mINFO: �[0mFrom Testing //rb/spec/integration/selenium/webdriver:element-edge-remote:
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.05147 seconds (files took 0.64436 seconds to load)
2024:  0 examples, 0 failures, 1 error occurred outside of examples
2025:  ================================================================================
2026:  ==================== Test output for //rb/spec/integration/selenium/webdriver:element-edge-remote:
2027:  2024-03-25 13:54:43 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
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.05062 seconds (files took 0.64666 seconds to load)
2037:  0 examples, 0 failures, 1 error occurred outside of examples
2038:  ================================================================================
2039:  ==================== Test output for //rb/spec/integration/selenium/webdriver:element-edge-remote:
2040:  2024-03-25 13:55:11 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
2041:  An error occurred in a `before(:suite)` hook.
2042:  Failure/Error: @pid = Process.spawn(*@command, options)
2043:  Errno::EACCES:
2044:  Permission denied - java
2045:  # ./rb/lib/selenium/webdriver/common/child_process.rb:57:in `spawn'
2046:  # ./rb/lib/selenium/webdriver/common/child_process.rb:57:in `start'
2047:  # ./rb/lib/selenium/server.rb:204:in `start'
2048:  # //?/D:/a/selenium/selenium/rb/spec/integration/selenium/webdriver/spec_helper.rb:40:in `block (2 levels) in <top (required)>'
2049:  Finished in 0.05629 seconds (files took 0.70422 seconds to load)
2050:  0 examples, 0 failures, 1 error occurred outside of examples
2051:  ================================================================================
2052:  �[32m[2,894 / 2,898]�[0m 19 / 27 tests, �[31m�[1m19 failed�[0m;�[0m Testing //rb/spec/integration/selenium/webdriver:window-edge-remote; 50s local, disk-cache ... (4 actions, 1 running)
2053:  �[32m[2,894 / 2,898]�[0m 19 / 27 tests, �[31m�[1m19 failed�[0m;�[0m Testing //rb/spec/integration/selenium/webdriver:window-edge-remote; 54s local, disk-cache ... (4 actions, 1 running)
2054:  �[32m[2,894 / 2,898]�[0m 19 / 27 tests, �[31m�[1m19 failed�[0m;�[0m Testing //rb/spec/integration/selenium/webdriver:window-edge-remote; 56s local, disk-cache ... (4 actions, 2 running)
2055:  �[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)
2056:  ==================== Test output for //rb/spec/integration/selenium/webdriver:window-edge-remote:
2057:  2024-03-25 13:54:30 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
2058:  �[31m�[1mFAILED: �[0m//rb/spec/integration/selenium/webdriver:window-edge-remote (Summary)
2059:  D:/_bazel/execroot/selenium/bazel-out/x64_windows-fastbuild/testlogs/rb/spec/integration/selenium/webdriver/window-edge-remote/test.log
2060:  D:/_bazel/execroot/selenium/bazel-out/x64_windows-fastbuild/testlogs/rb/spec/integration/selenium/webdriver/window-edge-remote/test_attempts/attempt_1.log
2061:  D:/_bazel/execroot/selenium/bazel-out/x64_windows-fastbuild/testlogs/rb/spec/integration/selenium/webdriver/window-edge-remote/test_attempts/attempt_2.log
2062:  �[32mINFO: �[0mFrom Testing //rb/spec/integration/selenium/webdriver:window-edge-remote:
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.05026 seconds (files took 0.66162 seconds to load)
2072:  0 examples, 0 failures, 1 error occurred outside of examples
2073:  ================================================================================
2074:  ==================== Test output for //rb/spec/integration/selenium/webdriver:window-edge-remote:
2075:  2024-03-25 13:54:57 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
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.05347 seconds (files took 0.71181 seconds to load)
2085:  0 examples, 0 failures, 1 error occurred outside of examples
2086:  ================================================================================
2087:  ==================== Test output for //rb/spec/integration/selenium/webdriver:window-edge-remote:
2088:  2024-03-25 13:55:19 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
2089:  An error occurred in a `before(:suite)` hook.
2090:  Failure/Error: @pid = Process.spawn(*@command, options)
2091:  Errno::EACCES:
2092:  Permission denied - java
2093:  # ./rb/lib/selenium/webdriver/common/child_process.rb:57:in `spawn'
2094:  # ./rb/lib/selenium/webdriver/common/child_process.rb:57:in `start'
2095:  # ./rb/lib/selenium/server.rb:204:in `start'
2096:  # //?/D:/a/selenium/selenium/rb/spec/integration/selenium/webdriver/spec_helper.rb:40:in `block (2 levels) in <top (required)>'
2097:  Finished in 0.06203 seconds (files took 0.85789 seconds to load)
2098:  0 examples, 0 failures, 1 error occurred outside of examples
2099:  ================================================================================
2100:  �[32m[2,895 / 2,898]�[0m 20 / 27 tests, �[31m�[1m20 failed�[0m;�[0m Testing //rb/spec/integration/selenium/webdriver:takes_screenshot-edge-remote; 7s disk-cache ... (3 actions, 1 running)
2101:  �[32m[2,895 / 2,898]�[0m 20 / 27 tests, �[31m�[1m20 failed�[0m;�[0m [Sched] Testing //rb/spec/integration/selenium/webdriver/remote:element-edge-remote; 7s ... (3 actions, 1 running)
2102:  �[32m[2,895 / 2,898]�[0m 20 / 27 tests, �[31m�[1m20 failed�[0m;�[0m Testing //rb/spec/integration/selenium/webdriver/edge:driver-edge-remote; 7s local, disk-cache ... (3 actions, 2 running)
2103:  �[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)
2104:  �[32m[2,895 / 2,898]�[0m 20 / 27 tests, �[31m�[1m20 failed�[0m;�[0m Testing //rb/spec/integration/selenium/webdriver/edge:driver-edge-remote; 8s local, disk-cache ... (3 actions, 2 running)
2105:  �[32m[2,895 / 2,898]�[0m 20 / 27 tests, �[31m�[1m20 failed�[0m;�[0m Testing //rb/spec/integration/selenium/webdriver/edge:driver-edge-remote; 11s local, disk-cache ... (3 actions, 2 running)
2106:  �[32m[2,895 / 2,898]�[0m 20 / 27 tests, �[31m�[1m20 failed�[0m;�[0m Testing //rb/spec/integration/selenium/webdriver/edge:driver-edge-remote; 13s local, disk-cache ... (3 actions running)
2107:  �[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)
2108:  �[32m[2,895 / 2,898]�[0m 20 / 27 tests, �[31m�[1m20 failed�[0m;�[0m Testing //rb/spec/integration/selenium/webdriver/edge:driver-edge-remote; 15s local, disk-cache ... (3 actions running)
2109:  �[32m[2,895 / 2,898]�[0m 20 / 27 tests, �[31m�[1m20 failed�[0m;�[0m Testing //rb/spec/integration/selenium/webdriver/edge:driver-edge-remote; 20s local, disk-cache ... (3 actions running)
2110:  �[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)
2111:  �[32m[2,895 / 2,898]�[0m 20 / 27 tests, �[31m�[1m20 failed�[0m;�[0m Testing //rb/spec/integration/selenium/webdriver/edge:driver-edge-remote; 22s local, disk-cache ... (3 actions running)
2112:  �[32m[2,895 / 2,898]�[0m 20 / 27 tests, �[31m�[1m20 failed�[0m;�[0m Testing //rb/spec/integration/selenium/webdriver/edge:driver-edge-remote; 27s local, disk-cache ... (3 actions running)
2113:  �[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)
2114:  �[32m[2,895 / 2,898]�[0m 20 / 27 tests, �[31m�[1m20 failed�[0m;�[0m Testing //rb/spec/integration/selenium/webdriver/edge:driver-edge-remote; 29s local, disk-cache ... (3 actions running)
2115:  �[32m[2,895 / 2,898]�[0m 20 / 27 tests, �[31m�[1m20 failed�[0m;�[0m Testing //rb/spec/integration/selenium/webdriver/edge:driver-edge-remote; 34s local, disk-cache ... (3 actions running)
2116:  �[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)
2117:  �[32m[2,895 / 2,898]�[0m 20 / 27 tests, �[31m�[1m20 failed�[0m;�[0m Testing //rb/spec/integration/selenium/webdriver/edge:driver-edge-remote; 36s local, disk-cache ... (3 actions running)
2118:  �[32m[2,895 / 2,898]�[0m 20 / 27 tests, �[31m�[1m20 failed�[0m;�[0m Testing //rb/spec/integration/selenium/webdriver/edge:driver-edge-remote; 41s local, disk-cache ... (3 actions running)
2119:  �[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)
2120:  �[32m[2,895 / 2,898]�[0m 20 / 27 tests, �[31m�[1m20 failed�[0m;�[0m Testing //rb/spec/integration/selenium/webdriver/edge:driver-edge-remote; 42s local, disk-cache ... (3 actions running)
2121:  �[32m[2,895 / 2,898]�[0m 20 / 27 tests, �[31m�[1m20 failed�[0m;�[0m Testing //rb/spec/integration/selenium/webdriver/edge:driver-edge-remote; 43s local, disk-cache ... (3 actions running)
2122:  �[32m[2,895 / 2,898]�[0m 20 / 27 tests, �[31m�[1m20 failed�[0m;�[0m Testing //rb/spec/integration/selenium/webdriver/edge:driver-edge-remote; 48s local, disk-cache ... (3 actions running)
2123:  �[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)
2124:  �[31m�[1mFAILED: �[0m//rb/spec/integration/selenium/webdriver/edge:driver-edge-remote (Summary)
2125:  D:/_bazel/execroot/selenium/bazel-out/x64_windows-fastbuild/testlogs/rb/spec/integration/selenium/webdriver/edge/driver-edge-remote/test.log
2126:  D:/_bazel/execroot/selenium/bazel-out/x64_windows-fastbuild/testlogs/rb/spec/integration/selenium/webdriver/edge/driver-edge-remote/test_attempts/attempt_1.log
2127:  D:/_bazel/execroot/selenium/bazel-out/x64_windows-fastbuild/testlogs/rb/spec/integration/selenium/webdriver/edge/driver-edge-remote/test_attempts/attempt_2.log
2128:  �[32mINFO: �[0mFrom Testing //rb/spec/integration/selenium/webdriver/edge:driver-edge-remote:
2129:  ==================== Test output for //rb/spec/integration/selenium/webdriver/edge:driver-edge-remote:
2130:  2024-03-25 13:55:26 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
2131:  An error occurred in a `before(:suite)` hook.
2132:  Failure/Error: @pid = Process.spawn(*@command, options)
2133:  Errno::EACCES:
2134:  Permission denied - java
2135:  # ./rb/lib/selenium/webdriver/common/child_process.rb:57:in `spawn'
2136:  # ./rb/lib/selenium/webdriver/common/child_process.rb:57:in `start'
2137:  # ./rb/lib/selenium/server.rb:204:in `start'
2138:  # //?/D:/a/selenium/selenium/rb/spec/integration/selenium/webdriver/spec_helper.rb:40:in `block (2 levels) in <top (required)>'
2139:  Finished in 0.04945 seconds (files took 0.82044 seconds to load)
2140:  0 examples, 0 failures, 1 error occurred outside of examples
2141:  ================================================================================
2142:  ==================== Test output for //rb/spec/integration/selenium/webdriver/edge:driver-edge-remote:
2143:  2024-03-25 13:55:47 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
2144:  An error occurred in a `before(:suite)` hook.
2145:  Failure/Error: @pid = Process.spawn(*@command, options)
2146:  Errno::EACCES:
2147:  Permission denied - java
2148:  # ./rb/lib/selenium/webdriver/common/child_process.rb:57:in `spawn'
2149:  # ./rb/lib/selenium/webdriver/common/child_process.rb:57:in `start'
2150:  # ./rb/lib/selenium/server.rb:204:in `start'
2151:  # //?/D:/a/selenium/selenium/rb/spec/integration/selenium/webdriver/spec_helper.rb:40:in `block (2 levels) in <top (required)>'
2152:  Finished in 0.04926 seconds (files took 0.6636 seconds to load)
2153:  0 examples, 0 failures, 1 error occurred outside of examples
2154:  ================================================================================
2155:  ==================== Test output for //rb/spec/integration/selenium/webdriver/edge:driver-edge-remote:
2156:  2024-03-25 13:56:08 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
2157:  An error occurred in a `before(:suite)` hook.
2158:  Failure/Error: @pid = Process.spawn(*@command, options)
2159:  Errno::EACCES:
2160:  Permission denied - java
2161:  # ./rb/lib/selenium/webdriver/common/child_process.rb:57:in `spawn'
2162:  # ./rb/lib/selenium/webdriver/common/child_process.rb:57:in `start'
2163:  # ./rb/lib/selenium/server.rb:204:in `start'
2164:  # //?/D:/a/selenium/selenium/rb/spec/integration/selenium/webdriver/spec_helper.rb:40:in `block (2 levels) in <top (required)>'
2165:  Finished in 0.05089 seconds (files took 0.67867 seconds to load)
2166:  0 examples, 0 failures, 1 error occurred outside of examples
2167:  ================================================================================
2168:  �[32m[2,896 / 2,898]�[0m 21 / 27 tests, �[31m�[1m21 failed�[0m;�[0m Testing //rb/spec/integration/selenium/webdriver/remote:element-edge-remote; 43s local, disk-cache ... (2 actions running)
2169:  �[32m[2,896 / 2,898]�[0m 21 / 27 tests, �[31m�[1m21 failed�[0m;�[0m Testing //rb/spec/integration/selenium/webdriver/remote:element-edge-remote; 48s local, disk-cache ... (2 actions running)
2170:  �[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)
2171:  �[31m�[1mFAILED: �[0m//rb/spec/integration/selenium/webdriver/remote:element-edge-remote (Summary)
2172:  D:/_bazel/execroot/selenium/bazel-out/x64_windows-fastbuild/testlogs/rb/spec/integration/selenium/webdriver/remote/element-edge-remote/test.log
2173:  D:/_bazel/execroot/selenium/bazel-out/x64_windows-fastbuild/testlogs/rb/spec/integration/selenium/webdriver/remote/element-edge-remote/test_attempts/attempt_1.log
2174:  D:/_bazel/execroot/selenium/bazel-out/x64_windows-fastbuild/testlogs/rb/spec/integration/selenium/webdriver/remote/element-edge-remote/test_attempts/attempt_2.log
2175:  �[32mINFO: �[0mFrom Testing //rb/spec/integration/selenium/webdriver/remote:element-edge-remote:
2176:  ==================== Test output for //rb/spec/integration/selenium/webdriver/remote:element-edge-remote:
2177:  2024-03-25 13:55:33 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
2178:  An error occurred in a `before(:suite)` hook.
2179:  Failure/Error: @pid = Process.spawn(*@command, options)
2180:  Errno::EACCES:
2181:  Permission denied - java
2182:  # ./rb/lib/selenium/webdriver/common/child_process.rb:57:in `spawn'
2183:  # ./rb/lib/selenium/webdriver/common/child_process.rb:57:in `start'
2184:  # ./rb/lib/selenium/server.rb:204:in `start'
2185:  # //?/D:/a/selenium/selenium/rb/spec/integration/selenium/webdriver/spec_helper.rb:40:in `block (2 levels) in <top (required)>'
2186:  Finished in 0.04919 seconds (files took 0.6458 seconds to load)
2187:  0 examples, 0 failures, 1 error occurred outside of examples
2188:  ================================================================================
2189:  ==================== Test output for //rb/spec/integration/selenium/webdriver/remote:element-edge-remote:
2190:  2024-03-25 13:55:54 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
2191:  An error occurred in a `before(:suite)` hook.
2192:  Failure/Error: @pid = Process.spawn(*@command, options)
2193:  Errno::EACCES:
2194:  Permission denied - java
2195:  # ./rb/lib/selenium/webdriver/common/child_process.rb:57:in `spawn'
2196:  # ./rb/lib/selenium/webdriver/common/child_process.rb:57:in `start'
2197:  # ./rb/lib/selenium/server.rb:204:in `start'
2198:  # //?/D:/a/selenium/selenium/rb/spec/integration/selenium/webdriver/spec_helper.rb:40:in `block (2 levels) in <top (required)>'
2199:  Finished in 0.04951 seconds (files took 0.66132 seconds to load)
2200:  0 examples, 0 failures, 1 error occurred outside of examples
2201:  ================================================================================
2202:  ==================== Test output for //rb/spec/integration/selenium/webdriver/remote:element-edge-remote:
2203:  2024-03-25 13:56:14 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
2204:  An error occurred in a `before(:suite)` hook.
2205:  Failure/Error: @pid = Process.spawn(*@command, options)
2206:  Errno::EACCES:
2207:  Permission denied - java
2208:  # ./rb/lib/selenium/webdriver/common/child_process.rb:57:in `spawn'
2209:  # ./rb/lib/selenium/webdriver/common/child_process.rb:57:in `start'
2210:  # ./rb/lib/selenium/server.rb:204:in `start'
2211:  # //?/D:/a/selenium/selenium/rb/spec/integration/selenium/webdriver/spec_helper.rb:40:in `block (2 levels) in <top (required)>'
2212:  Finished in 0.05239 seconds (files took 0.69017 seconds to load)
2213:  0 examples, 0 failures, 1 error occurred outside of examples
2214:  ================================================================================
2215:  �[32m[2,897 / 2,898]�[0m 22 / 27 tests, �[31m�[1m22 failed�[0m;�[0m Testing //rb/spec/integration/selenium/webdriver:takes_screenshot-edge-remote; 43s local, disk-cache
2216:  �[32m[2,897 / 2,898]�[0m 22 / 27 tests, �[31m�[1m22 failed�[0m;�[0m Testing //rb/spec/integration/selenium/webdriver:takes_screenshot-edge-remote; 48s local, disk-cache
2217:  �[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)
2218:  �[31m�[1mFAILED: �[0m//rb/spec/integration/selenium/webdriver:takes_screenshot-edge-remote (Summary)
2219:  D:/_bazel/execroot/selenium/bazel-out/x64_windows-fastbuild/testlogs/rb/spec/integration/selenium/webdriver/takes_screenshot-edge-remote/test.log
2220:  D:/_bazel/execroot/selenium/bazel-out/x64_windows-fastbuild/testlogs/rb/spec/integration/selenium/webdriver/takes_screenshot-edge-remote/test_attempts/attempt_1.log
2221:  D:/_bazel/execroot/selenium/bazel-out/x64_windows-fastbuild/testlogs/rb/spec/integration/selenium/webdriver/takes_screenshot-edge-remote/test_attempts/attempt_2.log
2222:  �[32mINFO: �[0mFrom Testing //rb/spec/integration/selenium/webdriver:takes_screenshot-edge-remote:
2223:  ==================== Test output for //rb/spec/integration/selenium/webdriver:takes_screenshot-edge-remote:
2224:  2024-03-25 13:55:40 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
2225:  An error occurred in a `before(:suite)` hook.
2226:  Failure/Error: @pid = Process.spawn(*@command, options)
2227:  Errno::EACCES:
2228:  Permission denied - java
2229:  # ./rb/lib/selenium/webdriver/common/child_process.rb:57:in `spawn'
2230:  # ./rb/lib/selenium/webdriver/common/child_process.rb:57:in `start'
2231:  # ./rb/lib/selenium/server.rb:204:in `start'
2232:  # //?/D:/a/selenium/selenium/rb/spec/integration/selenium/webdriver/spec_helper.rb:40:in `block (2 levels) in <top (required)>'
2233:  Finished in 0.04824 seconds (files took 0.63052 seconds to load)
2234:  0 examples, 0 failures, 1 error occurred outside of examples
2235:  ================================================================================
2236:  ==================== Test output for //rb/spec/integration/selenium/webdriver:takes_screenshot-edge-remote:
2237:  2024-03-25 13:56:01 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
2238:  An error occurred in a `before(:suite)` hook.
2239:  Failure/Error: @pid = Process.spawn(*@command, options)
2240:  Errno::EACCES:
2241:  Permission denied - java
2242:  # ./rb/lib/selenium/webdriver/common/child_process.rb:57:in `spawn'
2243:  # ./rb/lib/selenium/webdriver/common/child_process.rb:57:in `start'
2244:  # ./rb/lib/selenium/server.rb:204:in `start'
2245:  # //?/D:/a/selenium/selenium/rb/spec/integration/selenium/webdriver/spec_helper.rb:40:in `block (2 levels) in <top (required)>'
2246:  Finished in 0.05091 seconds (files took 0.64995 seconds to load)
2247:  0 examples, 0 failures, 1 error occurred outside of examples
2248:  ================================================================================
2249:  ==================== Test output for //rb/spec/integration/selenium/webdriver:takes_screenshot-edge-remote:
2250:  2024-03-25 13:56:21 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
2251:  An error occurred in a `before(:suite)` hook.
2252:  Failure/Error: @pid = Process.spawn(*@command, options)
2253:  Errno::EACCES:
2254:  Permission denied - java
2255:  # ./rb/lib/selenium/webdriver/common/child_process.rb:57:in `spawn'
2256:  # ./rb/lib/selenium/webdriver/common/child_process.rb:57:in `start'
2257:  # ./rb/lib/selenium/server.rb:204:in `start'
2258:  # //?/D:/a/selenium/selenium/rb/spec/integration/selenium/webdriver/spec_helper.rb:40:in `block (2 levels) in <top (required)>'
2259:  Finished in 0.04778 seconds (files took 0.63439 seconds to load)
2260:  0 examples, 0 failures, 1 error occurred outside of examples
2261:  ================================================================================
2262:  �[32m[2,898 / 2,899]�[0m 23 / 27 tests, �[31m�[1m23 failed�[0m;�[0m Testing //rb/spec/integration/selenium/webdriver:devtools-edge-remote; 0s disk-cache
2263:  �[32m[2,898 / 2,899]�[0m 23 / 27 tests, �[31m�[1m23 failed�[0m;�[0m [Sched] Testing //rb/spec/integration/selenium/webdriver:devtools-edge-remote
2264:  �[32m[2,898 / 2,899]�[0m 23 / 27 tests, �[31m�[1m23 failed�[0m;�[0m Testing //rb/spec/integration/selenium/webdriver:devtools-edge-remote; 1s local, disk-cache
2265:  �[32m[2,898 / 2,899]�[0m 23 / 27 tests, �[31m�[1m23 failed�[0m;�[0m Testing //rb/spec/integration/selenium/webdriver:devtools-edge-remote; 6s local, disk-cache
2266:  �[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)
2267:  �[32m[2,898 / 2,899]�[0m 23 / 27 tests, �[31m�[1m23 failed�[0m;�[0m Testing //rb/spec/integration/selenium/webdriver:devtools-edge-remote; 8s local, disk-cache
2268:  �[32m[2,898 / 2,899]�[0m 23 / 27 tests, �[31m�[1m23 failed�[0m;�[0m Testing //rb/spec/integration/selenium/webdriver:devtools-edge-remote; 14s local, disk-cache
2269:  �[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)
2270:  �[32m[2,898 / 2,899]�[0m 23 / 27 tests, �[31m�[1m23 failed�[0m;�[0m Testing //rb/spec/integration/selenium/webdriver:devtools-edge-remote; 15s local, disk-cache
2271:  �[32m[2,898 / 2,899]�[0m 23 / 27 tests, �[31m�[1m23 failed�[0m;�[0m Testing //rb/spec/integration/selenium/webdriver:devtools-edge-remote; 21s local, disk-cache
2272:  �[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)
2273:  �[31m�[1mFAILED: �[0m//rb/spec/integration/selenium/webdriver:devtools-edge-remote (Summary)
2274:  D:/_bazel/execroot/selenium/bazel-out/x64_windows-fastbuild/testlogs/rb/spec/integration/selenium/webdriver/devtools-edge-remote/test.log
2275:  D:/_bazel/execroot/selenium/bazel-out/x64_windows-fastbuild/testlogs/rb/spec/integration/selenium/webdriver/devtools-edge-remote/test_attempts/attempt_1.log
2276:  D:/_bazel/execroot/selenium/bazel-out/x64_windows-fastbuild/testlogs/rb/spec/integration/selenium/webdriver/devtools-edge-remote/test_attempts/attempt_2.log
2277:  �[32mINFO: �[0mFrom Testing //rb/spec/integration/selenium/webdriver:devtools-edge-remote:
2278:  ==================== Test output for //rb/spec/integration/selenium/webdriver:devtools-edge-remote:
2279:  2024-03-25 13:56:38 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
2280:  An error occurred in a `before(:suite)` hook.
2281:  Failure/Error: @pid = Process.spawn(*@command, options)
2282:  Errno::EACCES:
2283:  Permission denied - java
2284:  # ./rb/lib/selenium/webdriver/common/child_process.rb:57:in `spawn'
2285:  # ./rb/lib/selenium/webdriver/common/child_process.rb:57:in `start'
2286:  # ./rb/lib/selenium/server.rb:204:in `start'
2287:  # //?/D:/a/selenium/selenium/rb/spec/integration/selenium/webdriver/spec_helper.rb:40:in `block (2 levels) in <top (required)>'
2288:  Finished in 0.05175 seconds (files took 0.66891 seconds to load)
2289:  0 examples, 0 failures, 1 error occurred outside of examples
2290:  ================================================================================
2291:  ==================== Test output for //rb/spec/integration/selenium/webdriver:devtools-edge-remote:
2292:  2024-03-25 13:56:46 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
2293:  An error occurred in a `before(:suite)` hook.
2294:  Failure/Error: @pid = Process.spawn(*@command, options)
2295:  Errno::EACCES:
2296:  Permission denied - java
2297:  # ./rb/lib/selenium/webdriver/common/child_process.rb:57:in `spawn'
2298:  # ./rb/lib/selenium/webdriver/common/child_process.rb:57:in `start'
2299:  # ./rb/lib/selenium/server.rb:204:in `start'
2300:  # //?/D:/a/selenium/selenium/rb/spec/integration/selenium/webdriver/spec_helper.rb:40:in `block (2 levels) in <top (required)>'
2301:  Finished in 0.04814 seconds (files took 0.62266 seconds to load)
2302:  0 examples, 0 failures, 1 error occurred outside of examples
2303:  ================================================================================
2304:  ==================== Test output for //rb/spec/integration/selenium/webdriver:devtools-edge-remote:
2305:  2024-03-25 13:56:53 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
2306:  An error occurred in a `before(:suite)` hook.
2307:  Failure/Error: @pid = Process.spawn(*@command, options)
2308:  Errno::EACCES:
2309:  Permission denied - java
2310:  # ./rb/lib/selenium/webdriver/common/child_process.rb:57:in `spawn'
2311:  # ./rb/lib/selenium/webdriver/common/child_process.rb:57:in `start'
2312:  # ./rb/lib/selenium/server.rb:204:in `start'
2313:  # //?/D:/a/selenium/selenium/rb/spec/integration/selenium/webdriver/spec_helper.rb:40:in `block (2 levels) in <top (required)>'
2314:  Finished in 0.05309 seconds (files took 0.67962 seconds to load)
2315:  0 examples, 0 failures, 1 error occurred outside of examples
2316:  ================================================================================
2317:  �[32m[2,899 / 2,900]�[0m 24 / 27 tests, �[31m�[1m24 failed�[0m;�[0m Testing //rb/spec/integration/selenium/webdriver/bidi:log_inspector-edge-remote; 0s disk-cache
2318:  �[32m[2,899 / 2,900]�[0m 24 / 27 tests, �[31m�[1m24 failed�[0m;�[0m [Sched] Testing //rb/spec/integration/selenium/webdriver/bidi:log_inspector-edge-remote
2319:  �[32m[2,899 / 2,900]�[0m 24 / 27 tests, �[31m�[1m24 failed�[0m;�[0m Testing //rb/spec/integration/selenium/webdriver/bidi:log_inspector-edge-remote; 1s local, disk-cache
2320:  �[32m[2,899 / 2,900]�[0m 24 / 27 tests, �[31m�[1m24 failed�[0m;�[0m Testing //rb/spec/integration/selenium/webdriver/bidi:log_inspector-edge-remote; 6s local, disk-cache
2321:  �[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)
2322:  �[32m[2,899 / 2,900]�[0m 24 / 27 tests, �[31m�[1m24 failed�[0m;�[0m Testing //rb/spec/integration/selenium/webdriver/bidi:log_inspector-edge-remote; 8s local, disk-cache
2323:  �[32m[2,899 / 2,900]�[0m 24 / 27 tests, �[31m�[1m24 failed�[0m;�[0m Testing //rb/spec/integration/selenium/webdriver/bidi:log_inspector-edge-remote; 14s local, disk-cache
2324:  �[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)
2325:  �[32m[2,899 / 2,900]�[0m 24 / 27 tests, �[31m�[1m24 failed�[0m;�[0m Testing //rb/spec/integration/selenium/webdriver/bidi:log_inspector-edge-remote; 15s local, disk-cache
2326:  �[32m[2,899 / 2,900]�[0m 24 / 27 tests, �[31m�[1m24 failed�[0m;�[0m Testing //rb/spec/integration/selenium/webdriver/bidi:log_inspector-edge-remote; 21s local, disk-cache
2327:  �[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)
2328:  �[31m�[1mFAILED: �[0m//rb/spec/integration/selenium/webdriver/bidi:log_inspector-edge-remote (Summary)
2329:  D:/_bazel/execroot/selenium/bazel-out/x64_windows-fastbuild/testlogs/rb/spec/integration/selenium/webdriver/bidi/log_inspector-edge-remote/test.log
2330:  D:/_bazel/execroot/selenium/bazel-out/x64_windows-fastbuild/testlogs/rb/spec/integration/selenium/webdriver/bidi/log_inspector-edge-remote/test_attempts/attempt_1.log
2331:  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
2332:  �[32mINFO: �[0mFrom Testing //rb/spec/integration/selenium/webdriver/bidi:log_inspector-edge-remote:
2333:  ==================== Test output for //rb/spec/integration/selenium/webdriver/bidi:log_inspector-edge-remote:
2334:  2024-03-25 13:57: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
2335:  An error occurred in a `before(:suite)` hook.
2336:  Failure/Error: @pid = Process.spawn(*@command, options)
2337:  Errno::EACCES:
2338:  Permission denied - java
2339:  # ./rb/lib/selenium/webdriver/common/child_process.rb:57:in `spawn'
2340:  # ./rb/lib/selenium/webdriver/common/child_process.rb:57:in `start'
2341:  # ./rb/lib/selenium/server.rb:204:in `start'
2342:  # //?/D:/a/selenium/selenium/rb/spec/integration/selenium/webdriver/spec_helper.rb:40:in `block (2 levels) in <top (required)>'
2343:  Finished in 0.05095 seconds (files took 0.65391 seconds to load)
2344:  0 examples, 0 failures, 1 error occurred outside of examples
2345:  ================================================================================
2346:  ==================== Test output for //rb/spec/integration/selenium/webdriver/bidi:log_inspector-edge-remote:
2347:  2024-03-25 13:57:18 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
2348:  An error occurred in a `before(:suite)` hook.
2349:  Failure/Error: @pid = Process.spawn(*@command, options)
2350:  Errno::EACCES:
2351:  Permission denied - java
2352:  # ./rb/lib/selenium/webdriver/common/child_process.rb:57:in `spawn'
2353:  # ./rb/lib/selenium/webdriver/common/child_process.rb:57:in `start'
2354:  # ./rb/lib/selenium/server.rb:204:in `start'
2355:  # //?/D:/a/selenium/selenium/rb/spec/integration/selenium/webdriver/spec_helper.rb:40:in `block (2 levels) in <top (required)>'
2356:  Finished in 0.05254 seconds (files took 0.66035 seconds to load)
2357:  0 examples, 0 failures, 1 error occurred outside of examples
2358:  ================================================================================
2359:  ==================== Test output for //rb/spec/integration/selenium/webdriver/bidi:log_inspector-edge-remote:
2360:  2024-03-25 13:57:26 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
2361:  An error occurred in a `before(:suite)` hook.
2362:  Failure/Error: @pid = Process.spawn(*@command, options)
2363:  Errno::EACCES:
2364:  Permission denied - java
2365:  # ./rb/lib/selenium/webdriver/common/child_process.rb:57:in `spawn'
2366:  # ./rb/lib/selenium/webdriver/common/child_process.rb:57:in `start'
2367:  # ./rb/lib/selenium/server.rb:204:in `start'
2368:  # //?/D:/a/selenium/selenium/rb/spec/integration/selenium/webdriver/spec_helper.rb:40:in `block (2 levels) in <top (required)>'
2369:  Finished in 0.05281 seconds (files took 0.69799 seconds to load)
2370:  0 examples, 0 failures, 1 error occurred outside of examples
2371:  ================================================================================
2372:  �[32m[2,900 / 2,901]�[0m 25 / 27 tests, �[31m�[1m25 failed�[0m;�[0m Testing //rb/spec/integration/selenium/webdriver/bidi:browsing_context-edge-remote; 0s disk-cache
2373:  �[32m[2,900 / 2,901]�[0m 25 / 27 tests, �[31m�[1m25 failed�[0m;�[0m [Sched] Testing //rb/spec/integration/selenium/webdriver/bidi:browsing_context-edge-remote
2374:  �[32m[2,900 / 2,901]�[0m 25 / 27 tests, �[31m�[1m25 failed�[0m;�[0m Testing //rb/spec/integration/selenium/webdriver/bidi:browsing_context-edge-remote; 1s local, disk-cache
2375:  �[32m[2,900 / 2,901]�[0m 25 / 27 tests, �[31m�[1m25 failed�[0m;�[0m Testing //rb/spec/integration/selenium/webdriver/bidi:browsing_context-edge-remote; 6s local, disk-cache
2376:  �[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)
2377:  �[32m[2,900 / 2,901]�[0m 25 / 27 tests, �[31m�[1m25 failed�[0m;�[0m Testing //rb/spec/integration/selenium/webdriver/bidi:browsing_context-edge-remote; 8s local, disk-cache
2378:  �[32m[2,900 / 2,901]�[0m 25 / 27 tests, �[31m�[1m25 failed�[0m;�[0m Testing //rb/spec/integration/selenium/webdriver/bidi:browsing_context-edge-remote; 14s local, disk-cache
2379:  �[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)
2380:  �[32m[2,900 / 2,901]�[0m 25 / 27 tests, �[31m�[1m25 failed�[0m;�[0m Testing //rb/spec/integration/selenium/webdriver/bidi:browsing_context-edge-remote; 16s local, disk-cache
2381:  �[32m[2,900 / 2,901]�[0m 25 / 27 tests, �[31m�[1m25 failed�[0m;�[0m Testing //rb/spec/integration/selenium/webdriver/bidi:browsing_context-edge-remote; 21s local, disk-cache
2382:  �[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)
2383:  �[31m�[1mFAILED: �[0m//rb/spec/integration/selenium/webdriver/bidi:browsing_context-edge-remote (Summary)
2384:  D:/_bazel/execroot/selenium/bazel-out/x64_windows-fastbuild/testlogs/rb/spec/integration/selenium/webdriver/bidi/browsing_context-edge-remote/test.log
2385:  D:/_bazel/execroot/selenium/bazel-out/x64_windows-fastbuild/testlogs/rb/spec/integration/selenium/webdriver/bidi/browsing_context-edge-remote/test_attempts/attempt_1.log
2386:  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
2387:  �[32mINFO: �[0mFrom Testing //rb/spec/integration/selenium/webdriver/bidi:browsing_context-edge-remote:
2388:  ==================== Test output for //rb/spec/integration/selenium/webdriver/bidi:browsing_context-edge-remote:
2389:  2024-03-25 13:57:43 INFO Selenium Server Location: D:/_bazel/execroot/selenium/bazel-out/x64_windows-fastbuild/bin/rb/spec/integration/selenium/webdriver/bidi/browsing_context-edge-remote.cmd.runfiles/selenium/java/src/org/openqa/selenium/grid/selenium_server_deploy.jar
2390:  An error occurred in a `before(:suite)` hook.
2391:  Failure/Error: @pid = Process.spawn(*@command, options)
2392:  Errno::EACCES:
2393:  Permission denied - java
2394:  # ./rb/lib/selenium/webdriver/common/child_process.rb:57:in `spawn'
2395:  # ./rb/lib/selenium/webdriver/common/child_process.rb:57:in `start'
2396:  # ./rb/lib/selenium/server.rb:204:in `start'
2397:  # //?/D:/a/selenium/selenium/rb/spec/integration/selenium/webdriver/spec_helper.rb:40:in `block (2 levels) in <top (required)>'
2398:  Finished in 0.04718 seconds (files took 0.63353 seconds to load)
2399:  0 examples, 0 failures, 1 error occurred outside of examples
2400:  ================================================================================
2401:  ==================== Test output for //rb/spec/integration/selenium/webdriver/bidi:browsing_context-edge-remote:
2402:  2024-03-25 13:57:51 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
2403:  An error occurred in a `before(:suite)` hook.
2404:  Failure/Error: @pid = Process.spawn(*@command, options)
2405:  Errno::EACCES:
2406:  Permission denied - java
2407:  # ./rb/lib/selenium/webdriver/common/child_process.rb:57:in `spawn'
2408:  # ./rb/lib/selenium/webdriver/common/child_process.rb:57:in `start'
2409:  # ./rb/lib/selenium/server.rb:204:in `start'
2410:  # //?/D:/a/selenium/selenium/rb/spec/integration/selenium/webdriver/spec_helper.rb:40:in `block (2 levels) in <top (required)>'
2411:  Finished in 0.05163 seconds (files took 0.71974 seconds to load)
2412:  0 examples, 0 failures, 1 error occurred outside of examples
2413:  ================================================================================
2414:  ==================== Test output for //rb/spec/integration/selenium/webdriver/bidi:browsing_context-edge-remote:
2415:  2024-03-25 13:57:58 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
2416:  An error occurred in a `before(:suite)` hook.
2417:  Failure/Error: @pid = Process.spawn(*@command, options)
2418:  Errno::EACCES:
2419:  Permission denied - java
2420:  # ./rb/lib/selenium/webdriver/common/child_process.rb:57:in `spawn'
2421:  # ./rb/lib/selenium/webdriver/common/child_process.rb:57:in `start'
2422:  # ./rb/lib/selenium/server.rb:204:in `start'
2423:  # //?/D:/a/selenium/selenium/rb/spec/integration/selenium/webdriver/spec_helper.rb:40:in `block (2 levels) in <top (required)>'
2424:  Finished in 0.04906 seconds (files took 0.64218 seconds to load)
2425:  0 examples, 0 failures, 1 error occurred outside of examples
2426:  ================================================================================
2427:  �[32m[2,901 / 2,902]�[0m 26 / 27 tests, �[31m�[1m26 failed�[0m;�[0m Testing //rb/spec/integration/selenium/webdriver:bidi-edge-remote; 0s disk-cache
2428:  �[32m[2,901 / 2,902]�[0m 26 / 27 tests, �[31m�[1m26 failed�[0m;�[0m [Sched] Testing //rb/spec/integration/selenium/webdriver:bidi-edge-remote
2429:  �[32m[2,901 / 2,902]�[0m 26 / 27 tests, �[31m�[1m26 failed�[0m;�[0m Testing //rb/spec/integration/selenium/webdriver:bidi-edge-remote; 1s local, disk-cache
2430:  �[32m[2,901 / 2,902]�[0m 26 / 27 tests, �[31m�[1m26 failed�[0m;�[0m Testing //rb/spec/integration/selenium/webdriver:bidi-edge-remote; 6s local, disk-cache
2431:  �[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)
2432:  �[32m[2,901 / 2,902]�[0m 26 / 27 tests, �[31m�[1m26 failed�[0m;�[0m Testing //rb/spec/integration/selenium/webdriver:bidi-edge-remote; 8s local, disk-cache
2433:  �[32m[2,901 / 2,902]�[0m 26 / 27 tests, �[31m�[1m26 failed�[0m;�[0m Testing //rb/spec/integration/selenium/webdriver:bidi-edge-remote; 14s local, disk-cache
2434:  �[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)
2435:  �[32m[2,901 / 2,902]�[0m 26 / 27 tests, �[31m�[1m26 failed�[0m;�[0m Testing //rb/spec/integration/selenium/webdriver:bidi-edge-remote; 15s local, disk-cache
2436:  �[32m[2,901 / 2,902]�[0m 26 / 27 tests, �[31m�[1m26 failed�[0m;�[0m Testing //rb/spec/integration/selenium/webdriver:bidi-edge-remote; 21s local, disk-cache
2437:  �[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)
2438:  �[31m�[1mFAILED: �[0m//rb/spec/integration/selenium/webdriver:bidi-edge-remote (Summary)
2439:  D:/_bazel/execroot/selenium/bazel-out/x64_windows-fastbuild/testlogs/rb/spec/integration/selenium/webdriver/bidi-edge-remote/test.log
2440:  D:/_bazel/execroot/selenium/bazel-out/x64_windows-fastbuild/testlogs/rb/spec/integration/selenium/webdriver/bidi-edge-remote/test_attempts/attempt_1.log
2441:  D:/_bazel/execroot/selenium/bazel-out/x64_windows-fastbuild/testlogs/rb/spec/integration/selenium/webdriver/bidi-edge-remote/test_attempts/attempt_2.log
2442:  �[32mINFO: �[0mFrom Testing //rb/spec/integration/selenium/webdriver:bidi-edge-remote:
2443:  ==================== Test output for //rb/spec/integration/selenium/webdriver:bidi-edge-remote:
2444:  2024-03-25 13:58:16 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
2445:  An error occurred in a `before(:suite)` hook.
2446:  Failure/Error: @pid = Process.spawn(*@command, options)
2447:  Errno::EACCES:
2448:  Permission denied - java
2449:  # ./rb/lib/selenium/webdriver/common/child_process.rb:57:in `spawn'
2450:  # ./rb/lib/selenium/webdriver/common/child_process.rb:57:in `start'
2451:  # ./rb/lib/selenium/server.rb:204:in `start'
2452:  # //?/D:/a/selenium/selenium/rb/spec/integration/selenium/webdriver/spec_helper.rb:40:in `block (2 levels) in <top (required)>'
2453:  Finished in 0.04783 seconds (files took 0.62481 seconds to load)
2454:  0 examples, 0 failures, 1 error occurred outside of examples
2455:  ================================================================================
2456:  ==================== Test output for //rb/spec/integration/selenium/webdriver:bidi-edge-remote:
2457:  2024-03-25 13:58:23 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
2458:  An error occurred in a `before(:suite)` hook.
2459:  Failure/Error: @pid = Process.spawn(*@command, options)
2460:  Errno::EACCES:
2461:  Permission denied - java
2462:  # ./rb/lib/selenium/webdriver/common/child_process.rb:57:in `spawn'
2463:  # ./rb/lib/selenium/webdriver/common/child_process.rb:57:in `start'
2464:  # ./rb/lib/selenium/server.rb:204:in `start'
2465:  # //?/D:/a/selenium/selenium/rb/spec/integration/selenium/webdriver/spec_helper.rb:40:in `block (2 levels) in <top (required)>'
2466:  Finished in 0.04961 seconds (files took 0.64813 seconds to load)
2467:  0 examples, 0 failures, 1 error occurred outside of examples
2468:  ================================================================================
2469:  ==================== Test output for //rb/spec/integration/selenium/webdriver:bidi-edge-remote:
2470:  2024-03-25 13:58:30 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
2471:  An error occurred in a `before(:suite)` hook.
2472:  Failure/Error: @pid = Process.spawn(*@command, options)
2473:  Errno::EACCES:
2474:  Permission denied - java
2475:  # ./rb/lib/selenium/webdriver/common/child_process.rb:57:in `spawn'
2476:  # ./rb/lib/selenium/webdriver/common/child_process.rb:57:in `start'
2477:  # ./rb/lib/selenium/server.rb:204:in `start'
2478:  # //?/D:/a/selenium/selenium/rb/spec/integration/selenium/webdriver/spec_helper.rb:40:in `block (2 levels) in <top (required)>'
2479:  Finished in 0.04695 seconds (files took 0.64467 seconds to load)
2480:  0 examples, 0 failures, 1 error occurred outside of examples
2481:  ================================================================================
2482:  �[32mINFO: �[0mFound 27 test targets...
2483:  �[32mINFO: �[0mElapsed time: 830.187s, Critical Path: 180.21s
2484:  �[32mINFO: �[0m2672 processes: 1464 disk cache hit, 1059 internal, 149 local.
2485:  �[32mINFO: �[0mBuild completed, 27 tests FAILED, 2672 total actions
2486:  //rb/spec/integration/selenium/webdriver:action_builder-edge-remote      �[0m�[31m�[1mFAILED�[0m in 3 out of 3 in 8.1s
2487:  Stats over 3 runs: max = 8.1s, min = 6.9s, avg = 7.3s, dev = 0.5s
2488:  D:/_bazel/execroot/selenium/bazel-out/x64_windows-fastbuild/testlogs/rb/spec/integration/selenium/webdriver/action_builder-edge-remote/test.log
2489:  D:/_bazel/execroot/selenium/bazel-out/x64_windows-fastbuild/testlogs/rb/spec/integration/selenium/webdriver/action_builder-edge-remote/test_attempts/attempt_1.log
2490:  D:/_bazel/execroot/selenium/bazel-out/x64_windows-fastbuild/testlogs/rb/spec/integration/selenium/webdriver/action_builder-edge-remote/test_attempts/attempt_2.log
2491:  //rb/spec/integration/selenium/webdriver:bidi-edge-remote                �[0m�[31m�[1mFAILED�[0m in 3 out of 3 in 6.8s
2492:  Stats over 3 runs: max = 6.8s, min = 6.7s, avg = 6.8s, dev = 0.0s
2493:  D:/_bazel/execroot/selenium/bazel-out/x64_windows-fastbuild/testlogs/rb/spec/integration/selenium/webdriver/bidi-edge-remote/test.log
2494:  D:/_bazel/execroot/selenium/bazel-out/x64_windows-fastbuild/testlogs/rb/spec/integration/selenium/webdriver/bidi-edge-remote/test_attempts/attempt_1.log
2495:  D:/_bazel/execroot/selenium/bazel-out/x64_windows-fastbuild/testlogs/rb/spec/integration/selenium/webdriver/bidi-edge-remote/test_attempts/attempt_2.log
2496:  //rb/spec/integration/selenium/webdriver:devtools-edge-remote            �[0m�[31m�[1mFAILED�[0m in 3 out of 3 in 6.9s
2497:  Stats over 3 runs: max = 6.9s, min = 6.8s, avg = 6.8s, dev = 0.0s
2498:  D:/_bazel/execroot/selenium/bazel-out/x64_windows-fastbuild/testlogs/rb/spec/integration/selenium/webdriver/devtools-edge-remote/test.log
2499:  D:/_bazel/execroot/selenium/bazel-out/x64_windows-fastbuild/testlogs/rb/spec/integration/selenium/webdriver/devtools-edge-remote/test_attempts/attempt_1.log
2500:  D:/_bazel/execroot/selenium/bazel-out/x64_windows-fastbuild/testlogs/rb/spec/integration/selenium/webdriver/devtools-edge-remote/test_attempts/attempt_2.log
2501:  //rb/spec/integration/selenium/webdriver:driver-edge-remote              �[0m�[31m�[1mFAILED�[0m in 3 out of 3 in 7.5s
2502:  Stats over 3 runs: max = 7.5s, min = 6.7s, avg = 7.0s, dev = 0.3s
2503:  D:/_bazel/execroot/selenium/bazel-out/x64_windows-fastbuild/testlogs/rb/spec/integration/selenium/webdriver/driver-edge-remote/test.log
2504:  D:/_bazel/execroot/selenium/bazel-out/x64_windows-fastbuild/testlogs/rb/spec/integration/selenium/webdriver/driver-edge-remote/test_attempts/attempt_1.log
2505:  D:/_bazel/execroot/selenium/bazel-out/x64_windows-fastbuild/testlogs/rb/spec/integration/selenium/webdriver/driver-edge-remote/test_attempts/attempt_2.log
2506:  //rb/spec/integration/selenium/webdriver:element-edge-remote             �[0m�[31m�[1mFAILED�[0m in 3 out of 3 in 6.9s
2507:  Stats over 3 runs: max = 6.9s, min = 6.8s, avg = 6.9s, dev = 0.0s
2508:  D:/_bazel/execroot/selenium/bazel-out/x64_windows-fastbuild/testlogs/rb/spec/integration/selenium/webdriver/element-edge-remote/test.log
2509:  D:/_bazel/execroot/selenium/bazel-out/x64_windows-fastbuild/testlogs/rb/spec/integration/selenium/webdriver/element-edge-remote/test_attempts/attempt_1.log
2510:  D:/_bazel/execroot/selenium/bazel-out/x64_windows-fastbuild/testlogs/rb/spec/integration/selenium/webdriver/element-edge-remote/test_attempts/attempt_2.log
2511:  //rb/spec/integration/selenium/webdriver:error-edge-remote               �[0m�[31m�[1mFAILED�[0m in 3 out of 3 in 7.6s
2512:  Stats over 3 runs: max = 7.6s, min = 6.8s, avg = 7.3s, dev = 0.4s
2513:  D:/_bazel/execroot/selenium/bazel-out/x64_windows-fastbuild/testlogs/rb/spec/integration/selenium/webdriver/error-edge-remote/test.log
2514:  D:/_bazel/execroot/selenium/bazel-out/x64_windows-fastbuild/testlogs/rb/spec/integration/selenium/webdriver/error-edge-remote/test_attempts/attempt_1.log
2515:  D:/_bazel/execroot/selenium/bazel-out/x64_windows-fastbuild/testlogs/rb/spec/integration/selenium/webdriver/error-edge-remote/test_attempts/attempt_2.log
2516:  //rb/spec/integration/selenium/webdriver:guard-edge-remote               �[0m�[31m�[1mFAILED�[0m in 3 out of 3 in 7.9s
2517:  Stats over 3 runs: max = 7.9s, min = 6.7s, avg = 7.1s, dev = 0.5s
2518:  D:/_bazel/execroot/selenium/bazel-out/x64_windows-fastbuild/testlogs/rb/spec/integration/selenium/webdriver/guard-edge-remote/test.log
2519:  D:/_bazel/execroot/selenium/bazel-out/x64_windows-fastbuild/testlogs/rb/spec/integration/selenium/webdriver/guard-edge-remote/test_attempts/attempt_1.log
2520:  D:/_bazel/execroot/selenium/bazel-out/x64_windows-fastbuild/testlogs/rb/spec/integration/selenium/webdriver/guard-edge-remote/test_attempts/attempt_2.log
2521:  //rb/spec/integration/selenium/webdriver:listener-edge-remote            �[0m�[31m�[1mFAILED�[0m in 3 out of 3 in 7.1s
2522:  Stats over 3 runs: max = 7.1s, min = 6.7s, avg = 6.9s, dev = 0.1s
2523:  D:/_bazel/execroot/selenium/bazel-out/x64_windows-fastbuild/testlogs/rb/spec/integration/selenium/webdriver/listener-edge-remote/test.log
2524:  D:/_bazel/execroot/selenium/bazel-out/x64_windows-fastbuild/testlogs/rb/spec/integration/selenium/webdriver/listener-edge-remote/test_attempts/attempt_1.log
2525:  D:/_bazel/execroot/selenium/bazel-out/x64_windows-fastbuild/testlogs/rb/spec/integration/selenium/webdriver/listener-edge-remote/test_attempts/attempt_2.log
2526:  //rb/spec/integration/selenium/webdriver:manager-edge-remote             �[0m�[31m�[1mFAILED�[0m in 3 out of 3 in 7.1s
2527:  Stats over 3 runs: max = 7.1s, min = 6.7s, avg = 6.9s, dev = 0.2s
2528:  D:/_bazel/execroot/selenium/bazel-out/x64_windows-fastbuild/testlogs/rb/spec/integration/selenium/webdriver/manager-edge-remote/test.log
2529:  D:/_bazel/execroot/selenium/bazel-out/x64_windows-fastbuild/testlogs/rb/spec/integration/selenium/webdriver/manager-edge-remote/test_attempts/attempt_1.log
2530:  D:/_bazel/execroot/selenium/bazel-out/x64_windows-fastbuild/testlogs/rb/spec/integration/selenium/webdriver/manager-edge-remote/test_attempts/attempt_2.log
2531:  //rb/spec/integration/selenium/webdriver:navigation-edge-remote          �[0m�[31m�[1mFAILED�[0m in 3 out of 3 in 7.3s
2532:  Stats over 3 runs: max = 7.3s, min = 6.7s, avg = 7.0s, dev = 0.2s
2533:  D:/_bazel/execroot/selenium/bazel-out/x64_windows-fastbuild/testlogs/rb/spec/integration/selenium/webdriver/navigation-edge-remote/test.log
2534:  D:/_bazel/execroot/selenium/bazel-out/x64_windows-fastbuild/testlogs/rb/spec/integration/selenium/webdriver/navigation-edge-remote/test_attempts/attempt_1.log
2535:  D:/_bazel/execroot/selenium/bazel-out/x64_windows-fastbuild/testlogs/rb/spec/integration/selenium/webdriver/navigation-edge-remote/test_attempts/attempt_2.log
2536:  //rb/spec/integration/selenium/webdriver:select-edge-remote              �[0m�[31m�[1mFAILED�[0m in 3 out of 3 in 7.4s
2537:  Stats over 3 runs: max = 7.4s, min = 6.8s, avg = 7.0s, dev = 0.3s
2538:  D:/_bazel/execroot/selenium/bazel-out/x64_windows-fastbuild/testlogs/rb/spec/integration/selenium/webdriver/select-edge-remote/test.log
2539:  D:/_bazel/execroot/selenium/bazel-out/x64_windows-fastbuild/testlogs/rb/spec/integration/selenium/webdriver/select-edge-remote/test_attempts/attempt_1.log
2540:  D:/_bazel/execroot/selenium/bazel-out/x64_windows-fastbuild/testlogs/rb/spec/integration/selenium/webdriver/select-edge-remote/test_attempts/attempt_2.log
2541:  //rb/spec/integration/selenium/webdriver:shadow_root-edge-remote         �[0m�[31m�[1mFAILED�[0m in 3 out of 3 in 7.4s
2542:  Stats over 3 runs: max = 7.4s, min = 6.7s, avg = 7.0s, dev = 0.3s
2543:  D:/_bazel/execroot/selenium/bazel-out/x64_windows-fastbuild/testlogs/rb/spec/integration/selenium/webdriver/shadow_root-edge-remote/test.log
2544:  D:/_bazel/execroot/selenium/bazel-out/x64_windows-fastbuild/testlogs/rb/spec/integration/selenium/webdriver/shadow_root-edge-remote/test_attempts/attempt_1.log
2545:  D:/_bazel/execroot/selenium/bazel-out/x64_windows-fastbuild/testlogs/rb/spec/integration/selenium/webdriver/shadow_root-edge-remote/test_attempts/attempt_2.log
2546:  //rb/spec/integration/selenium/webdriver:storage-edge-remote             �[0m�[31m�[1mFAILED�[0m in 3 out of 3 in 6.9s
2547:  Stats over 3 runs: max = 6.9s, min = 6.8s, avg = 6.9s, dev = 0.0s
2548:  D:/_bazel/execroot/selenium/bazel-out/x64_windows-fastbuild/testlogs/rb/spec/integration/selenium/webdriver/storage-edge-remote/test.log
2549:  D:/_bazel/execroot/selenium/bazel-out/x64_windows-fastbuild/testlogs/rb/spec/integration/selenium/webdriver/storage-edge-remote/test_attempts/attempt_1.log
2550:  D:/_bazel/execroot/selenium/bazel-out/x64_windows-fastbuild/testlogs/rb/spec/integration/selenium/webdriver/storage-edge-remote/test_attempts/attempt_2.log
2551:  //rb/spec/integration/selenium/webdriver:takes_screenshot-edge-remote    �[0m�[31m�[1mFAILED�[0m in 3 out of 3 in 7.0s
2552:  Stats over 3 runs: max = 7.0s, min = 6.8s, avg = 6.9s, dev = 0.1s
2553:  D:/_bazel/execroot/selenium/bazel-out/x64_windows-fastbuild/testlogs/rb/spec/integration/selenium/webdriver/takes_screenshot-edge-remote/test.log
2554:  D:/_bazel/execroot/selenium/bazel-out/x64_windows-fastbuild/testlogs/rb/spec/integration/selenium/webdriver/takes_screenshot-edge-remote/test_attempts/attempt_1.log
2555:  D:/_bazel/execroot/selenium/bazel-out/x64_windows-fastbuild/testlogs/rb/spec/integration/selenium/webdriver/takes_screenshot-edge-remote/test_attempts/attempt_2.log
2556:  //rb/spec/integration/selenium/webdriver:target_locator-edge-remote      �[0m�[31m�[1mFAILED�[0m in 3 out of 3 in 7.8s
2557:  Stats over 3 runs: max = 7.8s, min = 6.8s, avg = 7.3s, dev = 0.4s
2558:  D:/_bazel/execroot/selenium/bazel-out/x64_windows-fastbuild/testlogs/rb/spec/integration/selenium/webdriver/target_locator-edge-remote/test.log
2559:  D:/_bazel/execroot/selenium/bazel-out/x64_windows-fastbuild/testlogs/rb/spec/integration/selenium/webdriver/target_locator-edge-remote/test_attempts/attempt_1.log
2560:  D:/_bazel/execroot/selenium/bazel-out/x64_windows-fastbuild/testlogs/rb/spec/integration/selenium/webdriver/target_locator-edge-remote/test_attempts/attempt_2.log
2561:  //rb/spec/integration/selenium/webdriver:timeout-edge-remote             �[0m�[31m�[1mFAILED�[0m in 3 out of 3 in 7.3s
2562:  Stats over 3 runs: max = 7.3s, min = 6.8s, avg = 7.1s, dev = 0.2s
2563:  D:/_bazel/execroot/selenium/bazel-out/x64_windows-fastbuild/testlogs/rb/spec/integration/selenium/webdriver/timeout-edge-remote/test.log
2564:  D:/_bazel/execroot/selenium/bazel-out/x64_windows-fastbuild/testlogs/rb/spec/integration/selenium/webdriver/timeout-edge-remote/test_attempts/attempt_1.log
2565:  D:/_bazel/execroot/selenium/bazel-out/x64_windows-fastbuild/testlogs/rb/spec/integration/selenium/webdriver/timeout-edge-remote/test_attempts/attempt_2.log
2566:  //rb/spec/integration/selenium/webdriver:virtual_authenticator-edge-remote �[0m�[31m�[1mFAILED�[0m in 3 out of 3 in 6.9s
2567:  Stats over 3 runs: max = 6.9s, min = 6.8s, avg = 6.9s, dev = 0.0s
2568:  D:/_bazel/execroot/selenium/bazel-out/x64_windows-fastbuild/testlogs/rb/spec/integration/selenium/webdriver/virtual_authenticator-edge-remote/test.log
2569:  D:/_bazel/execroot/selenium/bazel-out/x64_windows-fastbuild/testlogs/rb/spec/integration/selenium/webdriver/virtual_authenticator-edge-remote/test_attempts/attempt_1.log
2570:  D:/_bazel/execroot/selenium/bazel-out/x64_windows-fastbuild/testlogs/rb/spec/integration/selenium/webdriver/virtual_authenticator-edge-remote/test_attempts/attempt_2.log
2571:  //rb/spec/integration/selenium/webdriver:window-edge-remote              �[0m�[31m�[1mFAILED�[0m in 3 out of 3 in 7.6s
2572:  Stats over 3 runs: max = 7.6s, min = 6.8s, avg = 7.1s, dev = 0.4s
2573:  D:/_bazel/execroot/selenium/bazel-out/x64_windows-fastbuild/testlogs/rb/spec/integration/selenium/webdriver/window-edge-remote/test.log
2574:  D:/_bazel/execroot/selenium/bazel-out/x64_windows-fastbuild/testlogs/rb/spec/integration/selenium/webdriver/window-edge-remote/test_attempts/attempt_1.log
2575:  D:/_bazel/execroot/selenium/bazel-out/x64_windows-fastbuild/testlogs/rb/spec/integration/selenium/webdriver/window-edge-remote/test_attempts/attempt_2.log
2576:  //rb/spec/integration/selenium/webdriver:zipper-edge-remote              �[0m�[31m�[1mFAILED�[0m in 3 out of 3 in 7.5s
2577:  Stats over 3 runs: max = 7.5s, min = 6.9s, avg = 7.1s, dev = 0.3s
2578:  D:/_bazel/execroot/selenium/bazel-out/x64_windows-fastbuild/testlogs/rb/spec/integration/selenium/webdriver/zipper-edge-remote/test.log
2579:  D:/_bazel/execroot/selenium/bazel-out/x64_windows-fastbuild/testlogs/rb/spec/integration/selenium/webdriver/zipper-edge-remote/test_attempts/attempt_1.log
2580:  D:/_bazel/execroot/selenium/bazel-out/x64_windows-fastbuild/testlogs/rb/spec/integration/selenium/webdriver/zipper-edge-remote/test_attempts/attempt_2.log
2581:  //rb/spec/integration/selenium/webdriver/bidi:browsing_context-edge-remote �[0m�[31m�[1mFAILED�[0m in 3 out of 3 in 7.0s
2582:  Stats over 3 runs: max = 7.0s, min = 6.8s, avg = 6.9s, dev = 0.1s
2583:  D:/_bazel/execroot/selenium/bazel-out/x64_windows-fastbuild/testlogs/rb/spec/integration/selenium/webdriver/bidi/browsing_context-edge-remote/test.log
2584:  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
2585:  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
2586:  //rb/spec/integration/selenium/webdriver/bidi:log_inspector-edge-remote  �[0m�[31m�[1mFAILED�[0m in 3 out of 3 in 6.9s
2587:  Stats over 3 runs: max = 6.9s, min = 6.8s, avg = 6.8s, dev = 0.0s
2588:  D:/_bazel/execroot/selenium/bazel-out/x64_windows-fastbuild/testlogs/rb/spec/integration/selenium/webdriver/bidi/log_inspector-edge-remote/test.log
2589:  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
2590:  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
2591:  //rb/spec/integration/selenium/webdriver/edge:driver-edge-remote         �[0m�[31m�[1mFAILED�[0m in 3 out of 3 in 7.1s
2592:  Stats over 3 runs: max = 7.1s, min = 6.9s, avg = 7.0s, dev = 0.1s
2593:  D:/_bazel/execroot/selenium/bazel-out/x64_windows-fastbuild/testlogs/rb/spec/integration/selenium/webdriver/edge/driver-edge-remote/test.log
2594:  D:/_bazel/execroot/selenium/bazel-out/x64_windows-fastbuild/testlogs/rb/spec/integration/selenium/webdriver/edge/driver-edge-remote/test_attempts/attempt_1.log
2595:  D:/_bazel/execroot/selenium/bazel-out/x64_windows-fastbuild/testlogs/rb/spec/integration/selenium/webdriver/edge/driver-edge-remote/test_attempts/attempt_2.log
2596:  //rb/spec/integration/selenium/webdriver/edge:options-edge-remote        �[0m�[31m�[1mFAILED�[0m in 3 out of 3 in 7.6s
2597:  Stats over 3 runs: max = 7.6s, min = 6.9s, avg = 7.1s, dev = 0.3s
2598:  D:/_bazel/execroot/selenium/bazel-out/x64_windows-fastbuild/testlogs/rb/spec/integration/selenium/webdriver/edge/options-edge-remote/test.log
2599:  D:/_bazel/execroot/selenium/bazel-out/x64_windows-fastbuild/testlogs/rb/spec/integration/selenium/webdriver/edge/options-edge-remote/test_attempts/attempt_1.log
2600:  D:/_bazel/execroot/selenium/bazel-out/x64_windows-fastbuild/testlogs/rb/spec/integration/selenium/webdriver/edge/options-edge-remote/test_attempts/attempt_2.log
2601:  //rb/spec/integration/selenium/webdriver/edge:profile-edge-remote        �[0m�[31m�[1mFAILED�[0m in 3 out of 3 in 7.3s
2602:  Stats over 3 runs: max = 7.3s, min = 6.8s, avg = 6.9s, dev = 0.2s
2603:  D:/_bazel/execroot/selenium/bazel-out/x64_windows-fastbuild/testlogs/rb/spec/integration/selenium/webdriver/edge/profile-edge-remote/test.log
2604:  D:/_bazel/execroot/selenium/bazel-out/x64_windows-fastbuild/testlogs/rb/spec/integration/selenium/webdriver/edge/profile-edge-remote/test_attempts/attempt_1.log
2605:  D:/_bazel/execroot/selenium/bazel-out/x64_windows-fastbuild/testlogs/rb/spec/integration/selenium/webdriver/edge/profile-edge-remote/test_attempts/attempt_2.log
2606:  //rb/spec/integration/selenium/webdriver/edge:service-edge-remote        �[0m�[31m�[1mFAILED�[0m in 3 out of 3 in 6.9s
2607:  Stats over 3 runs: max = 6.9s, min = 6.9s, avg = 6.9s, dev = 0.0s
2608:  D:/_bazel/execroot/selenium/bazel-out/x64_windows-fastbuild/testlogs/rb/spec/integration/selenium/webdriver/edge/service-edge-remote/test.log
2609:  D:/_bazel/execroot/selenium/bazel-out/x64_windows-fastbuild/testlogs/rb/spec/integration/selenium/webdriver/edge/service-edge-remote/test_attempts/attempt_1.log
2610:  D:/_bazel/execroot/selenium/bazel-out/x64_windows-fastbuild/testlogs/rb/spec/integration/selenium/webdriver/edge/service-edge-remote/test_attempts/attempt_2.log
2611:  //rb/spec/integration/selenium/webdriver/remote:driver-edge-remote       �[0m�[31m�[1mFAILED�[0m in 3 out of 3 in 7.6s
2612:  Stats over 3 runs: max = 7.6s, min = 6.7s, avg = 7.1s, dev = 0.4s
2613:  D:/_bazel/execroot/selenium/bazel-out/x64_windows-fastbuild/testlogs/rb/spec/integration/selenium/webdriver/remote/driver-edge-remote/test.log
2614:  D:/_bazel/execroot/selenium/bazel-out/x64_windows-fastbuild/testlogs/rb/spec/integration/selenium/webdriver/remote/driver-edge-remote/test_attempts/attempt_1.log
2615:  D:/_bazel/execroot/selenium/bazel-out/x64_windows-fastbuild/testlogs/rb/spec/integration/selenium/webdriver/remote/driver-edge-remote/test_attempts/attempt_2.log
2616:  //rb/spec/integration/selenium/webdriver/remote:element-edge-remote      �[0m�[31m�[1mFAILED�[0m in 3 out of 3 in 6.8s
2617:  Stats over 3 runs: max = 6.8s, min = 6.8s, avg = 6.8s, dev = 0.0s
2618:  D:/_bazel/execroot/selenium/bazel-out/x64_windows-fastbuild/testlogs/rb/spec/integration/selenium/webdriver/remote/element-edge-remote/test.log
2619:  D:/_bazel/execroot/selenium/bazel-out/x64_windows-fastbuild/testlogs/rb/spec/integration/selenium/webdriver/remote/element-edge-remote/test_attempts/attempt_1.log
2620:  D:/_bazel/execroot/selenium/bazel-out/x64_windows-fastbuild/testlogs/rb/spec/integration/selenium/webdriver/remote/element-edge-remote/test_attempts/attempt_2.log
2621:  Executed 27 out of 27 tests: �[0m�[31m�[1m27 fail locally�[0m.
2622:  �[0m
2623:  ##[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.

@selenium-ci selenium-ci force-pushed the pinned-browser-updates branch from 479a70f to 8d73e2d Compare March 24, 2024 00:35
@diemol diemol force-pushed the pinned-browser-updates branch from 8d73e2d to f226eb7 Compare March 25, 2024 13:24
@diemol diemol force-pushed the pinned-browser-updates branch from f226eb7 to 37121a8 Compare March 25, 2024 14:11
@diemol diemol merged commit 3184040 into trunk Mar 25, 2024
4 checks passed
@diemol diemol deleted the pinned-browser-updates branch March 25, 2024 14:11
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.

3 participants