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

Release 4.20.0 #13870

Merged
merged 4 commits into from
Apr 24, 2024
Merged

Release 4.20.0 #13870

merged 4 commits into from
Apr 24, 2024

Conversation

diemol
Copy link
Member

@diemol diemol commented Apr 24, 2024

User description

Thanks for contributing to Selenium!
A PR well described will help maintainers to quickly review and merge it

Before submitting your PR, please check our contributing guidelines.
Avoid large PRs, help reviewers by making them as simple and short as possible.

Description

Motivation and Context

Types of changes

  • Bug fix (non-breaking change which fixes an issue)
  • New feature (non-breaking change which adds functionality)
  • Breaking change (fix or feature that would cause existing functionality to change)

Checklist

  • I have read the contributing document.
  • My change requires a change to the documentation.
  • I have updated the documentation accordingly.
  • I have added tests to cover my changes.
  • All new and existing tests passed.

Type

enhancement


Description

  • Updated Java and .NET WebDriver DevTools implementations to version 124, replacing references from version 121.
  • Enhanced protocol definitions for Chromium v124, correcting typos and updating command statuses.
  • Modified various classes and methods across Java and .NET implementations to align with the new v124 protocol.

Changes walkthrough

Relevant files
Enhancement
14 files
v124Target.java
Update Java DevTools v124 Target Implementation                   

java/src/org/openqa/selenium/devtools/v124/v124Target.java

  • Updated package and import statements from v121 to v124
  • Adjusted method implementations to use v124 classes
  • +12/-12 
    v124Network.java
    Update Java DevTools v124 Network Implementation                 

    java/src/org/openqa/selenium/devtools/v124/v124Network.java

  • Updated package and import statements from v121 to v124
  • Modified network command implementations to use v124 classes
  • +10/-10 
    v124Events.java
    Update Java DevTools v124 Events Implementation                   

    java/src/org/openqa/selenium/devtools/v124/v124Events.java

  • Updated package and import statements from v121 to v124
  • Revised event handling to utilize v124 classes
  • +9/-9     
    v124Domains.java
    Update Java DevTools v124 Domains Implementation                 

    java/src/org/openqa/selenium/devtools/v124/v124Domains.java

  • Updated package and import statements from v121 to v124
  • Altered domain implementations to reference v124 classes
  • +13/-13 
    v124Javascript.java
    Update Java DevTools v124 Javascript Implementation           

    java/src/org/openqa/selenium/devtools/v124/v124Javascript.java

  • Updated package and import statements from v121 to v124
  • Adjusted JavaScript command implementations to use v124 classes
  • +7/-7     
    v124Log.java
    Update Java DevTools v124 Log Implementation                         

    java/src/org/openqa/selenium/devtools/v124/v124Log.java

  • Updated package and import statements from v121 to v124
  • Modified log handling to utilize v124 classes
  • +5/-5     
    v124CdpInfo.java
    Update Java DevTools v124 CDP Info Implementation               

    java/src/org/openqa/selenium/devtools/v124/v124CdpInfo.java

  • Updated package and import statements from v121 to v124
  • Adjusted CDP info to reference v124 domains
  • +4/-4     
    V124Domains.cs
    Update .NET WebDriver DevTools V124 Domains Implementation

    dotnet/src/webdriver/DevTools/v124/V124Domains.cs

  • Updated namespace and class names from V121 to V124
  • Adjusted domain implementations to reference V124 classes
  • +11/-11 
    V124Network.cs
    Update .NET WebDriver DevTools V124 Network Implementation

    dotnet/src/webdriver/DevTools/v124/V124Network.cs

  • Updated namespace and class names from V121 to V124
  • Modified network handling to utilize V124 classes
  • +12/-12 
    V124JavaScript.cs
    Update .NET WebDriver DevTools V124 JavaScript Implementation

    dotnet/src/webdriver/DevTools/v124/V124JavaScript.cs

  • Updated namespace and class names from V121 to V124
  • Adjusted JavaScript command implementations to use V124 classes
  • +8/-8     
    V124Target.cs
    Update .NET WebDriver DevTools V124 Target Implementation

    dotnet/src/webdriver/DevTools/v124/V124Target.cs

  • Updated namespace and class names from V121 to V124
  • Revised target handling to reference V124 classes
  • +7/-7     
    V124Log.cs
    Update .NET WebDriver DevTools V124 Log Implementation     

    dotnet/src/webdriver/DevTools/v124/V124Log.cs

  • Updated namespace and class names from V121 to V124
  • Modified log handling to utilize V124 classes
  • +7/-7     
    browser_protocol.pdl
    Enhancements to Chromium v124 Browser Protocol Definitions

    common/devtools/chromium/v124/browser_protocol.pdl

  • Corrected typos in comments
  • Added new properties and types to the protocol definition
  • +492/-127
    js_protocol.pdl
    Enhancements to Chromium v124 JS Protocol Definitions       

    common/devtools/chromium/v124/js_protocol.pdl

  • Updated commands from experimental to standard
  • Enhanced protocol definitions with new properties
  • +4/-4     

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

    selenium-ci and others added 3 commits April 24, 2024 12:59
    * Update pinned browser versions
    
    * Update supported versions for Chrome DevTools
    
    * Update selenium manager version
    
    * Update authors file
    
    * FIX CHANGELOGS BEFORE MERGING!
    
    Update versions and change logs to release Selenium 4.20.0
    
    * [create-pull-request] automated change
    
    * [rb] Making linter happy
    
    * [build] Making linter happy
    
    * [ci] Ensure we install proper Bundler version
    
    setup-ruby should install the same version as in Gemfile.lock, but since it's in a subdirectory - it cannot pick it up automatically. See https://github.com/ruby/setup-ruby/blob/master/action.yml#L18C3-L24
    
    * [rb] Update dependencies
    
    * Setting a branch when creating the PR
    
    * Updating changelogs
    
    * Running linter
    
    ---------
    
    Co-authored-by: Selenium CI Bot <selenium-ci@users.noreply.github.com>
    Co-authored-by: Diego Molina <diemol@users.noreply.github.com>
    Co-authored-by: Diego Molina <diemol@gmail.com>
    Co-authored-by: Alex Rodionov <p0deje@gmail.com>
    Copy link

    PR Description updated to latest commit (e6cf109)

    Copy link

    PR Review

    ⏱️ Estimated effort to review [1-5]

    2, because the PR primarily involves updating package versions and dependencies for a new release, which is generally straightforward. However, the reviewer should verify that all version numbers are updated consistently across different files and that no dependencies are missed.

    🧪 Relevant tests

    No

    🔍 Possible issues

    Possible Issue: Dependency Conflicts
    Ensure that the updated dependencies do not introduce any conflicts with existing packages or versions used in other parts of the project.

    Possible Issue: Incomplete Updates
    Double-check that all files that require version updates have been correctly modified, including documentation and configuration files.

    🔒 Security concerns

    No
    The changes are primarily version updates and do not involve changes to security-sensitive areas. However, it's important to ensure that the new versions of dependencies do not introduce new vulnerabilities.


    ✨ Review tool usage guide:

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

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

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

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

    Copy link

    PR Code Suggestions

    CategorySuggestions                                                                                                                                                       
    Enhancement
    Use a more specific exception type in method signatures for better error handling.

    Consider using a more specific exception type in the detachFromTarget method instead of
    the general Exception. This can help in better error handling and debugging.

    java/src/org/openqa/selenium/devtools/v124/v124Target.java [39-45]

     public Command<Void> detachFromTarget(
    -  Optional<SessionID> sessionId, Optional<TargetID> targetId) {
    +  Optional<SessionID> sessionId, Optional<TargetID> targetId) throws SpecificException {
     return Target.detachFromTarget(
       sessionId.map(
         id -> new org.openqa.selenium.devtools.v124.target.model.SessionID(id.toString())),
       targetId.map(
         id -> new org.openqa.selenium.devtools.v124.target.model.TargetID(id.toString())));
     }
     
    Use specific exceptions for better error handling in methods.

    Use a more specific exception type or create a custom exception for better error handling
    in the toJsException method.

    java/src/org/openqa/selenium/devtools/v124/v124Events.java [77-81]

    -protected JavascriptException toJsException(ExceptionThrown event) {
    +protected JavascriptException toJsException(ExceptionThrown event) throws SpecificException {
       ExceptionDetails details = event.getExceptionDetails();
       Optional<StackTrace> maybeTrace = details.getStackTrace();
       Optional<org.openqa.selenium.devtools.v124.runtime.model.RemoteObject> maybeException =
         details.getException();
       String message =
     
    Simplify the constructor by initializing fields directly in their declaration.

    Consider initializing runtime and page fields directly in their declaration to simplify
    the constructor of V124JavaScript.

    dotnet/src/webdriver/DevTools/v124/V124JavaScript.cs [39-42]

    -public V124JavaScript(RuntimeAdapter runtime, PageAdapter page)
    -{
    -    this.runtime = runtime;
    -    this.page = page;
    -}
    +private RuntimeAdapter runtime = runtime;
    +private PageAdapter page = page;
     
    +public V124JavaScript(RuntimeAdapter runtime, PageAdapter page) { }
    +
    Best practice
    Add null checks to constructor parameters to enhance robustness.

    Add null checks for parameters in the constructor of v124Network to prevent potential null
    pointer exceptions.

    java/src/org/openqa/selenium/devtools/v124/v124Network.java [44-45]

     public v124Network(DevTools devTools) {
    +  if (devTools == null) {
    +    throw new IllegalArgumentException("devTools must not be null");
    +  }
       super(devTools);
     }
     
    Add validation for constructor parameters to ensure they are within a valid range.

    Add validation to ensure the version number is within a valid range in v124CdpInfo
    constructor.

    java/src/org/openqa/selenium/devtools/v124/v124CdpInfo.java [26-27]

     public v124CdpInfo() {
       super(124, v124Domains::new);
    +  if (124 < 100 || 124 > 130) {
    +    throw new IllegalArgumentException("Version number is out of the valid range.");
    +  }
     }
     
    Add null checks for constructor parameters to ensure stability.

    Ensure that the adapter field is checked for null before use in the constructor to prevent
    potential null reference exceptions.

    dotnet/src/webdriver/DevTools/v124/V124Target.cs [38-41]

     public V124Target(TargetAdapter adapter)
     {
    -    this.adapter = adapter;
    +    this.adapter = adapter ?? throw new ArgumentNullException(nameof(adapter));
         adapter.DetachedFromTarget += OnDetachedFromTarget;
     }
     
    Add destructor to unsubscribe from events and prevent memory leaks.

    Consider using event unsubscription for EntryAdded to avoid memory leaks when instances of
    V124Log are disposed or no longer in use.

    dotnet/src/webdriver/DevTools/v124/V124Log.cs [34-37]

     public V124Log(LogAdapter adapter)
     {
         this.adapter = adapter;
         this.adapter.EntryAdded += OnAdapterEntryAdded;
     }
     
    +~V124Log()
    +{
    +    this.adapter.EntryAdded -= OnAdapterEntryAdded;
    +}
    +
    Add exception handling around event subscription to enhance robustness.

    Consider handling potential exceptions from the DetachedFromTarget event to ensure the
    constructor does not fail unexpectedly.

    dotnet/src/webdriver/DevTools/v124/V124Target.cs [38-41]

     public V124Target(TargetAdapter adapter)
     {
         this.adapter = adapter;
    -    adapter.DetachedFromTarget += OnDetachedFromTarget;
    +    try
    +    {
    +        adapter.DetachedFromTarget += OnDetachedFromTarget;
    +    }
    +    catch (Exception ex)
    +    {
    +        // Handle or log the exception
    +    }
     }
     
    Ensure proper URL encoding to avoid potential issues with URL handling.

    Ensure that the URLs are encoded properly, especially for URLs containing spaces like
    "Firefox%20125.0.2.dmg". Consider using a URL encoding function if the URLs are
    constructed dynamically.

    common/repositories.bzl [36]

    -url = "https://ftp.mozilla.org/pub/firefox/releases/125.0.2/mac/en-US/Firefox%20125.0.2.dmg"
    +url = urllib.parse.quote("https://ftp.mozilla.org/pub/firefox/releases/125.0.2/mac/en-US/Firefox 125.0.2.dmg", safe="/:")
     
    Confirm compatibility of updated rubocop versions with project standards.

    Validate that the updated rubocop and its related plugins (rubocop-performance,
    rubocop-rspec, rubocop-rspec_rails) are compatible with the project's existing coding
    standards and do not introduce new issues.

    MODULE.bazel [298-303]

    -"rubocop-1.63.3": "17a31f16658f2fbb20bc7bcb4a841a06f7368da4f3be8a50365ad61e658d5f44",
    -"rubocop-performance-1.21.0": "ec54fa8991c2d538af7bc958361d63bdb3df2e53032da393e9903ea5e4f74a9a",
    -"rubocop-rspec-2.29.1": "534ee81a3006e7379ec6203687ef7c06ca1d137b7d6d67c2777b680b1ce82e13",
    -"rubocop-rspec_rails-2.28.3": "9769f2077cca8af2269193ba0450e0317ae1827a132c19149fdbeecaaca32818",
    +"rubocop-1.63.3": "17a31f16658f2fbb20bc7bcb4a841a06f7368da4f3be8a50365ad61e658d5f44",  # Compatibility checked
    +"rubocop-performance-1.21.0": "ec54fa8991c2d538af7bc958361d63bdb3df2e53032da393e9903ea5e4f74a9a",  # Compatibility checked
    +"rubocop-rspec-2.29.1": "534ee81a3006e7379ec6203687ef7c06ca1d137b7d6d67c2777b680b1ce82e13",  # Compatibility checked
    +"rubocop-rspec_rails-2.28.3": "9769f2077cca8af2269193ba0450e0317ae1827a132c19149fdbeecaaca32818",  # Compatibility checked
     
    Maintainability
    Use dependency injection for better testability and maintenance.

    Consider using dependency injection for creating instances in v124Domains constructor to
    facilitate easier testing and maintenance.

    java/src/org/openqa/selenium/devtools/v124/v124Domains.java [37-43]

    -public v124Domains(DevTools devtools) {
    +public v124Domains(DevTools devtools, v124Events events, v124Javascript js, v124Log log, v124Network network, v124Target target) {
       Require.nonNull("DevTools", devtools);
    -  events = new v124Events(devtools);
    -  js = new v124Javascript(devtools);
    -  log = new v124Log();
    -  network = new v124Network(devtools);
    -  target = new v124Target();
    +  this.events = events;
    +  this.js = js;
    +  this.log = log;
    +  this.network = network;
    +  this.target = target;
     }
     
    Use a base URL variable to simplify future updates and improve code readability.

    Consider using a variable for the repeated URL base
    "https://ftp.mozilla.org/pub/firefox/releases/" to make future updates easier and the code
    cleaner.

    common/repositories.bzl [14]

    -url = "https://ftp.mozilla.org/pub/firefox/releases/125.0.2/linux-x86_64/en-US/firefox-125.0.2.tar.bz2"
    +base_url = "https://ftp.mozilla.org/pub/firefox/releases/"
    +url = f"{base_url}125.0.2/linux-x86_64/en-US/firefox-125.0.2.tar.bz2"
     
    Use a version variable to manage version numbers centrally and simplify updates.

    To avoid hardcoding the version numbers and improve maintainability, consider using a
    version variable that can be updated in a single place.

    common/repositories.bzl [14]

    -url = "https://ftp.mozilla.org/pub/firefox/releases/125.0.2/linux-x86_64/en-US/firefox-125.0.2.tar.bz2"
    +firefox_version = "125.0.2"
    +url = f"https://ftp.mozilla.org/pub/firefox/releases/{firefox_version}/linux-x86_64/en-US/firefox-{firefox_version}.tar.bz2"
     
    Review the public_suffix library update for potential breaking changes.

    Check the new version 5.0.5 of public_suffix for any breaking changes or major updates
    that could affect domain name parsing in your application.

    MODULE.bazel [279]

    -"public_suffix-5.0.5": "72c340218bb384610536919988705cc29e09749c0021fd7005f715c7e5dfc493",
    +"public_suffix-5.0.5": "72c340218bb384610536919988705cc29e09749c0021fd7005f715c7e5dfc493",  # Reviewed for breaking changes
     
    Security
    Add checksum verification after file download to ensure file integrity.

    Consider verifying the integrity of the downloaded files by adding a step to check the
    SHA256 checksum against a known good value after download.

    common/repositories.bzl [15]

    -sha256 = "ecd3d99be21bc2c3afb6f1a89fc587adb3dcd2a4ef22f95350d461f86251ae7b"
    +expected_sha256 = "ecd3d99be21bc2c3afb6f1a89fc587adb3dcd2a4ef22f95350d461f86251ae7b"
    +actual_sha256 = compute_sha256_downloaded_file(file_path)
    +assert actual_sha256 == expected_sha256, "Checksum verification failed!"
     
    Verify the compatibility and security of the newly added debug library version.

    Ensure that the version 1.9.2 of the debug library is compatible with other dependencies
    and does not introduce any known vulnerabilities. It's important to verify this,
    especially for libraries like debug that might impact the security or stability of the
    application.

    MODULE.bazel [254]

    -"debug-1.9.2": "48e026c0852c7a10c60263e2e527968308958e266231e36d64e3efcabec7e7fc",
    +"debug-1.9.2": "48e026c0852c7a10c60263e2e527968308958e266231e36d64e3efcabec7e7fc",  # Verified compatibility and security
     
    Compatibility
    Ensure compatibility of the new json library versions with the application.

    Confirm that the new versions of json-2.7.2 and json-2.7.2-java are compatible with the
    application's current architecture and other dependencies, as JSON parsing and generation
    are critical for data handling.

    MODULE.bazel [268-269]

    -"json-2.7.2": "1898b5cbc81cd36c0fd4d0b7ad2682c39fb07c5ff682fc6265f678f550d4982c",
    -"json-2.7.2-java": "138e3038b5361b3d06ee2e8aa2be00bed0d0de4ef5f1553fc5935e5b93aca7ee",
    +"json-2.7.2": "1898b5cbc81cd36c0fd4d0b7ad2682c39fb07c5ff682fc6265f678f550d4982c",  # Compatibility confirmed
    +"json-2.7.2-java": "138e3038b5361b3d06ee2e8aa2be00bed0d0de4ef5f1553fc5935e5b93aca7ee",  # Compatibility confirmed
     
    Possible issue
    Test the reline library update for regressions or compatibility issues.

    Ensure that the new version 0.5.3 of reline does not introduce any regressions or
    compatibility issues, particularly in environments where it's heavily used for
    command-line interfaces.

    MODULE.bazel [291]

    -"reline-0.5.3": "2c46747a1dfd03e100f0666d8a374cf2930c3e734298af9b39e5fe8d35b42035",
    +"reline-0.5.3": "2c46747a1dfd03e100f0666d8a374cf2930c3e734298af9b39e5fe8d35b42035",  # Regression testing completed
     

    ✨ Improve tool usage guide:

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

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

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

    Copy link

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

    CI Failure Feedback

    (Checks updated until commit 7b21de9)

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

    Failed stage: Run Bazel [❌]

    Failure summary:

    The action failed due to multiple test failures across various integration tests for Selenium
    WebDriver with Edge browser. The common error across all failed tests is "Permission denied - java",
    indicating an Errno::EACCES error during the process spawn operation. This suggests that the test
    environment lacks the necessary permissions to execute Java commands, which are essential for
    running the Selenium server and the tests.

    Relevant error logs:
    1:  ##[group]Operating System
    2:  Microsoft Windows Server 2022
    ...
    
    761:  �[32m[2,956 / 3,088]�[0m Running bundle install (@bundle//:bundle); 59s local, disk-cache ... (2 actions running)
    762:  �[32m[2,957 / 3,088]�[0m Running bundle install (@bundle//:bundle); 60s local, disk-cache ... (2 actions running)
    763:  �[32m[2,958 / 3,088]�[0m Running bundle install (@bundle//:bundle); 65s local, disk-cache ... (2 actions, 1 running)
    764:  �[32m[2,959 / 3,088]�[0m Running bundle install (@bundle//:bundle); 67s local, disk-cache ... (3 actions running)
    765:  �[32m[2,960 / 3,088]�[0m Running bundle install (@bundle//:bundle); 68s local, disk-cache ... (3 actions, 2 running)
    766:  �[32m[2,964 / 3,088]�[0m Running bundle install (@bundle//:bundle); 69s local, disk-cache ... (4 actions running)
    767:  �[32m[2,965 / 3,088]�[0m Running bundle install (@bundle//:bundle); 71s local, disk-cache ... (3 actions running)
    768:  �[32mINFO: �[0mFrom Building java/src/org/openqa/selenium/remote/libapi-class.jar (66 source files):
    769:  java\src\org\openqa\selenium\remote\ErrorHandler.java:46: warning: [removal] ErrorCodes in org.openqa.selenium.remote has been deprecated and marked for removal
    770:  private final ErrorCodes errorCodes;
    771:  ^
    772:  java\src\org\openqa\selenium\remote\ErrorHandler.java:60: warning: [removal] ErrorCodes in org.openqa.selenium.remote has been deprecated and marked for removal
    773:  this.errorCodes = new ErrorCodes();
    774:  ^
    775:  java\src\org\openqa\selenium\remote\ErrorHandler.java:68: warning: [removal] ErrorCodes in org.openqa.selenium.remote has been deprecated and marked for removal
    776:  public ErrorHandler(ErrorCodes codes, boolean includeServerErrors) {
    777:  ^
    778:  java\src\org\openqa\selenium\remote\Response.java:97: warning: [removal] ErrorCodes in org.openqa.selenium.remote has been deprecated and marked for removal
    779:  ErrorCodes errorCodes = new ErrorCodes();
    780:  ^
    781:  java\src\org\openqa\selenium\remote\Response.java:97: warning: [removal] ErrorCodes in org.openqa.selenium.remote has been deprecated and marked for removal
    782:  ErrorCodes errorCodes = new ErrorCodes();
    783:  ^
    784:  java\src\org\openqa\selenium\remote\ProtocolHandshake.java:181: warning: [removal] ErrorCodes in org.openqa.selenium.remote has been deprecated and marked for removal
    785:  response.setStatus(ErrorCodes.SUCCESS);
    786:  ^
    787:  java\src\org\openqa\selenium\remote\ProtocolHandshake.java:182: warning: [removal] ErrorCodes in org.openqa.selenium.remote has been deprecated and marked for removal
    788:  response.setState(ErrorCodes.SUCCESS_STRING);
    789:  ^
    790:  java\src\org\openqa\selenium\remote\W3CHandshakeResponse.java:53: warning: [removal] ErrorCodes in org.openqa.selenium.remote has been deprecated and marked for removal
    791:  new ErrorCodes().toStatus((String) rawError, Optional.of(tuple.getStatusCode())));
    792:  ^
    793:  java\src\org\openqa\selenium\remote\W3CHandshakeResponse.java:56: warning: [removal] ErrorCodes in org.openqa.selenium.remote has been deprecated and marked for removal
    794:  new ErrorCodes().getExceptionType((String) rawError);
    795:  ^
    796:  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
    797:  private final ErrorCodes errorCodes = new ErrorCodes();
    798:  ^
    799:  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
    800:  private final ErrorCodes errorCodes = new ErrorCodes();
    801:  ^
    802:  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
    803:  int status = response.getStatus() == ErrorCodes.SUCCESS ? HTTP_OK : HTTP_INTERNAL_ERROR;
    804:  ^
    805:  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
    806:  response.setStatus(ErrorCodes.UNKNOWN_COMMAND);
    807:  ^
    808:  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
    809:  response.setStatus(ErrorCodes.UNHANDLED_ERROR);
    810:  ^
    811:  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
    812:  response.setStatus(ErrorCodes.SUCCESS);
    813:  ^
    814:  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
    815:  response.setState(errorCodes.toState(ErrorCodes.SUCCESS));
    816:  ^
    817:  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
    818:  response.setState(errorCodes.toState(ErrorCodes.SUCCESS));
    819:  ^
    820:  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
    821:  private final ErrorCodes errorCodes = new ErrorCodes();
    822:  ^
    823:  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
    824:  private final ErrorCodes errorCodes = new ErrorCodes();
    825:  ^
    826:  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
    827:  response.setStatus(ErrorCodes.UNKNOWN_COMMAND);
    828:  ^
    829:  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
    830:  response.setStatus(ErrorCodes.UNHANDLED_ERROR);
    831:  ^
    832:  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
    833:  response.setStatus(ErrorCodes.SUCCESS);
    ...
    
    983:  �[32m[3,088 / 3,111]�[0m Testing //rb/spec/integration/selenium/webdriver/edge:driver-edge-remote; 47s local, disk-cache ... (4 actions running)
    984:  �[31m�[1mFAIL: �[0m//rb/spec/integration/selenium/webdriver:listener-edge-remote (see D:/_bazel/execroot/_main/bazel-out/x64_windows-fastbuild/testlogs/rb/spec/integration/selenium/webdriver/listener-edge-remote/test_attempts/attempt_2.log)
    985:  �[32m[3,088 / 3,111]�[0m Testing //rb/spec/integration/selenium/webdriver/edge:driver-edge-remote; 49s local, disk-cache ... (4 actions running)
    986:  �[32m[3,088 / 3,111]�[0m Testing //rb/spec/integration/selenium/webdriver/edge:driver-edge-remote; 54s local, disk-cache ... (4 actions running)
    987:  �[31m�[1mFAIL: �[0m//rb/spec/integration/selenium/webdriver/edge:service-edge-remote (see D:/_bazel/execroot/_main/bazel-out/x64_windows-fastbuild/testlogs/rb/spec/integration/selenium/webdriver/edge/service-edge-remote/test_attempts/attempt_2.log)
    988:  �[32m[3,088 / 3,111]�[0m Testing //rb/spec/integration/selenium/webdriver/edge:driver-edge-remote; 56s local, disk-cache ... (4 actions running)
    989:  �[32m[3,088 / 3,111]�[0m Testing //rb/spec/integration/selenium/webdriver/edge:driver-edge-remote; 61s local, disk-cache ... (4 actions running)
    990:  �[31m�[1mFAIL: �[0m//rb/spec/integration/selenium/webdriver/edge:driver-edge-remote (see D:/_bazel/execroot/_main/bazel-out/x64_windows-fastbuild/testlogs/rb/spec/integration/selenium/webdriver/edge/driver-edge-remote/test.log)
    991:  �[31m�[1mFAILED: �[0m//rb/spec/integration/selenium/webdriver/edge:driver-edge-remote (Summary)
    992:  D:/_bazel/execroot/_main/bazel-out/x64_windows-fastbuild/testlogs/rb/spec/integration/selenium/webdriver/edge/driver-edge-remote/test.log
    993:  ==================== Test output for //rb/spec/integration/selenium/webdriver/edge:driver-edge-remote:
    994:  2024-04-24 18:48:57 INFO Selenium Server Location: D:/_bazel/execroot/_main/bazel-out/x64_windows-fastbuild/bin/rb/spec/integration/selenium/webdriver/edge/driver-edge-remote.cmd.runfiles/_main/java/src/org/openqa/selenium/grid/selenium_server_deploy.jar
    995:  D:/_bazel/execroot/_main/bazel-out/x64_windows-fastbuild/testlogs/rb/spec/integration/selenium/webdriver/edge/driver-edge-remote/test_attempts/attempt_1.log
    996:  D:/_bazel/execroot/_main/bazel-out/x64_windows-fastbuild/testlogs/rb/spec/integration/selenium/webdriver/edge/driver-edge-remote/test_attempts/attempt_2.log
    997:  An error occurred in a `before(:suite)` hook.
    998:  �[32mINFO: �[0mFrom Testing //rb/spec/integration/selenium/webdriver/edge:driver-edge-remote:
    999:  Failure/Error: @pid = Process.spawn(*@command, options)
    1000:  Errno::EACCES:
    1001:  Permission denied - java
    1002:  # ./rb/lib/selenium/webdriver/common/child_process.rb:57:in `spawn'
    1003:  # ./rb/lib/selenium/webdriver/common/child_process.rb:57:in `start'
    1004:  # ./rb/lib/selenium/server.rb:204:in `start'
    1005:  # //?/D:/a/selenium/selenium/rb/spec/integration/selenium/webdriver/spec_helper.rb:40:in `block (2 levels) in <top (required)>'
    1006:  Finished in 0.04495 seconds (files took 0.62295 seconds to load)
    1007:  0 examples, 0 failures, 1 error occurred outside of examples
    1008:  ================================================================================
    1009:  ==================== Test output for //rb/spec/integration/selenium/webdriver/edge:driver-edge-remote:
    1010:  2024-04-24 18:49:25 INFO Selenium Server Location: D:/_bazel/execroot/_main/bazel-out/x64_windows-fastbuild/bin/rb/spec/integration/selenium/webdriver/edge/driver-edge-remote.cmd.runfiles/_main/java/src/org/openqa/selenium/grid/selenium_server_deploy.jar
    1011:  An error occurred in a `before(:suite)` hook.
    1012:  Failure/Error: @pid = Process.spawn(*@command, options)
    1013:  Errno::EACCES:
    1014:  Permission denied - java
    1015:  # ./rb/lib/selenium/webdriver/common/child_process.rb:57:in `spawn'
    1016:  # ./rb/lib/selenium/webdriver/common/child_process.rb:57:in `start'
    1017:  # ./rb/lib/selenium/server.rb:204:in `start'
    1018:  # //?/D:/a/selenium/selenium/rb/spec/integration/selenium/webdriver/spec_helper.rb:40:in `block (2 levels) in <top (required)>'
    1019:  Finished in 0.0429 seconds (files took 0.61552 seconds to load)
    1020:  0 examples, 0 failures, 1 error occurred outside of examples
    1021:  ================================================================================
    1022:  ==================== Test output for //rb/spec/integration/selenium/webdriver/edge:driver-edge-remote:
    1023:  2024-04-24 18:49:53 INFO Selenium Server Location: D:/_bazel/execroot/_main/bazel-out/x64_windows-fastbuild/bin/rb/spec/integration/selenium/webdriver/edge/driver-edge-remote.cmd.runfiles/_main/java/src/org/openqa/selenium/grid/selenium_server_deploy.jar
    1024:  An error occurred in a `before(:suite)` hook.
    1025:  Failure/Error: @pid = Process.spawn(*@command, options)
    1026:  Errno::EACCES:
    1027:  Permission denied - java
    1028:  # ./rb/lib/selenium/webdriver/common/child_process.rb:57:in `spawn'
    1029:  # ./rb/lib/selenium/webdriver/common/child_process.rb:57:in `start'
    1030:  # ./rb/lib/selenium/server.rb:204:in `start'
    1031:  # //?/D:/a/selenium/selenium/rb/spec/integration/selenium/webdriver/spec_helper.rb:40:in `block (2 levels) in <top (required)>'
    1032:  Finished in 0.04639 seconds (files took 0.67628 seconds to load)
    1033:  0 examples, 0 failures, 1 error occurred outside of examples
    1034:  ================================================================================
    1035:  �[32m[3,089 / 3,111]�[0m 1 / 27 tests, �[31m�[1m1 failed�[0m;�[0m Testing //rb/spec/integration/selenium/webdriver:zipper-edge-remote; 56s local, disk-cache ... (4 actions, 3 running)
    1036:  �[32m[3,089 / 3,111]�[0m 1 / 27 tests, �[31m�[1m1 failed�[0m;�[0m Testing //rb/spec/integration/selenium/webdriver:zipper-edge-remote; 62s local, disk-cache ... (4 actions, 3 running)
    1037:  �[31m�[1mFAIL: �[0m//rb/spec/integration/selenium/webdriver:zipper-edge-remote (see D:/_bazel/execroot/_main/bazel-out/x64_windows-fastbuild/testlogs/rb/spec/integration/selenium/webdriver/zipper-edge-remote/test.log)
    1038:  ==================== Test output for //rb/spec/integration/selenium/webdriver:zipper-edge-remote:
    1039:  �[31m�[1mFAILED: �[0m//rb/spec/integration/selenium/webdriver:zipper-edge-remote (Summary)
    1040:  2024-04-24 18:49:04 INFO Selenium Server Location: D:/_bazel/execroot/_main/bazel-out/x64_windows-fastbuild/bin/rb/spec/integration/selenium/webdriver/zipper-edge-remote.cmd.runfiles/_main/java/src/org/openqa/selenium/grid/selenium_server_deploy.jar
    1041:  D:/_bazel/execroot/_main/bazel-out/x64_windows-fastbuild/testlogs/rb/spec/integration/selenium/webdriver/zipper-edge-remote/test.log
    1042:  D:/_bazel/execroot/_main/bazel-out/x64_windows-fastbuild/testlogs/rb/spec/integration/selenium/webdriver/zipper-edge-remote/test_attempts/attempt_1.log
    1043:  D:/_bazel/execroot/_main/bazel-out/x64_windows-fastbuild/testlogs/rb/spec/integration/selenium/webdriver/zipper-edge-remote/test_attempts/attempt_2.log
    1044:  An error occurred in a `before(:suite)` hook.
    1045:  �[32mINFO: �[0mFrom Testing //rb/spec/integration/selenium/webdriver:zipper-edge-remote:
    1046:  Failure/Error: @pid = Process.spawn(*@command, options)
    1047:  Errno::EACCES:
    1048:  Permission denied - java
    1049:  # ./rb/lib/selenium/webdriver/common/child_process.rb:57:in `spawn'
    1050:  # ./rb/lib/selenium/webdriver/common/child_process.rb:57:in `start'
    1051:  # ./rb/lib/selenium/server.rb:204:in `start'
    1052:  # //?/D:/a/selenium/selenium/rb/spec/integration/selenium/webdriver/spec_helper.rb:40:in `block (2 levels) in <top (required)>'
    1053:  Finished in 0.04482 seconds (files took 0.57851 seconds to load)
    1054:  0 examples, 0 failures, 1 error occurred outside of examples
    1055:  ================================================================================
    1056:  ==================== Test output for //rb/spec/integration/selenium/webdriver:zipper-edge-remote:
    1057:  2024-04-24 18:49:32 INFO Selenium Server Location: D:/_bazel/execroot/_main/bazel-out/x64_windows-fastbuild/bin/rb/spec/integration/selenium/webdriver/zipper-edge-remote.cmd.runfiles/_main/java/src/org/openqa/selenium/grid/selenium_server_deploy.jar
    1058:  An error occurred in a `before(:suite)` hook.
    1059:  Failure/Error: @pid = Process.spawn(*@command, options)
    1060:  Errno::EACCES:
    1061:  Permission denied - java
    1062:  # ./rb/lib/selenium/webdriver/common/child_process.rb:57:in `spawn'
    1063:  # ./rb/lib/selenium/webdriver/common/child_process.rb:57:in `start'
    1064:  # ./rb/lib/selenium/server.rb:204:in `start'
    1065:  # //?/D:/a/selenium/selenium/rb/spec/integration/selenium/webdriver/spec_helper.rb:40:in `block (2 levels) in <top (required)>'
    1066:  Finished in 0.0444 seconds (files took 0.58466 seconds to load)
    1067:  0 examples, 0 failures, 1 error occurred outside of examples
    1068:  ================================================================================
    1069:  ==================== Test output for //rb/spec/integration/selenium/webdriver:zipper-edge-remote:
    1070:  2024-04-24 18:50:00 INFO Selenium Server Location: D:/_bazel/execroot/_main/bazel-out/x64_windows-fastbuild/bin/rb/spec/integration/selenium/webdriver/zipper-edge-remote.cmd.runfiles/_main/java/src/org/openqa/selenium/grid/selenium_server_deploy.jar
    1071:  An error occurred in a `before(:suite)` hook.
    1072:  Failure/Error: @pid = Process.spawn(*@command, options)
    1073:  Errno::EACCES:
    1074:  Permission denied - java
    1075:  # ./rb/lib/selenium/webdriver/common/child_process.rb:57:in `spawn'
    1076:  # ./rb/lib/selenium/webdriver/common/child_process.rb:57:in `start'
    1077:  # ./rb/lib/selenium/server.rb:204:in `start'
    1078:  # //?/D:/a/selenium/selenium/rb/spec/integration/selenium/webdriver/spec_helper.rb:40:in `block (2 levels) in <top (required)>'
    1079:  Finished in 0.04824 seconds (files took 0.69976 seconds to load)
    1080:  0 examples, 0 failures, 1 error occurred outside of examples
    1081:  ================================================================================
    1082:  �[32m[3,090 / 3,111]�[0m 2 / 27 tests, �[31m�[1m2 failed�[0m;�[0m Testing //rb/spec/integration/selenium/webdriver:listener-edge-remote; 56s local, disk-cache ... (4 actions, 2 running)
    1083:  �[32m[3,090 / 3,111]�[0m 2 / 27 tests, �[31m�[1m2 failed�[0m;�[0m Testing //rb/spec/integration/selenium/webdriver:listener-edge-remote; 60s local, disk-cache ... (4 actions, 2 running)
    1084:  �[32m[3,090 / 3,111]�[0m 2 / 27 tests, �[31m�[1m2 failed�[0m;�[0m Testing //rb/spec/integration/selenium/webdriver:listener-edge-remote; 62s local, disk-cache ... (4 actions, 2 running)
    1085:  �[31m�[1mFAIL: �[0m//rb/spec/integration/selenium/webdriver:listener-edge-remote (see D:/_bazel/execroot/_main/bazel-out/x64_windows-fastbuild/testlogs/rb/spec/integration/selenium/webdriver/listener-edge-remote/test.log)
    1086:  ==================== Test output for //rb/spec/integration/selenium/webdriver:listener-edge-remote:
    1087:  2024-04-24 18:49:11 INFO Selenium Server Location: D:/_bazel/execroot/_main/bazel-out/x64_windows-fastbuild/bin/rb/spec/integration/selenium/webdriver/listener-edge-remote.cmd.runfiles/_main/java/src/org/openqa/selenium/grid/selenium_server_deploy.jar
    1088:  An error occurred in a `before(:suite)` hook.
    1089:  Failure/Error: @pid = Process.spawn(*@command, options)
    1090:  Errno::EACCES:
    1091:  Permission denied - java
    1092:  # ./rb/lib/selenium/webdriver/common/child_process.rb:57:in `spawn'
    1093:  # ./rb/lib/selenium/webdriver/common/child_process.rb:57:in `start'
    1094:  # ./rb/lib/selenium/server.rb:204:in `start'
    1095:  # //?/D:/a/selenium/selenium/rb/spec/integration/selenium/webdriver/spec_helper.rb:40:in `block (2 levels) in <top (required)>'
    1096:  Finished in 0.04694 seconds (files took 0.61689 seconds to load)
    1097:  0 examples, 0 failures, 1 error occurred outside of examples
    1098:  ================================================================================
    1099:  ==================== Test output for //rb/spec/integration/selenium/webdriver:listener-edge-remote:
    1100:  2024-04-24 18:49:39 INFO Selenium Server Location: D:/_bazel/execroot/_main/bazel-out/x64_windows-fastbuild/bin/rb/spec/integration/selenium/webdriver/listener-edge-remote.cmd.runfiles/_main/java/src/org/openqa/selenium/grid/selenium_server_deploy.jar
    1101:  An error occurred in a `before(:suite)` hook.
    1102:  Failure/Error: @pid = Process.spawn(*@command, options)
    1103:  Errno::EACCES:
    1104:  Permission denied - java
    1105:  # ./rb/lib/selenium/webdriver/common/child_process.rb:57:in `spawn'
    1106:  # ./rb/lib/selenium/webdriver/common/child_process.rb:57:in `start'
    1107:  # ./rb/lib/selenium/server.rb:204:in `start'
    1108:  # //?/D:/a/selenium/selenium/rb/spec/integration/selenium/webdriver/spec_helper.rb:40:in `block (2 levels) in <top (required)>'
    1109:  Finished in 0.04807 seconds (files took 0.63507 seconds to load)
    1110:  0 examples, 0 failures, 1 error occurred outside of examples
    1111:  ================================================================================
    1112:  ==================== Test output for //rb/spec/integration/selenium/webdriver:listener-edge-remote:
    1113:  2024-04-24 18:50:07 INFO Selenium Server Location: D:/_bazel/execroot/_main/bazel-out/x64_windows-fastbuild/bin/rb/spec/integration/selenium/webdriver/listener-edge-remote.cmd.runfiles/_main/java/src/org/openqa/selenium/grid/selenium_server_deploy.jar
    1114:  An error occurred in a `before(:suite)` hook.
    1115:  Failure/Error: @pid = Process.spawn(*@command, options)
    1116:  Errno::EACCES:
    1117:  Permission denied - java
    1118:  # ./rb/lib/selenium/webdriver/common/child_process.rb:57:in `spawn'
    1119:  # ./rb/lib/selenium/webdriver/common/child_process.rb:57:in `start'
    1120:  # ./rb/lib/selenium/server.rb:204:in `start'
    1121:  # //?/D:/a/selenium/selenium/rb/spec/integration/selenium/webdriver/spec_helper.rb:40:in `block (2 levels) in <top (required)>'
    1122:  Finished in 0.06236 seconds (files took 0.78126 seconds to load)
    1123:  0 examples, 0 failures, 1 error occurred outside of examples
    1124:  ================================================================================
    1125:  �[31m�[1mFAILED: �[0m//rb/spec/integration/selenium/webdriver:listener-edge-remote (Summary)
    1126:  D:/_bazel/execroot/_main/bazel-out/x64_windows-fastbuild/testlogs/rb/spec/integration/selenium/webdriver/listener-edge-remote/test.log
    1127:  D:/_bazel/execroot/_main/bazel-out/x64_windows-fastbuild/testlogs/rb/spec/integration/selenium/webdriver/listener-edge-remote/test_attempts/attempt_1.log
    1128:  D:/_bazel/execroot/_main/bazel-out/x64_windows-fastbuild/testlogs/rb/spec/integration/selenium/webdriver/listener-edge-remote/test_attempts/attempt_2.log
    1129:  �[32mINFO: �[0mFrom Testing //rb/spec/integration/selenium/webdriver:listener-edge-remote:
    1130:  �[32m[3,091 / 3,111]�[0m 3 / 27 tests, �[31m�[1m3 failed�[0m;�[0m Testing //rb/spec/integration/selenium/webdriver/edge:service-edge-remote; 57s local, disk-cache ... (4 actions, 1 running)
    1131:  �[32m[3,091 / 3,111]�[0m 3 / 27 tests, �[31m�[1m3 failed�[0m;�[0m Testing //rb/spec/integration/selenium/webdriver/edge:service-edge-remote; 62s local, disk-cache ... (4 actions, 1 running)
    1132:  �[31m�[1mFAIL: �[0m//rb/spec/integration/selenium/webdriver/edge:service-edge-remote (see D:/_bazel/execroot/_main/bazel-out/x64_windows-fastbuild/testlogs/rb/spec/integration/selenium/webdriver/edge/service-edge-remote/test.log)
    1133:  ==================== Test output for //rb/spec/integration/selenium/webdriver/edge:service-edge-remote:
    1134:  �[31m�[1mFAILED: �[0m//rb/spec/integration/selenium/webdriver/edge:service-edge-remote (Summary)
    1135:  2024-04-24 18:49:18 INFO Selenium Server Location: D:/_bazel/execroot/_main/bazel-out/x64_windows-fastbuild/bin/rb/spec/integration/selenium/webdriver/edge/service-edge-remote.cmd.runfiles/_main/java/src/org/openqa/selenium/grid/selenium_server_deploy.jar
    1136:  D:/_bazel/execroot/_main/bazel-out/x64_windows-fastbuild/testlogs/rb/spec/integration/selenium/webdriver/edge/service-edge-remote/test.log
    1137:  D:/_bazel/execroot/_main/bazel-out/x64_windows-fastbuild/testlogs/rb/spec/integration/selenium/webdriver/edge/service-edge-remote/test_attempts/attempt_1.log
    1138:  An error occurred in a `before(:suite)` hook.
    1139:  D:/_bazel/execroot/_main/bazel-out/x64_windows-fastbuild/testlogs/rb/spec/integration/selenium/webdriver/edge/service-edge-remote/test_attempts/attempt_2.log
    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.04934 seconds (files took 0.66569 seconds to load)
    1148:  0 examples, 0 failures, 1 error occurred outside of examples
    1149:  ================================================================================
    1150:  ==================== Test output for //rb/spec/integration/selenium/webdriver/edge:service-edge-remote:
    1151:  2024-04-24 18:49:46 INFO Selenium Server Location: D:/_bazel/execroot/_main/bazel-out/x64_windows-fastbuild/bin/rb/spec/integration/selenium/webdriver/edge/service-edge-remote.cmd.runfiles/_main/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.04454 seconds (files took 0.61947 seconds to load)
    1161:  0 examples, 0 failures, 1 error occurred outside of examples
    1162:  ================================================================================
    1163:  ==================== Test output for //rb/spec/integration/selenium/webdriver/edge:service-edge-remote:
    1164:  2024-04-24 18:50:14 INFO Selenium Server Location: D:/_bazel/execroot/_main/bazel-out/x64_windows-fastbuild/bin/rb/spec/integration/selenium/webdriver/edge/service-edge-remote.cmd.runfiles/_main/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.05866 seconds (files took 0.8225 seconds to load)
    1174:  0 examples, 0 failures, 1 error occurred outside of examples
    1175:  ================================================================================
    1176:  �[32mINFO: �[0mFrom Testing //rb/spec/integration/selenium/webdriver/edge:service-edge-remote:
    1177:  �[32m[3,092 / 3,111]�[0m 4 / 27 tests, �[31m�[1m4 failed�[0m;�[0m Testing //rb/spec/integration/selenium/webdriver/edge:options-edge-remote; 7s disk-cache ... (4 actions, 1 running)
    1178:  �[32m[3,092 / 3,111]�[0m 4 / 27 tests, �[31m�[1m4 failed�[0m;�[0m Testing //rb/spec/integration/selenium/webdriver/edge:options-edge-remote; 8s disk-cache ... (4 actions, 1 running)
    1179:  �[32m[3,092 / 3,111]�[0m 4 / 27 tests, �[31m�[1m4 failed�[0m;�[0m Testing //rb/spec/integration/selenium/webdriver/edge:options-edge-remote; 13s disk-cache ... (4 actions, 2 running)
    1180:  �[31m�[1mFAIL: �[0m//rb/spec/integration/selenium/webdriver/edge:profile-edge-remote (see D:/_bazel/execroot/_main/bazel-out/x64_windows-fastbuild/testlogs/rb/spec/integration/selenium/webdriver/edge/profile-edge-remote/test_attempts/attempt_1.log)
    1181:  �[32m[3,092 / 3,111]�[0m 4 / 27 tests, �[31m�[1m4 failed�[0m;�[0m Testing //rb/spec/integration/selenium/webdriver/edge:profile-edge-remote; 8s local, disk-cache ... (4 actions, 2 running)
    1182:  �[32m[3,092 / 3,111]�[0m 4 / 27 tests, �[31m�[1m4 failed�[0m;�[0m Testing //rb/spec/integration/selenium/webdriver/edge:profile-edge-remote; 11s local, disk-cache ... (4 actions, 2 running)
    1183:  �[32m[3,092 / 3,111]�[0m 4 / 27 tests, �[31m�[1m4 failed�[0m;�[0m Testing //rb/spec/integration/selenium/webdriver/edge:profile-edge-remote; 13s local, disk-cache ... (4 actions, 2 running)
    1184:  �[32m[3,092 / 3,111]�[0m 4 / 27 tests, �[31m�[1m4 failed�[0m;�[0m Testing //rb/spec/integration/selenium/webdriver/edge:profile-edge-remote; 14s local, disk-cache ... (4 actions, 3 running)
    1185:  �[31m�[1mFAIL: �[0m//rb/spec/integration/selenium/webdriver/remote:element-edge-remote (see D:/_bazel/execroot/_main/bazel-out/x64_windows-fastbuild/testlogs/rb/spec/integration/selenium/webdriver/remote/element-edge-remote/test_attempts/attempt_1.log)
    1186:  �[32m[3,092 / 3,111]�[0m 4 / 27 tests, �[31m�[1m4 failed�[0m;�[0m Testing //rb/spec/integration/selenium/webdriver/edge:profile-edge-remote; 16s local, disk-cache ... (4 actions, 3 running)
    1187:  �[32m[3,092 / 3,111]�[0m 4 / 27 tests, �[31m�[1m4 failed�[0m;�[0m Testing //rb/spec/integration/selenium/webdriver/edge:profile-edge-remote; 21s local, disk-cache ... (4 actions, 3 running)
    1188:  �[31m�[1mFAIL: �[0m//rb/spec/integration/selenium/webdriver/edge:options-edge-remote (see D:/_bazel/execroot/_main/bazel-out/x64_windows-fastbuild/testlogs/rb/spec/integration/selenium/webdriver/edge/options-edge-remote/test_attempts/attempt_1.log)
    1189:  �[32m[3,092 / 3,111]�[0m 4 / 27 tests, �[31m�[1m4 failed�[0m;�[0m Testing //rb/spec/integration/selenium/webdriver/edge:profile-edge-remote; 23s local, disk-cache ... (4 actions, 3 running)
    1190:  �[32m[3,092 / 3,111]�[0m 4 / 27 tests, �[31m�[1m4 failed�[0m;�[0m Testing //rb/spec/integration/selenium/webdriver/edge:profile-edge-remote; 28s local, disk-cache ... (4 actions running)
    1191:  �[31m�[1mFAIL: �[0m//rb/spec/integration/selenium/webdriver/edge:profile-edge-remote (see D:/_bazel/execroot/_main/bazel-out/x64_windows-fastbuild/testlogs/rb/spec/integration/selenium/webdriver/edge/profile-edge-remote/test_attempts/attempt_2.log)
    1192:  �[32m[3,092 / 3,111]�[0m 4 / 27 tests, �[31m�[1m4 failed�[0m;�[0m Testing //rb/spec/integration/selenium/webdriver/edge:profile-edge-remote; 29s local, disk-cache ... (4 actions running)
    1193:  �[32m[3,092 / 3,111]�[0m 4 / 27 tests, �[31m�[1m4 failed�[0m;�[0m Testing //rb/spec/integration/selenium/webdriver/edge:profile-edge-remote; 35s local, disk-cache ... (4 actions running)
    1194:  �[31m�[1mFAIL: �[0m//rb/spec/integration/selenium/webdriver:driver-edge-remote (see D:/_bazel/execroot/_main/bazel-out/x64_windows-fastbuild/testlogs/rb/spec/integration/selenium/webdriver/driver-edge-remote/test_attempts/attempt_1.log)
    1195:  �[32m[3,092 / 3,111]�[0m 4 / 27 tests, �[31m�[1m4 failed�[0m;�[0m Testing //rb/spec/integration/selenium/webdriver/edge:profile-edge-remote; 36s local, disk-cache ... (4 actions running)
    1196:  �[32m[3,092 / 3,111]�[0m 4 / 27 tests, �[31m�[1m4 failed�[0m;�[0m Testing //rb/spec/integration/selenium/webdriver/edge:profile-edge-remote; 41s local, disk-cache ... (4 actions running)
    1197:  �[31m�[1mFAIL: �[0m//rb/spec/integration/selenium/webdriver/remote:element-edge-remote (see D:/_bazel/execroot/_main/bazel-out/x64_windows-fastbuild/testlogs/rb/spec/integration/selenium/webdriver/remote/element-edge-remote/test_attempts/attempt_2.log)
    1198:  �[32m[3,092 / 3,111]�[0m 4 / 27 tests, �[31m�[1m4 failed�[0m;�[0m Testing //rb/spec/integration/selenium/webdriver/edge:profile-edge-remote; 42s local, disk-cache ... (4 actions running)
    1199:  �[32m[3,092 / 3,111]�[0m 4 / 27 tests, �[31m�[1m4 failed�[0m;�[0m Testing //rb/spec/integration/selenium/webdriver/edge:profile-edge-remote; 43s local, disk-cache ... (4 actions running)
    1200:  �[32m[3,092 / 3,111]�[0m 4 / 27 tests, �[31m�[1m4 failed�[0m;�[0m Testing //rb/spec/integration/selenium/webdriver/edge:profile-edge-remote; 49s local, disk-cache ... (4 actions running)
    1201:  �[31m�[1mFAIL: �[0m//rb/spec/integration/selenium/webdriver/edge:options-edge-remote (see D:/_bazel/execroot/_main/bazel-out/x64_windows-fastbuild/testlogs/rb/spec/integration/selenium/webdriver/edge/options-edge-remote/test_attempts/attempt_2.log)
    1202:  �[32m[3,092 / 3,111]�[0m 4 / 27 tests, �[31m�[1m4 failed�[0m;�[0m Testing //rb/spec/integration/selenium/webdriver/edge:profile-edge-remote; 50s local, disk-cache ... (4 actions running)
    1203:  �[32m[3,092 / 3,111]�[0m 4 / 27 tests, �[31m�[1m4 failed�[0m;�[0m Testing //rb/spec/integration/selenium/webdriver/edge:profile-edge-remote; 55s local, disk-cache ... (4 actions running)
    1204:  �[31m�[1mFAIL: �[0m//rb/spec/integration/selenium/webdriver/edge:profile-edge-remote (see D:/_bazel/execroot/_main/bazel-out/x64_windows-fastbuild/testlogs/rb/spec/integration/selenium/webdriver/edge/profile-edge-remote/test.log)
    1205:  �[31m�[1mFAILED: �[0m//rb/spec/integration/selenium/webdriver/edge:profile-edge-remote (Summary)
    1206:  ==================== Test output for //rb/spec/integration/selenium/webdriver/edge:profile-edge-remote:
    1207:  D:/_bazel/execroot/_main/bazel-out/x64_windows-fastbuild/testlogs/rb/spec/integration/selenium/webdriver/edge/profile-edge-remote/test.log
    1208:  2024-04-24 18:50:21 INFO Selenium Server Location: D:/_bazel/execroot/_main/bazel-out/x64_windows-fastbuild/bin/rb/spec/integration/selenium/webdriver/edge/profile-edge-remote.cmd.runfiles/_main/java/src/org/openqa/selenium/grid/selenium_server_deploy.jar
    1209:  D:/_bazel/execroot/_main/bazel-out/x64_windows-fastbuild/testlogs/rb/spec/integration/selenium/webdriver/edge/profile-edge-remote/test_attempts/attempt_1.log
    1210:  D:/_bazel/execroot/_main/bazel-out/x64_windows-fastbuild/testlogs/rb/spec/integration/selenium/webdriver/edge/profile-edge-remote/test_attempts/attempt_2.log
    1211:  �[32mINFO: �[0mFrom Testing //rb/spec/integration/selenium/webdriver/edge:profile-edge-remote:
    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.06196 seconds (files took 0.78214 seconds to load)
    1221:  0 examples, 0 failures, 1 error occurred outside of examples
    1222:  ================================================================================
    1223:  ==================== Test output for //rb/spec/integration/selenium/webdriver/edge:profile-edge-remote:
    1224:  2024-04-24 18:50:43 INFO Selenium Server Location: D:/_bazel/execroot/_main/bazel-out/x64_windows-fastbuild/bin/rb/spec/integration/selenium/webdriver/edge/profile-edge-remote.cmd.runfiles/_main/java/src/org/openqa/selenium/grid/selenium_server_deploy.jar
    1225:  An error occurred in a `before(:suite)` hook.
    1226:  Failure/Error: @pid = Process.spawn(*@command, options)
    1227:  Errno::EACCES:
    1228:  Permission denied - java
    1229:  # ./rb/lib/selenium/webdriver/common/child_process.rb:57:in `spawn'
    1230:  # ./rb/lib/selenium/webdriver/common/child_process.rb:57:in `start'
    1231:  # ./rb/lib/selenium/server.rb:204:in `start'
    1232:  # //?/D:/a/selenium/selenium/rb/spec/integration/selenium/webdriver/spec_helper.rb:40:in `block (2 levels) in <top (required)>'
    1233:  Finished in 0.04685 seconds (files took 0.64806 seconds to load)
    1234:  0 examples, 0 failures, 1 error occurred outside of examples
    1235:  ================================================================================
    1236:  ==================== Test output for //rb/spec/integration/selenium/webdriver/edge:profile-edge-remote:
    1237:  2024-04-24 18:51:10 INFO Selenium Server Location: D:/_bazel/execroot/_main/bazel-out/x64_windows-fastbuild/bin/rb/spec/integration/selenium/webdriver/edge/profile-edge-remote.cmd.runfiles/_main/java/src/org/openqa/selenium/grid/selenium_server_deploy.jar
    1238:  An error occurred in a `before(:suite)` hook.
    1239:  Failure/Error: @pid = Process.spawn(*@command, options)
    1240:  Errno::EACCES:
    1241:  Permission denied - java
    1242:  # ./rb/lib/selenium/webdriver/common/child_process.rb:57:in `spawn'
    1243:  # ./rb/lib/selenium/webdriver/common/child_process.rb:57:in `start'
    1244:  # ./rb/lib/selenium/server.rb:204:in `start'
    1245:  # //?/D:/a/selenium/selenium/rb/spec/integration/selenium/webdriver/spec_helper.rb:40:in `block (2 levels) in <top (required)>'
    1246:  Finished in 0.04623 seconds (files took 0.61472 seconds to load)
    1247:  0 examples, 0 failures, 1 error occurred outside of examples
    1248:  ================================================================================
    1249:  �[32m[3,093 / 3,111]�[0m 5 / 27 tests, �[31m�[1m5 failed�[0m;�[0m Testing //rb/spec/integration/selenium/webdriver/remote:element-edge-remote; 50s local, disk-cache ... (4 actions, 3 running)
    1250:  �[32m[3,093 / 3,111]�[0m 5 / 27 tests, �[31m�[1m5 failed�[0m;�[0m Testing //rb/spec/integration/selenium/webdriver/remote:element-edge-remote; 55s local, disk-cache ... (4 actions, 3 running)
    1251:  �[31m�[1mFAIL: �[0m//rb/spec/integration/selenium/webdriver:driver-edge-remote (see D:/_bazel/execroot/_main/bazel-out/x64_windows-fastbuild/testlogs/rb/spec/integration/selenium/webdriver/driver-edge-remote/test_attempts/attempt_2.log)
    1252:  �[32m[3,093 / 3,111]�[0m 5 / 27 tests, �[31m�[1m5 failed�[0m;�[0m Testing //rb/spec/integration/selenium/webdriver/remote:element-edge-remote; 57s local, disk-cache ... (4 actions, 3 running)
    1253:  �[32m[3,093 / 3,111]�[0m 5 / 27 tests, �[31m�[1m5 failed�[0m;�[0m Testing //rb/spec/integration/selenium/webdriver/remote:element-edge-remote; 59s local, disk-cache ... (4 actions, 3 running)
    1254:  �[32m[3,093 / 3,111]�[0m 5 / 27 tests, �[31m�[1m5 failed�[0m;�[0m Testing //rb/spec/integration/selenium/webdriver/remote:element-edge-remote; 60s local, disk-cache ... (4 actions, 3 running)
    1255:  �[32m[3,093 / 3,111]�[0m 5 / 27 tests, �[31m�[1m5 failed�[0m;�[0m Testing //rb/spec/integration/selenium/webdriver/remote:element-edge-remote; 62s local, disk-cache ... (4 actions, 3 running)
    1256:  �[31m�[1mFAIL: �[0m//rb/spec/integration/selenium/webdriver/remote:element-edge-remote (see D:/_bazel/execroot/_main/bazel-out/x64_windows-fastbuild/testlogs/rb/spec/integration/selenium/webdriver/remote/element-edge-remote/test.log)
    1257:  �[31m�[1mFAILED: �[0m//rb/spec/integration/selenium/webdriver/remote:element-edge-remote (Summary)
    1258:  ==================== Test output for //rb/spec/integration/selenium/webdriver/remote:element-edge-remote:
    1259:  2024-04-24 18:50:29 INFO Selenium Server Location: D:/_bazel/execroot/_main/bazel-out/x64_windows-fastbuild/bin/rb/spec/integration/selenium/webdriver/remote/element-edge-remote.cmd.runfiles/_main/java/src/org/openqa/selenium/grid/selenium_server_deploy.jar
    1260:  D:/_bazel/execroot/_main/bazel-out/x64_windows-fastbuild/testlogs/rb/spec/integration/selenium/webdriver/remote/element-edge-remote/test.log
    1261:  An error occurred in a `before(:suite)` hook.
    1262:  D:/_bazel/execroot/_main/bazel-out/x64_windows-fastbuild/testlogs/rb/spec/integration/selenium/webdriver/remote/element-edge-remote/test_attempts/attempt_1.log
    1263:  Failure/Error: @pid = Process.spawn(*@command, options)
    ...
    
    1265:  �[32mINFO: �[0mFrom Testing //rb/spec/integration/selenium/webdriver/remote:element-edge-remote:
    1266:  Errno::EACCES:
    1267:  Permission denied - java
    1268:  # ./rb/lib/selenium/webdriver/common/child_process.rb:57:in `spawn'
    1269:  # ./rb/lib/selenium/webdriver/common/child_process.rb:57:in `start'
    1270:  # ./rb/lib/selenium/server.rb:204:in `start'
    1271:  # //?/D:/a/selenium/selenium/rb/spec/integration/selenium/webdriver/spec_helper.rb:40:in `block (2 levels) in <top (required)>'
    1272:  Finished in 0.04856 seconds (files took 0.78043 seconds to load)
    1273:  0 examples, 0 failures, 1 error occurred outside of examples
    1274:  ================================================================================
    1275:  ==================== Test output for //rb/spec/integration/selenium/webdriver/remote:element-edge-remote:
    1276:  2024-04-24 18:50:56 INFO Selenium Server Location: D:/_bazel/execroot/_main/bazel-out/x64_windows-fastbuild/bin/rb/spec/integration/selenium/webdriver/remote/element-edge-remote.cmd.runfiles/_main/java/src/org/openqa/selenium/grid/selenium_server_deploy.jar
    1277:  An error occurred in a `before(:suite)` hook.
    1278:  Failure/Error: @pid = Process.spawn(*@command, options)
    1279:  Errno::EACCES:
    1280:  Permission denied - java
    1281:  # ./rb/lib/selenium/webdriver/common/child_process.rb:57:in `spawn'
    1282:  # ./rb/lib/selenium/webdriver/common/child_process.rb:57:in `start'
    1283:  # ./rb/lib/selenium/server.rb:204:in `start'
    1284:  # //?/D:/a/selenium/selenium/rb/spec/integration/selenium/webdriver/spec_helper.rb:40:in `block (2 levels) in <top (required)>'
    1285:  Finished in 0.04708 seconds (files took 0.70818 seconds to load)
    1286:  0 examples, 0 failures, 1 error occurred outside of examples
    1287:  ================================================================================
    1288:  ==================== Test output for //rb/spec/integration/selenium/webdriver/remote:element-edge-remote:
    1289:  2024-04-24 18:51:24 INFO Selenium Server Location: D:/_bazel/execroot/_main/bazel-out/x64_windows-fastbuild/bin/rb/spec/integration/selenium/webdriver/remote/element-edge-remote.cmd.runfiles/_main/java/src/org/openqa/selenium/grid/selenium_server_deploy.jar
    1290:  An error occurred in a `before(:suite)` hook.
    1291:  Failure/Error: @pid = Process.spawn(*@command, options)
    1292:  Errno::EACCES:
    1293:  Permission denied - java
    1294:  # ./rb/lib/selenium/webdriver/common/child_process.rb:57:in `spawn'
    1295:  # ./rb/lib/selenium/webdriver/common/child_process.rb:57:in `start'
    1296:  # ./rb/lib/selenium/server.rb:204:in `start'
    1297:  # //?/D:/a/selenium/selenium/rb/spec/integration/selenium/webdriver/spec_helper.rb:40:in `block (2 levels) in <top (required)>'
    1298:  Finished in 0.0463 seconds (files took 0.62589 seconds to load)
    1299:  0 examples, 0 failures, 1 error occurred outside of examples
    1300:  ================================================================================
    1301:  �[32m[3,094 / 3,111]�[0m 6 / 27 tests, �[31m�[1m6 failed�[0m;�[0m Testing //rb/spec/integration/selenium/webdriver/edge:options-edge-remote; 56s local, disk-cache ... (4 actions, 2 running)
    1302:  �[32m[3,094 / 3,111]�[0m 6 / 27 tests, �[31m�[1m6 failed�[0m;�[0m Testing //rb/spec/integration/selenium/webdriver/edge:options-edge-remote; 62s local, disk-cache ... (4 actions, 2 running)
    1303:  �[31m�[1mFAIL: �[0m//rb/spec/integration/selenium/webdriver/edge:options-edge-remote (see D:/_bazel/execroot/_main/bazel-out/x64_windows-fastbuild/testlogs/rb/spec/integration/selenium/webdriver/edge/options-edge-remote/test.log)
    1304:  ==================== Test output for //rb/spec/integration/selenium/webdriver/edge:options-edge-remote:
    1305:  2024-04-24 18:50:36 INFO Selenium Server Location: D:/_bazel/execroot/_main/bazel-out/x64_windows-fastbuild/bin/rb/spec/integration/selenium/webdriver/edge/options-edge-remote.cmd.runfiles/_main/java/src/org/openqa/selenium/grid/selenium_server_deploy.jar
    1306:  �[31m�[1mFAILED: �[0m//rb/spec/integration/selenium/webdriver/edge:options-edge-remote (Summary)
    1307:  D:/_bazel/execroot/_main/bazel-out/x64_windows-fastbuild/testlogs/rb/spec/integration/selenium/webdriver/edge/options-edge-remote/test.log
    1308:  An error occurred in a `before(:suite)` hook.
    1309:  D:/_bazel/execroot/_main/bazel-out/x64_windows-fastbuild/testlogs/rb/spec/integration/selenium/webdriver/edge/options-edge-remote/test_attempts/attempt_1.log
    1310:  Failure/Error: @pid = Process.spawn(*@command, options)
    ...
    
    1312:  �[32mINFO: �[0mFrom Testing //rb/spec/integration/selenium/webdriver/edge:options-edge-remote:
    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.0456 seconds (files took 0.60719 seconds to load)
    1320:  0 examples, 0 failures, 1 error occurred outside of examples
    1321:  ================================================================================
    1322:  ==================== Test output for //rb/spec/integration/selenium/webdriver/edge:options-edge-remote:
    1323:  2024-04-24 18:51:03 INFO Selenium Server Location: D:/_bazel/execroot/_main/bazel-out/x64_windows-fastbuild/bin/rb/spec/integration/selenium/webdriver/edge/options-edge-remote.cmd.runfiles/_main/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.04576 seconds (files took 0.6396 seconds to load)
    1333:  0 examples, 0 failures, 1 error occurred outside of examples
    1334:  ================================================================================
    1335:  ==================== Test output for //rb/spec/integration/selenium/webdriver/edge:options-edge-remote:
    1336:  2024-04-24 18:51:31 INFO Selenium Server Location: D:/_bazel/execroot/_main/bazel-out/x64_windows-fastbuild/bin/rb/spec/integration/selenium/webdriver/edge/options-edge-remote.cmd.runfiles/_main/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.04812 seconds (files took 0.70802 seconds to load)
    1346:  0 examples, 0 failures, 1 error occurred outside of examples
    1347:  ================================================================================
    1348:  �[32m[3,095 / 3,111]�[0m 7 / 27 tests, �[31m�[1m7 failed�[0m;�[0m Testing //rb/spec/integration/selenium/webdriver:driver-edge-remote; 50s local, disk-cache ... (4 actions, 1 running)
    1349:  �[32m[3,095 / 3,111]�[0m 7 / 27 tests, �[31m�[1m7 failed�[0m;�[0m Testing //rb/spec/integration/selenium/webdriver:driver-edge-remote; 53s local, disk-cache ... (4 actions, 1 running)
    1350:  �[32m[3,095 / 3,111]�[0m 7 / 27 tests, �[31m�[1m7 failed�[0m;�[0m Testing //rb/spec/integration/selenium/webdriver:driver-edge-remote; 55s local, disk-cache ... (4 actions, 2 running)
    1351:  �[31m�[1mFAIL: �[0m//rb/spec/integration/selenium/webdriver:driver-edge-remote (see D:/_bazel/execroot/_main/bazel-out/x64_windows-fastbuild/testlogs/rb/spec/integration/selenium/webdriver/driver-edge-remote/test.log)
    1352:  ==================== Test output for //rb/spec/integration/selenium/webdriver:driver-edge-remote:
    1353:  �[31m�[1mFAILED: �[0m//rb/spec/integration/selenium/webdriver:driver-edge-remote (Summary)
    1354:  2024-04-24 18:50:49 INFO Selenium Server Location: D:/_bazel/execroot/_main/bazel-out/x64_windows-fastbuild/bin/rb/spec/integration/selenium/webdriver/driver-edge-remote.cmd.runfiles/_main/java/src/org/openqa/selenium/grid/selenium_server_deploy.jar
    1355:  D:/_bazel/execroot/_main/bazel-out/x64_windows-fastbuild/testlogs/rb/spec/integration/selenium/webdriver/driver-edge-remote/test.log
    1356:  D:/_bazel/execroot/_main/bazel-out/x64_windows-fastbuild/testlogs/rb/spec/integration/selenium/webdriver/driver-edge-remote/test_attempts/attempt_1.log
    1357:  An error occurred in a `before(:suite)` hook.
    1358:  D:/_bazel/execroot/_main/bazel-out/x64_windows-fastbuild/testlogs/rb/spec/integration/selenium/webdriver/driver-edge-remote/test_attempts/attempt_2.log
    1359:  �[32mINFO: �[0mFrom Testing //rb/spec/integration/selenium/webdriver:driver-edge-remote:
    1360:  Failure/Error: @pid = Process.spawn(*@command, options)
    1361:  Errno::EACCES:
    1362:  Permission denied - java
    1363:  # ./rb/lib/selenium/webdriver/common/child_process.rb:57:in `spawn'
    1364:  # ./rb/lib/selenium/webdriver/common/child_process.rb:57:in `start'
    1365:  # ./rb/lib/selenium/server.rb:204:in `start'
    1366:  # //?/D:/a/selenium/selenium/rb/spec/integration/selenium/webdriver/spec_helper.rb:40:in `block (2 levels) in <top (required)>'
    1367:  Finished in 0.04575 seconds (files took 0.5904 seconds to load)
    1368:  0 examples, 0 failures, 1 error occurred outside of examples
    1369:  ================================================================================
    1370:  ==================== Test output for //rb/spec/integration/selenium/webdriver:driver-edge-remote:
    1371:  2024-04-24 18:51:17 INFO Selenium Server Location: D:/_bazel/execroot/_main/bazel-out/x64_windows-fastbuild/bin/rb/spec/integration/selenium/webdriver/driver-edge-remote.cmd.runfiles/_main/java/src/org/openqa/selenium/grid/selenium_server_deploy.jar
    1372:  An error occurred in a `before(:suite)` hook.
    1373:  Failure/Error: @pid = Process.spawn(*@command, options)
    1374:  Errno::EACCES:
    1375:  Permission denied - java
    1376:  # ./rb/lib/selenium/webdriver/common/child_process.rb:57:in `spawn'
    1377:  # ./rb/lib/selenium/webdriver/common/child_process.rb:57:in `start'
    1378:  # ./rb/lib/selenium/server.rb:204:in `start'
    1379:  # //?/D:/a/selenium/selenium/rb/spec/integration/selenium/webdriver/spec_helper.rb:40:in `block (2 levels) in <top (required)>'
    1380:  Finished in 0.04786 seconds (files took 0.63442 seconds to load)
    1381:  0 examples, 0 failures, 1 error occurred outside of examples
    1382:  ================================================================================
    1383:  ==================== Test output for //rb/spec/integration/selenium/webdriver:driver-edge-remote:
    1384:  2024-04-24 18:51:38 INFO Selenium Server Location: D:/_bazel/execroot/_main/bazel-out/x64_windows-fastbuild/bin/rb/spec/integration/selenium/webdriver/driver-edge-remote.cmd.runfiles/_main/java/src/org/openqa/selenium/grid/selenium_server_deploy.jar
    1385:  An error occurred in a `before(:suite)` hook.
    1386:  Failure/Error: @pid = Process.spawn(*@command, options)
    1387:  Errno::EACCES:
    1388:  Permission denied - java
    1389:  # ./rb/lib/selenium/webdriver/common/child_process.rb:57:in `spawn'
    1390:  # ./rb/lib/selenium/webdriver/common/child_process.rb:57:in `start'
    1391:  # ./rb/lib/selenium/server.rb:204:in `start'
    1392:  # //?/D:/a/selenium/selenium/rb/spec/integration/selenium/webdriver/spec_helper.rb:40:in `block (2 levels) in <top (required)>'
    1393:  Finished in 0.06945 seconds (files took 0.85588 seconds to load)
    1394:  0 examples, 0 failures, 1 error occurred outside of examples
    1395:  ================================================================================
    1396:  �[32m[3,096 / 3,111]�[0m 8 / 27 tests, �[31m�[1m8 failed�[0m;�[0m Testing //rb/spec/integration/selenium/webdriver:window-edge-remote; 7s disk-cache ... (4 actions, 1 running)
    1397:  �[32m[3,096 / 3,111]�[0m 8 / 27 tests, �[31m�[1m8 failed�[0m;�[0m [Sched] Testing //rb/spec/integration/selenium/webdriver:error-edge-remote; 8s ... (4 actions, 1 running)
    1398:  �[32m[3,096 / 3,111]�[0m 8 / 27 tests, �[31m�[1m8 failed�[0m;�[0m Testing //rb/spec/integration/selenium/webdriver:target_locator-edge-remote; 7s local, disk-cache ... (4 actions, 2 running)
    1399:  �[31m�[1mFAIL: �[0m//rb/spec/integration/selenium/webdriver:target_locator-edge-remote (see D:/_bazel/execroot/_main/bazel-out/x64_windows-fastbuild/testlogs/rb/spec/integration/selenium/webdriver/target_locator-edge-remote/test_attempts/attempt_1.log)
    1400:  �[32m[3,096 / 3,111]�[0m 8 / 27 tests, �[31m�[1m8 failed�[0m;�[0m Testing //rb/spec/integration/selenium/webdriver:target_locator-edge-remote; 8s local, disk-cache ... (4 actions, 2 running)
    1401:  �[32m[3,096 / 3,111]�[0m 8 / 27 tests, �[31m�[1m8 failed�[0m;�[0m Testing //rb/spec/integration/selenium/webdriver:target_locator-edge-remote; 11s local, disk-cache ... (4 actions, 2 running)
    1402:  �[32m[3,096 / 3,111]�[0m 8 / 27 tests, �[31m�[1m8 failed�[0m;�[0m Testing //rb/spec/integration/selenium/webdriver:target_locator-edge-remote; 12s local, disk-cache ... (4 actions, 2 running)
    1403:  �[32m[3,096 / 3,111]�[0m 8 / 27 tests, �[31m�[1m8 failed�[0m;�[0m Testing //rb/spec/integration/selenium/webdriver:target_locator-edge-remote; 14s local, disk-cache ... (4 actions, 3 running)
    1404:  �[31m�[1mFAIL: �[0m//rb/spec/integration/selenium/webdriver:error-edge-remote (see D:/_bazel/execroot/_main/bazel-out/x64_windows-fastbuild/testlogs/rb/spec/integration/selenium/webdriver/error-edge-remote/test_attempts/attempt_1.log)
    1405:  �[32m[3,096 / 3,111]�[0m 8 / 27 tests, �[31m�[1m8 failed�[0m;�[0m Testing //rb/spec/integration/selenium/webdriver:target_locator-edge-remote; 15s local, disk-cache ... (4 actions, 3 running)
    1406:  �[32m[3,096 / 3,111]�[0m 8 / 27 tests, �[31m�[1m8 failed�[0m;�[0m Testing //rb/spec/integration/selenium/webdriver:target_locator-edge-remote; 21s local, disk-cache ... (4 actions, 3 running)
    1407:  �[31m�[1mFAIL: �[0m//rb/spec/integration/selenium/webdriver:window-edge-remote (see D:/_bazel/execroot/_main/bazel-out/x64_windows-fastbuild/testlogs/rb/spec/integration/selenium/webdriver/window-edge-remote/test_attempts/attempt_1.log)
    1408:  �[32m[3,096 / 3,111]�[0m 8 / 27 tests, �[31m�[1m8 failed�[0m;�[0m Testing //rb/spec/integration/selenium/webdriver:target_locator-edge-remote; 22s local, disk-cache ... (4 actions, 3 running)
    1409:  �[32m[3,096 / 3,111]�[0m 8 / 27 tests, �[31m�[1m8 failed�[0m;�[0m Testing //rb/spec/integration/selenium/webdriver:target_locator-edge-remote; 28s local, disk-cache ... (4 actions running)
    1410:  �[31m�[1mFAIL: �[0m//rb/spec/integration/selenium/webdriver:target_locator-edge-remote (see D:/_bazel/execroot/_main/bazel-out/x64_windows-fastbuild/testlogs/rb/spec/integration/selenium/webdriver/target_locator-edge-remote/test_attempts/attempt_2.log)
    1411:  �[32m[3,096 / 3,111]�[0m 8 / 27 tests, �[31m�[1m8 failed�[0m;�[0m Testing //rb/spec/integration/selenium/webdriver:target_locator-edge-remote; 29s local, disk-cache ... (4 actions running)
    1412:  �[32m[3,096 / 3,111]�[0m 8 / 27 tests, �[31m�[1m8 failed�[0m;�[0m Testing //rb/spec/integration/selenium/webdriver:target_locator-edge-remote; 35s local, disk-cache ... (4 actions running)
    1413:  �[31m�[1mFAIL: �[0m//rb/spec/integration/selenium/webdriver/remote:driver-edge-remote (see D:/_bazel/execroot/_main/bazel-out/x64_windows-fastbuild/testlogs/rb/spec/integration/selenium/webdriver/remote/driver-edge-remote/test_attempts/attempt_1.log)
    1414:  �[32m[3,096 / 3,111]�[0m 8 / 27 tests, �[31m�[1m8 failed�[0m;�[0m Testing //rb/spec/integration/selenium/webdriver:target_locator-edge-remote; 36s local, disk-cache ... (4 actions running)
    1415:  �[32m[3,096 / 3,111]�[0m 8 / 27 tests, �[31m�[1m8 failed�[0m;�[0m Testing //rb/spec/integration/selenium/webdriver:target_locator-edge-remote; 41s local, disk-cache ... (4 actions running)
    1416:  �[31m�[1mFAIL: �[0m//rb/spec/integration/selenium/webdriver:error-edge-remote (see D:/_bazel/execroot/_main/bazel-out/x64_windows-fastbuild/testlogs/rb/spec/integration/selenium/webdriver/error-edge-remote/test_attempts/attempt_2.log)
    1417:  �[32m[3,096 / 3,111]�[0m 8 / 27 tests, �[31m�[1m8 failed�[0m;�[0m Testing //rb/spec/integration/selenium/webdriver:target_locator-edge-remote; 43s local, disk-cache ... (4 actions running)
    1418:  �[32m[3,096 / 3,111]�[0m 8 / 27 tests, �[31m�[1m8 failed�[0m;�[0m Testing //rb/spec/integration/selenium/webdriver:target_locator-edge-remote; 48s local, disk-cache ... (4 actions running)
    1419:  �[31m�[1mFAIL: �[0m//rb/spec/integration/selenium/webdriver:window-edge-remote (see D:/_bazel/execroot/_main/bazel-out/x64_windows-fastbuild/testlogs/rb/spec/integration/selenium/webdriver/window-edge-remote/test_attempts/attempt_2.log)
    1420:  �[32m[3,096 / 3,111]�[0m 8 / 27 tests, �[31m�[1m8 failed�[0m;�[0m Testing //rb/spec/integration/selenium/webdriver:target_locator-edge-remote; 49s local, disk-cache ... (4 actions running)
    1421:  �[32m[3,096 / 3,111]�[0m 8 / 27 tests, �[31m�[1m8 failed�[0m;�[0m Testing //rb/spec/integration/selenium/webdriver:target_locator-edge-remote; 55s local, disk-cache ... (4 actions running)
    1422:  �[31m�[1mFAIL: �[0m//rb/spec/integration/selenium/webdriver:target_locator-edge-remote (see D:/_bazel/execroot/_main/bazel-out/x64_windows-fastbuild/testlogs/rb/spec/integration/selenium/webdriver/target_locator-edge-remote/test.log)
    1423:  ==================== Test output for //rb/spec/integration/selenium/webdriver:target_locator-edge-remote:
    1424:  �[31m�[1mFAILED: �[0m//rb/spec/integration/selenium/webdriver:target_locator-edge-remote (Summary)
    1425:  2024-04-24 18:51:45 INFO Selenium Server Location: D:/_bazel/execroot/_main/bazel-out/x64_windows-fastbuild/bin/rb/spec/integration/selenium/webdriver/target_locator-edge-remote.cmd.runfiles/_main/java/src/org/openqa/selenium/grid/selenium_server_deploy.jar
    1426:  D:/_bazel/execroot/_main/bazel-out/x64_windows-fastbuild/testlogs/rb/spec/integration/selenium/webdriver/target_locator-edge-remote/test.log
    1427:  D:/_bazel/execroot/_main/bazel-out/x64_windows-fastbuild/testlogs/rb/spec/integration/selenium/webdriver/target_locator-edge-remote/test_attempts/attempt_1.log
    1428:  An error occurred in a `before(:suite)` hook.
    1429:  D:/_bazel/execroot/_main/bazel-out/x64_windows-fastbuild/testlogs/rb/spec/integration/selenium/webdriver/target_locator-edge-remote/test_attempts/attempt_2.log
    1430:  Failure/Error: @pid = Process.spawn(*@command, options)
    1431:  Errno::EACCES:
    1432:  �[32mINFO: �[0mFrom Testing //rb/spec/integration/selenium/webdriver:target_locator-edge-remote:
    1433:  Permission denied - java
    1434:  # ./rb/lib/selenium/webdriver/common/child_process.rb:57:in `spawn'
    1435:  # ./rb/lib/selenium/webdriver/common/child_process.rb:57:in `start'
    1436:  # ./rb/lib/selenium/server.rb:204:in `start'
    1437:  # //?/D:/a/selenium/selenium/rb/spec/integration/selenium/webdriver/spec_helper.rb:40:in `block (2 levels) in <top (required)>'
    1438:  Finished in 0.06556 seconds (files took 0.80721 seconds to load)
    1439:  0 examples, 0 failures, 1 error occurred outside of examples
    1440:  ================================================================================
    1441:  ==================== Test output for //rb/spec/integration/selenium/webdriver:target_locator-edge-remote:
    1442:  2024-04-24 18:52:06 INFO Selenium Server Location: D:/_bazel/execroot/_main/bazel-out/x64_windows-fastbuild/bin/rb/spec/integration/selenium/webdriver/target_locator-edge-remote.cmd.runfiles/_main/java/src/org/openqa/selenium/grid/selenium_server_deploy.jar
    1443:  An error occurred in a `before(:suite)` hook.
    1444:  Failure/Error: @pid = Process.spawn(*@command, options)
    1445:  Errno::EACCES:
    1446:  Permission denied - java
    1447:  # ./rb/lib/selenium/webdriver/common/child_process.rb:57:in `spawn'
    1448:  # ./rb/lib/selenium/webdriver/common/child_process.rb:57:in `start'
    1449:  # ./rb/lib/selenium/server.rb:204:in `start'
    1450:  # //?/D:/a/selenium/selenium/rb/spec/integration/selenium/webdriver/spec_helper.rb:40:in `block (2 levels) in <top (required)>'
    1451:  Finished in 0.04653 seconds (files took 0.62272 seconds to load)
    1452:  0 examples, 0 failures, 1 error occurred outside of examples
    1453:  ================================================================================
    1454:  ==================== Test output for //rb/spec/integration/selenium/webdriver:target_locator-edge-remote:
    1455:  2024-04-24 18:52:34 INFO Selenium Server Location: D:/_bazel/execroot/_main/bazel-out/x64_windows-fastbuild/bin/rb/spec/integration/selenium/webdriver/target_locator-edge-remote.cmd.runfiles/_main/java/src/org/openqa/selenium/grid/selenium_server_deploy.jar
    1456:  An error occurred in a `before(:suite)` hook.
    1457:  Failure/Error: @pid = Process.spawn(*@command, options)
    1458:  Errno::EACCES:
    1459:  Permission denied - java
    1460:  # ./rb/lib/selenium/webdriver/common/child_process.rb:57:in `spawn'
    1461:  # ./rb/lib/selenium/webdriver/common/child_process.rb:57:in `start'
    1462:  # ./rb/lib/selenium/server.rb:204:in `start'
    1463:  # //?/D:/a/selenium/selenium/rb/spec/integration/selenium/webdriver/spec_helper.rb:40:in `block (2 levels) in <top (required)>'
    1464:  Finished in 0.04653 seconds (files took 0.67206 seconds to load)
    1465:  0 examples, 0 failures, 1 error occurred outside of examples
    1466:  ================================================================================
    1467:  �[32m[3,097 / 3,111]�[0m 9 / 27 tests, �[31m�[1m9 failed�[0m;�[0m Testing //rb/spec/integration/selenium/webdriver:error-edge-remote; 50s local, disk-cache ... (4 actions, 3 running)
    1468:  �[32m[3,097 / 3,111]�[0m 9 / 27 tests, �[31m�[1m9 failed�[0m;�[0m Testing //rb/spec/integration/selenium/webdriver:error-edge-remote; 55s local, disk-cache ... (4 actions, 3 running)
    1469:  �[31m�[1mFAIL: �[0m//rb/spec/integration/selenium/webdriver/remote:driver-edge-remote (see D:/_bazel/execroot/_main/bazel-out/x64_windows-fastbuild/testlogs/rb/spec/integration/selenium/webdriver/remote/driver-edge-remote/test_attempts/attempt_2.log)
    1470:  �[32m[3,097 / 3,111]�[0m 9 / 27 tests, �[31m�[1m9 failed�[0m;�[0m Testing //rb/spec/integration/selenium/webdriver:error-edge-remote; 56s local, disk-cache ... (4 actions, 3 running)
    1471:  �[32m[3,097 / 3,111]�[0m 9 / 27 tests, �[31m�[1m9 failed�[0m;�[0m Testing //rb/spec/integration/selenium/webdriver:error-edge-remote; 59s local, disk-cache ... (4 actions, 3 running)
    1472:  �[32m[3,097 / 3,111]�[0m 9 / 27 tests, �[31m�[1m9 failed�[0m;�[0m Testing //rb/spec/integration/selenium/webdriver:error-edge-remote; 60s local, disk-cache ... (4 actions, 3 running)
    1473:  �[32m[3,097 / 3,111]�[0m 9 / 27 tests, �[31m�[1m9 failed�[0m;�[0m Testing //rb/spec/integration/selenium/webdriver:error-edge-remote; 62s local, disk-cache ... (4 actions, 3 running)
    1474:  �[31m�[1mFAIL: �[0m//rb/spec/integration/selenium/webdriver:error-edge-remote (see D:/_bazel/execroot/_main/bazel-out/x64_windows-fastbuild/testlogs/rb/spec/integration/selenium/webdriver/error-edge-remote/test.log)
    1475:  �[31m�[1mFAILED: �[0m//rb/spec/integration/selenium/webdriver:error-edge-remote (Summary)
    1476:  D:/_bazel/execroot/_main/bazel-out/x64_windows-fastbuild/testlogs/rb/spec/integration/selenium/webdriver/error-edge-remote/test.log
    1477:  D:/_bazel/execroot/_main/bazel-out/x64_windows-fastbuild/testlogs/rb/spec/integration/selenium/webdriver/error-edge-remote/test_attempts/attempt_1.log
    1478:  D:/_bazel/execroot/_main/bazel-out/x64_windows-fastbuild/testlogs/rb/spec/integration/selenium/webdriver/error-edge-remote/test_attempts/attempt_2.log
    1479:  �[32mINFO: �[0mFrom Testing //rb/spec/integration/selenium/webdriver:error-edge-remote:
    1480:  ==================== Test output for //rb/spec/integration/selenium/webdriver:error-edge-remote:
    1481:  2024-04-24 18:51:53 INFO Selenium Server Location: D:/_bazel/execroot/_main/bazel-out/x64_windows-fastbuild/bin/rb/spec/integration/selenium/webdriver/error-edge-remote.cmd.runfiles/_main/java/src/org/openqa/selenium/grid/selenium_server_deploy.jar
    1482:  An error occurred in a `before(:suite)` hook.
    1483:  Failure/Error: @pid = Process.spawn(*@command, options)
    1484:  Errno::EACCES:
    1485:  Permission denied - java
    1486:  # ./rb/lib/selenium/webdriver/common/child_process.rb:57:in `spawn'
    1487:  # ./rb/lib/selenium/webdriver/common/child_process.rb:57:in `start'
    1488:  # ./rb/lib/selenium/server.rb:204:in `start'
    1489:  # //?/D:/a/selenium/selenium/rb/spec/integration/selenium/webdriver/spec_helper.rb:40:in `block (2 levels) in <top (required)>'
    1490:  Finished in 0.04823 seconds (files took 0.66021 seconds to load)
    1491:  0 examples, 0 failures, 1 error occurred outside of examples
    1492:  ================================================================================
    1493:  ==================== Test output for //rb/spec/integration/selenium/webdriver:error-edge-remote:
    1494:  2024-04-24 18:52:20 INFO Selenium Server Location: D:/_bazel/execroot/_main/bazel-out/x64_windows-fastbuild/bin/rb/spec/integration/selenium/webdriver/error-edge-remote.cmd.runfiles/_main/java/src/org/openqa/selenium/grid/selenium_server_deploy.jar
    1495:  An error occurred in a `before(:suite)` hook.
    1496:  Failure/Error: @pid = Process.spawn(*@command, options)
    1497:  Errno::EACCES:
    1498:  Permission denied - java
    1499:  # ./rb/lib/selenium/webdriver/common/child_process.rb:57:in `spawn'
    1500:  # ./rb/lib/selenium/webdriver/common/child_process.rb:57:in `start'
    1501:  # ./rb/lib/selenium/server.rb:204:in `start'
    1502:  # //?/D:/a/selenium/selenium/rb/spec/integration/selenium/webdriver/spec_helper.rb:40:in `block (2 levels) in <top (required)>'
    1503:  Finished in 0.04702 seconds (files took 0.61068 seconds to load)
    1504:  0 examples, 0 failures, 1 error occurred outside of examples
    1505:  ================================================================================
    1506:  ==================== Test output for //rb/spec/integration/selenium/webdriver:error-edge-remote:
    1507:  2024-04-24 18:52:48 INFO Selenium Server Location: D:/_bazel/execroot/_main/bazel-out/x64_windows-fastbuild/bin/rb/spec/integration/selenium/webdriver/error-edge-remote.cmd.runfiles/_main/java/src/org/openqa/selenium/grid/selenium_server_deploy.jar
    1508:  An error occurred in a `before(:suite)` hook.
    1509:  Failure/Error: @pid = Process.spawn(*@command, options)
    1510:  Errno::EACCES:
    1511:  Permission denied - java
    1512:  # ./rb/lib/selenium/webdriver/common/child_process.rb:57:in `spawn'
    1513:  # ./rb/lib/selenium/webdriver/common/child_process.rb:57:in `start'
    1514:  # ./rb/lib/selenium/server.rb:204:in `start'
    1515:  # //?/D:/a/selenium/selenium/rb/spec/integration/selenium/webdriver/spec_helper.rb:40:in `block (2 levels) in <top (required)>'
    1516:  Finished in 0.04753 seconds (files took 0.62284 seconds to load)
    1517:  0 examples, 0 failures, 1 error occurred outside of examples
    1518:  ================================================================================
    1519:  �[32m[3,098 / 3,111]�[0m 10 / 27 tests, �[31m�[1m10 failed�[0m;�[0m Testing //rb/spec/integration/selenium/webdriver:window-edge-remote; 56s local, disk-cache ... (4 actions, 2 running)
    1520:  �[32m[3,098 / 3,111]�[0m 10 / 27 tests, �[31m�[1m10 failed�[0m;�[0m Testing //rb/spec/integration/selenium/webdriver:window-edge-remote; 62s local, disk-cache ... (4 actions, 2 running)
    1521:  �[31m�[1mFAIL: �[0m//rb/spec/integration/selenium/webdriver:window-edge-remote (see D:/_bazel/execroot/_main/bazel-out/x64_windows-fastbuild/testlogs/rb/spec/integration/selenium/webdriver/window-edge-remote/test.log)
    1522:  ==================== Test output for //rb/spec/integration/selenium/webdriver:window-edge-remote:
    1523:  2024-04-24 18:52:00 INFO Selenium Server Location: D:/_bazel/execroot/_main/bazel-out/x64_windows-fastbuild/bin/rb/spec/integration/selenium/webdriver/window-edge-remote.cmd.runfiles/_main/java/src/org/openqa/selenium/grid/selenium_server_deploy.jar
    1524:  �[31m�[1mFAILED: �[0m//rb/spec/integration/selenium/webdriver:window-edge-remote (Summary)
    1525:  D:/_bazel/execroot/_main/bazel-out/x64_windows-fastbuild/testlogs/rb/spec/integration/selenium/webdriver/window-edge-remote/test.log
    1526:  An error occurred in a `before(:suite)` hook.
    1527:  D:/_bazel/execroot/_main/bazel-out/x64_windows-fastbuild/testlogs/rb/spec/integration/selenium/webdriver/window-edge-remote/test_attempts/attempt_1.log
    1528:  Failure/Error: @pid = Process.spawn(*@command, options)
    ...
    
    1530:  �[32mINFO: �[0mFrom Testing //rb/spec/integration/selenium/webdriver:window-edge-remote:
    1531:  Errno::EACCES:
    1532:  Permission denied - java
    1533:  # ./rb/lib/selenium/webdriver/common/child_process.rb:57:in `spawn'
    1534:  # ./rb/lib/selenium/webdriver/common/child_process.rb:57:in `start'
    1535:  # ./rb/lib/selenium/server.rb:204:in `start'
    1536:  # //?/D:/a/selenium/selenium/rb/spec/integration/selenium/webdriver/spec_helper.rb:40:in `block (2 levels) in <top (required)>'
    1537:  Finished in 0.04903 seconds (files took 0.66633 seconds to load)
    1538:  0 examples, 0 failures, 1 error occurred outside of examples
    1539:  ================================================================================
    1540:  ==================== Test output for //rb/spec/integration/selenium/webdriver:window-edge-remote:
    1541:  2024-04-24 18:52:27 INFO Selenium Server Location: D:/_bazel/execroot/_main/bazel-out/x64_windows-fastbuild/bin/rb/spec/integration/selenium/webdriver/window-edge-remote.cmd.runfiles/_main/java/src/org/openqa/selenium/grid/selenium_server_deploy.jar
    1542:  An error occurred in a `before(:suite)` hook.
    1543:  Failure/Error: @pid = Process.spawn(*@command, options)
    1544:  Errno::EACCES:
    1545:  Permission denied - java
    1546:  # ./rb/lib/selenium/webdriver/common/child_process.rb:57:in `spawn'
    1547:  # ./rb/lib/selenium/webdriver/common/child_process.rb:57:in `start'
    1548:  # ./rb/lib/selenium/server.rb:204:in `start'
    1549:  # //?/D:/a/selenium/selenium/rb/spec/integration/selenium/webdriver/spec_helper.rb:40:in `block (2 levels) in <top (required)>'
    1550:  Finished in 0.04566 seconds (files took 0.61773 seconds to load)
    1551:  0 examples, 0 failures, 1 error occurred outside of examples
    1552:  ================================================================================
    1553:  ==================== Test output for //rb/spec/integration/selenium/webdriver:window-edge-remote:
    1554:  2024-04-24 18:52:55 INFO Selenium Server Location: D:/_bazel/execroot/_main/bazel-out/x64_windows-fastbuild/bin/rb/spec/integration/selenium/webdriver/window-edge-remote.cmd.runfiles/_main/java/src/org/openqa/selenium/grid/selenium_server_deploy.jar
    1555:  An error occurred in a `before(:suite)` hook.
    1556:  Failure/Error: @pid = Process.spawn(*@command, options)
    1557:  Errno::EACCES:
    1558:  Permission denied - java
    1559:  # ./rb/lib/selenium/webdriver/common/child_process.rb:57:in `spawn'
    1560:  # ./rb/lib/selenium/webdriver/common/child_process.rb:57:in `start'
    1561:  # ./rb/lib/selenium/server.rb:204:in `start'
    1562:  # //?/D:/a/selenium/selenium/rb/spec/integration/selenium/webdriver/spec_helper.rb:40:in `block (2 levels) in <top (required)>'
    1563:  Finished in 0.05332 seconds (files took 0.691 seconds to load)
    1564:  0 examples, 0 failures, 1 error occurred outside of examples
    1565:  ================================================================================
    1566:  �[32m[3,099 / 3,111]�[0m 11 / 27 tests, �[31m�[1m11 failed�[0m;�[0m Testing //rb/spec/integration/selenium/webdriver/remote:driver-edge-remote; 49s local, disk-cache ... (4 actions, 1 running)
    1567:  �[32m[3,099 / 3,111]�[0m 11 / 27 tests, �[31m�[1m11 failed�[0m;�[0m Testing //rb/spec/integration/selenium/webdriver/remote:driver-edge-remote; 52s local, disk-cache ... (4 actions, 1 running)
    1568:  �[32m[3,099 / 3,111]�[0m 11 / 27 tests, �[31m�[1m11 failed�[0m;�[0m Testing //rb/spec/integration/selenium/webdriver/remote:driver-edge-remote; 55s local, disk-cache ... (4 actions, 2 running)
    1569:  �[31m�[1mFAIL: �[0m//rb/spec/integration/selenium/webdriver/remote:driver-edge-remote (see D:/_bazel/execroot/_main/bazel-out/x64_windows-fastbuild/testlogs/rb/spec/integration/selenium/webdriver/remote/driver-edge-remote/test.log)
    1570:  ==================== Test output for //rb/spec/integration/selenium/webdriver/remote:driver-edge-remote:
    1571:  2024-04-24 18:52:13 INFO Selenium Server Location: D:/_bazel/execroot/_main/bazel-out/x64_windows-fastbuild/bin/rb/spec/integration/selenium/webdriver/remote/driver-edge-remote.cmd.runfiles/_main/java/src/org/openqa/selenium/grid/selenium_server_deploy.jar
    1572:  �[31m�[1mFAILED: �[0m//rb/spec/integration/selenium/webdriver/remote:driver-edge-remote (Summary)
    1573:  D:/_bazel/execroot/_main/bazel-out/x64_windows-fastbuild/testlogs/rb/spec/integration/selenium/webdriver/remote/driver-edge-remote/test.log
    1574:  D:/_bazel/execroot/_main/bazel-out/x64_windows-fastbuild/testlogs/rb/spec/integration/selenium/webdriver/remote/driver-edge-remote/test_attempts/attempt_1.log
    1575:  An error occurred in a `before(:suite)` hook.
    1576:  D:/_bazel/execroot/_main/bazel-out/x64_windows-fastbuild/testlogs/rb/spec/integration/selenium/webdriver/remote/driver-edge-remote/test_attempts/attempt_2.log
    1577:  Failure/Error: @pid = Process.spawn(*@command, options)
    1578:  �[32mINFO: �[0mFrom Testing //rb/spec/integration/selenium/webdriver/remote:driver-edge-remote:
    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.04376 seconds (files took 0.5929 seconds to load)
    1586:  0 examples, 0 failures, 1 error occurred outside of examples
    1587:  ================================================================================
    1588:  ==================== Test output for //rb/spec/integration/selenium/webdriver/remote:driver-edge-remote:
    1589:  2024-04-24 18:52:41 INFO Selenium Server Location: D:/_bazel/execroot/_main/bazel-out/x64_windows-fastbuild/bin/rb/spec/integration/selenium/webdriver/remote/driver-edge-remote.cmd.runfiles/_main/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.05724 seconds (files took 0.65038 seconds to load)
    1599:  0 examples, 0 failures, 1 error occurred outside of examples
    1600:  ================================================================================
    1601:  ==================== Test output for //rb/spec/integration/selenium/webdriver/remote:driver-edge-remote:
    1602:  2024-04-24 18:53:02 INFO Selenium Server Location: D:/_bazel/execroot/_main/bazel-out/x64_windows-fastbuild/bin/rb/spec/integration/selenium/webdriver/remote/driver-edge-remote.cmd.runfiles/_main/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.0763 seconds (files took 0.8598 seconds to load)
    1612:  0 examples, 0 failures, 1 error occurred outside of examples
    1613:  ================================================================================
    1614:  �[32m[3,100 / 3,111]�[0m 12 / 27 tests, �[31m�[1m12 failed�[0m;�[0m Testing //rb/spec/integration/selenium/webdriver:action_builder-edge-remote; 7s disk-cache ... (4 actions, 1 running)
    1615:  �[32m[3,100 / 3,111]�[0m 12 / 27 tests, �[31m�[1m12 failed�[0m;�[0m [Sched] Testing //rb/spec/integration/selenium/webdriver:select-edge-remote; 9s ... (4 actions, 1 running)
    1616:  �[32m[3,100 / 3,111]�[0m 12 / 27 tests, �[31m�[1m12 failed�[0m;�[0m Testing //rb/spec/integration/selenium/webdriver:navigation-edge-remote; 7s local, disk-cache ... (4 actions, 2 running)
    1617:  �[31m�[1mFAIL: �[0m//rb/spec/integration/selenium/webdriver:navigation-edge-remote (see D:/_bazel/execroot/_main/bazel-out/x64_windows-fastbuild/testlogs/rb/spec/integration/selenium/webdriver/navigation-edge-remote/test_attempts/attempt_1.log)
    1618:  �[32m[3,100 / 3,111]�[0m 12 / 27 tests, �[31m�[1m12 failed�[0m;�[0m Testing //rb/spec/integration/selenium/webdriver:navigation-edge-remote; 8s local, disk-cache ... (4 actions, 2 running)
    1619:  �[32m[3,100 / 3,111]�[0m 12 / 27 tests, �[31m�[1m12 failed�[0m;�[0m Testing //rb/spec/integration/selenium/webdriver:navigation-edge-remote; 11s local, disk-cache ... (4 actions, 2 running)
    1620:  �[32m[3,100 / 3,111]�[0m 12 / 27 tests, �[31m�[1m12 failed�[0m;�[0m Testing //rb/spec/integration/selenium/webdriver:navigation-edge-remote; 12s local, disk-cache ... (4 actions, 2 running)
    1621:  �[32m[3,100 / 3,111]�[0m 12 / 27 tests, �[31m�[1m12 failed�[0m;�[0m Testing //rb/spec/integration/selenium/webdriver:navigation-edge-remote; 15s local, disk-cache ... (4 actions, 3 running)
    1622:  �[31m�[1mFAIL: �[0m//rb/spec/integration/selenium/webdriver:select-edge-remote (see D:/_bazel/execroot/_main/bazel-out/x64_windows-fastbuild/testlogs/rb/spec/integration/selenium/webdriver/select-edge-remote/test_attempts/attempt_1.log)
    1623:  �[32m[3,100 / 3,111]�[0m 12 / 27 tests, �[31m�[1m12 failed�[0m;�[0m Testing //rb/spec/integration/selenium/webdriver:navigation-edge-remote; 16s local, disk-cache ... (4 actions, 3 running)
    1624:  �[32m[3,100 / 3,111]�[0m 12 / 27 tests, �[31m�[1m12 failed�[0m;�[0m Testing //rb/spec/integration/selenium/webdriver:navigation-edge-remote; 21s local, disk-cache ... (4 actions, 3 running)
    1625:  �[31m�[1mFAIL: �[0m//rb/spec/integration/selenium/webdriver:action_builder-edge-remote (see D:/_bazel/execroot/_main/bazel-out/x64_windows-fastbuild/testlogs/rb/spec/integration/selenium/webdriver/action_builder-edge-remote/test_attempts/attempt_1.log)
    1626:  �[32m[3,100 / 3,111]�[0m 12 / 27 tests, �[31m�[1m12 failed�[0m;�[0m Testing //rb/spec/integration/selenium/webdriver:navigation-edge-remote; 23s local, disk-cache ... (4 actions, 3 running)
    1627:  �[32m[3,100 / 3,111]�[0m 12 / 27 tests, �[31m�[1m12 failed�[0m;�[0m Testing //rb/spec/integration/selenium/webdriver:navigation-edge-remote; 28s local, disk-cache ... (4 actions running)
    1628:  �[31m�[1mFAIL: �[0m//rb/spec/integration/selenium/webdriver:navigation-edge-remote (see D:/_bazel/execroot/_main/bazel-out/x64_windows-fastbuild/testlogs/rb/spec/integration/selenium/webdriver/navigation-edge-remote/test_attempts/attempt_2.log)
    1629:  �[32m[3,100 / 3,111]�[0m 12 / 27 tests, �[31m�[1m12 failed�[0m;�[0m Testing //rb/spec/integration/selenium/webdriver:navigation-edge-remote; 30s local, disk-cache ... (4 actions running)
    1630:  �[32m[3,100 / 3,111]�[0m 12 / 27 tests, �[31m�[1m12 failed�[0m;�[0m Testing //rb/spec/integration/selenium/webdriver:navigation-edge-remote; 35s local, disk-cache ... (4 actions running)
    1631:  �[31m�[1mFAIL: �[0m//rb/spec/integration/selenium/webdriver:guard-edge-remote (see D:/_bazel/execroot/_main/bazel-out/x64_windows-fastbuild/testlogs/rb/spec/integration/selenium/webdriver/guard-edge-remote/test_attempts/attempt_1.log)
    1632:  �[32m[3,100 / 3,111]�[0m 12 / 27 tests, �[31m�[1m12 failed�[0m;�[0m Testing //rb/spec/integration/selenium/webdriver:navigation-edge-remote; 36s local, disk-cache ... (4 actions running)
    1633:  �[32m[3,100 / 3,111]�[0m 12 / 27 tests, �[31m�[1m12 failed�[0m;�[0m Testing //rb/spec/integration/selenium/webdriver:navigation-edge-remote; 41s local, disk-cache ... (4 actions running)
    1634:  �[31m�[1mFAIL: �[0m//rb/spec/integration/selenium/webdriver:select-edge-remote (see D:/_bazel/execroot/_main/bazel-out/x64_windows-fastbuild/testlogs/rb/spec/integration/selenium/webdriver/select-edge-remote/test_attempts/attempt_2.log)
    1635:  �[32m[3,100 / 3,111]�[0m 12 / 27 tests, �[31m�[1m12 failed�[0m;�[0m Testing //rb/spec/integration/selenium/webdriver:navigation-edge-remote; 43s local, disk-cache ... (4 actions running)
    1636:  �[32m[3,100 / 3,111]�[0m 12 / 27 tests, �[31m�[1m12 failed�[0m;�[0m Testing //rb/spec/integration/selenium/webdriver:navigation-edge-remote; 44s local, disk-cache ... (4 actions running)
    1637:  �[32m[3,100 / 3,111]�[0m 12 / 27 tests, �[31m�[1m12 failed�[0m;�[0m Testing //rb/spec/integration/selenium/webdriver:navigation-edge-remote; 49s local, disk-cache ... (4 actions running)
    1638:  �[31m�[1mFAIL: �[0m//rb/spec/integration/selenium/webdriver:action_builder-edge-remote (see D:/_bazel/execroot/_main/bazel-out/x64_windows-fastbuild/testlogs/rb/spec/integration/selenium/webdriver/action_builder-edge-remote/test_attempts/attempt_2.log)
    1639:  �[32m[3,100 / 3,111]�[0m 12 / 27 tests, �[31m�[1m12 failed�[0m;�[0m Testing //rb/spec/integration/selenium/webdriver:navigation-edge-remote; 50s local, disk-cache ... (4 actions running)
    1640:  �[32m[3,100 / 3,111]�[0m 12 / 27 tests, �[31m�[1m12 failed�[0m;�[0m Testing //rb/spec/integration/selenium/webdriver:navigation-edge-remote; 56s local, disk-cache ... (4 actions running)
    1641:  �[31m�[1mFAIL: �[0m//rb/spec/integration/selenium/webdriver:navigation-edge-remote (see D:/_bazel/execroot/_main/bazel-out/x64_windows-fastbuild/testlogs/rb/spec/integration/selenium/webdriver/navigation-edge-remote/test.log)
    1642:  �[31m�[1mFAILED: �[0m//rb/spec/integration/selenium/webdriver:navigation-edge-remote (Summary)
    1643:  D:/_bazel/execroot/_main/bazel-out/x64_windows-fastbuild/testlogs/rb/spec/integration/selenium/webdriver/navigation-edge-remote/test.log
    1644:  D:/_bazel/execroot/_main/bazel-out/x64_windows-fastbuild/testlogs/rb/spec/integration/selenium/webdriver/navigation-edge-remote/test_attempts/attempt_1.log
    1645:  D:/_bazel/execroot/_main/bazel-out/x64_windows-fastbuild/testlogs/rb/spec/integration/selenium/webdriver/navigation-edge-remote/test_attempts/attempt_2.log
    1646:  �[32mINFO: �[0mFrom Testing //rb/spec/integration/selenium/webdriver:navigation-edge-remote:
    1647:  ==================== Test output for //rb/spec/integration/selenium/webdriver:navigation-edge-remote:
    1648:  2024-04-24 18:53:10 INFO Selenium Server Location: D:/_bazel/execroot/_main/bazel-out/x64_windows-fastbuild/bin/rb/spec/integration/selenium/webdriver/navigation-edge-remote.cmd.runfiles/_main/java/src/org/openqa/selenium/grid/selenium_server_deploy.jar
    1649:  An error occurred in a `before(:suite)` hook.
    1650:  Failure/Error: @pid = Process.spawn(*@command, options)
    1651:  Errno::EACCES:
    1652:  Permission denied - java
    1653:  # ./rb/lib/selenium/webdriver/common/child_process.rb:57:in `spawn'
    1654:  # ./rb/lib/selenium/webdriver/common/child_process.rb:57:in `start'
    1655:  # ./rb/lib/selenium/server.rb:204:in `start'
    1656:  # //?/D:/a/selenium/selenium/rb/spec/integration/selenium/webdriver/spec_helper.rb:40:in `block (2 levels) in <top (required)>'
    1657:  Finished in 0.06106 seconds (files took 1.07 seconds to load)
    1658:  0 examples, 0 failures, 1 error occurred outside of examples
    1659:  ================================================================================
    1660:  ==================== Test output for //rb/spec/integration/selenium/webdriver:navigation-edge-remote:
    1661:  2024-04-24 18:53:31 INFO Selenium Server Location: D:/_bazel/execroot/_main/bazel-out/x64_windows-fastbuild/bin/rb/spec/integration/selenium/webdriver/navigation-edge-remote.cmd.runfiles/_main/java/src/org/openqa/selenium/grid/selenium_server_deploy.jar
    1662:  An error occurred in a `before(:suite)` hook.
    1663:  Failure/Error: @pid = Process.spawn(*@command, options)
    1664:  Errno::EACCES:
    1665:  Permission denied - java
    1666:  # ./rb/lib/selenium/webdriver/common/child_process.rb:57:in `spawn'
    1667:  # ./rb/lib/selenium/webdriver/common/child_process.rb:57:in `start'
    1668:  # ./rb/lib/selenium/server.rb:204:in `start'
    1669:  # //?/D:/a/selenium/selenium/rb/spec/integration/selenium/webdriver/spec_helper.rb:40:in `block (2 levels) in <top (required)>'
    1670:  Finished in 0.04761 seconds (files took 0.609 seconds to load)
    1671:  0 examples, 0 failures, 1 error occurred outside of examples
    1672:  ================================================================================
    1673:  ==================== Test output for //rb/spec/integration/selenium/webdriver:navigation-edge-remote:
    1674:  2024-04-24 18:53:59 INFO Selenium Server Location: D:/_bazel/execroot/_main/bazel-out/x64_windows-fastbuild/bin/rb/spec/integration/selenium/webdriver/navigation-edge-remote.cmd.runfiles/_main/java/src/org/openqa/selenium/grid/selenium_server_deploy.jar
    1675:  An error occurred in a `before(:suite)` hook.
    1676:  Failure/Error: @pid = Process.spawn(*@command, options)
    1677:  Errno::EACCES:
    1678:  Permission denied - java
    1679:  # ./rb/lib/selenium/webdriver/common/child_process.rb:57:in `spawn'
    1680:  # ./rb/lib/selenium/webdriver/common/child_process.rb:57:in `start'
    1681:  # ./rb/lib/selenium/server.rb:204:in `start'
    1682:  # //?/D:/a/selenium/selenium/rb/spec/integration/selenium/webdriver/spec_helper.rb:40:in `block (2 levels) in <top (required)>'
    1683:  Finished in 0.04466 seconds (files took 0.57947 seconds to load)
    1684:  0 examples, 0 failures, 1 error occurred outside of examples
    1685:  ================================================================================
    1686:  �[32m[3,101 / 3,111]�[0m 13 / 27 tests, �[31m�[1m13 failed�[0m;�[0m Testing //rb/spec/integration/selenium/webdriver:select-edge-remote; 50s local, disk-cache ... (4 actions, 3 running)
    1687:  �[32m[3,101 / 3,111]�[0m 13 / 27 tests, �[31m�[1m13 failed�[0m;�[0m Testing //rb/spec/integration/selenium/webdriver:select-edge-remote; 55s local, disk-cache ... (4 actions, 3 running)
    1688:  �[31m�[1mFAIL: �[0m//rb/spec/integration/selenium/webdriver:guard-edge-remote (see D:/_bazel/execroot/_main/bazel-out/x64_windows-fastbuild/testlogs/rb/spec/integration/selenium/webdriver/guard-edge-remote/test_attempts/attempt_2.log)
    1689:  �[32m[3,101 / 3,111]�[0m 13 / 27 tests, �[31m�[1m13 failed�[0m;�[0m Testing //rb/spec/integration/selenium/webdriver:select-edge-remote; 57s local, disk-cache ... (4 actions, 3 running)
    1690:  �[32m[3,101 / 3,111]�[0m 13 / 27 tests, �[31m�[1m13 failed�[0m;�[0m Testing //rb/spec/integration/selenium/webdriver:select-edge-remote; 59s local, disk-cache ... (4 actions, 3 running)
    1691:  �[32m[3,101 / 3,111]�[0m 13 / 27 tests, �[31m�[1m13 failed�[0m;�[0m Testing //rb/spec/integration/selenium/webdriver:select-edge-remote; 61s local, disk-cache ... (4 actions, 3 running)
    1692:  �[32m[3,101 / 3,111]�[0m 13 / 27 tests, �[31m�[1m13 failed�[0m;�[0m Testing //rb/spec/integration/selenium/webdriver:select-edge-remote; 62s local, disk-cache ... (4 actions, 3 running)
    1693:  �[31m�[1mFAIL: �[0m//rb/spec/integration/selenium/webdriver:select-edge-remote (see D:/_bazel/execroot/_main/bazel-out/x64_windows-fastbuild/testlogs/rb/spec/integration/selenium/webdriver/select-edge-remote/test.log)
    1694:  �[31m�[1mFAILED: �[0m//rb/spec/integration/selenium/webdriver:select-edge-remote (Summary)
    1695:  D:/_bazel/execroot/_main/bazel-out/x64_windows-fastbuild/testlogs/rb/spec/integration/selenium/webdriver/select-edge-remote/test.log
    1696:  D:/_bazel/execroot/_main/bazel-out/x64_windows-fastbuild/testlogs/rb/spec/integration/selenium/webdriver/select-edge-remote/test_attempts/attempt_1.log
    1697:  D:/_bazel/execroot/_main/bazel-out/x64_windows-fastbuild/testlogs/rb/spec/integration/selenium/webdriver/select-edge-remote/test_attempts/attempt_2.log
    1698:  �[32mINFO: �[0mFrom Testing //rb/spec/integration/selenium/webdriver:select-edge-remote:
    1699:  ==================== Test output for //rb/spec/integration/selenium/webdriver:select-edge-remote:
    1700:  2024-04-24 18:53:17 INFO Selenium Server Location: D:/_bazel/execroot/_main/bazel-out/x64_windows-fastbuild/bin/rb/spec/integration/selenium/webdriver/select-edge-remote.cmd.runfiles/_main/java/src/org/openqa/selenium/grid/selenium_server_deploy.jar
    1701:  An error occurred in a `before(:suite)` hook.
    1702:  Failure/Error: @pid = Process.spawn(*@command, options)
    1703:  Errno::EACCES:
    1704:  Permission denied - java
    1705:  # ./rb/lib/selenium/webdriver/common/child_process.rb:57:in `spawn'
    1706:  # ./rb/lib/selenium/webdriver/common/child_process.rb:57:in `start'
    1707:  # ./rb/lib/selenium/server.rb:204:in `start'
    1708:  # //?/D:/a/selenium/selenium/rb/spec/integration/selenium/webdriver/spec_helper.rb:40:in `block (2 levels) in <top (required)>'
    1709:  Finished in 0.04709 seconds (files took 0.81398 seconds to load)
    1710:  0 examples, 0 failures, 1 error occurred outside of examples
    1711:  ================================================================================
    1712:  ==================== Test output for //rb/spec/integration/selenium/webdriver:select-edge-remote:
    1713:  2024-04-24 18:53:45 INFO Selenium Server Location: D:/_bazel/execroot/_main/bazel-out/x64_windows-fastbuild/bin/rb/spec/integration/selenium/webdriver/select-edge-remote.cmd.runfiles/_main/java/src/org/openqa/selenium/grid/selenium_server_deploy.jar
    1714:  An error occurred in a `before(:suite)` hook.
    1715:  Failure/Error: @pid = Process.spawn(*@command, options)
    1716:  Errno::EACCES:
    1717:  Permission denied - java
    1718:  # ./rb/lib/selenium/webdriver/common/child_process.rb:57:in `spawn'
    1719:  # ./rb/lib/selenium/webdriver/common/child_process.rb:57:in `start'
    1720:  # ./rb/lib/selenium/server.rb:204:in `start'
    1721:  # //?/D:/a/selenium/selenium/rb/spec/integration/selenium/webdriver/spec_helper.rb:40:in `block (2 levels) in <top (required)>'
    1722:  Finished in 0.04667 seconds (files took 0.63927 seconds to load)
    1723:  0 examples, 0 failures, 1 error occurred outside of examples
    1724:  ================================================================================
    1725:  ==================== Test output for //rb/spec/integration/selenium/webdriver:select-edge-remote:
    1726:  2024-04-24 18:54:12 INFO Selenium Server Location: D:/_bazel/execroot/_main/bazel-out/x64_windows-fastbuild/bin/rb/spec/integration/selenium/webdriver/select-edge-remote.cmd.runfiles/_main/java/src/org/openqa/selenium/grid/selenium_server_deploy.jar
    1727:  An error occurred in a `before(:suite)` hook.
    1728:  Failure/Error: @pid = Process.spawn(*@command, options)
    1729:  Errno::EACCES:
    1730:  Permission denied - java
    1731:  # ./rb/lib/selenium/webdriver/common/child_process.rb:57:in `spawn'
    1732:  # ./rb/lib/selenium/webdriver/common/child_process.rb:57:in `start'
    1733:  # ./rb/lib/selenium/server.rb:204:in `start'
    1734:  # //?/D:/a/selenium/selenium/rb/spec/integration/selenium/webdriver/spec_helper.rb:40:in `block (2 levels) in <top (required)>'
    1735:  Finished in 0.04792 seconds (files took 0.69054 seconds to load)
    1736:  0 examples, 0 failures, 1 error occurred outside of examples
    1737:  ================================================================================
    1738:  �[32m[3,102 / 3,111]�[0m 14 / 27 tests, �[31m�[1m14 failed�[0m;�[0m Testing //rb/spec/integration/selenium/webdriver:action_builder-edge-remote; 56s local, disk-cache ... (4 actions, 2 running)
    1739:  �[32m[3,102 / 3,111]�[0m 14 / 27 tests, �[31m�[1m14 failed�[0m;�[0m Testing //rb/spec/integration/selenium/webdriver:action_builder-edge-remote; 62s local, disk-cache ... (4 actions, 2 running)
    1740:  �[31m�[1mFAIL: �[0m//rb/spec/integration/selenium/webdriver:action_builder-edge-remote (see D:/_bazel/execroot/_main/bazel-out/x64_windows-fastbuild/testlogs/rb/spec/integration/selenium/webdriver/action_builder-edge-remote/test.log)
    1741:  ==================== Test output for //rb/spec/integration/selenium/webdriver:action_builder-edge-remote:
    1742:  2024-04-24 18:53:24 INFO Selenium Server Location: D:/_bazel/execroot/_main/bazel-out/x64_windows-fastbuild/bin/rb/spec/integration/selenium/webdriver/action_builder-edge-remote.cmd.runfiles/_main/java/src/org/openqa/selenium/grid/selenium_server_deploy.jar
    1743:  �[31m�[1mFAILED: �[0m//rb/spec/integration/selenium/webdriver:action_builder-edge-remote (Summary)
    1744:  D:/_bazel/execroot/_main/bazel-out/x64_windows-fastbuild/testlogs/rb/spec/integration/selenium/webdriver/action_builder-edge-remote/test.log
    1745:  An error occurred in a `before(:suite)` hook.
    1746:  D:/_bazel/execroot/_main/bazel-out/x64_windows-fastbuild/testlogs/rb/spec/integration/selenium/webdriver/action_builder-edge-remote/test_attempts/attempt_1.log
    1747:  Failure/Error: @pid = Process.spawn(*@command, options)
    ...
    
    1749:  �[32mINFO: �[0mFrom Testing //rb/spec/integration/selenium/webdriver:action_builder-edge-remote:
    1750:  Errno::EACCES:
    1751:  Permission denied - java
    1752:  # ./rb/lib/selenium/webdriver/common/child_process.rb:57:in `spawn'
    1753:  # ./rb/lib/selenium/webdriver/common/child_process.rb:57:in `start'
    1754:  # ./rb/lib/selenium/server.rb:204:in `start'
    1755:  # //?/D:/a/selenium/selenium/rb/spec/integration/selenium/webdriver/spec_helper.rb:40:in `block (2 levels) in <top (required)>'
    1756:  Finished in 0.04665 seconds (files took 0.62267 seconds to load)
    1757:  0 examples, 0 failures, 1 error occurred outside of examples
    1758:  ================================================================================
    1759:  ==================== Test output for //rb/spec/integration/selenium/webdriver:action_builder-edge-remote:
    1760:  2024-04-24 18:53:52 INFO Selenium Server Location: D:/_bazel/execroot/_main/bazel-out/x64_windows-fastbuild/bin/rb/spec/integration/selenium/webdriver/action_builder-edge-remote.cmd.runfiles/_main/java/src/org/openqa/selenium/grid/selenium_server_deploy.jar
    1761:  An error occurred in a `before(:suite)` hook.
    1762:  Failure/Error: @pid = Process.spawn(*@command, options)
    1763:  Errno::EACCES:
    1764:  Permission denied - java
    1765:  # ./rb/lib/selenium/webdriver/common/child_process.rb:57:in `spawn'
    1766:  # ./rb/lib/selenium/webdriver/common/child_process.rb:57:in `start'
    1767:  # ./rb/lib/selenium/server.rb:204:in `start'
    1768:  # //?/D:/a/selenium/selenium/rb/spec/integration/selenium/webdriver/spec_helper.rb:40:in `block (2 levels) in <top (required)>'
    1769:  Finished in 0.04543 seconds (files took 0.63611 seconds to load)
    1770:  0 examples, 0 failures, 1 error occurred outside of examples
    1771:  ================================================================================
    1772:  ==================== Test output for //rb/spec/integration/selenium/webdriver:action_builder-edge-remote:
    1773:  2024-04-24 18:54:20 INFO Selenium Server Location: D:/_bazel/execroot/_main/bazel-out/x64_windows-fastbuild/bin/rb/spec/integration/selenium/webdriver/action_builder-edge-remote.cmd.runfiles/_main/java/src/org/openqa/selenium/grid/selenium_server_deploy.jar
    1774:  An error occurred in a `before(:suite)` hook.
    1775:  Failure/Error: @pid = Process.spawn(*@command, options)
    1776:  Errno::EACCES:
    1777:  Permission denied - java
    1778:  # ./rb/lib/selenium/webdriver/common/child_process.rb:57:in `spawn'
    1779:  # ./rb/lib/selenium/webdriver/common/child_process.rb:57:in `start'
    1780:  # ./rb/lib/selenium/server.rb:204:in `start'
    1781:  # //?/D:/a/selenium/selenium/rb/spec/integration/selenium/webdriver/spec_helper.rb:40:in `block (2 levels) in <top (required)>'
    1782:  Finished in 0.05837 seconds (files took 0.69677 seconds to load)
    1783:  0 examples, 0 failures, 1 error occurred outside of examples
    1784:  ================================================================================
    1785:  �[32m[3,103 / 3,111]�[0m 15 / 27 tests, �[31m�[1m15 failed�[0m;�[0m Testing //rb/spec/integration/selenium/webdriver:guard-edge-remote; 50s local, disk-cache ... (4 actions, 1 running)
    1786:  �[32m[3,103 / 3,111]�[0m 15 / 27 tests, �[31m�[1m15 failed�[0m;�[0m Testing //rb/spec/integration/selenium/webdriver:guard-edge-remote; 53s local, disk-cache ... (4 actions, 1 running)
    1787:  �[32m[3,103 / 3,111]�[0m 15 / 27 tests, �[31m�[1m15 failed�[0m;�[0m Testing //rb/spec/integration/selenium/webdriver:guard-edge-remote; 55s local, disk-cache ... (4 actions, 2 running)
    1788:  �[31m�[1mFAIL: �[0m//rb/spec/integration/selenium/webdriver:guard-edge-remote (see D:/_bazel/execroot/_main/bazel-out/x64_windows-fastbuild/testlogs/rb/spec/integration/selenium/webdriver/guard-edge-remote/test.log)
    1789:  ==================== Test output for //rb/spec/integration/selenium/webdriver:guard-edge-remote:
    1790:  2024-04-24 18:53:38 INFO Selenium Server Location: D:/_bazel/execroot/_main/bazel-out/x64_windows-fastbuild/bin/rb/spec/integration/selenium/webdriver/guard-edge-remote.cmd.runfiles/_main/java/src/org/openqa/selenium/grid/selenium_server_deploy.jar
    1791:  �[31m�[1mFAILED: �[0m//rb/spec/integration/selenium/webdriver:guard-edge-remote (Summary)
    1792:  D:/_bazel/execroot/_main/bazel-out/x64_windows-fastbuild/testlogs/rb/spec/integration/selenium/webdriver/guard-edge-remote/test.log
    1793:  D:/_bazel/execroot/_main/bazel-out/x64_windows-fastbuild/testlogs/rb/spec/integration/selenium/webdriver/guard-edge-remote/test_attempts/attempt_1.log
    1794:  D:/_bazel/execroot/_main/bazel-out/x64_windows-fastbuild/testlogs/rb/spec/integration/selenium/webdriver/guard-edge-remote/test_attempts/attempt_2.log
    1795:  �[32mINFO: �[0mFrom Testing //rb/spec/integration/selenium/webdriver:guard-edge-remote:
    1796:  An error occurred in a `before(:suite)` hook.
    1797:  Failure/Error: @pid = Process.spawn(*@command, options)
    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.04439 seconds (files took 0.58185 seconds to load)
    1805:  0 examples, 0 failures, 1 error occurred outside of examples
    1806:  ================================================================================
    1807:  ==================== Test output for //rb/spec/integration/selenium/webdriver:guard-edge-remote:
    1808:  2024-04-24 18:54:05 INFO Selenium Server Location: D:/_bazel/execroot/_main/bazel-out/x64_windows-fastbuild/bin/rb/spec/integration/selenium/webdriver/guard-edge-remote.cmd.runfiles/_main/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.05306 seconds (files took 0.69283 seconds to load)
    1818:  0 examples, 0 failures, 1 error occurred outside of examples
    1819:  ================================================================================
    1820:  ==================== Test output for //rb/spec/integration/selenium/webdriver:guard-edge-remote:
    1821:  2024-04-24 18:54:27 INFO Selenium Server Location: D:/_bazel/execroot/_main/bazel-out/x64_windows-fastbuild/bin/rb/spec/integration/selenium/webdriver/guard-edge-remote.cmd.runfiles/_main/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.06656 seconds (files took 0.81932 seconds to load)
    1831:  0 examples, 0 failures, 1 error occurred outside of examples
    1832:  ================================================================================
    1833:  �[32m[3,104 / 3,111]�[0m 16 / 27 tests, �[31m�[1m16 failed�[0m;�[0m Testing //rb/spec/integration/selenium/webdriver:manager-edge-remote; 7s disk-cache ... (4 actions, 1 running)
    1834:  �[32m[3,104 / 3,111]�[0m 16 / 27 tests, �[31m�[1m16 failed�[0m;�[0m [Sched] Testing //rb/spec/integration/selenium/webdriver:storage-edge-remote; 9s ... (4 actions, 1 running)
    1835:  �[31m�[1mFAIL: �[0m//rb/spec/integration/selenium/webdriver:shadow_root-edge-remote (see D:/_bazel/execroot/_main/bazel-out/x64_windows-fastbuild/testlogs/rb/spec/integration/selenium/webdriver/shadow_root-edge-remote/test_attempts/attempt_1.log)
    1836:  �[32m[3,104 / 3,111]�[0m 16 / 27 tests, �[31m�[1m16 failed�[0m;�[0m Testing //rb/spec/integration/selenium/webdriver:shadow_root-edge-remote; 8s local, disk-cache ... (4 actions, 2 running)
    1837:  �[32m[3,104 / 3,111]�[0m 16 / 27 tests, �[31m�[1m16 failed�[0m;�[0m Testing //rb/spec/integration/selenium/webdriver:shadow_root-edge-remote; 9s local, disk-cache ... (4 actions, 2 running)
    1838:  �[32m[3,104 / 3,111]�[0m 16 / 27 tests, �[31m�[1m16 failed�[0m;�[0m Testing //rb/spec/integration/selenium/webdriver:shadow_root-edge-remote; 11s local, disk-cache ... (4 actions, 2 running)
    1839:  �[32m[3,104 / 3,111]�[0m 16 / 27 tests, �[31m�[1m16 failed�[0m;�[0m Testing //rb/spec/integration/selenium/webdriver:shadow_root-edge-remote; 12s local, disk-cache ... (4 actions, 2 running)
    1840:  �[32m[3,104 / 3,111]�[0m 16 / 27 tests, �[31m�[1m16 failed�[0m;�[0m Testing //rb/spec/integration/selenium/webdriver:shadow_root-edge-remote; 14s local, disk-cache ... (4 actions, 3 running)
    1841:  �[31m�[1mFAIL: �[0m//rb/spec/integration/selenium/webdriver:storage-edge-remote (see D:/_bazel/execroot/_main/bazel-out/x64_windows-fastbuild/testlogs/rb/spec/integration/selenium/webdriver/storage-edge-remote/test_attempts/attempt_1.log)
    1842:  �[32m[3,104 / 3,111]�[0m 16 / 27 tests, �[31m�[1m16 failed�[0m;�[0m Testing //rb/spec/integration/selenium/webdriver:shadow_root-edge-remote; 16s local, disk-cache ... (4 actions, 3 running)
    1843:  �[32m[3,104 / 3,111]�[0m 16 / 27 tests, �[31m�[1m16 failed�[0m;�[0m Testing //rb/spec/integration/selenium/webdriver:shadow_root-edge-remote; 21s local, disk-cache ... (4 actions, 3 running)
    1844:  �[31m�[1mFAIL: �[0m//rb/spec/integration/selenium/webdriver:manager-edge-remote (see D:/_bazel/execroot/_main/bazel-out/x64_windows-fastbuild/testlogs/rb/spec/integration/selenium/webdriver/manager-edge-remote/test_attempts/attempt_1.log)
    1845:  �[32m[3,104 / 3,111]�[0m 16 / 27 tests, �[31m�[1m16 failed�[0m;�[0m Testing //rb/spec/integration/selenium/webdriver:shadow_root-edge-remote; 23s local, disk-cache ... (4 actions, 3 running)
    1846:  �[32m[3,104 / 3,111]�[0m 16 / 27 tests, �[31m�[1m16 failed�[0m;�[0m Testing //rb/spec/integration/selenium/webdriver:shadow_root-edge-remote; 28s local, disk-cache ... (4 actions running)
    1847:  �[31m�[1mFAIL: �[0m//rb/spec/integration/selenium/webdriver:shadow_root-edge-remote (see D:/_bazel/execroot/_main/bazel-out/x64_windows-fastbuild/testlogs/rb/spec/integration/selenium/webdriver/shadow_root-edge-remote/test_attempts/attempt_2.log)
    1848:  �[32m[3,104 / 3,111]�[0m 16 / 27 tests, �[31m�[1m16 failed�[0m;�[0m Testing //rb/spec/integration/selenium/webdriver:shadow_root-edge-remote; 30s local, disk-cache ... (4 actions running)
    1849:  �[32m[3,104 / 3,111]�[0m 16 / 27 tests, �[31m�[1m16 failed�[0m;�[0m Testing //rb/spec/integration/selenium/webdriver:shadow_root-edge-remote; 35s local, disk-cache ... (4 actions running)
    1850:  �[31m�[1mFAIL: �[0m//rb/spec/integration/selenium/webdriver:takes_screenshot-edge-remote (see D:/_bazel/execroot/_main/bazel-out/x64_windows-fastbuild/testlogs/rb/spec/integration/selenium/webdriver/takes_screenshot-edge-remote/test_attempts/attempt_1.log)
    1851:  �[32m[3,104 / 3,111]�[0m 16 / 27 tests, �[31m�[1m16 failed�[0m;�[0m Testing //rb/spec/integration/selenium/webdriver:shadow_root-edge-remote; 37s local, disk-cache ... (4 actions running)
    1852:  �[32m[3,104 / 3,111]�[0m 16 / 27 tests, �[31m�[1m16 failed�[0m;�[0m Testing //rb/spec/integration/selenium/webdriver:shadow_root-edge-remote; 41s local, disk-cache ... (4 actions running)
    1853:  �[32m[3,104 / 3,111]�[0m 16 / 27 tests, �[31m�[1m16 failed�[0m;�[0m Testing //rb/spec/integration/selenium/webdriver:shadow_root-edge-remote; 42s local, disk-cache ... (4 actions running)
    1854:  �[31m�[1mFAIL: �[0m//rb/spec/integration/selenium/webdriver:storage-edge-remote (see D:/_bazel/execroot/_main/bazel-out/x64_windows-fastbuild/testlogs/rb/spec/integration/selenium/webdriver/storage-edge-remote/test_attempts/attempt_2.log)
    1855:  �[32m[3,104 / 3,111]�[0m 16 / 27 tests, �[31m�[1m16 failed�[0m;�[0m Testing //rb/spec/integration/selenium/webdriver:shadow_root-edge-remote; 44s local, disk-cache ... (4 actions running)
    1856:  �[32m[3,104 / 3,111]�[0m 16 / 27 tests, �[31m�[1m16 failed�[0m;�[0m Testing //rb/spec/integration/selenium/webdriver:shadow_root-edge-remote; 49s local, disk-cache ... (4 actions running)
    1857:  �[31m�[1mFAIL: �[0m//rb/spec/integration/selenium/webdriver:manager-edge-remote (see D:/_bazel/execroot/_main/bazel-out/x64_windows-fastbuild/testlogs/rb/spec/integration/selenium/webdriver/manager-edge-remote/test_attempts/attempt_2.log)
    1858:  �[32m[3,104 / 3,111]�[0m 16 / 27 tests, �[31m�[1m16 failed�[0m;�[0m Testing //rb/spec/integration/selenium/webdriver:shadow_root-edge-remote; 51s local, disk-cache ... (4 actions running)
    1859:  �[32m[3,104 / 3,111]�[0m 16 / 27 tests, �[31m�[1m16 failed�[0m;�[0m Testing //rb/spec/integration/selenium/webdriver:shadow_root-edge-remote; 55s local, disk-cache ... (4 actions running)
    1860:  �[31m�[1mFAIL: �[0m//rb/spec/integration/selenium/webdriver:shadow_root-edge-remote (see D:/_bazel/execroot/_main/bazel-out/x64_windows-fastbuild/testlogs/rb/spec/integration/selenium/webdriver/shadow_root-edge-remote/test.log)
    1861:  �[31m�[1mFAILED: �[0m//rb/spec/integration/selenium/webdriver:shadow_root-edge-remote (Summary)
    1862:  D:/_bazel/execroot/_main/bazel-out/x64_windows-fastbuild/testlogs/rb/spec/integration/selenium/webdriver/shadow_root-edge-remote/test.log
    1863:  D:/_bazel/execroot/_main/bazel-out/x64_windows-fastbuild/testlogs/rb/spec/integration/selenium/webdriver/shadow_root-edge-remote/test_attempts/attempt_1.log
    1864:  D:/_bazel/execroot/_main/bazel-out/x64_windows-fastbuild/testlogs/rb/spec/integration/selenium/webdriver/shadow_root-edge-remote/test_attempts/attempt_2.log
    1865:  �[32mINFO: �[0mFrom Testing //rb/spec/integration/selenium/webdriver:shadow_root-edge-remote:
    1866:  ==================== Test output for //rb/spec/integration/selenium/webdriver:shadow_root-edge-remote:
    1867:  2024-04-24 18:54:34 INFO Selenium Server Location: D:/_bazel/execroot/_main/bazel-out/x64_windows-fastbuild/bin/rb/spec/integration/selenium/webdriver/shadow_root-edge-remote.cmd.runfiles/_main/java/src/org/openqa/selenium/grid/selenium_server_deploy.jar
    1868:  An error occurred in a `before(:suite)` hook.
    1869:  Failure/Error: @pid = Process.spawn(*@command, options)
    1870:  Errno::EACCES:
    1871:  Permission denied - java
    1872:  # ./rb/lib/selenium/webdriver/common/child_process.rb:57:in `spawn'
    1873:  # ./rb/lib/selenium/webdriver/common/child_process.rb:57:in `start'
    1874:  # ./rb/lib/selenium/server.rb:204:in `start'
    1875:  # //?/D:/a/selenium/selenium/rb/spec/integration/selenium/webdriver/spec_helper.rb:40:in `block (2 levels) in <top (required)>'
    1876:  Finished in 0.06408 seconds (files took 0.76932 seconds to load)
    1877:  0 examples, 0 failures, 1 error occurred outside of examples
    1878:  ================================================================================
    1879:  ==================== Test output for //rb/spec/integration/selenium/webdriver:shadow_root-edge-remote:
    1880:  2024-04-24 18:54:56 INFO Selenium Server Location: D:/_bazel/execroot/_main/bazel-out/x64_windows-fastbuild/bin/rb/spec/integration/selenium/webdriver/shadow_root-edge-remote.cmd.runfiles/_main/java/src/org/openqa/selenium/grid/selenium_server_deploy.jar
    1881:  An error occurred in a `before(:suite)` hook.
    1882:  Failure/Error: @pid = Process.spawn(*@command, options)
    1883:  Errno::EACCES:
    1884:  Permission denied - java
    1885:  # ./rb/lib/selenium/webdriver/common/child_process.rb:57:in `spawn'
    1886:  # ./rb/lib/selenium/webdriver/common/child_process.rb:57:in `start'
    1887:  # ./rb/lib/selenium/server.rb:204:in `start'
    1888:  # //?/D:/a/selenium/selenium/rb/spec/integration/selenium/webdriver/spec_helper.rb:40:in `block (2 levels) in <top (required)>'
    1889:  Finished in 0.04721 seconds (files took 0.63753 seconds to load)
    1890:  0 examples, 0 failures, 1 error occurred outside of examples
    1891:  ================================================================================
    1892:  ==================== Test output for //rb/spec/integration/selenium/webdriver:shadow_root-edge-remote:
    1893:  2024-04-24 18:55:23 INFO Selenium Server Location: D:/_bazel/execroot/_main/bazel-out/x64_windows-fastbuild/bin/rb/spec/integration/selenium/webdriver/shadow_root-edge-remote.cmd.runfiles/_main/java/src/org/openqa/selenium/grid/selenium_server_deploy.jar
    1894:  An error occurred in a `before(:suite)` hook.
    1895:  Failure/Error: @pid = Process.spawn(*@command, options)
    1896:  Errno::EACCES:
    1897:  Permission denied - java
    1898:  # ./rb/lib/selenium/webdriver/common/child_process.rb:57:in `spawn'
    1899:  # ./rb/lib/selenium/webdriver/common/child_process.rb:57:in `start'
    1900:  # ./rb/lib/selenium/server.rb:204:in `start'
    1901:  # //?/D:/a/selenium/selenium/rb/spec/integration/selenium/webdriver/spec_helper.rb:40:in `block (2 levels) in <top (required)>'
    1902:  Finished in 0.04866 seconds (files took 0.6061 seconds to load)
    1903:  0 examples, 0 failures, 1 error occurred outside of examples
    1904:  ================================================================================
    1905:  �[32m[3,105 / 3,111]�[0m 17 / 27 tests, �[31m�[1m17 failed�[0m;�[0m Testing //rb/spec/integration/selenium/webdriver:storage-edge-remote; 49s local, disk-cache ... (4 actions, 3 running)
    1906:  �[32m[3,105 / 3,111]�[0m 17 / 27 tests, �[31m�[1m17 failed�[0m;�[0m Testing //rb/spec/integration/selenium/webdriver:storage-edge-remote; 55s local, disk-cache ... (4 actions, 3 running)
    1907:  �[31m�[1mFAIL: �[0m//rb/spec/integration/selenium/webdriver:takes_screenshot-edge-remote (see D:/_bazel/execroot/_main/bazel-out/x64_windows-fastbuild/testlogs/rb/spec/integration/selenium/webdriver/takes_screenshot-edge-remote/test_attempts/attempt_2.log)
    1908:  �[32m[3,105 / 3,111]�[0m 17 / 27 tests, �[31m�[1m17 failed�[0m;�[0m Testing //rb/spec/integration/selenium/webdriver:storage-edge-remote; 57s local, disk-cache ... (4 actions, 3 running)
    1909:  �[32m[3,105 / 3,111]�[0m 17 / 27 tests, �[31m�[1m17 failed�[0m;�[0m Testing //rb/spec/integration/selenium/webdriver:storage-edge-remote; 59s local, disk-cache ... (4 actions, 3 running)
    1910:  �[32m[3,105 / 3,111]�[0m 17 / 27 tests, �[31m�[1m17 failed�[0m;�[0m Testing //rb/spec/integration/selenium/webdriver:storage-edge-remote; 60s local, disk-cache ... (4 actions, 3 running)
    1911:  �[32m[3,105 / 3,111]�[0m 17 / 27 tests, �[31m�[1m17 failed�[0m;�[0m Testing //rb/spec/integration/selenium/webdriver:storage-edge-remote; 62s local, disk-cache ... (4 actions, 3 running)
    1912:  �[31m�[1mFAIL: �[0m//rb/spec/integration/selenium/webdriver:storage-edge-remote (see D:/_bazel/execroot/_main/bazel-out/x64_windows-fastbuild/testlogs/rb/spec/integration/selenium/webdriver/storage-edge-remote/test.log)
    1913:  �[31m�[1mFAILED: �[0m//rb/spec/integration/selenium/webdriver:storage-edge-remote (Summary)
    1914:  D:/_bazel/execroot/_main/bazel-out/x64_windows-fastbuild/testlogs/rb/spec/integration/selenium/webdriver/storage-edge-remote/test.log
    1915:  D:/_bazel/execroot/_main/bazel-out/x64_windows-fastbuild/testlogs/rb/spec/integration/selenium/webdriver/storage-edge-remote/test_attempts/attempt_1.log
    1916:  D:/_bazel/execroot/_main/bazel-out/x64_windows-fastbuild/testlogs/rb/spec/integration/selenium/webdriver/storage-edge-remote/test_attempts/attempt_2.log
    1917:  �[32mINFO: �[0mFrom Testing //rb/spec/integration/selenium/webdriver:storage-edge-remote:
    1918:  ==================== Test output for //rb/spec/integration/selenium/webdriver:storage-edge-remote:
    1919:  2024-04-24 18:54:42 INFO Selenium Server Location: D:/_bazel/execroot/_main/bazel-out/x64_windows-fastbuild/bin/rb/spec/integration/selenium/webdriver/storage-edge-remote.cmd.runfiles/_main/java/src/org/openqa/selenium/grid/selenium_server_deploy.jar
    1920:  An error occurred in a `before(:suite)` hook.
    1921:  Failure/Error: @pid = Process.spawn(*@command, options)
    1922:  Errno::EACCES:
    1923:  Permission denied - java
    1924:  # ./rb/lib/selenium/webdriver/common/child_process.rb:57:in `spawn'
    1925:  # ./rb/lib/selenium/webdriver/common/child_process.rb:57:in `start'
    1926:  # ./rb/lib/selenium/server.rb:204:in `start'
    1927:  # //?/D:/a/selenium/selenium/rb/spec/integration/selenium/webdriver/spec_helper.rb:40:in `block (2 levels) in <top (required)>'
    1928:  Finished in 0.05067 seconds (files took 0.85613 seconds to load)
    1929:  0 examples, 0 failures, 1 error occurred outside of examples
    1930:  ================================================================================
    1931:  ==================== Test output for //rb/spec/integration/selenium/webdriver:storage-edge-remote:
    1932:  2024-04-24 18:55:09 INFO Selenium Server Location: D:/_bazel/execroot/_main/bazel-out/x64_windows-fastbuild/bin/rb/spec/integration/selenium/webdriver/storage-edge-remote.cmd.runfiles/_main/java/src/org/openqa/selenium/grid/selenium_server_deploy.jar
    1933:  An error occurred in a `before(:suite)` hook.
    1934:  Failure/Error: @pid = Process.spawn(*@command, options)
    1935:  Errno::EACCES:
    1936:  Permission denied - java
    1937:  # ./rb/lib/selenium/webdriver/common/child_process.rb:57:in `spawn'
    1938:  # ./rb/lib/selenium/webdriver/common/child_process.rb:57:in `start'
    1939:  # ./rb/lib/selenium/server.rb:204:in `start'
    1940:  # //?/D:/a/selenium/selenium/rb/spec/integration/selenium/webdriver/spec_helper.rb:40:in `block (2 levels) in <top (required)>'
    1941:  Finished in 0.04998 seconds (files took 0.66435 seconds to load)
    1942:  0 examples, 0 failures, 1 error occurred outside of examples
    1943:  ================================================================================
    1944:  ==================== Test output for //rb/spec/integration/selenium/webdriver:storage-edge-remote:
    1945:  2024-04-24 18:55:37 INFO Selenium Server Location: D:/_bazel/execroot/_main/bazel-out/x64_windows-fastbuild/bin/rb/spec/integration/selenium/webdriver/storage-edge-remote.cmd.runfiles/_main/java/src/org/openqa/selenium/grid/selenium_server_deploy.jar
    1946:  An error occurred in a `before(:suite)` hook.
    1947:  Failure/Error: @pid = Process.spawn(*@command, options)
    1948:  Errno::EACCES:
    1949:  Permission denied - java
    1950:  # ./rb/lib/selenium/webdriver/common/child_process.rb:57:in `spawn'
    1951:  # ./rb/lib/selenium/webdriver/common/child_process.rb:57:in `start'
    1952:  # ./rb/lib/selenium/server.rb:204:in `start'
    1953:  # //?/D:/a/selenium/selenium/rb/spec/integration/selenium/webdriver/spec_helper.rb:40:in `block (2 levels) in <top (required)>'
    1954:  Finished in 0.04796 seconds (files took 0.68794 seconds to load)
    1955:  0 examples, 0 failures, 1 error occurred outside of examples
    1956:  ================================================================================
    1957:  �[32m[3,106 / 3,111]�[0m 18 / 27 tests, �[31m�[1m18 failed�[0m;�[0m Testing //rb/spec/integration/selenium/webdriver:manager-edge-remote; 57s local, disk-cache ... (4 actions, 2 running)
    1958:  �[32m[3,106 / 3,111]�[0m 18 / 27 tests, �[31m�[1m18 failed�[0m;�[0m Testing //rb/spec/integration/selenium/webdriver:manager-edge-remote; 62s local, disk-cache ... (4 actions, 2 running)
    1959:  �[31m�[1mFAIL: �[0m//rb/spec/integration/selenium/webdriver:manager-edge-remote (see D:/_bazel/execroot/_main/bazel-out/x64_windows-fastbuild/testlogs/rb/spec/integration/selenium/webdriver/manager-edge-remote/test.log)
    1960:  ==================== Test output for //rb/spec/integration/selenium/webdriver:manager-edge-remote:
    1961:  2024-04-24 18:54:49 INFO Selenium Server Location: D:/_bazel/execroot/_main/bazel-out/x64_windows-fastbuild/bin/rb/spec/integration/selenium/webdriver/manager-edge-remote.cmd.runfiles/_main/java/src/org/openqa/selenium/grid/selenium_server_deploy.jar
    1962:  �[31m�[1mFAILED: �[0m//rb/spec/integration/selenium/webdriver:manager-edge-remote (Summary)
    1963:  An error occurred in a `before(:suite)` hook.
    1964:  D:/_bazel/execroot/_main/bazel-out/x64_windows-fastbuild/testlogs/rb/spec/integration/selenium/webdriver/manager-edge-remote/test.log
    1965:  Failure/Error: @pid = Process.spawn(*@command, options)
    ...
    
    1968:  Errno::EACCES:
    1969:  �[32mINFO: �[0mFrom Testing //rb/spec/integration/selenium/webdriver:manager-edge-remote:
    1970:  Permission denied - java
    1971:  # ./rb/lib/selenium/webdriver/common/child_process.rb:57:in `spawn'
    1972:  # ./rb/lib/selenium/webdriver/common/child_process.rb:57:in `start'
    1973:  # ./rb/lib/selenium/server.rb:204:in `start'
    1974:  # //?/D:/a/selenium/selenium/rb/spec/integration/selenium/webdriver/spec_helper.rb:40:in `block (2 levels) in <top (required)>'
    1975:  Finished in 0.04728 seconds (files took 0.60121 seconds to load)
    1976:  0 examples, 0 failures, 1 error occurred outside of examples
    1977:  ================================================================================
    1978:  ==================== Test output for //rb/spec/integration/selenium/webdriver:manager-edge-remote:
    1979:  2024-04-24 18:55:16 INFO Selenium Server Location: D:/_bazel/execroot/_main/bazel-out/x64_windows-fastbuild/bin/rb/spec/integration/selenium/webdriver/manager-edge-remote.cmd.runfiles/_main/java/src/org/openqa/selenium/grid/selenium_server_deploy.jar
    1980:  An error occurred in a `before(:suite)` hook.
    1981:  Failure/Error: @pid = Process.spawn(*@command, options)
    1982:  Errno::EACCES:
    1983:  Permission denied - java
    1984:  # ./rb/lib/selenium/webdriver/common/child_process.rb:57:in `spawn'
    1985:  # ./rb/lib/selenium/webdriver/common/child_process.rb:57:in `start'
    1986:  # ./rb/lib/selenium/server.rb:204:in `start'
    1987:  # //?/D:/a/selenium/selenium/rb/spec/integration/selenium/webdriver/spec_helper.rb:40:in `block (2 levels) in <top (required)>'
    1988:  Finished in 0.0486 seconds (files took 0.60795 seconds to load)
    1989:  0 examples, 0 failures, 1 error occurred outside of examples
    1990:  ================================================================================
    1991:  ==================== Test output for //rb/spec/integration/selenium/webdriver:manager-edge-remote:
    1992:  2024-04-24 18:55:44 INFO Selenium Server Location: D:/_bazel/execroot/_main/bazel-out/x64_windows-fastbuild/bin/rb/spec/integration/selenium/webdriver/manager-edge-remote.cmd.runfiles/_main/java/src/org/openqa/selenium/grid/selenium_server_deploy.jar
    1993:  An error occurred in a `before(:suite)` hook.
    1994:  Failure/Error: @pid = Process.spawn(*@command, options)
    1995:  Errno::EACCES:
    1996:  Permission denied - java
    1997:  # ./rb/lib/selenium/webdriver/common/child_process.rb:57:in `spawn'
    1998:  # ./rb/lib/selenium/webdriver/common/child_process.rb:57:in `start'
    1999:  # ./rb/lib/selenium/server.rb:204:in `start'
    2000:  # //?/D:/a/selenium/selenium/rb/spec/integration/selenium/webdriver/spec_helper.rb:40:in `block (2 levels) in <top (required)>'
    2001:  Finished in 0.05918 seconds (files took 0.6792 seconds to load)
    2002:  0 examples, 0 failures, 1 error occurred outside of examples
    2003:  ================================================================================
    2004:  �[32m[3,107 / 3,111]�[0m 19 / 27 tests, �[31m�[1m19 failed�[0m;�[0m Testing //rb/spec/integration/selenium/webdriver:takes_screenshot-edge-remote; 50s local, disk-cache ... (4 actions, 1 running)
    2005:  �[32m[3,107 / 3,111]�[0m 19 / 27 tests, �[31m�[1m19 failed�[0m;�[0m Testing //rb/spec/integration/selenium/webdriver:takes_screenshot-edge-remote; 53s local, disk-cache ... (4 actions, 1 running)
    2006:  �[32m[3,107 / 3,111]�[0m 19 / 27 tests, �[31m�[1m19 failed�[0m;�[0m Testing //rb/spec/integration/selenium/webdriver:takes_screenshot-edge-remote; 56s local, disk-cache ... (4 actions, 2 running)
    2007:  �[31m�[1mFAIL: �[0m//rb/spec/integration/selenium/webdriver:takes_screenshot-edge-remote (see D:/_bazel/execroot/_main/bazel-out/x64_windows-fastbuild/testlogs/rb/spec/integration/selenium/webdriver/takes_screenshot-edge-remote/test.log)
    2008:  ==================== Test output for //rb/spec/integration/selenium/webdriver:takes_screenshot-edge-remote:
    2009:  �[31m�[1mFAILED: �[0m//rb/spec/integration/selenium/webdriver:takes_screenshot-edge-remote (Summary)
    2010:  2024-04-24 18:55:02 INFO Selenium Server Location: D:/_bazel/execroot/_main/bazel-out/x64_windows-fastbuild/bin/rb/spec/integration/selenium/webdriver/takes_screenshot-edge-remote.cmd.runfiles/_main/java/src/org/openqa/selenium/grid/selenium_server_deploy.jar
    2011:  D:/_bazel/execroot/_main/bazel-out/x64_windows-fastbuild/testlogs/rb/spec/integration/selenium/webdriver/takes_screenshot-edge-remote/test.log
    2012:  D:/_bazel/execroot/_main/bazel-out/x64_windows-fastbuild/testlogs/rb/spec/integration/selenium/webdriver/takes_screenshot-edge-remote/test_attempts/attempt_1.log
    2013:  D:/_bazel/execroot/_main/bazel-out/x64_windows-fastbuild/testlogs/rb/spec/integration/selenium/webdriver/takes_screenshot-edge-remote/test_attempts/attempt_2.log
    2014:  �[32mINFO: �[0mFrom Testing //rb/spec/integration/selenium/webdriver:takes_screenshot-edge-remote:
    2015:  An error occurred in a `before(:suite)` hook.
    2016:  Failure/Error: @pid = Process.spawn(*@command, options)
    2017:  Errno::EACCES:
    2018:  Permission denied - java
    2019:  # ./rb/lib/selenium/webdriver/common/child_process.rb:57:in `spawn'
    2020:  # ./rb/lib/selenium/webdriver/common/child_process.rb:57:in `start'
    2021:  # ./rb/lib/selenium/server.rb:204:in `start'
    2022:  # //?/D:/a/selenium/selenium/rb/spec/integration/selenium/webdriver/spec_helper.rb:40:in `block (2 levels) in <top (required)>'
    2023:  Finished in 0.04883 seconds (files took 0.65022 seconds to load)
    2024:  0 examples, 0 failures, 1 error occurred outside of examples
    2025:  ================================================================================
    2026:  ==================== Test output for //rb/spec/integration/selenium/webdriver:takes_screenshot-edge-remote:
    2027:  2024-04-24 18:55:30 INFO Selenium Server Location: D:/_bazel/execroot/_main/bazel-out/x64_windows-fastbuild/bin/rb/spec/integration/selenium/webdriver/takes_screenshot-edge-remote.cmd.runfiles/_main/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.05436 seconds (files took 0.80176 seconds to load)
    2037:  0 examples, 0 failures, 1 error occurred outside of examples
    2038:  ================================================================================
    2039:  ==================== Test output for //rb/spec/integration/selenium/webdriver:takes_screenshot-edge-remote:
    2040:  2024-04-24 18:55:52 INFO Selenium Server Location: D:/_bazel/execroot/_main/bazel-out/x64_windows-fastbuild/bin/rb/spec/integration/selenium/webdriver/takes_screenshot-edge-remote.cmd.runfiles/_main/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.06154 seconds (files took 0.83682 seconds to load)
    2050:  0 examples, 0 failures, 1 error occurred outside of examples
    2051:  ================================================================================
    2052:  �[32m[3,108 / 3,111]�[0m 20 / 27 tests, �[31m�[1m20 failed�[0m;�[0m Testing //rb/spec/integration/selenium/webdriver:timeout-edge-remote; 8s disk-cache ... (3 actions, 1 running)
    2053:  �[32m[3,108 / 3,111]�[0m 20 / 27 tests, �[31m�[1m20 failed�[0m;�[0m [Sched] Testing //rb/spec/integration/selenium/webdriver:element-edge-remote; 6s ... (3 actions, 1 running)
    2054:  �[32m[3,108 / 3,111]�[0m 20 / 27 tests, �[31m�[1m20 failed�[0m;�[0m Testing //rb/spec/integration/selenium/webdriver:virtual_authenticator-edge-remote; 6s local, disk-cache ... (3 actions, 2 running)
    2055:  �[31m�[1mFAIL: �[0m//rb/spec/integration/selenium/webdriver:virtual_authenticator-edge-remote (see D:/_bazel/execroot/_main/bazel-out/x64_windows-fastbuild/testlogs/rb/spec/integration/selenium/webdriver/virtual_authenticator-edge-remote/test_attempts/attempt_1.log)
    2056:  �[32m[3,108 / 3,111]�[0m 20 / 27 tests, �[31m�[1m20 failed�[0m;�[0m Testing //rb/spec/integration/selenium/webdriver:virtual_authenticator-edge-remote; 8s local, disk-cache ... (3 actions, 2 running)
    2057:  �[32m[3,108 / 3,111]�[0m 20 / 27 tests, �[31m�[1m20 failed�[0m;�[0m Testing //rb/spec/integration/selenium/webdriver:virtual_authenticator-edge-remote; 11s local, disk-cache ... (3 actions, 2 running)
    2058:  �[32m[3,108 / 3,111]�[0m 20 / 27 tests, �[31m�[1m20 failed�[0m;�[0m Testing //rb/spec/integration/selenium/webdriver:virtual_authenticator-edge-remote; 13s local, disk-cache ... (3 actions running)
    2059:  �[31m�[1mFAIL: �[0m//rb/spec/integration/selenium/webdriver:element-edge-remote (see D:/_bazel/execroot/_main/bazel-out/x64_windows-fastbuild/testlogs/rb/spec/integration/selenium/webdriver/element-edge-remote/test_attempts/attempt_1.log)
    2060:  �[32m[3,108 / 3,111]�[0m 20 / 27 tests, �[31m�[1m20 failed�[0m;�[0m Testing //rb/spec/integration/selenium/webdriver:virtual_authenticator-edge-remote; 15s local, disk-cache ... (3 actions running)
    2061:  �[32m[3,108 / 3,111]�[0m 20 / 27 tests, �[31m�[1m20 failed�[0m;�[0m Testing //rb/spec/integration/selenium/webdriver:virtual_authenticator-edge-remote; 20s local, disk-cache ... (3 actions running)
    2062:  �[31m�[1mFAIL: �[0m//rb/spec/integration/selenium/webdriver:timeout-edge-remote (see D:/_bazel/execroot/_main/bazel-out/x64_windows-fastbuild/testlogs/rb/spec/integration/selenium/webdriver/timeout-edge-remote/test_attempts/attempt_1.log)
    2063:  �[32m[3,108 / 3,111]�[0m 20 / 27 tests, �[31m�[1m20 failed�[0m;�[0m Testing //rb/spec/integration/selenium/webdriver:virtual_authenticator-edge-remote; 22s local, disk-cache ... (3 actions running)
    2064:  �[32m[3,108 / 3,111]�[0m 20 / 27 tests, �[31m�[1m20 failed�[0m;�[0m Testing //rb/spec/integration/selenium/webdriver:virtual_authenticator-edge-remote; 27s local, disk-cache ... (3 actions running)
    2065:  �[31m�[1mFAIL: �[0m//rb/spec/integration/selenium/webdriver:virtual_authenticator-edge-remote (see D:/_bazel/execroot/_main/bazel-out/x64_windows-fastbuild/testlogs/rb/spec/integration/selenium/webdriver/virtual_authenticator-edge-remote/test_attempts/attempt_2.log)
    2066:  �[32m[3,108 / 3,111]�[0m 20 / 27 tests, �[31m�[1m20 failed�[0m;�[0m Testing //rb/spec/integration/selenium/webdriver:virtual_authenticator-edge-remote; 28s local, disk-cache ... (3 actions running)
    2067:  �[32m[3,108 / 3,111]�[0m 20 / 27 tests, �[31m�[1m20 failed�[0m;�[0m Testing //rb/spec/integration/selenium/webdriver:virtual_authenticator-edge-remote; 34s local, disk-cache ... (3 actions running)
    2068:  �[31m�[1mFAIL: �[0m//rb/spec/integration/selenium/webdriver:element-edge-remote (see D:/_bazel/execroot/_main/bazel-out/x64_windows-fastbuild/testlogs/rb/spec/integration/selenium/webdriver/element-edge-remote/test_attempts/attempt_2.log)
    2069:  �[32m[3,108 / 3,111]�[0m 20 / 27 tests, �[31m�[1m20 failed�[0m;�[0m Testing //rb/spec/integration/selenium/webdriver:virtual_authenticator-edge-remote; 35s local, disk-cache ... (3 actions running)
    2070:  �[32m[3,108 / 3,111]�[0m 20 / 27 tests, �[31m�[1m20 failed�[0m;�[0m Testing //rb/spec/integration/selenium/webdriver:virtual_authenticator-edge-remote; 41s local, disk-cache ... (3 actions running)
    2071:  �[31m�[1mFAIL: �[0m//rb/spec/integration/selenium/webdriver:timeout-edge-remote (see D:/_bazel/execroot/_main/bazel-out/x64_windows-fastbuild/testlogs/rb/spec/integration/selenium/webdriver/timeout-edge-remote/test_attempts/attempt_2.log)
    2072:  �[32m[3,108 / 3,111]�[0m 20 / 27 tests, �[31m�[1m20 failed�[0m;�[0m Testing //rb/spec/integration/selenium/webdriver:virtual_authenticator-edge-remote; 42s local, disk-cache ... (3 actions running)
    2073:  �[32m[3,108 / 3,111]�[0m 20 / 27 tests, �[31m�[1m20 failed�[0m;�[0m Testing //rb/spec/integration/selenium/webdriver:virtual_authenticator-edge-remote; 48s local, disk-cache ... (3 actions running)
    2074:  �[31m�[1mFAIL: �[0m//rb/spec/integration/selenium/webdriver:virtual_authenticator-edge-remote (see D:/_bazel/execroot/_main/bazel-out/x64_windows-fastbuild/testlogs/rb/spec/integration/selenium/webdriver/virtual_authenticator-edge-remote/test.log)
    2075:  �[31m�[1mFAILED: �[0m//rb/spec/integration/selenium/webdriver:virtual_authenticator-edge-remote (Summary)
    2076:  ==================== Test output for //rb/spec/integration/selenium/webdriver:virtual_authenticator-edge-remote:
    2077:  D:/_bazel/execroot/_main/bazel-out/x64_windows-fastbuild/testlogs/rb/spec/integration/selenium/webdriver/virtual_authenticator-edge-remote/test.log
    2078:  D:/_bazel/execroot/_main/bazel-out/x64_windows-fastbuild/testlogs/rb/spec/integration/selenium/webdriver/virtual_authenticator-edge-remote/test_attempts/attempt_1.log
    2079:  D:/_bazel/execroot/_main/bazel-out/x64_windows-fastbuild/testlogs/rb/spec/integration/selenium/webdriver/virtual_authenticator-edge-remote/test_attempts/attempt_2.log
    2080:  �[32mINFO: �[0mFrom Testing //rb/spec/integration/selenium/webdriver:virtual_authenticator-edge-remote:
    2081:  2024-04-24 18:55:59 INFO Selenium Server Location: D:/_bazel/execroot/_main/bazel-out/x64_windows-fastbuild/bin/rb/spec/integration/selenium/webdriver/virtual_authenticator-edge-remote.cmd.runfiles/_main/java/src/org/openqa/selenium/grid/selenium_server_deploy.jar
    2082:  An error occurred in a `before(:suite)` hook.
    2083:  Failure/Error: @pid = Process.spawn(*@command, options)
    2084:  Errno::EACCES:
    2085:  Permission denied - java
    2086:  # ./rb/lib/selenium/webdriver/common/child_process.rb:57:in `spawn'
    2087:  # ./rb/lib/selenium/webdriver/common/child_process.rb:57:in `start'
    2088:  # ./rb/lib/selenium/server.rb:204:in `start'
    2089:  # //?/D:/a/selenium/selenium/rb/spec/integration/selenium/webdriver/spec_helper.rb:40:in `block (2 levels) in <top (required)>'
    2090:  Finished in 0.04923 seconds (files took 0.64929 seconds to load)
    2091:  0 examples, 0 failures, 1 error occurred outside of examples
    2092:  ================================================================================
    2093:  ==================== Test output for //rb/spec/integration/selenium/webdriver:virtual_authenticator-edge-remote:
    2094:  2024-04-24 18:56:19 INFO Selenium Server Location: D:/_bazel/execroot/_main/bazel-out/x64_windows-fastbuild/bin/rb/spec/integration/selenium/webdriver/virtual_authenticator-edge-remote.cmd.runfiles/_main/java/src/org/openqa/selenium/grid/selenium_server_deploy.jar
    2095:  An error occurred in a `before(:suite)` hook.
    2096:  Failure/Error: @pid = Process.spawn(*@command, options)
    2097:  Errno::EACCES:
    2098:  Permission denied - java
    2099:  # ./rb/lib/selenium/webdriver/common/child_process.rb:57:in `spawn'
    2100:  # ./rb/lib/selenium/webdriver/common/child_process.rb:57:in `start'
    2101:  # ./rb/lib/selenium/server.rb:204:in `start'
    2102:  # //?/D:/a/selenium/selenium/rb/spec/integration/selenium/webdriver/spec_helper.rb:40:in `block (2 levels) in <top (required)>'
    2103:  Finished in 0.0455 seconds (files took 0.59984 seconds to load)
    2104:  0 examples, 0 failures, 1 error occurred outside of examples
    2105:  ================================================================================
    2106:  ==================== Test output for //rb/spec/integration/selenium/webdriver:virtual_authenticator-edge-remote:
    2107:  2024-04-24 18:56:40 INFO Selenium Server Location: D:/_bazel/execroot/_main/bazel-out/x64_windows-fastbuild/bin/rb/spec/integration/selenium/webdriver/virtual_authenticator-edge-remote.cmd.runfiles/_main/java/src/org/openqa/selenium/grid/selenium_server_deploy.jar
    2108:  An error occurred in a `before(:suite)` hook.
    2109:  Failure/Error: @pid = Process.spawn(*@command, options)
    2110:  Errno::EACCES:
    2111:  Permission denied - java
    2112:  # ./rb/lib/selenium/webdriver/common/child_process.rb:57:in `spawn'
    2113:  # ./rb/lib/selenium/webdriver/common/child_process.rb:57:in `start'
    2114:  # ./rb/lib/selenium/server.rb:204:in `start'
    2115:  # //?/D:/a/selenium/selenium/rb/spec/integration/selenium/webdriver/spec_helper.rb:40:in `block (2 levels) in <top (required)>'
    2116:  Finished in 0.04711 seconds (files took 0.64644 seconds to load)
    2117:  0 examples, 0 failures, 1 error occurred outside of examples
    2118:  ================================================================================
    2119:  �[32m[3,109 / 3,111]�[0m 21 / 27 tests, �[31m�[1m21 failed�[0m;�[0m Testing //rb/spec/integration/selenium/webdriver:element-edge-remote; 42s local, disk-cache ... (2 actions running)
    2120:  �[32m[3,109 / 3,111]�[0m 21 / 27 tests, �[31m�[1m21 failed�[0m;�[0m Testing //rb/spec/integration/selenium/webdriver:element-edge-remote; 47s local, disk-cache ... (2 actions running)
    2121:  �[31m�[1mFAIL: �[0m//rb/spec/integration/selenium/webdriver:element-edge-remote (see D:/_bazel/execroot/_main/bazel-out/x64_windows-fastbuild/testlogs/rb/spec/integration/selenium/webdriver/element-edge-remote/test.log)
    2122:  �[31m�[1mFAILED: �[0m//rb/spec/integration/selenium/webdriver:element-edge-remote (Summary)
    2123:  D:/_bazel/execroot/_main/bazel-out/x64_windows-fastbuild/testlogs/rb/spec/integration/selenium/webdriver/element-edge-remote/test.log
    2124:  D:/_bazel/execroot/_main/bazel-out/x64_windows-fastbuild/testlogs/rb/spec/integration/selenium/webdriver/element-edge-remote/test_attempts/attempt_1.log
    2125:  D:/_bazel/execroot/_main/bazel-out/x64_windows-fastbuild/testlogs/rb/spec/integration/selenium/webdriver/element-edge-remote/test_attempts/attempt_2.log
    2126:  �[32mINFO: �[0mFrom Testing //rb/spec/integration/selenium/webdriver:element-edge-remote:
    2127:  ==================== Test output for //rb/spec/integration/selenium/webdriver:element-edge-remote:
    2128:  2024-04-24 18:56:05 INFO Selenium Server Location: D:/_bazel/execroot/_main/bazel-out/x64_windows-fastbuild/bin/rb/spec/integration/selenium/webdriver/element-edge-remote.cmd.runfiles/_main/java/src/org/openqa/selenium/grid/selenium_server_deploy.jar
    2129:  An error occurred in a `before(:suite)` hook.
    2130:  Failure/Error: @pid = Process.spawn(*@command, options)
    2131:  Errno::EACCES:
    2132:  Permission denied - java
    2133:  # ./rb/lib/selenium/webdriver/common/child_process.rb:57:in `spawn'
    2134:  # ./rb/lib/selenium/webdriver/common/child_process.rb:57:in `start'
    2135:  # ./rb/lib/selenium/server.rb:204:in `start'
    2136:  # //?/D:/a/selenium/selenium/rb/spec/integration/selenium/webdriver/spec_helper.rb:40:in `block (2 levels) in <top (required)>'
    2137:  Finished in 0.04678 seconds (files took 0.61021 seconds to load)
    2138:  0 examples, 0 failures, 1 error occurred outside of examples
    2139:  ================================================================================
    2140:  ==================== Test output for //rb/spec/integration/selenium/webdriver:element-edge-remote:
    2141:  2024-04-24 18:56:26 INFO Selenium Server Location: D:/_bazel/execroot/_main/bazel-out/x64_windows-fastbuild/bin/rb/spec/integration/selenium/webdriver/element-edge-remote.cmd.runfiles/_main/java/src/org/openqa/selenium/grid/selenium_server_deploy.jar
    2142:  An error occurred in a `before(:suite)` hook.
    2143:  Failure/Error: @pid = Process.spawn(*@command, options)
    2144:  Errno::EACCES:
    2145:  Permission denied - java
    2146:  # ./rb/lib/selenium/webdriver/common/child_process.rb:57:in `spawn'
    2147:  # ./rb/lib/selenium/webdriver/common/child_process.rb:57:in `start'
    2148:  # ./rb/lib/selenium/server.rb:204:in `start'
    2149:  # //?/D:/a/selenium/selenium/rb/spec/integration/selenium/webdriver/spec_helper.rb:40:in `block (2 levels) in <top (required)>'
    2150:  Finished in 0.04552 seconds (files took 0.59579 seconds to load)
    2151:  0 examples, 0 failures, 1 error occurred outside of examples
    2152:  ================================================================================
    2153:  ==================== Test output for //rb/spec/integration/selenium/webdriver:element-edge-remote:
    2154:  2024-04-24 18:56:47 INFO Selenium Server Location: D:/_bazel/execroot/_main/bazel-out/x64_windows-fastbuild/bin/rb/spec/integration/selenium/webdriver/element-edge-remote.cmd.runfiles/_main/java/src/org/openqa/selenium/grid/selenium_server_deploy.jar
    2155:  An error occurred in a `before(:suite)` hook.
    2156:  Failure/Error: @pid = Process.spawn(*@command, options)
    2157:  Errno::EACCES:
    2158:  Permission denied - java
    2159:  # ./rb/lib/selenium/webdriver/common/child_process.rb:57:in `spawn'
    2160:  # ./rb/lib/selenium/webdriver/common/child_process.rb:57:in `start'
    2161:  # ./rb/lib/selenium/server.rb:204:in `start'
    2162:  # //?/D:/a/selenium/selenium/rb/spec/integration/selenium/webdriver/spec_helper.rb:40:in `block (2 levels) in <top (required)>'
    2163:  Finished in 0.04852 seconds (files took 0.61487 seconds to load)
    2164:  0 examples, 0 failures, 1 error occurred outside of examples
    2165:  ================================================================================
    2166:  �[32m[3,110 / 3,111]�[0m 22 / 27 tests, �[31m�[1m22 failed�[0m;�[0m Testing //rb/spec/integration/selenium/webdriver:timeout-edge-remote; 42s local, disk-cache
    2167:  �[32m[3,110 / 3,111]�[0m 22 / 27 tests, �[31m�[1m22 failed�[0m;�[0m Testing //rb/spec/integration/selenium/webdriver:timeout-edge-remote; 47s local, disk-cache
    2168:  �[31m�[1mFAIL: �[0m//rb/spec/integration/selenium/webdriver:timeout-edge-remote (see D:/_bazel/execroot/_main/bazel-out/x64_windows-fastbuild/testlogs/rb/spec/integration/selenium/webdriver/timeout-edge-remote/test.log)
    2169:  �[31m�[1mFAILED: �[0m//rb/spec/integration/selenium/webdriver:timeout-edge-remote (Summary)
    2170:  D:/_bazel/execroot/_main/bazel-out/x64_windows-fastbuild/testlogs/rb/spec/integration/selenium/webdriver/timeout-edge-remote/test.log
    2171:  D:/_bazel/execroot/_main/bazel-out/x64_windows-fastbuild/testlogs/rb/spec/integration/selenium/webdriver/timeout-edge-remote/test_attempts/attempt_1.log
    2172:  D:/_bazel/execroot/_main/bazel-out/x64_windows-fastbuild/testlogs/rb/spec/integration/selenium/webdriver/timeout-edge-remote/test_attempts/attempt_2.log
    2173:  �[32mINFO: �[0mFrom Testing //rb/spec/integration/selenium/webdriver:timeout-edge-remote:
    2174:  ==================== Test output for //rb/spec/integration/selenium/webdriver:timeout-edge-remote:
    2175:  2024-04-24 18:56:12 INFO Selenium Server Location: D:/_bazel/execroot/_main/bazel-out/x64_windows-fastbuild/bin/rb/spec/integration/selenium/webdriver/timeout-edge-remote.cmd.runfiles/_main/java/src/org/openqa/selenium/grid/selenium_server_deploy.jar
    2176:  An error occurred in a `before(:suite)` hook.
    2177:  Failure/Error: @pid = Process.spawn(*@command, options)
    2178:  Errno::EACCES:
    2179:  Permission denied - java
    2180:  # ./rb/lib/selenium/webdriver/common/child_process.rb:57:in `spawn'
    2181:  # ./rb/lib/selenium/webdriver/common/child_process.rb:57:in `start'
    2182:  # ./rb/lib/selenium/server.rb:204:in `start'
    2183:  # //?/D:/a/selenium/selenium/rb/spec/integration/selenium/webdriver/spec_helper.rb:40:in `block (2 levels) in <top (required)>'
    2184:  Finished in 0.0473 seconds (files took 0.69877 seconds to load)
    2185:  0 examples, 0 failures, 1 error occurred outside of examples
    2186:  ================================================================================
    2187:  ==================== Test output for //rb/spec/integration/selenium/webdriver:timeout-edge-remote:
    2188:  2024-04-24 18:56:33 INFO Selenium Server Location: D:/_bazel/execroot/_main/bazel-out/x64_windows-fastbuild/bin/rb/spec/integration/selenium/webdriver/timeout-edge-remote.cmd.runfiles/_main/java/src/org/openqa/selenium/grid/selenium_server_deploy.jar
    2189:  An error occurred in a `before(:suite)` hook.
    2190:  Failure/Error: @pid = Process.spawn(*@command, options)
    2191:  Errno::EACCES:
    2192:  Permission denied - java
    2193:  # ./rb/lib/selenium/webdriver/common/child_process.rb:57:in `spawn'
    2194:  # ./rb/lib/selenium/webdriver/common/child_process.rb:57:in `start'
    2195:  # ./rb/lib/selenium/server.rb:204:in `start'
    2196:  # //?/D:/a/selenium/selenium/rb/spec/integration/selenium/webdriver/spec_helper.rb:40:in `block (2 levels) in <top (required)>'
    2197:  Finished in 0.04601 seconds (files took 0.63792 seconds to load)
    2198:  0 examples, 0 failures, 1 error occurred outside of examples
    2199:  ================================================================================
    2200:  ==================== Test output for //rb/spec/integration/selenium/webdriver:timeout-edge-remote:
    2201:  2024-04-24 18:56:53 INFO Selenium Server Location: D:/_bazel/execroot/_main/bazel-out/x64_windows-fastbuild/bin/rb/spec/integration/selenium/webdriver/timeout-edge-remote.cmd.runfiles/_main/java/src/org/openqa/selenium/grid/selenium_server_deploy.jar
    2202:  An error occurred in a `before(:suite)` hook.
    2203:  Failure/Error: @pid = Process.spawn(*@command, options)
    2204:  Errno::EACCES:
    2205:  Permission denied - java
    2206:  # ./rb/lib/selenium/webdriver/common/child_process.rb:57:in `spawn'
    2207:  # ./rb/lib/selenium/webdriver/common/child_process.rb:57:in `start'
    2208:  # ./rb/lib/selenium/server.rb:204:in `start'
    2209:  # //?/D:/a/selenium/selenium/rb/spec/integration/selenium/webdriver/spec_helper.rb:40:in `block (2 levels) in <top (required)>'
    2210:  Finished in 0.04617 seconds (files took 0.59979 seconds to load)
    2211:  0 examples, 0 failures, 1 error occurred outside of examples
    2212:  ================================================================================
    2213:  �[32m[3,111 / 3,112]�[0m 23 / 27 tests, �[31m�[1m23 failed�[0m;�[0m Testing //rb/spec/integration/selenium/webdriver:devtools-edge-remote; 0s disk-cache
    2214:  �[32m[3,111 / 3,112]�[0m 23 / 27 tests, �[31m�[1m23 failed�[0m;�[0m [Sched] Testing //rb/spec/integration/selenium/webdriver:devtools-edge-remote
    2215:  �[32m[3,111 / 3,112]�[0m 23 / 27 tests, �[31m�[1m23 failed�[0m;�[0m Testing //rb/spec/integration/selenium/webdriver:devtools-edge-remote; 1s local, disk-cache
    2216:  �[32m[3,111 / 3,112]�[0m 23 / 27 tests, �[31m�[1m23 failed�[0m;�[0m Testing //rb/spec/integration/selenium/webdriver:devtools-edge-remote; 6s local, disk-cache
    2217:  �[31m�[1mFAIL: �[0m//rb/spec/integration/selenium/webdriver:devtools-edge-remote (see D:/_bazel/execroot/_main/bazel-out/x64_windows-fastbuild/testlogs/rb/spec/integration/selenium/webdriver/devtools-edge-remote/test_attempts/attempt_1.log)
    2218:  �[32m[3,111 / 3,112]�[0m 23 / 27 tests, �[31m�[1m23 failed�[0m;�[0m Testing //rb/spec/integration/selenium/webdriver:devtools-edge-remote; 7s local, disk-cache
    2219:  �[32m[3,111 / 3,112]�[0m 23 / 27 tests, �[31m�[1m23 failed�[0m;�[0m Testing //rb/spec/integration/selenium/webdriver:devtools-edge-remote; 14s local, disk-cache
    2220:  �[31m�[1mFAIL: �[0m//rb/spec/integration/selenium/webdriver:devtools-edge-remote (see D:/_bazel/execroot/_main/bazel-out/x64_windows-fastbuild/testlogs/rb/spec/integration/selenium/webdriver/devtools-edge-remote/test_attempts/attempt_2.log)
    2221:  �[32m[3,111 / 3,112]�[0m 23 / 27 tests, �[31m�[1m23 failed�[0m;�[0m Testing //rb/spec/integration/selenium/webdriver:devtools-edge-remote; 15s local, disk-cache
    2222:  �[32m[3,111 / 3,112]�[0m 23 / 27 tests, �[31m�[1m23 failed�[0m;�[0m Testing //rb/spec/integration/selenium/webdriver:devtools-edge-remote; 21s local, disk-cache
    2223:  �[31m�[1mFAIL: �[0m//rb/spec/integration/selenium/webdriver:devtools-edge-remote (see D:/_bazel/execroot/_main/bazel-out/x64_windows-fastbuild/testlogs/rb/spec/integration/selenium/webdriver/devtools-edge-remote/test.log)
    2224:  �[31m�[1mFAILED: �[0m//rb/spec/integration/selenium/webdriver:devtools-edge-remote (Summary)
    2225:  D:/_bazel/execroot/_main/bazel-out/x64_windows-fastbuild/testlogs/rb/spec/integration/selenium/webdriver/devtools-edge-remote/test.log
    2226:  D:/_bazel/execroot/_main/bazel-out/x64_windows-fastbuild/testlogs/rb/spec/integration/selenium/webdriver/devtools-edge-remote/test_attempts/attempt_1.log
    2227:  D:/_bazel/execroot/_main/bazel-out/x64_windows-fastbuild/testlogs/rb/spec/integration/selenium/webdriver/devtools-edge-remote/test_attempts/attempt_2.log
    2228:  �[32mINFO: �[0mFrom Testing //rb/spec/integration/selenium/webdriver:devtools-edge-remote:
    2229:  ==================== Test output for //rb/spec/integration/selenium/webdriver:devtools-edge-remote:
    2230:  2024-04-24 18:57:10 INFO Selenium Server Location: D:/_bazel/execroot/_main/bazel-out/x64_windows-fastbuild/bin/rb/spec/integration/selenium/webdriver/devtools-edge-remote.cmd.runfiles/_main/java/src/org/openqa/selenium/grid/selenium_server_deploy.jar
    2231:  An error occurred in a `before(:suite)` hook.
    2232:  Failure/Error: @pid = Process.spawn(*@command, options)
    2233:  Errno::EACCES:
    2234:  Permission denied - java
    2235:  # ./rb/lib/selenium/webdriver/common/child_process.rb:57:in `spawn'
    2236:  # ./rb/lib/selenium/webdriver/common/child_process.rb:57:in `start'
    2237:  # ./rb/lib/selenium/server.rb:204:in `start'
    2238:  # //?/D:/a/selenium/selenium/rb/spec/integration/selenium/webdriver/spec_helper.rb:40:in `block (2 levels) in <top (required)>'
    2239:  Finished in 0.04513 seconds (files took 0.59997 seconds to load)
    2240:  0 examples, 0 failures, 1 error occurred outside of examples
    2241:  ================================================================================
    2242:  ==================== Test output for //rb/spec/integration/selenium/webdriver:devtools-edge-remote:
    2243:  2024-04-24 18:57:18 INFO Selenium Server Location: D:/_bazel/execroot/_main/bazel-out/x64_windows-fastbuild/bin/rb/spec/integration/selenium/webdriver/devtools-edge-remote.cmd.runfiles/_main/java/src/org/openqa/selenium/grid/selenium_server_deploy.jar
    2244:  An error occurred in a `before(:suite)` hook.
    2245:  Failure/Error: @pid = Process.spawn(*@command, options)
    2246:  Errno::EACCES:
    2247:  Permission denied - java
    2248:  # ./rb/lib/selenium/webdriver/common/child_process.rb:57:in `spawn'
    2249:  # ./rb/lib/selenium/webdriver/common/child_process.rb:57:in `start'
    2250:  # ./rb/lib/selenium/server.rb:204:in `start'
    2251:  # //?/D:/a/selenium/selenium/rb/spec/integration/selenium/webdriver/spec_helper.rb:40:in `block (2 levels) in <top (required)>'
    2252:  Finished in 0.04635 seconds (files took 0.60433 seconds to load)
    2253:  0 examples, 0 failures, 1 error occurred outside of examples
    2254:  ================================================================================
    2255:  ==================== Test output for //rb/spec/integration/selenium/webdriver:devtools-edge-remote:
    2256:  2024-04-24 18:57:25 INFO Selenium Server Location: D:/_bazel/execroot/_main/bazel-out/x64_windows-fastbuild/bin/rb/spec/integration/selenium/webdriver/devtools-edge-remote.cmd.runfiles/_main/java/src/org/openqa/selenium/grid/selenium_server_deploy.jar
    2257:  An error occurred in a `before(:suite)` hook.
    2258:  Failure/Error: @pid = Process.spawn(*@command, options)
    2259:  Errno::EACCES:
    2260:  Permission denied - java
    2261:  # ./rb/lib/selenium/webdriver/common/child_process.rb:57:in `spawn'
    2262:  # ./rb/lib/selenium/webdriver/common/child_process.rb:57:in `start'
    2263:  # ./rb/lib/selenium/server.rb:204:in `start'
    2264:  # //?/D:/a/selenium/selenium/rb/spec/integration/selenium/webdriver/spec_helper.rb:40:in `block (2 levels) in <top (required)>'
    2265:  Finished in 0.04936 seconds (files took 0.65575 seconds to load)
    2266:  0 examples, 0 failures, 1 error occurred outside of examples
    2267:  ================================================================================
    2268:  �[32m[3,112 / 3,113]�[0m 24 / 27 tests, �[31m�[1m24 failed�[0m;�[0m Testing //rb/spec/integration/selenium/webdriver:bidi-edge-remote; 0s disk-cache
    2269:  �[32m[3,112 / 3,113]�[0m 24 / 27 tests, �[31m�[1m24 failed�[0m;�[0m [Sched] Testing //rb/spec/integration/selenium/webdriver:bidi-edge-remote
    2270:  �[32m[3,112 / 3,113]�[0m 24 / 27 tests, �[31m�[1m24 failed�[0m;�[0m Testing //rb/spec/integration/selenium/webdriver:bidi-edge-remote; 1s local, disk-cache
    2271:  �[32m[3,112 / 3,113]�[0m 24 / 27 tests, �[31m�[1m24 failed�[0m;�[0m Testing //rb/spec/integration/selenium/webdriver:bidi-edge-remote; 6s local, disk-cache
    2272:  �[31m�[1mFAIL: �[0m//rb/spec/integration/selenium/webdriver:bidi-edge-remote (see D:/_bazel/execroot/_main/bazel-out/x64_windows-fastbuild/testlogs/rb/spec/integration/selenium/webdriver/bidi-edge-remote/test_attempts/attempt_1.log)
    2273:  �[32m[3,112 / 3,113]�[0m 24 / 27 tests, �[31m�[1m24 failed�[0m;�[0m Testing //rb/spec/integration/selenium/webdriver:bidi-edge-remote; 8s local, disk-cache
    2274:  �[32m[3,112 / 3,113]�[0m 24 / 27 tests, �[31m�[1m24 failed�[0m;�[0m Testing //rb/spec/integration/selenium/webdriver:bidi-edge-remote; 14s local, disk-cache
    2275:  �[31m�[1mFAIL: �[0m//rb/spec/integration/selenium/webdriver:bidi-edge-remote (see D:/_bazel/execroot/_main/bazel-out/x64_windows-fastbuild/testlogs/rb/spec/integration/selenium/webdriver/bidi-edge-remote/test_attempts/attempt_2.log)
    2276:  �[32m[3,112 / 3,113]�[0m 24 / 27 tests, �[31m�[1m24 failed�[0m;�[0m Testing //rb/spec/integration/selenium/webdriver:bidi-edge-remote; 15s local, disk-cache
    2277:  �[32m[3,112 / 3,113]�[0m 24 / 27 tests, �[31m�[1m24 failed�[0m;�[0m Testing //rb/spec/integration/selenium/webdriver:bidi-edge-remote; 21s local, disk-cache
    2278:  �[31m�[1mFAIL: �[0m//rb/spec/integration/selenium/webdriver:bidi-edge-remote (see D:/_bazel/execroot/_main/bazel-out/x64_windows-fastbuild/testlogs/rb/spec/integration/selenium/webdriver/bidi-edge-remote/test.log)
    2279:  �[31m�[1mFAILED: �[0m//rb/spec/integration/selenium/webdriver:bidi-edge-remote (Summary)
    2280:  D:/_bazel/execroot/_main/bazel-out/x64_windows-fastbuild/testlogs/rb/spec/integration/selenium/webdriver/bidi-edge-remote/test.log
    2281:  D:/_bazel/execroot/_main/bazel-out/x64_windows-fastbuild/testlogs/rb/spec/integration/selenium/webdriver/bidi-edge-remote/test_attempts/attempt_1.log
    2282:  ==================== Test output for //rb/spec/integration/selenium/webdriver:bidi-edge-remote:
    2283:  D:/_bazel/execroot/_main/bazel-out/x64_windows-fastbuild/testlogs/rb/spec/integration/selenium/webdriver/bidi-edge-remote/test_attempts/attempt_2.log
    2284:  �[32mINFO: �[0mFrom Testing //rb/spec/integration/selenium/webdriver:bidi-edge-remote:
    2285:  2024-04-24 18:57:42 INFO Selenium Server Location: D:/_bazel/execroot/_main/bazel-out/x64_windows-fastbuild/bin/rb/spec/integration/selenium/webdriver/bidi-edge-remote.cmd.runfiles/_main/java/src/org/openqa/selenium/grid/selenium_server_deploy.jar
    2286:  An error occurred in a `before(:suite)` hook.
    2287:  Failure/Error: @pid = Process.spawn(*@command, options)
    2288:  Errno::EACCES:
    2289:  Permission denied - java
    2290:  # ./rb/lib/selenium/webdriver/common/child_process.rb:57:in `spawn'
    2291:  # ./rb/lib/selenium/webdriver/common/child_process.rb:57:in `start'
    2292:  # ./rb/lib/selenium/server.rb:204:in `start'
    2293:  # //?/D:/a/selenium/selenium/rb/spec/integration/selenium/webdriver/spec_helper.rb:40:in `block (2 levels) in <top (required)>'
    2294:  Finished in 0.04672 seconds (files took 0.6184 seconds to load)
    2295:  0 examples, 0 failures, 1 error occurred outside of examples
    2296:  ================================================================================
    2297:  ==================== Test output for //rb/spec/integration/selenium/webdriver:bidi-edge-remote:
    2298:  2024-04-24 18:57:49 INFO Selenium Server Location: D:/_bazel/execroot/_main/bazel-out/x64_windows-fastbuild/bin/rb/spec/integration/selenium/webdriver/bidi-edge-remote.cmd.runfiles/_main/java/src/org/openqa/selenium/grid/selenium_server_deploy.jar
    2299:  An error occurred in a `before(:suite)` hook.
    2300:  Failure/Error: @pid = Process.spawn(*@command, options)
    2301:  Errno::EACCES:
    2302:  Permission denied - java
    2303:  # ./rb/lib/selenium/webdriver/common/child_process.rb:57:in `spawn'
    2304:  # ./rb/lib/selenium/webdriver/common/child_process.rb:57:in `start'
    2305:  # ./rb/lib/selenium/server.rb:204:in `start'
    2306:  # //?/D:/a/selenium/selenium/rb/spec/integration/selenium/webdriver/spec_helper.rb:40:in `block (2 levels) in <top (required)>'
    2307:  Finished in 0.04724 seconds (files took 0.6341 seconds to load)
    2308:  0 examples, 0 failures, 1 error occurred outside of examples
    2309:  ================================================================================
    2310:  ==================== Test output for //rb/spec/integration/selenium/webdriver:bidi-edge-remote:
    2311:  2024-04-24 18:57:57 INFO Selenium Server Location: D:/_bazel/execroot/_main/bazel-out/x64_windows-fastbuild/bin/rb/spec/integration/selenium/webdriver/bidi-edge-remote.cmd.runfiles/_main/java/src/org/openqa/selenium/grid/selenium_server_deploy.jar
    2312:  An error occurred in a `before(:suite)` hook.
    2313:  Failure/Error: @pid = Process.spawn(*@command, options)
    2314:  Errno::EACCES:
    2315:  Permission denied - java
    2316:  # ./rb/lib/selenium/webdriver/common/child_process.rb:57:in `spawn'
    2317:  # ./rb/lib/selenium/webdriver/common/child_process.rb:57:in `start'
    2318:  # ./rb/lib/selenium/server.rb:204:in `start'
    2319:  # //?/D:/a/selenium/selenium/rb/spec/integration/selenium/webdriver/spec_helper.rb:40:in `block (2 levels) in <top (required)>'
    2320:  Finished in 0.0473 seconds (files took 0.61518 seconds to load)
    2321:  0 examples, 0 failures, 1 error occurred outside of examples
    2322:  ================================================================================
    2323:  �[32m[3,113 / 3,114]�[0m 25 / 27 tests, �[31m�[1m25 failed�[0m;�[0m Testing //rb/spec/integration/selenium/webdriver/bidi:browsing_context-edge-remote; 1s disk-cache
    2324:  �[32m[3,113 / 3,114]�[0m 25 / 27 tests, �[31m�[1m25 failed�[0m;�[0m [Sched] Testing //rb/spec/integration/selenium/webdriver/bidi:browsing_context-edge-remote
    2325:  �[32m[3,113 / 3,114]�[0m 25 / 27 tests, �[31m�[1m25 failed�[0m;�[0m Testing //rb/spec/integration/selenium/webdriver/bidi:browsing_context-edge-remote; 1s local, disk-cache
    2326:  �[32m[3,113 / 3,114]�[0m 25 / 27 tests, �[31m�[1m25 failed�[0m;�[0m Testing //rb/spec/integration/selenium/webdriver/bidi:browsing_context-edge-remote; 6s local, disk-cache
    2327:  �[31m�[1mFAIL: �[0m//rb/spec/integration/selenium/webdriver/bidi:browsing_context-edge-remote (see D:/_bazel/execroot/_main/bazel-out/x64_windows-fastbuild/testlogs/rb/spec/integration/selenium/webdriver/bidi/browsing_context-edge-remote/test_attempts/attempt_1.log)
    2328:  �[32m[3,113 / 3,114]�[0m 25 / 27 tests, �[31m�[1m25 failed�[0m;�[0m Testing //rb/spec/integration/selenium/webdriver/bidi:browsing_context-edge-remote; 8s local, disk-cache
    2329:  �[32m[3,113 / 3,114]�[0m 25 / 27 tests, �[31m�[1m25 failed�[0m;�[0m Testing //rb/spec/integration/selenium/webdriver/bidi:browsing_context-edge-remote; 14s local, disk-cache
    2330:  �[31m�[1mFAIL: �[0m//rb/spec/integration/selenium/webdriver/bidi:browsing_context-edge-remote (see D:/_bazel/execroot/_main/bazel-out/x64_windows-fastbuild/testlogs/rb/spec/integration/selenium/webdriver/bidi/browsing_context-edge-remote/test_attempts/attempt_2.log)
    2331:  �[32m[3,113 / 3,114]�[0m 25 / 27 tests, �[31m�[1m25 failed�[0m;�[0m Testing //rb/spec/integration/selenium/webdriver/bidi:browsing_context-edge-remote; 16s local, disk-cache
    2332:  �[32m[3,113 / 3,114]�[0m 25 / 27 tests, �[31m�[1m25 failed�[0m;�[0m Testing //rb/spec/integration/selenium/webdriver/bidi:browsing_context-edge-remote; 21s local, disk-cache
    2333:  �[31m�[1mFAIL: �[0m//rb/spec/integration/selenium/webdriver/bidi:browsing_context-edge-remote (see D:/_bazel/execroot/_main/bazel-out/x64_windows-fastbuild/testlogs/rb/spec/integration/selenium/webdriver/bidi/browsing_context-edge-remote/test.log)
    2334:  �[31m�[1mFAILED: �[0m//rb/spec/integration/selenium/webdriver/bidi:browsing_context-edge-remote (Summary)
    2335:  D:/_bazel/execroot/_main/bazel-out/x64_windows-fastbuild/testlogs/rb/spec/integration/selenium/webdriver/bidi/browsing_context-edge-remote/test.log
    2336:  D:/_bazel/execroot/_main/bazel-out/x64_windows-fastbuild/testlogs/rb/spec/integration/selenium/webdriver/bidi/browsing_context-edge-remote/test_attempts/attempt_1.log
    2337:  D:/_bazel/execroot/_main/bazel-out/x64_windows-fastbuild/testlogs/rb/spec/integration/selenium/webdriver/bidi/browsing_context-edge-remote/test_attempts/attempt_2.log
    2338:  �[32mINFO: �[0mFrom Testing //rb/spec/integration/selenium/webdriver/bidi:browsing_context-edge-remote:
    2339:  ==================== Test output for //rb/spec/integration/selenium/webdriver/bidi:browsing_context-edge-remote:
    2340:  2024-04-24 18:58:14 INFO Selenium Server Location: D:/_bazel/execroot/_main/bazel-out/x64_windows-fastbuild/bin/rb/spec/integration/selenium/webdriver/bidi/browsing_context-edge-remote.cmd.runfiles/_main/java/src/org/openqa/selenium/grid/selenium_server_deploy.jar
    2341:  An error occurred in a `before(:suite)` hook.
    2342:  Failure/Error: @pid = Process.spawn(*@command, options)
    2343:  Errno::EACCES:
    2344:  Permission denied - java
    2345:  # ./rb/lib/selenium/webdriver/common/child_process.rb:57:in `spawn'
    2346:  # ./rb/lib/selenium/webdriver/common/child_process.rb:57:in `start'
    2347:  # ./rb/lib/selenium/server.rb:204:in `start'
    2348:  # //?/D:/a/selenium/selenium/rb/spec/integration/selenium/webdriver/spec_helper.rb:40:in `block (2 levels) in <top (required)>'
    2349:  Finished in 0.04789 seconds (files took 0.62893 seconds to load)
    2350:  0 examples, 0 failures, 1 error occurred outside of examples
    2351:  ================================================================================
    2352:  ==================== Test output for //rb/spec/integration/selenium/webdriver/bidi:browsing_context-edge-remote:
    2353:  2024-04-24 18:58:21 INFO Selenium Server Location: D:/_bazel/execroot/_main/bazel-out/x64_windows-fastbuild/bin/rb/spec/integration/selenium/webdriver/bidi/browsing_context-edge-remote.cmd.runfiles/_main/java/src/org/openqa/selenium/grid/selenium_server_deploy.jar
    2354:  An error occurred in a `before(:suite)` hook.
    2355:  Failure/Error: @pid = Process.spawn(*@command, options)
    2356:  Errno::EACCES:
    2357:  Permission denied - java
    2358:  # ./rb/lib/selenium/webdriver/common/child_process.rb:57:in `spawn'
    2359:  # ./rb/lib/selenium/webdriver/common/child_process.rb:57:in `start'
    2360:  # ./rb/lib/selenium/server.rb:204:in `start'
    2361:  # //?/D:/a/selenium/selenium/rb/spec/integration/selenium/webdriver/spec_helper.rb:40:in `block (2 levels) in <top (required)>'
    2362:  Finished in 0.04962 seconds (files took 0.67195 seconds to load)
    2363:  0 examples, 0 failures, 1 error occurred outside of examples
    2364:  ================================================================================
    2365:  ==================== Test output for //rb/spec/integration/selenium/webdriver/bidi:browsing_context-edge-remote:
    2366:  2024-04-24 18:58:29 INFO Selenium Server Location: D:/_bazel/execroot/_main/bazel-out/x64_windows-fastbuild/bin/rb/spec/integration/selenium/webdriver/bidi/browsing_context-edge-remote.cmd.runfiles/_main/java/src/org/openqa/selenium/grid/selenium_server_deploy.jar
    2367:  An error occurred in a `before(:suite)` hook.
    2368:  Failure/Error: @pid = Process.spawn(*@command, options)
    2369:  Errno::EACCES:
    2370:  Permission denied - java
    2371:  # ./rb/lib/selenium/webdriver/common/child_process.rb:57:in `spawn'
    2372:  # ./rb/lib/selenium/webdriver/common/child_process.rb:57:in `start'
    2373:  # ./rb/lib/selenium/server.rb:204:in `start'
    2374:  # //?/D:/a/selenium/selenium/rb/spec/integration/selenium/webdriver/spec_helper.rb:40:in `block (2 levels) in <top (required)>'
    2375:  Finished in 0.04693 seconds (files took 0.63006 seconds to load)
    2376:  0 examples, 0 failures, 1 error occurred outside of examples
    2377:  ================================================================================
    2378:  �[32m[3,114 / 3,115]�[0m 26 / 27 tests, �[31m�[1m26 failed�[0m;�[0m Testing //rb/spec/integration/selenium/webdriver/bidi:log_inspector-edge-remote; 1s disk-cache
    2379:  �[32m[3,114 / 3,115]�[0m 26 / 27 tests, �[31m�[1m26 failed�[0m;�[0m [Sched] Testing //rb/spec/integration/selenium/webdriver/bidi:log_inspector-edge-remote
    2380:  �[32m[3,114 / 3,115]�[0m 26 / 27 tests, �[31m�[1m26 failed�[0m;�[0m Testing //rb/spec/integration/selenium/webdriver/bidi:log_inspector-edge-remote; 1s local, disk-cache
    2381:  �[32m[3,114 / 3,115]�[0m 26 / 27 tests, �[31m�[1m26 failed�[0m;�[0m Testing //rb/spec/integration/selenium/webdriver/bidi:log_inspector-edge-remote; 6s local, disk-cache
    2382:  �[31m�[1mFAIL: �[0m//rb/spec/integration/selenium/webdriver/bidi:log_inspector-edge-remote (see D:/_bazel/execroot/_main/bazel-out/x64_windows-fastbuild/testlogs/rb/spec/integration/selenium/webdriver/bidi/log_inspector-edge-remote/test_attempts/attempt_1.log)
    2383:  �[32m[3,114 / 3,115]�[0m 26 / 27 tests, �[31m�[1m26 failed�[0m;�[0m Testing //rb/spec/integration/selenium/webdriver/bidi:log_inspector-edge-remote; 8s local, disk-cache
    2384:  �[32m[3,114 / 3,115]�[0m 26 / 27 tests, �[31m�[1m26 failed�[0m;�[0m Testing //rb/spec/integration/selenium/webdriver/bidi:log_inspector-edge-remote; 14s local, disk-cache
    2385:  �[31m�[1mFAIL: �[0m//rb/spec/integration/selenium/webdriver/bidi:log_inspector-edge-remote (see D:/_bazel/execroot/_main/bazel-out/x64_windows-fastbuild/testlogs/rb/spec/integration/selenium/webdriver/bidi/log_inspector-edge-remote/test_attempts/attempt_2.log)
    2386:  �[32m[3,114 / 3,115]�[0m 26 / 27 tests, �[31m�[1m26 failed�[0m;�[0m Testing //rb/spec/integration/selenium/webdriver/bidi:log_inspector-edge-remote; 16s local, disk-cache
    2387:  �[32m[3,114 / 3,115]�[0m 26 / 27 tests, �[31m�[1m26 failed�[0m;�[0m Testing //rb/spec/integration/selenium/webdriver/bidi:log_inspector-edge-remote; 21s local, disk-cache
    2388:  �[31m�[1mFAIL: �[0m//rb/spec/integration/selenium/webdriver/bidi:log_inspector-edge-remote (see D:/_bazel/execroot/_main/bazel-out/x64_windows-fastbuild/testlogs/rb/spec/integration/selenium/webdriver/bidi/log_inspector-edge-remote/test.log)
    2389:  �[31m�[1mFAILED: �[0m//rb/spec/integration/selenium/webdriver/bidi:log_inspector-edge-remote (Summary)
    2390:  D:/_bazel/execroot/_main/bazel-out/x64_windows-fastbuild/testlogs/rb/spec/integration/selenium/webdriver/bidi/log_inspector-edge-remote/test.log
    2391:  D:/_bazel/execroot/_main/bazel-out/x64_windows-fastbuild/testlogs/rb/spec/integration/selenium/webdriver/bidi/log_inspector-edge-remote/test_attempts/attempt_1.log
    2392:  D:/_bazel/execroot/_main/bazel-out/x64_windows-fastbuild/testlogs/rb/spec/integration/selenium/webdriver/bidi/log_inspector-edge-remote/test_attempts/attempt_2.log
    2393:  �[32mINFO: �[0mFrom Testing //rb/spec/integration/selenium/webdriver/bidi:log_inspector-edge-remote:
    2394:  ==================== Test output for //rb/spec/integration/selenium/webdriver/bidi:log_inspector-edge-remote:
    2395:  2024-04-24 18:58:46 INFO Selenium Server Location: D:/_bazel/execroot/_main/bazel-out/x64_windows-fastbuild/bin/rb/spec/integration/selenium/webdriver/bidi/log_inspector-edge-remote.cmd.runfiles/_main/java/src/org/openqa/selenium/grid/selenium_server_deploy.jar
    2396:  An error occurred in a `before(:suite)` hook.
    2397:  Failure/Error: @pid = Process.spawn(*@command, options)
    2398:  Errno::EACCES:
    2399:  Permission denied - java
    2400:  # ./rb/lib/selenium/webdriver/common/child_process.rb:57:in `spawn'
    2401:  # ./rb/lib/selenium/webdriver/common/child_process.rb:57:in `start'
    2402:  # ./rb/lib/selenium/server.rb:204:in `start'
    2403:  # //?/D:/a/selenium/selenium/rb/spec/integration/selenium/webdriver/spec_helper.rb:40:in `block (2 levels) in <top (required)>'
    2404:  Finished in 0.04671 seconds (files took 0.64068 seconds to load)
    2405:  0 examples, 0 failures, 1 error occurred outside of examples
    2406:  ================================================================================
    2407:  ==================== Test output for //rb/spec/integration/selenium/webdriver/bidi:log_inspector-edge-remote:
    2408:  2024-04-24 18:58:54 INFO Selenium Server Location: D:/_bazel/execroot/_main/bazel-out/x64_windows-fastbuild/bin/rb/spec/integration/selenium/webdriver/bidi/log_inspector-edge-remote.cmd.runfiles/_main/java/src/org/openqa/selenium/grid/selenium_server_deploy.jar
    2409:  An error occurred in a `before(:suite)` hook.
    2410:  Failure/Error: @pid = Process.spawn(*@command, options)
    2411:  Errno::EACCES:
    2412:  Permission denied - java
    2413:  # ./rb/lib/selenium/webdriver/common/child_process.rb:57:in `spawn'
    2414:  # ./rb/lib/selenium/webdriver/common/child_process.rb:57:in `start'
    2415:  # ./rb/lib/selenium/server.rb:204:in `start'
    2416:  # //?/D:/a/selenium/selenium/rb/spec/integration/selenium/webdriver/spec_helper.rb:40:in `block (2 levels) in <top (required)>'
    2417:  Finished in 0.04748 seconds (files took 0.62221 seconds to load)
    2418:  0 examples, 0 failures, 1 error occurred outside of examples
    2419:  ================================================================================
    2420:  ==================== Test output for //rb/spec/integration/selenium/webdriver/bidi:log_inspector-edge-remote:
    2421:  2024-04-24 18:59:01 INFO Selenium Server Location: D:/_bazel/execroot/_main/bazel-out/x64_windows-fastbuild/bin/rb/spec/integration/selenium/webdriver/bidi/log_inspector-edge-remote.cmd.runfiles/_main/java/src/org/openqa/selenium/grid/selenium_server_deploy.jar
    2422:  An error occurred in a `before(:suite)` hook.
    2423:  Failure/Error: @pid = Process.spawn(*@command, options)
    2424:  Errno::EACCES:
    2425:  Permission denied - java
    2426:  # ./rb/lib/selenium/webdriver/common/child_process.rb:57:in `spawn'
    2427:  # ./rb/lib/selenium/webdriver/common/child_process.rb:57:in `start'
    2428:  # ./rb/lib/selenium/server.rb:204:in `start'
    2429:  # //?/D:/a/selenium/selenium/rb/spec/integration/selenium/webdriver/spec_helper.rb:40:in `block (2 levels) in <top (required)>'
    2430:  Finished in 0.04799 seconds (files took 0.66895 seconds to load)
    2431:  0 examples, 0 failures, 1 error occurred outside of examples
    2432:  ================================================================================
    2433:  �[32mINFO: �[0mFound 27 test targets...
    2434:  �[32mINFO: �[0mElapsed time: 885.503s, Critical Path: 225.76s
    2435:  �[32mINFO: �[0m2885 processes: 1368 disk cache hit, 1079 internal, 370 local, 68 worker.
    2436:  �[32mINFO: �[0mBuild completed, 27 tests FAILED, 2885 total actions
    2437:  //rb/spec/integration/selenium/webdriver:action_builder-edge-remote      �[0m�[31m�[1mFAILED�[0m in 3 out of 3 in 7.2s
    2438:  Stats over 3 runs: max = 7.2s, min = 6.8s, avg = 7.0s, dev = 0.1s
    2439:  D:/_bazel/execroot/_main/bazel-out/x64_windows-fastbuild/testlogs/rb/spec/integration/selenium/webdriver/action_builder-edge-remote/test.log
    2440:  D:/_bazel/execroot/_main/bazel-out/x64_windows-fastbuild/testlogs/rb/spec/integration/selenium/webdriver/action_builder-edge-remote/test_attempts/attempt_1.log
    2441:  D:/_bazel/execroot/_main/bazel-out/x64_windows-fastbuild/testlogs/rb/spec/integration/selenium/webdriver/action_builder-edge-remote/test_attempts/attempt_2.log
    2442:  //rb/spec/integration/selenium/webdriver:bidi-edge-remote                �[0m�[31m�[1mFAILED�[0m in 3 out of 3 in 6.8s
    2443:  Stats over 3 runs: max = 6.8s, min = 6.7s, avg = 6.7s, dev = 0.0s
    2444:  D:/_bazel/execroot/_main/bazel-out/x64_windows-fastbuild/testlogs/rb/spec/integration/selenium/webdriver/bidi-edge-remote/test.log
    2445:  D:/_bazel/execroot/_main/bazel-out/x64_windows-fastbuild/testlogs/rb/spec/integration/selenium/webdriver/bidi-edge-remote/test_attempts/attempt_1.log
    2446:  D:/_bazel/execroot/_main/bazel-out/x64_windows-fastbuild/testlogs/rb/spec/integration/selenium/webdriver/bidi-edge-remote/test_attempts/attempt_2.log
    2447:  //rb/spec/integration/selenium/webdriver:devtools-edge-remote            �[0m�[31m�[1mFAILED�[0m in 3 out of 3 in 6.8s
    2448:  Stats over 3 runs: max = 6.8s, min = 6.7s, avg = 6.7s, dev = 0.1s
    2449:  D:/_bazel/execroot/_main/bazel-out/x64_windows-fastbuild/testlogs/rb/spec/integration/selenium/webdriver/devtools-edge-remote/test.log
    2450:  D:/_bazel/execroot/_main/bazel-out/x64_windows-fastbuild/testlogs/rb/spec/integration/selenium/webdriver/devtools-edge-remote/test_attempts/attempt_1.log
    2451:  D:/_bazel/execroot/_main/bazel-out/x64_windows-fastbuild/testlogs/rb/spec/integration/selenium/webdriver/devtools-edge-remote/test_attempts/attempt_2.log
    2452:  //rb/spec/integration/selenium/webdriver:driver-edge-remote              �[0m�[31m�[1mFAILED�[0m in 3 out of 3 in 7.3s
    2453:  Stats over 3 runs: max = 7.3s, min = 6.8s, avg = 7.0s, dev = 0.2s
    2454:  D:/_bazel/execroot/_main/bazel-out/x64_windows-fastbuild/testlogs/rb/spec/integration/selenium/webdriver/driver-edge-remote/test.log
    2455:  D:/_bazel/execroot/_main/bazel-out/x64_windows-fastbuild/testlogs/rb/spec/integration/selenium/webdriver/driver-edge-remote/test_attempts/attempt_1.log
    2456:  D:/_bazel/execroot/_main/bazel-out/x64_windows-fastbuild/testlogs/rb/spec/integration/selenium/webdriver/driver-edge-remote/test_attempts/attempt_2.log
    2457:  //rb/spec/integration/selenium/webdriver:element-edge-remote             �[0m�[31m�[1mFAILED�[0m in 3 out of 3 in 6.8s
    2458:  Stats over 3 runs: max = 6.8s, min = 6.7s, avg = 6.7s, dev = 0.0s
    2459:  D:/_bazel/execroot/_main/bazel-out/x64_windows-fastbuild/testlogs/rb/spec/integration/selenium/webdriver/element-edge-remote/test.log
    2460:  D:/_bazel/execroot/_main/bazel-out/x64_windows-fastbuild/testlogs/rb/spec/integration/selenium/webdriver/element-edge-remote/test_attempts/attempt_1.log
    2461:  D:/_bazel/execroot/_main/bazel-out/x64_windows-fastbuild/testlogs/rb/spec/integration/selenium/webdriver/element-edge-remote/test_attempts/attempt_2.log
    2462:  //rb/spec/integration/selenium/webdriver:error-edge-remote               �[0m�[31m�[1mFAILED�[0m in 3 out of 3 in 7.3s
    2463:  Stats over 3 runs: max = 7.3s, min = 6.8s, avg = 7.0s, dev = 0.2s
    2464:  D:/_bazel/execroot/_main/bazel-out/x64_windows-fastbuild/testlogs/rb/spec/integration/selenium/webdriver/error-edge-remote/test.log
    2465:  D:/_bazel/execroot/_main/bazel-out/x64_windows-fastbuild/testlogs/rb/spec/integration/selenium/webdriver/error-edge-remote/test_attempts/attempt_1.log
    2466:  D:/_bazel/execroot/_main/bazel-out/x64_windows-fastbuild/testlogs/rb/spec/integration/selenium/webdriver/error-edge-remote/test_attempts/attempt_2.log
    2467:  //rb/spec/integration/selenium/webdriver:guard-edge-remote               �[0m�[31m�[1mFAILED�[0m in 3 out of 3 in 7.4s
    2468:  Stats over 3 runs: max = 7.4s, min = 6.7s, avg = 7.0s, dev = 0.3s
    2469:  D:/_bazel/execroot/_main/bazel-out/x64_windows-fastbuild/testlogs/rb/spec/integration/selenium/webdriver/guard-edge-remote/test.log
    2470:  D:/_bazel/execroot/_main/bazel-out/x64_windows-fastbuild/testlogs/rb/spec/integration/selenium/webdriver/guard-edge-remote/test_attempts/attempt_1.log
    2471:  D:/_bazel/execroot/_main/bazel-out/x64_windows-fastbuild/testlogs/rb/spec/integration/selenium/webdriver/guard-edge-remote/test_attempts/attempt_2.log
    2472:  //rb/spec/integration/selenium/webdriver:listener-edge-remote            �[0m�[31m�[1mFAILED�[0m in 3 out of 3 in 7.3s
    2473:  Stats over 3 runs: max = 7.3s, min = 6.8s, avg = 7.0s, dev = 0.2s
    2474:  D:/_bazel/execroot/_main/bazel-out/x64_windows-fastbuild/testlogs/rb/spec/integration/selenium/webdriver/listener-edge-remote/test.log
    2475:  D:/_bazel/execroot/_main/bazel-out/x64_windows-fastbuild/testlogs/rb/spec/integration/selenium/webdriver/listener-edge-remote/test_attempts/attempt_1.log
    2476:  D:/_bazel/execroot/_main/bazel-out/x64_windows-fastbuild/testlogs/rb/spec/integration/selenium/webdriver/listener-edge-remote/test_attempts/attempt_2.log
    2477:  //rb/spec/integration/selenium/webdriver:manager-edge-remote             �[0m�[31m�[1mFAILED�[0m in 3 out of 3 in 7.1s
    2478:  Stats over 3 runs: max = 7.1s, min = 6.8s, avg = 6.9s, dev = 0.1s
    2479:  D:/_bazel/execroot/_main/bazel-out/x64_windows-fastbuild/testlogs/rb/spec/integration/selenium/webdriver/manager-edge-remote/test.log
    2480:  D:/_bazel/execroot/_main/bazel-out/x64_windows-fastbuild/testlogs/rb/spec/integration/selenium/webdriver/manager-edge-remote/test_attempts/attempt_1.log
    2481:  D:/_bazel/execroot/_main/bazel-out/x64_windows-fastbuild/testlogs/rb/spec/integration/selenium/webdriver/manager-edge-remote/test_attempts/attempt_2.log
    2482:  //rb/spec/integration/selenium/webdriver:navigation-edge-remote          �[0m�[31m�[1mFAILED�[0m in 3 out of 3 in 7.8s
    2483:  Stats over 3 runs: max = 7.8s, min = 6.7s, avg = 7.2s, dev = 0.5s
    2484:  D:/_bazel/execroot/_main/bazel-out/x64_windows-fastbuild/testlogs/rb/spec/integration/selenium/webdriver/navigation-edge-remote/test.log
    2485:  D:/_bazel/execroot/_main/bazel-out/x64_windows-fastbuild/testlogs/rb/spec/integration/selenium/webdriver/navigation-edge-remote/test_attempts/attempt_1.log
    2486:  D:/_bazel/execroot/_main/bazel-out/x64_windows-fastbuild/testlogs/rb/spec/integration/selenium/webdriver/navigation-edge-remote/test_attempts/attempt_2.log
    2487:  //rb/spec/integration/selenium/webdriver:select-edge-remote              �[0m�[31m�[1mFAILED�[0m in 3 out of 3 in 7.3s
    2488:  Stats over 3 runs: max = 7.3s, min = 7.0s, avg = 7.1s, dev = 0.1s
    2489:  D:/_bazel/execroot/_main/bazel-out/x64_windows-fastbuild/testlogs/rb/spec/integration/selenium/webdriver/select-edge-remote/test.log
    2490:  D:/_bazel/execroot/_main/bazel-out/x64_windows-fastbuild/testlogs/rb/spec/integration/selenium/webdriver/select-edge-remote/test_attempts/attempt_1.log
    2491:  D:/_bazel/execroot/_main/bazel-out/x64_windows-fastbuild/testlogs/rb/spec/integration/selenium/webdriver/select-edge-remote/test_attempts/attempt_2.log
    2492:  //rb/spec/integration/selenium/webdriver:shadow_root-edge-remote         �[0m�[31m�[1mFAILED�[0m in 3 out of 3 in 7.4s
    2493:  Stats over 3 runs: max = 7.4s, min = 6.7s, avg = 7.1s, dev = 0.3s
    2494:  D:/_bazel/execroot/_main/bazel-out/x64_windows-fastbuild/testlogs/rb/spec/integration/selenium/webdriver/shadow_root-edge-remote/test.log
    2495:  D:/_bazel/execroot/_main/bazel-out/x64_windows-fastbuild/testlogs/rb/spec/integration/selenium/webdriver/shadow_root-edge-remote/test_attempts/attempt_1.log
    2496:  D:/_bazel/execroot/_main/bazel-out/x64_windows-fastbuild/testlogs/rb/spec/integration/selenium/webdriver/shadow_root-edge-remote/test_attempts/attempt_2.log
    2497:  //rb/spec/integration/selenium/webdriver:storage-edge-remote             �[0m�[31m�[1mFAILED�[0m in 3 out of 3 in 7.3s
    2498:  Stats over 3 runs: max = 7.3s, min = 6.9s, avg = 7.1s, dev = 0.2s
    2499:  D:/_bazel/execroot/_main/bazel-out/x64_windows-fastbuild/testlogs/rb/spec/integration/selenium/webdriver/storage-edge-remote/test.log
    2500:  D:/_bazel/execroot/_main/bazel-out/x64_windows-fastbuild/testlogs/rb/spec/integration/selenium/webdriver/storage-edge-remote/test_attempts/attempt_1.log
    2501:  D:/_bazel/execroot/_main/bazel-out/x64_windows-fastbuild/testlogs/rb/spec/integration/selenium/webdriver/storage-edge-remote/test_attempts/attempt_2.log
    2502:  //rb/spec/integration/selenium/webdriver:takes_screenshot-edge-remote    �[0m�[31m�[1mFAILED�[0m in 3 out of 3 in 7.3s
    2503:  Stats over 3 runs: max = 7.3s, min = 7.0s, avg = 7.2s, dev = 0.2s
    2504:  D:/_bazel/execroot/_main/bazel-out/x64_windows-fastbuild/testlogs/rb/spec/integration/selenium/webdriver/takes_screenshot-edge-remote/test.log
    2505:  D:/_bazel/execroot/_main/bazel-out/x64_windows-fastbuild/testlogs/rb/spec/integration/selenium/webdriver/takes_screenshot-edge-remote/test_attempts/attempt_1.log
    2506:  D:/_bazel/execroot/_main/bazel-out/x64_windows-fastbuild/testlogs/rb/spec/integration/selenium/webdriver/takes_screenshot-edge-remote/test_attempts/attempt_2.log
    2507:  //rb/spec/integration/selenium/webdriver:target_locator-edge-remote      �[0m�[31m�[1mFAILED�[0m in 3 out of 3 in 7.2s
    2508:  Stats over 3 runs: max = 7.2s, min = 6.8s, avg = 7.0s, dev = 0.2s
    2509:  D:/_bazel/execroot/_main/bazel-out/x64_windows-fastbuild/testlogs/rb/spec/integration/selenium/webdriver/target_locator-edge-remote/test.log
    2510:  D:/_bazel/execroot/_main/bazel-out/x64_windows-fastbuild/testlogs/rb/spec/integration/selenium/webdriver/target_locator-edge-remote/test_attempts/attempt_1.log
    2511:  D:/_bazel/execroot/_main/bazel-out/x64_windows-fastbuild/testlogs/rb/spec/integration/selenium/webdriver/target_locator-edge-remote/test_attempts/attempt_2.log
    2512:  //rb/spec/integration/selenium/webdriver:timeout-edge-remote             �[0m�[31m�[1mFAILED�[0m in 3 out of 3 in 7.1s
    2513:  Stats over 3 runs: max = 7.1s, min = 6.7s, avg = 6.9s, dev = 0.2s
    2514:  D:/_bazel/execroot/_main/bazel-out/x64_windows-fastbuild/testlogs/rb/spec/integration/selenium/webdriver/timeout-edge-remote/test.log
    2515:  D:/_bazel/execroot/_main/bazel-out/x64_windows-fastbuild/testlogs/rb/spec/integration/selenium/webdriver/timeout-edge-remote/test_attempts/attempt_1.log
    2516:  D:/_bazel/execroot/_main/bazel-out/x64_windows-fastbuild/testlogs/rb/spec/integration/selenium/webdriver/timeout-edge-remote/test_attempts/attempt_2.log
    2517:  //rb/spec/integration/selenium/webdriver:virtual_authenticator-edge-remote �[0m�[31m�[1mFAILED�[0m in 3 out of 3 in 6.9s
    2518:  Stats over 3 runs: max = 6.9s, min = 6.8s, avg = 6.9s, dev = 0.1s
    2519:  D:/_bazel/execroot/_main/bazel-out/x64_windows-fastbuild/testlogs/rb/spec/integration/selenium/webdriver/virtual_authenticator-edge-remote/test.log
    2520:  D:/_bazel/execroot/_main/bazel-out/x64_windows-fastbuild/testlogs/rb/spec/integration/selenium/webdriver/virtual_authenticator-edge-remote/test_attempts/attempt_1.log
    2521:  D:/_bazel/execroot/_main/bazel-out/x64_windows-fastbuild/testlogs/rb/spec/integration/selenium/webdriver/virtual_authenticator-edge-remote/test_attempts/attempt_2.log
    2522:  //rb/spec/integration/selenium/webdriver:window-edge-remote              �[0m�[31m�[1mFAILED�[0m in 3 out of 3 in 7.0s
    2523:  Stats over 3 runs: max = 7.0s, min = 6.8s, avg = 6.9s, dev = 0.1s
    2524:  D:/_bazel/execroot/_main/bazel-out/x64_windows-fastbuild/testlogs/rb/spec/integration/selenium/webdriver/window-edge-remote/test.log
    2525:  D:/_bazel/execroot/_main/bazel-out/x64_windows-fastbuild/testlogs/rb/spec/integration/selenium/webdriver/window-edge-remote/test_attempts/attempt_1.log
    2526:  D:/_bazel/execroot/_main/bazel-out/x64_windows-fastbuild/testlogs/rb/spec/integration/selenium/webdriver/window-edge-remote/test_attempts/attempt_2.log
    2527:  //rb/spec/integration/selenium/webdriver:zipper-edge-remote              �[0m�[31m�[1mFAILED�[0m in 3 out of 3 in 6.9s
    2528:  Stats over 3 runs: max = 6.9s, min = 6.8s, avg = 6.8s, dev = 0.1s
    2529:  D:/_bazel/execroot/_main/bazel-out/x64_windows-fastbuild/testlogs/rb/spec/integration/selenium/webdriver/zipper-edge-remote/test.log
    2530:  D:/_bazel/execroot/_main/bazel-out/x64_windows-fastbuild/testlogs/rb/spec/integration/selenium/webdriver/zipper-edge-remote/test_attempts/attempt_1.log
    2531:  D:/_bazel/execroot/_main/bazel-out/x64_windows-fastbuild/testlogs/rb/spec/integration/selenium/webdriver/zipper-edge-remote/test_attempts/attempt_2.log
    2532:  //rb/spec/integration/selenium/webdriver/bidi:browsing_context-edge-remote �[0m�[31m�[1mFAILED�[0m in 3 out of 3 in 6.8s
    2533:  Stats over 3 runs: max = 6.8s, min = 6.8s, avg = 6.8s, dev = 0.0s
    2534:  D:/_bazel/execroot/_main/bazel-out/x64_windows-fastbuild/testlogs/rb/spec/integration/selenium/webdriver/bidi/browsing_context-edge-remote/test.log
    2535:  D:/_bazel/execroot/_main/bazel-out/x64_windows-fastbuild/testlogs/rb/spec/integration/selenium/webdriver/bidi/browsing_context-edge-remote/test_attempts/attempt_1.log
    2536:  D:/_bazel/execroot/_main/bazel-out/x64_windows-fastbuild/testlogs/rb/spec/integration/selenium/webdriver/bidi/browsing_context-edge-remote/test_attempts/attempt_2.log
    2537:  //rb/spec/integration/selenium/webdriver/bidi:log_inspector-edge-remote  �[0m�[31m�[1mFAILED�[0m in 3 out of 3 in 6.8s
    2538:  Stats over 3 runs: max = 6.8s, min = 6.7s, avg = 6.8s, dev = 0.0s
    2539:  D:/_bazel/execroot/_main/bazel-out/x64_windows-fastbuild/testlogs/rb/spec/integration/selenium/webdriver/bidi/log_inspector-edge-remote/test.log
    2540:  D:/_bazel/execroot/_main/bazel-out/x64_windows-fastbuild/testlogs/rb/spec/integration/selenium/webdriver/bidi/log_inspector-edge-remote/test_attempts/attempt_1.log
    2541:  D:/_bazel/execroot/_main/bazel-out/x64_windows-fastbuild/testlogs/rb/spec/integration/selenium/webdriver/bidi/log_inspector-edge-remote/test_attempts/attempt_2.log
    2542:  //rb/spec/integration/selenium/webdriver/edge:driver-edge-remote         �[0m�[31m�[1mFAILED�[0m in 3 out of 3 in 7.0s
    2543:  Stats over 3 runs: max = 7.0s, min = 6.8s, avg = 6.9s, dev = 0.1s
    2544:  D:/_bazel/execroot/_main/bazel-out/x64_windows-fastbuild/testlogs/rb/spec/integration/selenium/webdriver/edge/driver-edge-remote/test.log
    2545:  D:/_bazel/execroot/_main/bazel-out/x64_windows-fastbuild/testlogs/rb/spec/integration/selenium/webdriver/edge/driver-edge-remote/test_attempts/attempt_1.log
    2546:  D:/_bazel/execroot/_main/bazel-out/x64_windows-fastbuild/testlogs/rb/spec/integration/selenium/webdriver/edge/driver-edge-remote/test_attempts/attempt_2.log
    2547:  //rb/spec/integration/selenium/webdriver/edge:options-edge-remote        �[0m�[31m�[1mFAILED�[0m in 3 out of 3 in 7.1s
    2548:  Stats over 3 runs: max = 7.1s, min = 6.8s, avg = 6.9s, dev = 0.2s
    2549:  D:/_bazel/execroot/_main/bazel-out/x64_windows-fastbuild/testlogs/rb/spec/integration/selenium/webdriver/edge/options-edge-remote/test.log
    2550:  D:/_bazel/execroot/_main/bazel-out/x64_windows-fastbuild/testlogs/rb/spec/integration/selenium/webdriver/edge/options-edge-remote/test_attempts/attempt_1.log
    2551:  D:/_bazel/execroot/_main/bazel-out/x64_windows-fastbuild/testlogs/rb/spec/integration/selenium/webdriver/edge/options-edge-remote/test_attempts/attempt_2.log
    2552:  //rb/spec/integration/selenium/webdriver/edge:profile-edge-remote        �[0m�[31m�[1mFAILED�[0m in 3 out of 3 in 7.4s
    2553:  Stats over 3 runs: max = 7.4s, min = 6.8s, avg = 7.0s, dev = 0.3s
    2554:  D:/_bazel/execroot/_main/bazel-out/x64_windows-fastbuild/testlogs/rb/spec/integration/selenium/webdriver/edge/profile-edge-remote/test.log
    2555:  D:/_bazel/execroot/_main/bazel-out/x64_windows-fastbuild/testlogs/rb/spec/integration/selenium/webdriver/edge/profile-edge-remote/test_attempts/attempt_1.log
    2556:  D:/_bazel/execroot/_main/bazel-out/x64_windows-fastbuild/testlogs/rb/spec/integration/selenium/webdriver/edge/profile-edge-remote/test_attempts/attempt_2.log
    2557:  //rb/spec/integration/selenium/webdriver/edge:service-edge-remote        �[0m�[31m�[1mFAILED�[0m in 3 out of 3 in 7.3s
    2558:  Stats over 3 runs: max = 7.3s, min = 6.9s, avg = 7.1s, dev = 0.2s
    2559:  D:/_bazel/execroot/_main/bazel-out/x64_windows-fastbuild/testlogs/rb/spec/integration/selenium/webdriver/edge/service-edge-remote/test.log
    2560:  D:/_bazel/execroot/_main/bazel-out/x64_windows-fastbuild/testlogs/rb/spec/integration/selenium/webdriver/edge/service-edge-remote/test_attempts/attempt_1.log
    2561:  D:/_bazel/execroot/_main/bazel-out/x64_windows-fastbuild/testlogs/rb/spec/integration/selenium/webdriver/edge/service-edge-remote/test_attempts/attempt_2.log
    2562:  //rb/spec/integration/selenium/webdriver/remote:driver-edge-remote       �[0m�[31m�[1mFAILED�[0m in 3 out of 3 in 7.5s
    2563:  Stats over 3 runs: max = 7.5s, min = 6.8s, avg = 7.0s, dev = 0.3s
    2564:  D:/_bazel/execroot/_main/bazel-out/x64_windows-fastbuild/testlogs/rb/spec/integration/selenium/webdriver/remote/driver-edge-remote/test.log
    2565:  D:/_bazel/execroot/_main/bazel-out/x64_windows-fastbuild/testlogs/rb/spec/integration/selenium/webdriver/remote/driver-edge-remote/test_attempts/attempt_1.log
    2566:  D:/_bazel/execroot/_main/bazel-out/x64_windows-fastbuild/testlogs/rb/spec/integration/selenium/webdriver/remote/driver-edge-remote/test_attempts/attempt_2.log
    2567:  //rb/spec/integration/selenium/webdriver/remote:element-edge-remote      �[0m�[31m�[1mFAILED�[0m in 3 out of 3 in 7.4s
    2568:  Stats over 3 runs: max = 7.4s, min = 6.9s, avg = 7.1s, dev = 0.2s
    2569:  D:/_bazel/execroot/_main/bazel-out/x64_windows-fastbuild/testlogs/rb/spec/integration/selenium/webdriver/remote/element-edge-remote/test.log
    2570:  D:/_bazel/execroot/_main/bazel-out/x64_windows-fastbuild/testlogs/rb/spec/integration/selenium/webdriver/remote/element-edge-remote/test_attempts/attempt_1.log
    2571:  D:/_bazel/execroot/_main/bazel-out/x64_windows-fastbuild/testlogs/rb/spec/integration/selenium/webdriver/remote/element-edge-remote/test_attempts/attempt_2.log
    2572:  Executed 27 out of 27 tests: �[0m�[31m�[1m27 fail locally�[0m.
    2573:  �[0m
    2574:  ##[error]Process completed with exit code 1.
    2575:  Post job cleanup.
    2576:  ##[group]Save cache for disk-rb-remote-edge-test
    2577:  Attempting to save D:/_bazel-disk cache to setup-bazel-2-win32-disk-rb-remote-edge-test-b1fc4adb8c9d0081932a881bfc912f316321a05de1727cc20ad0cb7ea69b0fa2
    2578:  [command]"C:\Program Files\Git\usr\bin\tar.exe" --posix -cf cache.tzst --exclude cache.tzst -P -C D:/a/selenium/selenium --files-from manifest.txt --force-local --use-compress-program "zstd -T0"
    2579:  Failed to save: Unable to reserve cache with key setup-bazel-2-win32-disk-rb-remote-edge-test-b1fc4adb8c9d0081932a881bfc912f316321a05de1727cc20ad0cb7ea69b0fa2, another job may be creating this cache. More details: Cache already exists. Scope: refs/pull/13870/merge, Key: setup-bazel-2-win32-disk-rb-remote-edge-test-b1fc4adb8c9d0081932a881bfc912f316321a05de1727cc20ad0cb7ea69b0fa2, Version: 343714bb9127837a0a73bb72aa1201db1774b6cec2ea21226d963489c0fcf374
    2580:  Successfully saved cache
    2581:  ##[endgroup]
    2582:  ##[group]Save cache for external-rb-remote-edge-test-manifest
    2583:  Attempting to save C:\Users\RUNNER~1\AppData\Local\Temp/external-cache-manifest.txt cache to setup-bazel-2-win32-external-rb-remote-edge-test-manifest-b0c658c516464feb76f79337d358cc07a8dddbd3269e7c6ae7fb518172ab3083
    2584:  [command]"C:\Program Files\Git\usr\bin\tar.exe" --posix -cf cache.tzst --exclude cache.tzst -P -C D:/a/selenium/selenium --files-from manifest.txt --force-local --use-compress-program "zstd -T0"
    2585:  Failed to save: Unable to reserve cache with key setup-bazel-2-win32-external-rb-remote-edge-test-manifest-b0c658c516464feb76f79337d358cc07a8dddbd3269e7c6ae7fb518172ab3083, another job may be creating this cache. More details: Cache already exists. Scope: refs/pull/13870/merge, Key: setup-bazel-2-win32-external-rb-remote-edge-test-manifest-b0c658c516464feb76f79337d358cc07a8dddbd3269e7c6ae7fb518172ab3083, Version: 106e19fb412ff7e4b01bcb6ba78b591b7c0003f112e23637552ed6db41ac790f
    

    ✨ CI feedback usage guide:

    The CI feedback tool (/checks) automatically triggers when a PR has a failed check.
    The tool analyzes the failed checks and provides several feedbacks:

    • Failed stage
    • Failed test name
    • Failure summary
    • Relevant error logs

    In addition to being automatically triggered, the tool can also be invoked manually by commenting on a PR:

    /checks "https://github.com/{repo_name}/actions/runs/{run_number}/job/{job_number}"
    

    where {repo_name} is the name of the repository, {run_number} is the run number of the failed check, and {job_number} is the job number of the failed check.

    Configuration options

    • enable_auto_checks_feedback - if set to true, the tool will automatically provide feedback when a check is failed. Default is true.
    • excluded_checks_list - a list of checks to exclude from the feedback, for example: ["check1", "check2"]. Default is an empty list.
    • enable_help_text - if set to true, the tool will provide a help message with the feedback. Default is true.
    • persistent_comment - if set to true, the tool will overwrite a previous checks comment with the new feedback. Default is true.
    • final_update_message - if persistent_comment is true and updating a previous checks message, the tool will also create a new message: "Persistent checks updated to latest commit". Default is true.

    See more information about the checks tool in the docs.

    @diemol diemol merged commit 866c76c into trunk Apr 24, 2024
    47 of 48 checks passed
    @diemol diemol deleted the release-4.20.0 branch April 24, 2024 20:05
    Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
    Projects
    None yet
    Development

    Successfully merging this pull request may close these issues.

    None yet

    2 participants