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.19.0 #13747

Merged
merged 4 commits into from Mar 27, 2024
Merged

Release 4.19.0 #13747

merged 4 commits into from Mar 27, 2024

Conversation

diemol
Copy link
Member

@diemol diemol commented Mar 27, 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, bug_fix


Description

  • Add support for Chrome DevTools Protocol version 123 and remove support for version 120 across multiple languages (.NET, Java, Node.js, Python, Ruby).
  • Update dependencies, package versions, and build configurations to reflect the new DevTools version.
  • Include enhancements, bug fixes, and documentation updates related to the DevTools version update.

Changes walkthrough

Relevant files
Enhancement
21 files
v123Target.java
Update DevTools v123 Target domain implementation               

java/src/org/openqa/selenium/devtools/v123/v123Target.java

  • Updated package and import statements from v120 to v123
  • Changed class name from v120Target to v123Target
  • Updated references from v120 to v123 in method implementations
  • +12/-12 
    v123Network.java
    Update DevTools v123 Network domain implementation             

    java/src/org/openqa/selenium/devtools/v123/v123Network.java

  • Updated package and import statements from v120 to v123
  • Changed class name from v120Network to v123Network
  • Updated references from v120 to v123 in method implementations
  • +10/-10 
    v123Events.java
    Update DevTools v123 Events domain implementation               

    java/src/org/openqa/selenium/devtools/v123/v123Events.java

  • Updated package and import statements from v120 to v123
  • Changed class name from v120Events to v123Events
  • Updated references from v120 to v123 in method implementations
  • +9/-9     
    v123Domains.java
    Update DevTools v123 Domains implementation                           

    java/src/org/openqa/selenium/devtools/v123/v123Domains.java

  • Updated package and import statements from v120 to v123
  • Changed class name from v120Domains to v123Domains
  • Updated references from v120 to v123 in method implementations
  • +13/-13 
    v123Javascript.java
    Update DevTools v123 Javascript domain implementation       

    java/src/org/openqa/selenium/devtools/v123/v123Javascript.java

  • Updated package and import statements from v120 to v123
  • Changed class name from v120Javascript to v123Javascript
  • Updated references from v120 to v123 in method implementations
  • +7/-7     
    v123Log.java
    Update DevTools v123 Log domain implementation                     

    java/src/org/openqa/selenium/devtools/v123/v123Log.java

  • Updated package and import statements from v120 to v123
  • Changed class name from v120Log to v123Log
  • Updated references from v120 to v123 in method implementations
  • +5/-5     
    v123CdpInfo.java
    Update DevTools v123 CdpInfo implementation                           

    java/src/org/openqa/selenium/devtools/v123/v123CdpInfo.java

  • Updated package and import statements from v120 to v123
  • Changed class name from v120CdpInfo to v123CdpInfo
  • Updated references from v120 to v123 in method implementations
  • +4/-4     
    V123Domains.cs
    Update .NET DevTools v123 Domains implementation                 

    dotnet/src/webdriver/DevTools/v123/V123Domains.cs

  • Updated namespace and class name from V120Domains to V123Domains
  • Updated references from v120 to v123 in method implementations
  • +11/-11 
    V123Network.cs
    Update .NET DevTools v123 Network implementation                 

    dotnet/src/webdriver/DevTools/v123/V123Network.cs

  • Updated namespace and class name from V120Network to V123Network
  • Updated references from v120 to v123 in method implementations
  • +12/-12 
    V123JavaScript.cs
    Update .NET DevTools v123 JavaScript implementation           

    dotnet/src/webdriver/DevTools/v123/V123JavaScript.cs

  • Updated namespace and class name from V120JavaScript to V123JavaScript
  • Updated references from v120 to v123 in method implementations
  • +8/-8     
    V123Target.cs
    Update .NET DevTools v123 Target implementation                   

    dotnet/src/webdriver/DevTools/v123/V123Target.cs

  • Updated namespace and class name from V120Target to V123Target
  • Updated references from v120 to v123 in method implementations
  • +7/-7     
    V123Log.cs
    Update .NET DevTools v123 Log implementation                         

    dotnet/src/webdriver/DevTools/v123/V123Log.cs

  • Updated namespace and class name from V120Log to V123Log
  • Updated references from v120 to v123 in method implementations
  • +7/-7     
    DevToolsDomains.cs
    Update supported DevTools versions in .NET                             

    dotnet/src/webdriver/DevTools/DevToolsDomains.cs

  • Updated supported DevTools versions to include v123 and remove v120
  • +1/-1     
    version.rb
    Update WebDriver version in Ruby bindings                               

    rb/lib/selenium/webdriver/version.rb

    • Updated WebDriver version to "4.19.0"
    +1/-1     
    selenium-dotnet-version.bzl
    Update .NET version                                                                           

    dotnet/selenium-dotnet-version.bzl

    • Updated .NET version to "4.19.0"
    +2/-2     
    __init__.py
    Update Python WebDriver version                                                   

    py/selenium/webdriver/init.py

    • Updated version to "4.19.0"
    +1/-1     
    setup.py
    Update setup.py version                                                                   

    py/setup.py

    • Updated version to "4.19.0"
    +1/-1     
    versions.bzl
    Update supported DevTools versions in Java                             

    java/src/org/openqa/selenium/devtools/versions.bzl

  • Updated supported DevTools versions to include v123 and remove v120
  • +1/-1     
    __init__.py
    Update Python Selenium version                                                     

    py/selenium/init.py

    • Updated version to "4.19.0"
    +1/-1     
    browser_protocol.pdl
    Add browser protocol definitions for DevTools v123             

    common/devtools/chromium/v123/browser_protocol.pdl

  • Added and updated definitions for the browser protocol in DevTools
    v123
  • +498/-114
    js_protocol.pdl
    Add JS protocol definitions for DevTools v123                       

    common/devtools/chromium/v123/js_protocol.pdl

    • Added and updated definitions for the JS protocol in DevTools v123
    +4/-4     
    Tests
    8 files
    StableChannelChromeDriver.cs
    Update browser version in .NET tests                                         

    dotnet/test/common/CustomDriverConfigs/StableChannelChromeDriver.cs

    • Updated browser version to "123"
    +1/-1     
    DevToolsConsoleTest.cs
    Update DevTools version in .NET console tests                       

    dotnet/test/common/DevTools/DevToolsConsoleTest.cs

    • Updated DevTools version to v123 for console tests
    +1/-1     
    DevToolsLogTest.cs
    Update DevTools version in .NET log tests                               

    dotnet/test/common/DevTools/DevToolsLogTest.cs

    • Updated DevTools version to v123 for log tests
    +1/-1     
    DevToolsNetworkTest.cs
    Update DevTools version in .NET network tests                       

    dotnet/test/common/DevTools/DevToolsNetworkTest.cs

    • Updated DevTools version to v123 for network tests
    +1/-1     
    DevToolsPerformanceTest.cs
    Update DevTools version in .NET performance tests               

    dotnet/test/common/DevTools/DevToolsPerformanceTest.cs

    • Updated DevTools version to v123 for performance tests
    +1/-1     
    DevToolsProfilerTest.cs
    Update DevTools version in .NET profiler tests                     

    dotnet/test/common/DevTools/DevToolsProfilerTest.cs

    • Updated DevTools version to v123 for profiler tests
    +1/-1     
    DevToolsSecurityTest.cs
    Update DevTools version in .NET security tests                     

    dotnet/test/common/DevTools/DevToolsSecurityTest.cs

    • Updated DevTools version to v123 for security tests
    +1/-1     
    DevToolsTargetTest.cs
    Update DevTools version in .NET target tests                         

    dotnet/test/common/DevTools/DevToolsTargetTest.cs

    • Updated DevTools version to v123 for target tests
    +1/-1     
    Dependencies
    3 files
    maven_deps.bzl
    Update Maven dependencies versions                                             

    java/maven_deps.bzl

    • Updated dependencies versions
    +24/-24 
    selenium_manager.bzl
    Update selenium manager artifacts                                               

    common/selenium_manager.bzl

    • Updated selenium manager artifacts
    +6/-6     
    package-lock.json
    Update package-lock.json versions                                               

    package-lock.json

    • Updated package versions
    +3/-3     
    Documentation
    8 files
    conf.py
    Update documentation configuration                                             

    py/docs/source/conf.py

    • Updated copyright year and release version
    +2/-2     
    AUTHORS
    Update AUTHORS file                                                                           

    AUTHORS

    • Added new contributors
    +5/-0     
    CHANGELOG
    Update Java changelog for 4.19.0                                                 

    java/CHANGELOG

    • Added changelog entries for version 4.19.0
    +19/-0   
    CHANGES.md
    Update Node.js changelog for 4.19.0                                           

    javascript/node/selenium-webdriver/CHANGES.md

    • Added changelog entries for version 4.19.0
    +12/-0   
    CHANGELOG
    Update .NET changelog for 4.19.0                                                 

    dotnet/CHANGELOG

    • Added changelog entries for version 4.19.0
    +12/-0   
    CHANGES
    Update Python changelog for 4.19.0                                             

    py/CHANGES

    • Added changelog entries for version 4.19.0
    +9/-0     
    CHANGELOG.md
    Update Rust changelog for 0.4.19                                                 

    rust/CHANGELOG.md

    • Added changelog entries for version 0.4.19
    +8/-0     
    CHANGES
    Update Ruby changelog for 4.19.0                                                 

    rb/CHANGES

    • Added changelog entries for version 4.19.0
    +7/-0     
    Configuration changes
    10 files
    BUILD.bazel
    Add build rules for DevTools v123                                               

    common/devtools/chromium/v123/BUILD.bazel

    • Added build rules for DevTools v123
    +38/-1   
    WebDriver.csproj
    Update .NET WebDriver project file for DevTools v123         

    dotnet/src/webdriver/WebDriver.csproj

    • Updated build commands to include DevTools v123 and remove v120
    +1/-1     
    Rakefile
    Update Rakefile build targets for DevTools v123                   

    Rakefile

    • Updated build targets to include DevTools v123 and remove v120
    +1/-1     
    BUILD.bazel
    Update Python BUILD.bazel version                                               

    py/BUILD.bazel

    • Updated Python version to "4.19.0"
    +2/-2     
    Cargo.toml
    Update Rust Cargo.toml version                                                     

    rust/Cargo.toml

    • Updated version to "0.4.19"
    +1/-1     
    BUILD.bazel
    Update Rust BUILD.bazel version                                                   

    rust/BUILD.bazel

    • Updated Rust version to "0.4.19"
    +1/-1     
    BUILD.bazel
    Update BUILD.bazel for DevTools v123 in Java                         

    java/src/org/openqa/selenium/devtools/v123/BUILD.bazel

    • Updated variable name from v120 to v123
    +1/-1     
    package.json
    Update Node.js package.json version                                           

    javascript/node/selenium-webdriver/package.json

    • Updated version to "4.19.0"
    +1/-1     
    BUILD.bazel
    Update supported DevTools versions in Ruby                             

    rb/lib/selenium/devtools/BUILD.bazel

  • Updated supported DevTools versions to include v123 and remove v120
  • +1/-1     
    BUILD.bazel
    Update supported DevTools versions in Node.js                       

    javascript/node/selenium-webdriver/BUILD.bazel

  • Updated supported DevTools versions to include v123 and remove v120
  • +1/-1     

    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 4 commits March 27, 2024 10:27
    * Update supported versions for Chrome DevTools
    
    * Update selenium manager version
    
    * Update Maven Dependencies
    
    * Update authors file
    
    * FIX CHANGELOGS BEFORE MERGING!
    
    Update versions and change logs to release Selenium 4.19.0
    
    * [build] Adapting changelogs
    
    * [py] Setting python version to 4.19.0
    
    * Making format script happy
    
    ---------
    
    Co-authored-by: Selenium CI Bot <selenium-ci@users.noreply.github.com>
    Co-authored-by: Diego Molina <diemol@gmail.com>
    Co-authored-by: Diego Molina <diemol@users.noreply.github.com>
    Copy link

    PR Description updated to latest commit (cd10a9a)

    Copy link

    PR Review

    ⏱️ Estimated effort to review [1-5]

    2, because the changes are mostly version updates, addition of new files for version support, and removal of outdated versions. The modifications are straightforward and follow a consistent pattern across multiple files.

    🧪 Relevant tests

    No

    🔍 Possible issues

    Possible Issue: Removal of support for older Chrome version (v120) might affect users who have not yet upgraded to newer Chrome versions.

    Possible Issue: Addition of new CDP for Chrome 123 requires thorough testing to ensure compatibility and functionality.

    🔒 Security concerns

    No


    ✨ Review tool usage guide:

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

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

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

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

    Copy link

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

    PR Code Suggestions

    CategorySuggestions                                                                                                                                                       
    Maintainability
    Use a more descriptive and convention-compliant class name.

    Consider using a more descriptive class name instead of v123Target. Java class names
    usually start with an uppercase letter and follow the CamelCase convention. Additionally,
    including version numbers directly in class names might lead to maintenance challenges in
    the future. Consider a naming approach that allows for versioning without changing class
    names, perhaps by using package naming strategies for versioning.

    java/src/org/openqa/selenium/devtools/v123/v123Target.java [36]

    -public class v123Target implements org.openqa.selenium.devtools.idealized.target.Target {
    +public class TargetImpl implements org.openqa.selenium.devtools.idealized.target.Target {
     
    Centralize dependency version management.

    Consider specifying the versions of your dependencies in a separate variable or file to
    make updates easier and improve readability. This approach helps in managing dependency
    versions in a centralized manner, especially when the same version number is used in
    multiple places.

    java/maven_deps.bzl [7-46]

    -"com.github.javaparser:javaparser-core:3.25.9",
    -"com.google.guava:guava:33.1.0-jre",
    +JAVAPARSER_CORE_VERSION = "3.25.9"
    +GUAVA_VERSION = "33.1.0-jre"
     ...
    -"org.mockito:mockito-core:5.11.0",
    -"org.redisson:redisson:3.27.2",
    +MOCKITO_CORE_VERSION = "5.11.0"
    +REDISSON_VERSION = "3.27.2"
    +...
    +"com.github.javaparser:javaparser-core:" + JAVAPARSER_CORE_VERSION,
    +"com.google.guava:guava:" + GUAVA_VERSION,
    +...
    +"org.mockito:mockito-core:" + MOCKITO_CORE_VERSION,
    +"org.redisson:redisson:" + REDISSON_VERSION,
     
    Match release version in documentation with project version.

    Ensure that the release version in the documentation matches the actual project version.
    This helps in maintaining consistency across the project's documentation and its actual
    release version.

    py/docs/source/conf.py [61]

    -release = '4.19.0'
    +release = '4.19.0.dev202403101143'
     
    Sort the SUPPORTED_DEVTOOLS_VERSIONS list in ascending order.

    Ensure the versions in the SUPPORTED_DEVTOOLS_VERSIONS list are in ascending order for
    better readability and maintainability.

    dotnet/selenium-dotnet-version.bzl [7-12]

     SUPPORTED_DEVTOOLS_VERSIONS = [
         "v85",
    +    "v121",
         "v122",
         "v123",
    -    "v121",
     ]
     
    Sort the CDP_VERSIONS list in ascending order.

    Ensure the versions in the CDP_VERSIONS list are in ascending order for better readability
    and maintainability.

    java/src/org/openqa/selenium/devtools/versions.bzl [1-6]

     CDP_VERSIONS = [
         "v85",
    +    "v121",
         "v122",
         "v123",
    -    "v121",
     ]
     
    Sort the BROWSER_VERSIONS list in ascending order.

    Ensure the versions in the BROWSER_VERSIONS list are in ascending order for better
    readability and maintainability.

    py/BUILD.bazel [45-50]

     BROWSER_VERSIONS = [
         "v85",
    +    "v121",
         "v122",
         "v123",
    -    "v121",
     ]
     
    Use a variable for the common tool path //common/devtools:pdl_to_json to facilitate easier updates.

    For better maintainability, consider using a variable for common tool paths such as
    //common/devtools:pdl_to_json to avoid repetition and facilitate easier updates in the
    future.

    common/devtools/chromium/v123/BUILD.bazel [11-37]

    +PDL_TO_JSON_TOOL = "//common/devtools:pdl_to_json"
    +...
     genrule(
         name: "browser_protocol",
         ...
    -    cmd = "$(location //common/devtools:pdl_to_json) $(location :browser_protocol.pdl)  --map_binary_to_string=true $@",
    +    cmd = "$(location " + PDL_TO_JSON_TOOL + ") $(location :browser_protocol.pdl)  --map_binary_to_string=true $@",
         tools = [
    -        "//common/devtools:pdl_to_json",
    +        PDL_TO_JSON_TOOL,
         ],
     )
     ...
     genrule(
         name: "js_protocol",
         ...
    -    cmd = "$(location //common/devtools:pdl_to_json) $(location :js_protocol.pdl) --map_binary_to_string=true $@",
    +    cmd = "$(location " + PDL_TO_JSON_TOOL + ") $(location :js_protocol.pdl) --map_binary_to_string=true $@",
         tools = [
    -        "//common/devtools:pdl_to_json",
    +        PDL_TO_JSON_TOOL,
         ],
     )
     
    Sort the CDP_VERSIONS list to improve manageability.

    It's recommended to keep the CDP_VERSIONS list sorted to make it easier to manage and
    identify the versions. Currently, the addition of "v123" is out of order, which might lead
    to confusion or errors in the future.

    rb/lib/selenium/devtools/BUILD.bazel [6-11]

     CDP_VERSIONS = [
         "v85",
    +    "v121",
         "v122",
         "v123",
    -    "v121",
     ]
     
    Enhancement
    Remove unnecessary superclass constructor call.

    The constructor of v123Network is calling super(devTools); which is not necessary because
    the superclass Network does not have a constructor that takes DevTools as an argument.
    This call can be safely removed to avoid confusion.

    java/src/org/openqa/selenium/devtools/v123/v123Network.java [44-46]

     public v123Network(DevTools devTools) {
    -    super(devTools);
     }
     
    Update copyright year in documentation.

    Update the project's copyright year to reflect the current year or a range that includes
    it. This change ensures that the documentation accurately represents the copyright status
    of the project.

    py/docs/source/conf.py [52]

    -copyright = '2009-2024 Software Freedom Conservancy'
    +copyright = '2009-2023 Software Freedom Conservancy'
     
    Remove the experimental keyword from the executionContextName parameter in the addBinding command.

    Since the addBinding command is no longer experimental, remove the experimental keyword
    from the executionContextName parameter for consistency.

    common/devtools/chromium/v123/js_protocol.pdl [1668-1684]

     command addBinding
         parameters
           string name
    -      experimental deprecated optional ExecutionContextId executionContextId
    +      deprecated optional ExecutionContextId executionContextId
           optional string executionContextName
     
    Best practice
    Use Dependency Injection for better modularity and testability.

    The v123Domains constructor is directly instantiating its dependencies (v123Events,
    v123Javascript, etc.). This tightly couples the v123Domains class to specific
    implementations of its dependencies, making it harder to test and maintain. Consider using
    Dependency Injection (DI) to pass in these dependencies. This approach makes your code
    more modular, easier to test, and aligns with the inversion of control principle.

    java/src/org/openqa/selenium/devtools/v123/v123Domains.java [37-43]

    -public v123Domains(DevTools devtools) {
    +public v123Domains(DevTools devtools, v123Events events, v123Javascript js, v123Log log, v123Network network, v123Target target) {
         Require.nonNull("DevTools", devtools);
    -    events = new v123Events(devtools);
    -    js = new v123Javascript(devtools);
    -    log = new v123Log();
    -    network = new v123Network(devtools);
    -    target = new v123Target();
    +    this.events = events;
    +    this.js = js;
    +    this.log = log;
    +    this.network = network;
    +    this.target = target;
     }
     
    Use interfaces for dependencies to improve testability and flexibility.

    The V123Network class is tightly coupled to specific implementations of NetworkAdapter and
    FetchAdapter. Consider abstracting these dependencies behind interfaces and using
    constructor injection to pass in the dependencies. This change would improve the
    testability of the V123Network class by allowing for mocking of its dependencies and would
    make the code more flexible and easier to maintain.

    dotnet/src/webdriver/DevTools/v123/V123Network.cs [41-44]

    -public V123Network(NetworkAdapter network, FetchAdapter fetch)
    +public V123Network(INetworkAdapter network, IFetchAdapter fetch)
     {
         this.network = network;
         this.fetch = fetch;
     }
     
    Inject dependencies to improve testability and adhere to SOLID principles.

    The V123Domains class is directly creating instances of its domain-specific classes within
    its constructor. This approach makes it difficult to unit test the V123Domains class in
    isolation from its dependencies. Consider using an IoC container or passing these
    dependencies through the constructor. This would not only make your code more testable but
    also follow the Dependency Inversion Principle, a key aspect of SOLID principles.

    dotnet/src/webdriver/DevTools/v123/V123Domains.cs [31-34]

    -public V123Domains(DevToolsSession session)
    +public V123Domains(DevToolsSession session, INetwork network, IJavaScript javaScript, ITarget target, ILog log)
     {
    -    this.domains = new DevToolsSessionDomains(session);
    +    this.domains = new DevToolsSessionDomains(session, network, javaScript, target, log);
     }
     
    Use object initializer syntax for class properties.

    When initializing class properties in the constructor, consider using object initializer
    syntax for improved readability and conciseness. This approach can make the code cleaner,
    especially when setting multiple properties.

    dotnet/src/webdriver/DevTools/v123/V123JavaScript.cs [39-42]

    -public V123JavaScript(RuntimeAdapter runtime, PageAdapter page)
    +public V123JavaScript(RuntimeAdapter runtime, PageAdapter page) : this()
     {
         this.runtime = runtime;
         this.page = page;
     }
     
    Security
    Regularly review and update SHA256 checksums for external resources.

    To ensure the integrity and security of the downloaded artifacts, it's good practice to
    periodically review and update the SHA256 checksums for all external resources. This helps
    in protecting against compromised files and ensuring that the build process is using the
    correct and intended versions of dependencies.

    common/selenium_manager.bzl [9-24]

    +# Ensure to verify and update these SHA256 checksums regularly
     sha256 = "90d9d61bf25af93e4302b6184a45b132ee3c02b68c6665bf83eef6edb7e9fca5",
     ...
     sha256 = "85475ae5ff6721b371f9806ec1bb869cbb2e5c1b1b70862a2e3d5eec5c0384c0",
     ...
     sha256 = "13bd63fa51a75bbf1b98beb221edceed3f33bacf2e3b25cd39ef4e6ac84371eb",
     

    ✨ Improve tool usage guide:

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

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

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

    @codecov-commenter
    Copy link

    codecov-commenter commented Mar 27, 2024

    Codecov Report

    All modified and coverable lines are covered by tests ✅

    Project coverage is 58.63%. Comparing base (7660a33) to head (5cc15ee).
    Report is 1 commits behind head on trunk.

    ❗ Current head 5cc15ee differs from pull request most recent head 11cd967. Consider uploading reports for the commit 11cd967 to get more accurate results

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

    Additional details and impacted files
    @@           Coverage Diff           @@
    ##            trunk   #13747   +/-   ##
    =======================================
      Coverage   58.63%   58.63%           
    =======================================
      Files          86       86           
      Lines        5272     5272           
      Branches      218      218           
    =======================================
      Hits         3091     3091           
      Misses       1963     1963           
      Partials      218      218           

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

    Copy link

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

    CI Failure Feedback

    (Checks updated until commit 11cd967)

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

    Failed stage: Run Bazel [❌]

    Failure summary:

    The action failed due to multiple reasons:

  • All 27 test targets failed during execution.
  • Permission denied errors occurred while attempting to spawn processes, indicating a possible issue
    with permissions or access rights on the execution environment.
  • Failed to save several caches due to the caches already existing, indicating possible issues with
    cache management or concurrent job execution.

  • Relevant error logs:
    1:  ##[group]Operating System
    2:  Microsoft Windows Server 2022
    ...
    
    343:  "paths": [
    344:  "D:/_bazel-repo"
    345:  ]
    346:  }
    347:  }
    348:  ##[endgroup]
    349:  ##[group]Restore cache for bazelisk
    350:  Attempting to restore bazelisk cache from setup-bazel-1-win32-bazelisk-08ea2f71e68e1207415971222beffd388f7876fe120fb8503aebb28bd190118a
    351:  Failed to restore bazelisk cache
    352:  ##[endgroup]
    353:  ##[group]Restore cache for disk-rb-remote-edge-test
    354:  Attempting to restore disk-rb-remote-edge-test cache from setup-bazel-1-win32-disk-rb-remote-edge-test-67bdd411fae33428db8e6bb69f5c78e74e181e851fd6d56f2cdd15cbb1ed25a7
    355:  Failed to restore disk-rb-remote-edge-test cache
    356:  ##[endgroup]
    357:  ##[group]Restore cache for repository
    358:  Attempting to restore repository cache from setup-bazel-1-win32-repository-2de8c8951eb17afeec727f2b9b4393753d8e82d6aeb7ae10ad067e08fb21db92
    359:  Failed to restore repository cache
    360:  ##[endgroup]
    361:  ##[group]Restore cache for external-rb-remote-edge-test-manifest
    362:  Attempting to restore external-rb-remote-edge-test-manifest cache from setup-bazel-1-win32-external-rb-remote-edge-test-manifest-2de8c8951eb17afeec727f2b9b4393753d8e82d6aeb7ae10ad067e08fb21db92
    363:  Failed to restore external-rb-remote-edge-test-manifest cache
    ...
    
    520:  �[32mAnalyzing:�[0m 27 targets (654 packages loaded, 38320 targets configured)
    521:  �[32m[1 / 1]�[0m checking cached actions
    522:  �[32mAnalyzing:�[0m 27 targets (654 packages loaded, 38437 targets configured)
    523:  �[32m[1 / 12]�[0m checking cached actions
    524:  �[32mAnalyzing:�[0m 27 targets (654 packages loaded, 38438 targets configured)
    525:  �[32m[5 / 25]�[0m Creating source manifest for //rb/spec/integration/selenium/webdriver:guard-edge-remote; 0s local ... (4 actions running)
    526:  �[32mINFO: �[0mAnalyzed 27 targets (654 packages loaded, 38438 targets configured).
    527:  �[32m[17 / 48]�[0m [Prepa] Creating source manifest for //rb/lib/selenium/devtools:cdp-generate [for tool] ... (4 actions, 2 running)
    528:  �[32m[127 / 961]�[0m [Prepa] Writing repo mapping manifest for //rb/spec/integration/selenium/webdriver:error-edge-remote
    ...
    
    620:  �[32m[1,647 / 2,875]�[0m Copying directory npm__at_mui_icons-material__5.15.8__-554584225/package; 13s local, disk-cache ... (4 actions, 3 running)
    621:  �[35mWARNING: �[0mD:/a/selenium/selenium/BUILD.bazel:13:22: input 'package' to //:.aspect_rules_js/node_modules/parse-json@5.2.0/pkg is a directory; dependency checking of directories is unsound
    622:  �[35mWARNING: �[0mD:/a/selenium/selenium/BUILD.bazel:13:22: input 'package' to //:.aspect_rules_js/node_modules/parent-module@1.0.1/pkg is a directory; dependency checking of directories is unsound
    623:  �[35mWARNING: �[0mD:/a/selenium/selenium/BUILD.bazel:13:22: input 'package' to //:.aspect_rules_js/node_modules/node-releases@2.0.6/pkg is a directory; dependency checking of directories is unsound
    624:  �[32m[1,650 / 2,875]�[0m Copying directory npm__at_mui_icons-material__5.15.8__-554584225/package; 14s local, disk-cache ... (4 actions, 3 running)
    625:  �[35mWARNING: �[0mD:/a/selenium/selenium/BUILD.bazel:13:22: input 'package' to //:.aspect_rules_js/node_modules/ms@2.1.2/pkg is a directory; dependency checking of directories is unsound
    626:  �[35mWARNING: �[0mD:/a/selenium/selenium/BUILD.bazel:13:22: input 'package' to //:.aspect_rules_js/node_modules/lines-and-columns@1.2.4/pkg is a directory; dependency checking of directories is unsound
    627:  �[35mWARNING: �[0mD:/a/selenium/selenium/BUILD.bazel:13:22: input 'package' to //:.aspect_rules_js/node_modules/json5@2.2.3/pkg is a directory; dependency checking of directories is unsound
    628:  �[35mWARNING: �[0mD:/a/selenium/selenium/BUILD.bazel:13:22: input 'package' to //:.aspect_rules_js/node_modules/json-parse-even-better-errors@2.3.1/pkg is a directory; dependency checking of directories is unsound
    ...
    
    721:  �[32m[1,667 / 2,875]�[0m Copying directory npm__at_mui_icons-material__5.15.8__-554584225/package; 101s local, disk-cache ... (4 actions running)
    722:  �[32m[1,667 / 2,875]�[0m Copying directory npm__at_mui_icons-material__5.15.8__-554584225/package; 102s local, disk-cache ... (4 actions running)
    723:  �[35mWARNING: �[0mD:/a/selenium/selenium/BUILD.bazel:13:22: input 'package' to //:.aspect_rules_js/node_modules/globals@11.12.0/pkg is a directory; dependency checking of directories is unsound
    724:  �[35mWARNING: �[0mD:/a/selenium/selenium/BUILD.bazel:13:22: input 'package' to //:.aspect_rules_js/node_modules/gensync@1.0.0-beta.2/pkg is a directory; dependency checking of directories is unsound
    725:  �[35mWARNING: �[0mD:/a/selenium/selenium/BUILD.bazel:13:22: input 'package' to //:.aspect_rules_js/node_modules/function-bind@1.1.1/pkg is a directory; dependency checking of directories is unsound
    726:  �[32m[1,672 / 2,875]�[0m Copying directory npm__at_mui_icons-material__5.15.8__-554584225/package; 103s local, disk-cache ... (4 actions running)
    727:  �[35mWARNING: �[0mD:/a/selenium/selenium/BUILD.bazel:13:22: input 'package' to //:.aspect_rules_js/node_modules/escape-string-regexp@1.0.5/pkg is a directory; dependency checking of directories is unsound
    728:  �[35mWARNING: �[0mD:/a/selenium/selenium/BUILD.bazel:13:22: input 'package' to //:.aspect_rules_js/node_modules/escalade@3.1.1/pkg is a directory; dependency checking of directories is unsound
    729:  �[35mWARNING: �[0mD:/a/selenium/selenium/BUILD.bazel:13:22: input 'package' to //:.aspect_rules_js/node_modules/error-ex@1.3.2/pkg is a directory; dependency checking of directories is unsound
    ...
    
    955:  �[32m[2,745 / 2,875]�[0m Running bundle install (@bundle//:bundle); 33s local, disk-cache ... (4 actions running)
    956:  �[32m[2,746 / 2,875]�[0m Running bundle install (@bundle//:bundle); 34s local, disk-cache ... (3 actions running)
    957:  �[32m[2,748 / 2,875]�[0m Running bundle install (@bundle//:bundle); 36s local, disk-cache ... (2 actions, 1 running)
    958:  �[32m[2,748 / 2,875]�[0m Running bundle install (@bundle//:bundle); 38s local, disk-cache ... (2 actions running)
    959:  �[32m[2,748 / 2,875]�[0m Running bundle install (@bundle//:bundle); 41s local, disk-cache ... (2 actions running)
    960:  �[32m[2,750 / 2,875]�[0m Running bundle install (@bundle//:bundle); 42s local, disk-cache ... (3 actions running)
    961:  �[32m[2,751 / 2,875]�[0m Running bundle install (@bundle//:bundle); 46s local, disk-cache ... (3 actions, 2 running)
    962:  �[32mINFO: �[0mFrom Building java/src/org/openqa/selenium/remote/libapi-class.jar (66 source files):
    963:  java\src\org\openqa\selenium\remote\ErrorHandler.java:46: warning: [removal] ErrorCodes in org.openqa.selenium.remote has been deprecated and marked for removal
    964:  private final ErrorCodes errorCodes;
    965:  ^
    966:  java\src\org\openqa\selenium\remote\ErrorHandler.java:60: warning: [removal] ErrorCodes in org.openqa.selenium.remote has been deprecated and marked for removal
    967:  this.errorCodes = new ErrorCodes();
    968:  ^
    969:  java\src\org\openqa\selenium\remote\ErrorHandler.java:68: warning: [removal] ErrorCodes in org.openqa.selenium.remote has been deprecated and marked for removal
    970:  public ErrorHandler(ErrorCodes codes, boolean includeServerErrors) {
    971:  ^
    972:  java\src\org\openqa\selenium\remote\Response.java:97: warning: [removal] ErrorCodes in org.openqa.selenium.remote has been deprecated and marked for removal
    973:  ErrorCodes errorCodes = new ErrorCodes();
    974:  ^
    975:  java\src\org\openqa\selenium\remote\Response.java:97: warning: [removal] ErrorCodes in org.openqa.selenium.remote has been deprecated and marked for removal
    976:  ErrorCodes errorCodes = new ErrorCodes();
    977:  ^
    978:  java\src\org\openqa\selenium\remote\ProtocolHandshake.java:181: warning: [removal] ErrorCodes in org.openqa.selenium.remote has been deprecated and marked for removal
    979:  response.setStatus(ErrorCodes.SUCCESS);
    980:  ^
    981:  java\src\org\openqa\selenium\remote\ProtocolHandshake.java:182: warning: [removal] ErrorCodes in org.openqa.selenium.remote has been deprecated and marked for removal
    982:  response.setState(ErrorCodes.SUCCESS_STRING);
    983:  ^
    984:  java\src\org\openqa\selenium\remote\W3CHandshakeResponse.java:53: warning: [removal] ErrorCodes in org.openqa.selenium.remote has been deprecated and marked for removal
    985:  new ErrorCodes().toStatus((String) rawError, Optional.of(tuple.getStatusCode())));
    986:  ^
    987:  java\src\org\openqa\selenium\remote\W3CHandshakeResponse.java:56: warning: [removal] ErrorCodes in org.openqa.selenium.remote has been deprecated and marked for removal
    988:  new ErrorCodes().getExceptionType((String) rawError);
    989:  ^
    990:  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
    991:  private final ErrorCodes errorCodes = new ErrorCodes();
    992:  ^
    993:  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
    994:  private final ErrorCodes errorCodes = new ErrorCodes();
    995:  ^
    996:  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
    997:  int status = response.getStatus() == ErrorCodes.SUCCESS ? HTTP_OK : HTTP_INTERNAL_ERROR;
    998:  ^
    999:  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
    1000:  response.setStatus(ErrorCodes.UNKNOWN_COMMAND);
    1001:  ^
    1002:  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
    1003:  response.setStatus(ErrorCodes.UNHANDLED_ERROR);
    1004:  ^
    1005:  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
    1006:  response.setStatus(ErrorCodes.SUCCESS);
    1007:  ^
    1008:  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
    1009:  response.setState(errorCodes.toState(ErrorCodes.SUCCESS));
    1010:  ^
    1011:  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
    1012:  response.setState(errorCodes.toState(ErrorCodes.SUCCESS));
    1013:  ^
    1014:  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
    1015:  private final ErrorCodes errorCodes = new ErrorCodes();
    1016:  ^
    1017:  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
    1018:  private final ErrorCodes errorCodes = new ErrorCodes();
    1019:  ^
    1020:  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
    1021:  response.setStatus(ErrorCodes.UNKNOWN_COMMAND);
    1022:  ^
    1023:  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
    1024:  response.setStatus(ErrorCodes.UNHANDLED_ERROR);
    1025:  ^
    1026:  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
    1027:  response.setStatus(ErrorCodes.SUCCESS);
    ...
    
    1228:  �[32m[2,875 / 2,898]�[0m Testing //rb/spec/integration/selenium/webdriver/remote:driver-edge-remote; 47s local, disk-cache ... (4 actions running)
    1229:  �[31m�[1mFAIL: �[0m//rb/spec/integration/selenium/webdriver:timeout-edge-remote (see D:/_bazel/execroot/selenium/bazel-out/x64_windows-fastbuild/testlogs/rb/spec/integration/selenium/webdriver/timeout-edge-remote/test_attempts/attempt_2.log)
    1230:  �[32m[2,875 / 2,898]�[0m Testing //rb/spec/integration/selenium/webdriver/remote:driver-edge-remote; 49s local, disk-cache ... (4 actions running)
    1231:  �[32m[2,875 / 2,898]�[0m Testing //rb/spec/integration/selenium/webdriver/remote:driver-edge-remote; 54s local, disk-cache ... (4 actions running)
    1232:  �[31m�[1mFAIL: �[0m//rb/spec/integration/selenium/webdriver:guard-edge-remote (see D:/_bazel/execroot/selenium/bazel-out/x64_windows-fastbuild/testlogs/rb/spec/integration/selenium/webdriver/guard-edge-remote/test_attempts/attempt_2.log)
    1233:  �[32m[2,875 / 2,898]�[0m Testing //rb/spec/integration/selenium/webdriver/remote:driver-edge-remote; 55s local, disk-cache ... (4 actions running)
    1234:  �[32m[2,875 / 2,898]�[0m Testing //rb/spec/integration/selenium/webdriver/remote:driver-edge-remote; 61s local, disk-cache ... (4 actions running)
    1235:  �[31m�[1mFAIL: �[0m//rb/spec/integration/selenium/webdriver/remote:driver-edge-remote (see D:/_bazel/execroot/selenium/bazel-out/x64_windows-fastbuild/testlogs/rb/spec/integration/selenium/webdriver/remote/driver-edge-remote/test.log)
    1236:  �[31m�[1mFAILED: �[0m//rb/spec/integration/selenium/webdriver/remote:driver-edge-remote (Summary)
    1237:  D:/_bazel/execroot/selenium/bazel-out/x64_windows-fastbuild/testlogs/rb/spec/integration/selenium/webdriver/remote/driver-edge-remote/test.log
    1238:  ==================== Test output for //rb/spec/integration/selenium/webdriver/remote:driver-edge-remote:
    1239:  D:/_bazel/execroot/selenium/bazel-out/x64_windows-fastbuild/testlogs/rb/spec/integration/selenium/webdriver/remote/driver-edge-remote/test_attempts/attempt_1.log
    1240:  2024-03-27 14:19:31 INFO Selenium Server Location: D:/_bazel/execroot/selenium/bazel-out/x64_windows-fastbuild/bin/rb/spec/integration/selenium/webdriver/remote/driver-edge-remote.cmd.runfiles/selenium/java/src/org/openqa/selenium/grid/selenium_server_deploy.jar
    1241:  D:/_bazel/execroot/selenium/bazel-out/x64_windows-fastbuild/testlogs/rb/spec/integration/selenium/webdriver/remote/driver-edge-remote/test_attempts/attempt_2.log
    1242:  �[32mINFO: �[0mFrom Testing //rb/spec/integration/selenium/webdriver/remote:driver-edge-remote:
    1243:  An error occurred in a `before(:suite)` hook.
    1244:  Failure/Error: @pid = Process.spawn(*@command, options)
    1245:  Errno::EACCES:
    1246:  Permission denied - java
    1247:  # ./rb/lib/selenium/webdriver/common/child_process.rb:57:in `spawn'
    1248:  # ./rb/lib/selenium/webdriver/common/child_process.rb:57:in `start'
    1249:  # ./rb/lib/selenium/server.rb:204:in `start'
    1250:  # //?/D:/a/selenium/selenium/rb/spec/integration/selenium/webdriver/spec_helper.rb:40:in `block (2 levels) in <top (required)>'
    1251:  Finished in 0.04654 seconds (files took 0.61562 seconds to load)
    1252:  0 examples, 0 failures, 1 error occurred outside of examples
    1253:  ================================================================================
    1254:  ==================== Test output for //rb/spec/integration/selenium/webdriver/remote:driver-edge-remote:
    1255:  2024-03-27 14:19:58 INFO Selenium Server Location: D:/_bazel/execroot/selenium/bazel-out/x64_windows-fastbuild/bin/rb/spec/integration/selenium/webdriver/remote/driver-edge-remote.cmd.runfiles/selenium/java/src/org/openqa/selenium/grid/selenium_server_deploy.jar
    1256:  An error occurred in a `before(:suite)` hook.
    1257:  Failure/Error: @pid = Process.spawn(*@command, options)
    1258:  Errno::EACCES:
    1259:  Permission denied - java
    1260:  # ./rb/lib/selenium/webdriver/common/child_process.rb:57:in `spawn'
    1261:  # ./rb/lib/selenium/webdriver/common/child_process.rb:57:in `start'
    1262:  # ./rb/lib/selenium/server.rb:204:in `start'
    1263:  # //?/D:/a/selenium/selenium/rb/spec/integration/selenium/webdriver/spec_helper.rb:40:in `block (2 levels) in <top (required)>'
    1264:  Finished in 0.04321 seconds (files took 0.60801 seconds to load)
    1265:  0 examples, 0 failures, 1 error occurred outside of examples
    1266:  ================================================================================
    1267:  ==================== Test output for //rb/spec/integration/selenium/webdriver/remote:driver-edge-remote:
    1268:  2024-03-27 14:20:25 INFO Selenium Server Location: D:/_bazel/execroot/selenium/bazel-out/x64_windows-fastbuild/bin/rb/spec/integration/selenium/webdriver/remote/driver-edge-remote.cmd.runfiles/selenium/java/src/org/openqa/selenium/grid/selenium_server_deploy.jar
    1269:  An error occurred in a `before(:suite)` hook.
    1270:  Failure/Error: @pid = Process.spawn(*@command, options)
    1271:  Errno::EACCES:
    1272:  Permission denied - java
    1273:  # ./rb/lib/selenium/webdriver/common/child_process.rb:57:in `spawn'
    1274:  # ./rb/lib/selenium/webdriver/common/child_process.rb:57:in `start'
    1275:  # ./rb/lib/selenium/server.rb:204:in `start'
    1276:  # //?/D:/a/selenium/selenium/rb/spec/integration/selenium/webdriver/spec_helper.rb:40:in `block (2 levels) in <top (required)>'
    1277:  Finished in 0.04555 seconds (files took 0.60529 seconds to load)
    1278:  0 examples, 0 failures, 1 error occurred outside of examples
    1279:  ================================================================================
    1280:  �[32m[2,876 / 2,898]�[0m 1 / 27 tests, �[31m�[1m1 failed�[0m;�[0m Testing //rb/spec/integration/selenium/webdriver:action_builder-edge-remote; 55s local, disk-cache ... (4 actions, 3 running)
    1281:  �[32m[2,876 / 2,898]�[0m 1 / 27 tests, �[31m�[1m1 failed�[0m;�[0m Testing //rb/spec/integration/selenium/webdriver:action_builder-edge-remote; 61s local, disk-cache ... (4 actions, 3 running)
    1282:  �[31m�[1mFAIL: �[0m//rb/spec/integration/selenium/webdriver:action_builder-edge-remote (see D:/_bazel/execroot/selenium/bazel-out/x64_windows-fastbuild/testlogs/rb/spec/integration/selenium/webdriver/action_builder-edge-remote/test.log)
    1283:  ==================== Test output for //rb/spec/integration/selenium/webdriver:action_builder-edge-remote:
    1284:  �[31m�[1mFAILED: �[0m//rb/spec/integration/selenium/webdriver:action_builder-edge-remote (Summary)
    1285:  2024-03-27 14:19:38 INFO Selenium Server Location: D:/_bazel/execroot/selenium/bazel-out/x64_windows-fastbuild/bin/rb/spec/integration/selenium/webdriver/action_builder-edge-remote.cmd.runfiles/selenium/java/src/org/openqa/selenium/grid/selenium_server_deploy.jar
    1286:  D:/_bazel/execroot/selenium/bazel-out/x64_windows-fastbuild/testlogs/rb/spec/integration/selenium/webdriver/action_builder-edge-remote/test.log
    1287:  D:/_bazel/execroot/selenium/bazel-out/x64_windows-fastbuild/testlogs/rb/spec/integration/selenium/webdriver/action_builder-edge-remote/test_attempts/attempt_1.log
    1288:  An error occurred in a `before(:suite)` hook.
    1289:  D:/_bazel/execroot/selenium/bazel-out/x64_windows-fastbuild/testlogs/rb/spec/integration/selenium/webdriver/action_builder-edge-remote/test_attempts/attempt_2.log
    1290:  Failure/Error: @pid = Process.spawn(*@command, options)
    1291:  �[32mINFO: �[0mFrom Testing //rb/spec/integration/selenium/webdriver:action_builder-edge-remote:
    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.04706 seconds (files took 0.69848 seconds to load)
    1299:  0 examples, 0 failures, 1 error occurred outside of examples
    1300:  ================================================================================
    1301:  ==================== Test output for //rb/spec/integration/selenium/webdriver:action_builder-edge-remote:
    1302:  2024-03-27 14:20:05 INFO Selenium Server Location: D:/_bazel/execroot/selenium/bazel-out/x64_windows-fastbuild/bin/rb/spec/integration/selenium/webdriver/action_builder-edge-remote.cmd.runfiles/selenium/java/src/org/openqa/selenium/grid/selenium_server_deploy.jar
    1303:  An error occurred in a `before(:suite)` hook.
    1304:  Failure/Error: @pid = Process.spawn(*@command, options)
    1305:  Errno::EACCES:
    1306:  Permission denied - java
    1307:  # ./rb/lib/selenium/webdriver/common/child_process.rb:57:in `spawn'
    1308:  # ./rb/lib/selenium/webdriver/common/child_process.rb:57:in `start'
    1309:  # ./rb/lib/selenium/server.rb:204:in `start'
    1310:  # //?/D:/a/selenium/selenium/rb/spec/integration/selenium/webdriver/spec_helper.rb:40:in `block (2 levels) in <top (required)>'
    1311:  Finished in 0.04562 seconds (files took 0.63788 seconds to load)
    1312:  0 examples, 0 failures, 1 error occurred outside of examples
    1313:  ================================================================================
    1314:  ==================== Test output for //rb/spec/integration/selenium/webdriver:action_builder-edge-remote:
    1315:  2024-03-27 14:20:32 INFO Selenium Server Location: D:/_bazel/execroot/selenium/bazel-out/x64_windows-fastbuild/bin/rb/spec/integration/selenium/webdriver/action_builder-edge-remote.cmd.runfiles/selenium/java/src/org/openqa/selenium/grid/selenium_server_deploy.jar
    1316:  An error occurred in a `before(:suite)` hook.
    1317:  Failure/Error: @pid = Process.spawn(*@command, options)
    1318:  Errno::EACCES:
    1319:  Permission denied - java
    1320:  # ./rb/lib/selenium/webdriver/common/child_process.rb:57:in `spawn'
    1321:  # ./rb/lib/selenium/webdriver/common/child_process.rb:57:in `start'
    1322:  # ./rb/lib/selenium/server.rb:204:in `start'
    1323:  # //?/D:/a/selenium/selenium/rb/spec/integration/selenium/webdriver/spec_helper.rb:40:in `block (2 levels) in <top (required)>'
    1324:  Finished in 0.04788 seconds (files took 0.65688 seconds to load)
    1325:  0 examples, 0 failures, 1 error occurred outside of examples
    1326:  ================================================================================
    1327:  �[32m[2,877 / 2,898]�[0m 2 / 27 tests, �[31m�[1m2 failed�[0m;�[0m Testing //rb/spec/integration/selenium/webdriver:timeout-edge-remote; 55s local, disk-cache ... (4 actions, 2 running)
    1328:  �[32m[2,877 / 2,898]�[0m 2 / 27 tests, �[31m�[1m2 failed�[0m;�[0m Testing //rb/spec/integration/selenium/webdriver:timeout-edge-remote; 61s local, disk-cache ... (4 actions, 2 running)
    1329:  �[31m�[1mFAIL: �[0m//rb/spec/integration/selenium/webdriver:timeout-edge-remote (see D:/_bazel/execroot/selenium/bazel-out/x64_windows-fastbuild/testlogs/rb/spec/integration/selenium/webdriver/timeout-edge-remote/test.log)
    1330:  ==================== Test output for //rb/spec/integration/selenium/webdriver:timeout-edge-remote:
    1331:  �[31m�[1mFAILED: �[0m//rb/spec/integration/selenium/webdriver:timeout-edge-remote (Summary)
    1332:  2024-03-27 14:19:45 INFO Selenium Server Location: D:/_bazel/execroot/selenium/bazel-out/x64_windows-fastbuild/bin/rb/spec/integration/selenium/webdriver/timeout-edge-remote.cmd.runfiles/selenium/java/src/org/openqa/selenium/grid/selenium_server_deploy.jar
    1333:  D:/_bazel/execroot/selenium/bazel-out/x64_windows-fastbuild/testlogs/rb/spec/integration/selenium/webdriver/timeout-edge-remote/test.log
    1334:  An error occurred in a `before(:suite)` hook.
    1335:  Failure/Error: @pid = Process.spawn(*@command, options)
    1336:  Errno::EACCES:
    1337:  Permission denied - java
    1338:  # ./rb/lib/selenium/webdriver/common/child_process.rb:57:in `spawn'
    1339:  # ./rb/lib/selenium/webdriver/common/child_process.rb:57:in `start'
    1340:  # ./rb/lib/selenium/server.rb:204:in `start'
    1341:  # //?/D:/a/selenium/selenium/rb/spec/integration/selenium/webdriver/spec_helper.rb:40:in `block (2 levels) in <top (required)>'
    1342:  Finished in 0.04597 seconds (files took 0.64816 seconds to load)
    1343:  0 examples, 0 failures, 1 error occurred outside of examples
    1344:  ================================================================================
    1345:  ==================== Test output for //rb/spec/integration/selenium/webdriver:timeout-edge-remote:
    1346:  2024-03-27 14:20:12 INFO Selenium Server Location: D:/_bazel/execroot/selenium/bazel-out/x64_windows-fastbuild/bin/rb/spec/integration/selenium/webdriver/timeout-edge-remote.cmd.runfiles/selenium/java/src/org/openqa/selenium/grid/selenium_server_deploy.jar
    1347:  An error occurred in a `before(:suite)` hook.
    1348:  Failure/Error: @pid = Process.spawn(*@command, options)
    1349:  Errno::EACCES:
    1350:  Permission denied - java
    1351:  # ./rb/lib/selenium/webdriver/common/child_process.rb:57:in `spawn'
    1352:  # ./rb/lib/selenium/webdriver/common/child_process.rb:57:in `start'
    1353:  # ./rb/lib/selenium/server.rb:204:in `start'
    1354:  # //?/D:/a/selenium/selenium/rb/spec/integration/selenium/webdriver/spec_helper.rb:40:in `block (2 levels) in <top (required)>'
    1355:  Finished in 0.04628 seconds (files took 0.61783 seconds to load)
    1356:  0 examples, 0 failures, 1 error occurred outside of examples
    1357:  ================================================================================
    1358:  ==================== Test output for //rb/spec/integration/selenium/webdriver:timeout-edge-remote:
    1359:  2024-03-27 14:20:39 INFO Selenium Server Location: D:/_bazel/execroot/selenium/bazel-out/x64_windows-fastbuild/bin/rb/spec/integration/selenium/webdriver/timeout-edge-remote.cmd.runfiles/selenium/java/src/org/openqa/selenium/grid/selenium_server_deploy.jar
    1360:  An error occurred in a `before(:suite)` hook.
    1361:  Failure/Error: @pid = Process.spawn(*@command, options)
    1362:  Errno::EACCES:
    1363:  Permission denied - java
    1364:  # ./rb/lib/selenium/webdriver/common/child_process.rb:57:in `spawn'
    1365:  # ./rb/lib/selenium/webdriver/common/child_process.rb:57:in `start'
    1366:  # ./rb/lib/selenium/server.rb:204:in `start'
    1367:  # //?/D:/a/selenium/selenium/rb/spec/integration/selenium/webdriver/spec_helper.rb:40:in `block (2 levels) in <top (required)>'
    1368:  Finished in 0.06546 seconds (files took 0.91754 seconds to load)
    1369:  0 examples, 0 failures, 1 error occurred outside of examples
    1370:  ================================================================================
    1371:  D:/_bazel/execroot/selenium/bazel-out/x64_windows-fastbuild/testlogs/rb/spec/integration/selenium/webdriver/timeout-edge-remote/test_attempts/attempt_1.log
    1372:  D:/_bazel/execroot/selenium/bazel-out/x64_windows-fastbuild/testlogs/rb/spec/integration/selenium/webdriver/timeout-edge-remote/test_attempts/attempt_2.log
    1373:  �[32mINFO: �[0mFrom Testing //rb/spec/integration/selenium/webdriver:timeout-edge-remote:
    1374:  �[32m[2,878 / 2,898]�[0m 3 / 27 tests, �[31m�[1m3 failed�[0m;�[0m Testing //rb/spec/integration/selenium/webdriver:guard-edge-remote; 55s local, disk-cache ... (4 actions, 1 running)
    1375:  �[32m[2,878 / 2,898]�[0m 3 / 27 tests, �[31m�[1m3 failed�[0m;�[0m Testing //rb/spec/integration/selenium/webdriver:guard-edge-remote; 56s local, disk-cache ... (4 actions, 1 running)
    1376:  �[32m[2,878 / 2,898]�[0m 3 / 27 tests, �[31m�[1m3 failed�[0m;�[0m Testing //rb/spec/integration/selenium/webdriver:guard-edge-remote; 62s local, disk-cache ... (4 actions, 2 running)
    1377:  �[31m�[1mFAIL: �[0m//rb/spec/integration/selenium/webdriver:guard-edge-remote (see D:/_bazel/execroot/selenium/bazel-out/x64_windows-fastbuild/testlogs/rb/spec/integration/selenium/webdriver/guard-edge-remote/test.log)
    1378:  ==================== Test output for //rb/spec/integration/selenium/webdriver:guard-edge-remote:
    1379:  2024-03-27 14:19:51 INFO Selenium Server Location: D:/_bazel/execroot/selenium/bazel-out/x64_windows-fastbuild/bin/rb/spec/integration/selenium/webdriver/guard-edge-remote.cmd.runfiles/selenium/java/src/org/openqa/selenium/grid/selenium_server_deploy.jar
    1380:  �[31m�[1mFAILED: �[0m//rb/spec/integration/selenium/webdriver:guard-edge-remote (Summary)
    1381:  D:/_bazel/execroot/selenium/bazel-out/x64_windows-fastbuild/testlogs/rb/spec/integration/selenium/webdriver/guard-edge-remote/test.log
    1382:  An error occurred in a `before(:suite)` hook.
    1383:  D:/_bazel/execroot/selenium/bazel-out/x64_windows-fastbuild/testlogs/rb/spec/integration/selenium/webdriver/guard-edge-remote/test_attempts/attempt_1.log
    1384:  Failure/Error: @pid = Process.spawn(*@command, options)
    ...
    
    1386:  �[32mINFO: �[0mFrom Testing //rb/spec/integration/selenium/webdriver:guard-edge-remote:
    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.04274 seconds (files took 0.58641 seconds to load)
    1394:  0 examples, 0 failures, 1 error occurred outside of examples
    1395:  ================================================================================
    1396:  ==================== Test output for //rb/spec/integration/selenium/webdriver:guard-edge-remote:
    1397:  2024-03-27 14:20:18 INFO Selenium Server Location: D:/_bazel/execroot/selenium/bazel-out/x64_windows-fastbuild/bin/rb/spec/integration/selenium/webdriver/guard-edge-remote.cmd.runfiles/selenium/java/src/org/openqa/selenium/grid/selenium_server_deploy.jar
    1398:  An error occurred in a `before(:suite)` hook.
    1399:  Failure/Error: @pid = Process.spawn(*@command, options)
    1400:  Errno::EACCES:
    1401:  Permission denied - java
    1402:  # ./rb/lib/selenium/webdriver/common/child_process.rb:57:in `spawn'
    1403:  # ./rb/lib/selenium/webdriver/common/child_process.rb:57:in `start'
    1404:  # ./rb/lib/selenium/server.rb:204:in `start'
    1405:  # //?/D:/a/selenium/selenium/rb/spec/integration/selenium/webdriver/spec_helper.rb:40:in `block (2 levels) in <top (required)>'
    1406:  Finished in 0.04355 seconds (files took 0.58689 seconds to load)
    1407:  0 examples, 0 failures, 1 error occurred outside of examples
    1408:  ================================================================================
    1409:  ==================== Test output for //rb/spec/integration/selenium/webdriver:guard-edge-remote:
    1410:  2024-03-27 14:20:47 INFO Selenium Server Location: D:/_bazel/execroot/selenium/bazel-out/x64_windows-fastbuild/bin/rb/spec/integration/selenium/webdriver/guard-edge-remote.cmd.runfiles/selenium/java/src/org/openqa/selenium/grid/selenium_server_deploy.jar
    1411:  An error occurred in a `before(:suite)` hook.
    1412:  Failure/Error: @pid = Process.spawn(*@command, options)
    1413:  Errno::EACCES:
    1414:  Permission denied - java
    1415:  # ./rb/lib/selenium/webdriver/common/child_process.rb:57:in `spawn'
    1416:  # ./rb/lib/selenium/webdriver/common/child_process.rb:57:in `start'
    1417:  # ./rb/lib/selenium/server.rb:204:in `start'
    1418:  # //?/D:/a/selenium/selenium/rb/spec/integration/selenium/webdriver/spec_helper.rb:40:in `block (2 levels) in <top (required)>'
    1419:  Finished in 0.07307 seconds (files took 0.87194 seconds to load)
    1420:  0 examples, 0 failures, 1 error occurred outside of examples
    1421:  ================================================================================
    1422:  �[32m[2,879 / 2,898]�[0m 4 / 27 tests, �[31m�[1m4 failed�[0m;�[0m Testing //rb/spec/integration/selenium/webdriver:storage-edge-remote; 15s disk-cache ... (4 actions, 1 running)
    1423:  �[32m[2,879 / 2,898]�[0m 4 / 27 tests, �[31m�[1m4 failed�[0m;�[0m Testing //rb/spec/integration/selenium/webdriver:shadow_root-edge-remote; 13s disk-cache ... (4 actions, 1 running)
    1424:  �[32m[2,879 / 2,898]�[0m 4 / 27 tests, �[31m�[1m4 failed�[0m;�[0m Testing //rb/spec/integration/selenium/webdriver:shadow_root-edge-remote; 14s disk-cache ... (4 actions, 2 running)
    1425:  �[31m�[1mFAIL: �[0m//rb/spec/integration/selenium/webdriver:window-edge-remote (see D:/_bazel/execroot/selenium/bazel-out/x64_windows-fastbuild/testlogs/rb/spec/integration/selenium/webdriver/window-edge-remote/test_attempts/attempt_1.log)
    1426:  �[32m[2,879 / 2,898]�[0m 4 / 27 tests, �[31m�[1m4 failed�[0m;�[0m Testing //rb/spec/integration/selenium/webdriver:shadow_root-edge-remote; 16s disk-cache ... (4 actions, 2 running)
    1427:  �[32m[2,879 / 2,898]�[0m 4 / 27 tests, �[31m�[1m4 failed�[0m;�[0m Testing //rb/spec/integration/selenium/webdriver:shadow_root-edge-remote; 18s disk-cache ... (4 actions, 2 running)
    1428:  �[32m[2,879 / 2,898]�[0m 4 / 27 tests, �[31m�[1m4 failed�[0m;�[0m Testing //rb/spec/integration/selenium/webdriver:window-edge-remote; 14s local, disk-cache ... (4 actions, 2 running)
    1429:  �[32m[2,879 / 2,898]�[0m 4 / 27 tests, �[31m�[1m4 failed�[0m;�[0m Testing //rb/spec/integration/selenium/webdriver:window-edge-remote; 15s local, disk-cache ... (4 actions, 2 running)
    1430:  �[31m�[1mFAIL: �[0m//rb/spec/integration/selenium/webdriver:storage-edge-remote (see D:/_bazel/execroot/selenium/bazel-out/x64_windows-fastbuild/testlogs/rb/spec/integration/selenium/webdriver/storage-edge-remote/test_attempts/attempt_1.log)
    1431:  �[32m[2,879 / 2,898]�[0m 4 / 27 tests, �[31m�[1m4 failed�[0m;�[0m Testing //rb/spec/integration/selenium/webdriver:window-edge-remote; 17s local, disk-cache ... (4 actions, 2 running)
    1432:  �[32m[2,879 / 2,898]�[0m 4 / 27 tests, �[31m�[1m4 failed�[0m;�[0m Testing //rb/spec/integration/selenium/webdriver:window-edge-remote; 19s local, disk-cache ... (4 actions, 2 running)
    1433:  �[32m[2,879 / 2,898]�[0m 4 / 27 tests, �[31m�[1m4 failed�[0m;�[0m Testing //rb/spec/integration/selenium/webdriver:window-edge-remote; 22s local, disk-cache ... (4 actions, 3 running)
    1434:  �[31m�[1mFAIL: �[0m//rb/spec/integration/selenium/webdriver:window-edge-remote (see D:/_bazel/execroot/selenium/bazel-out/x64_windows-fastbuild/testlogs/rb/spec/integration/selenium/webdriver/window-edge-remote/test_attempts/attempt_2.log)
    1435:  �[32m[2,879 / 2,898]�[0m 4 / 27 tests, �[31m�[1m4 failed�[0m;�[0m Testing //rb/spec/integration/selenium/webdriver:window-edge-remote; 24s local, disk-cache ... (4 actions, 3 running)
    1436:  �[32m[2,879 / 2,898]�[0m 4 / 27 tests, �[31m�[1m4 failed�[0m;�[0m Testing //rb/spec/integration/selenium/webdriver:window-edge-remote; 29s local, disk-cache ... (4 actions, 3 running)
    1437:  �[31m�[1mFAIL: �[0m//rb/spec/integration/selenium/webdriver:shadow_root-edge-remote (see D:/_bazel/execroot/selenium/bazel-out/x64_windows-fastbuild/testlogs/rb/spec/integration/selenium/webdriver/shadow_root-edge-remote/test_attempts/attempt_1.log)
    1438:  �[32m[2,879 / 2,898]�[0m 4 / 27 tests, �[31m�[1m4 failed�[0m;�[0m Testing //rb/spec/integration/selenium/webdriver:window-edge-remote; 31s local, disk-cache ... (4 actions, 3 running)
    1439:  �[32m[2,879 / 2,898]�[0m 4 / 27 tests, �[31m�[1m4 failed�[0m;�[0m Testing //rb/spec/integration/selenium/webdriver:window-edge-remote; 36s local, disk-cache ... (4 actions running)
    1440:  �[31m�[1mFAIL: �[0m//rb/spec/integration/selenium/webdriver:storage-edge-remote (see D:/_bazel/execroot/selenium/bazel-out/x64_windows-fastbuild/testlogs/rb/spec/integration/selenium/webdriver/storage-edge-remote/test_attempts/attempt_2.log)
    1441:  �[32m[2,879 / 2,898]�[0m 4 / 27 tests, �[31m�[1m4 failed�[0m;�[0m Testing //rb/spec/integration/selenium/webdriver:window-edge-remote; 38s local, disk-cache ... (4 actions running)
    1442:  �[32m[2,879 / 2,898]�[0m 4 / 27 tests, �[31m�[1m4 failed�[0m;�[0m Testing //rb/spec/integration/selenium/webdriver:window-edge-remote; 41s local, disk-cache ... (4 actions running)
    1443:  �[32m[2,879 / 2,898]�[0m 4 / 27 tests, �[31m�[1m4 failed�[0m;�[0m Testing //rb/spec/integration/selenium/webdriver:window-edge-remote; 43s local, disk-cache ... (4 actions running)
    1444:  �[31m�[1mFAIL: �[0m//rb/spec/integration/selenium/webdriver:virtual_authenticator-edge-remote (see D:/_bazel/execroot/selenium/bazel-out/x64_windows-fastbuild/testlogs/rb/spec/integration/selenium/webdriver/virtual_authenticator-edge-remote/test_attempts/attempt_1.log)
    1445:  �[32m[2,879 / 2,898]�[0m 4 / 27 tests, �[31m�[1m4 failed�[0m;�[0m Testing //rb/spec/integration/selenium/webdriver:window-edge-remote; 45s local, disk-cache ... (4 actions running)
    1446:  �[32m[2,879 / 2,898]�[0m 4 / 27 tests, �[31m�[1m4 failed�[0m;�[0m Testing //rb/spec/integration/selenium/webdriver:window-edge-remote; 50s local, disk-cache ... (4 actions running)
    1447:  �[31m�[1mFAIL: �[0m//rb/spec/integration/selenium/webdriver:window-edge-remote (see D:/_bazel/execroot/selenium/bazel-out/x64_windows-fastbuild/testlogs/rb/spec/integration/selenium/webdriver/window-edge-remote/test.log)
    1448:  �[31m�[1mFAILED: �[0m//rb/spec/integration/selenium/webdriver:window-edge-remote (Summary)
    1449:  D:/_bazel/execroot/selenium/bazel-out/x64_windows-fastbuild/testlogs/rb/spec/integration/selenium/webdriver/window-edge-remote/test.log
    1450:  D:/_bazel/execroot/selenium/bazel-out/x64_windows-fastbuild/testlogs/rb/spec/integration/selenium/webdriver/window-edge-remote/test_attempts/attempt_1.log
    1451:  D:/_bazel/execroot/selenium/bazel-out/x64_windows-fastbuild/testlogs/rb/spec/integration/selenium/webdriver/window-edge-remote/test_attempts/attempt_2.log
    1452:  �[32mINFO: �[0mFrom Testing //rb/spec/integration/selenium/webdriver:window-edge-remote:
    1453:  ==================== Test output for //rb/spec/integration/selenium/webdriver:window-edge-remote:
    1454:  2024-03-27 14:20:55 INFO Selenium Server Location: D:/_bazel/execroot/selenium/bazel-out/x64_windows-fastbuild/bin/rb/spec/integration/selenium/webdriver/window-edge-remote.cmd.runfiles/selenium/java/src/org/openqa/selenium/grid/selenium_server_deploy.jar
    1455:  An error occurred in a `before(:suite)` hook.
    1456:  Failure/Error: @pid = Process.spawn(*@command, options)
    1457:  Errno::EACCES:
    1458:  Permission denied - java
    1459:  # ./rb/lib/selenium/webdriver/common/child_process.rb:57:in `spawn'
    1460:  # ./rb/lib/selenium/webdriver/common/child_process.rb:57:in `start'
    1461:  # ./rb/lib/selenium/server.rb:204:in `start'
    1462:  # //?/D:/a/selenium/selenium/rb/spec/integration/selenium/webdriver/spec_helper.rb:40:in `block (2 levels) in <top (required)>'
    1463:  Finished in 0.05264 seconds (files took 1.22 seconds to load)
    1464:  0 examples, 0 failures, 1 error occurred outside of examples
    1465:  ================================================================================
    1466:  ==================== Test output for //rb/spec/integration/selenium/webdriver:window-edge-remote:
    1467:  2024-03-27 14:21:10 INFO Selenium Server Location: D:/_bazel/execroot/selenium/bazel-out/x64_windows-fastbuild/bin/rb/spec/integration/selenium/webdriver/window-edge-remote.cmd.runfiles/selenium/java/src/org/openqa/selenium/grid/selenium_server_deploy.jar
    1468:  An error occurred in a `before(:suite)` hook.
    1469:  Failure/Error: @pid = Process.spawn(*@command, options)
    1470:  Errno::EACCES:
    1471:  Permission denied - java
    1472:  # ./rb/lib/selenium/webdriver/common/child_process.rb:57:in `spawn'
    1473:  # ./rb/lib/selenium/webdriver/common/child_process.rb:57:in `start'
    1474:  # ./rb/lib/selenium/server.rb:204:in `start'
    1475:  # //?/D:/a/selenium/selenium/rb/spec/integration/selenium/webdriver/spec_helper.rb:40:in `block (2 levels) in <top (required)>'
    1476:  Finished in 0.05293 seconds (files took 0.65321 seconds to load)
    1477:  0 examples, 0 failures, 1 error occurred outside of examples
    1478:  ================================================================================
    1479:  ==================== Test output for //rb/spec/integration/selenium/webdriver:window-edge-remote:
    1480:  2024-03-27 14:21:38 INFO Selenium Server Location: D:/_bazel/execroot/selenium/bazel-out/x64_windows-fastbuild/bin/rb/spec/integration/selenium/webdriver/window-edge-remote.cmd.runfiles/selenium/java/src/org/openqa/selenium/grid/selenium_server_deploy.jar
    1481:  An error occurred in a `before(:suite)` hook.
    1482:  Failure/Error: @pid = Process.spawn(*@command, options)
    1483:  Errno::EACCES:
    1484:  Permission denied - java
    1485:  # ./rb/lib/selenium/webdriver/common/child_process.rb:57:in `spawn'
    1486:  # ./rb/lib/selenium/webdriver/common/child_process.rb:57:in `start'
    1487:  # ./rb/lib/selenium/server.rb:204:in `start'
    1488:  # //?/D:/a/selenium/selenium/rb/spec/integration/selenium/webdriver/spec_helper.rb:40:in `block (2 levels) in <top (required)>'
    1489:  Finished in 0.04826 seconds (files took 0.65757 seconds to load)
    1490:  0 examples, 0 failures, 1 error occurred outside of examples
    1491:  ================================================================================
    1492:  �[32m[2,880 / 2,898]�[0m 5 / 27 tests, �[31m�[1m5 failed�[0m;�[0m Testing //rb/spec/integration/selenium/webdriver:storage-edge-remote; 44s local, disk-cache ... (4 actions, 3 running)
    1493:  �[32m[2,880 / 2,898]�[0m 5 / 27 tests, �[31m�[1m5 failed�[0m;�[0m Testing //rb/spec/integration/selenium/webdriver:storage-edge-remote; 49s local, disk-cache ... (4 actions, 3 running)
    1494:  �[31m�[1mFAIL: �[0m//rb/spec/integration/selenium/webdriver:shadow_root-edge-remote (see D:/_bazel/execroot/selenium/bazel-out/x64_windows-fastbuild/testlogs/rb/spec/integration/selenium/webdriver/shadow_root-edge-remote/test_attempts/attempt_2.log)
    1495:  �[32m[2,880 / 2,898]�[0m 5 / 27 tests, �[31m�[1m5 failed�[0m;�[0m Testing //rb/spec/integration/selenium/webdriver:storage-edge-remote; 51s local, disk-cache ... (4 actions, 3 running)
    1496:  �[32m[2,880 / 2,898]�[0m 5 / 27 tests, �[31m�[1m5 failed�[0m;�[0m Testing //rb/spec/integration/selenium/webdriver:storage-edge-remote; 54s local, disk-cache ... (4 actions, 3 running)
    1497:  �[32m[2,880 / 2,898]�[0m 5 / 27 tests, �[31m�[1m5 failed�[0m;�[0m Testing //rb/spec/integration/selenium/webdriver:storage-edge-remote; 56s local, disk-cache ... (4 actions, 3 running)
    1498:  �[31m�[1mFAIL: �[0m//rb/spec/integration/selenium/webdriver:storage-edge-remote (see D:/_bazel/execroot/selenium/bazel-out/x64_windows-fastbuild/testlogs/rb/spec/integration/selenium/webdriver/storage-edge-remote/test.log)
    1499:  �[31m�[1mFAILED: �[0m//rb/spec/integration/selenium/webdriver:storage-edge-remote (Summary)
    1500:  D:/_bazel/execroot/selenium/bazel-out/x64_windows-fastbuild/testlogs/rb/spec/integration/selenium/webdriver/storage-edge-remote/test.log
    1501:  D:/_bazel/execroot/selenium/bazel-out/x64_windows-fastbuild/testlogs/rb/spec/integration/selenium/webdriver/storage-edge-remote/test_attempts/attempt_1.log
    1502:  D:/_bazel/execroot/selenium/bazel-out/x64_windows-fastbuild/testlogs/rb/spec/integration/selenium/webdriver/storage-edge-remote/test_attempts/attempt_2.log
    1503:  �[32mINFO: �[0mFrom Testing //rb/spec/integration/selenium/webdriver:storage-edge-remote:
    1504:  ==================== Test output for //rb/spec/integration/selenium/webdriver:storage-edge-remote:
    1505:  2024-03-27 14:21:03 INFO Selenium Server Location: D:/_bazel/execroot/selenium/bazel-out/x64_windows-fastbuild/bin/rb/spec/integration/selenium/webdriver/storage-edge-remote.cmd.runfiles/selenium/java/src/org/openqa/selenium/grid/selenium_server_deploy.jar
    1506:  An error occurred in a `before(:suite)` hook.
    1507:  Failure/Error: @pid = Process.spawn(*@command, options)
    1508:  Errno::EACCES:
    1509:  Permission denied - java
    1510:  # ./rb/lib/selenium/webdriver/common/child_process.rb:57:in `spawn'
    1511:  # ./rb/lib/selenium/webdriver/common/child_process.rb:57:in `start'
    1512:  # ./rb/lib/selenium/server.rb:204:in `start'
    1513:  # //?/D:/a/selenium/selenium/rb/spec/integration/selenium/webdriver/spec_helper.rb:40:in `block (2 levels) in <top (required)>'
    1514:  Finished in 0.04991 seconds (files took 0.94944 seconds to load)
    1515:  0 examples, 0 failures, 1 error occurred outside of examples
    1516:  ================================================================================
    1517:  ==================== Test output for //rb/spec/integration/selenium/webdriver:storage-edge-remote:
    1518:  2024-03-27 14:21:24 INFO Selenium Server Location: D:/_bazel/execroot/selenium/bazel-out/x64_windows-fastbuild/bin/rb/spec/integration/selenium/webdriver/storage-edge-remote.cmd.runfiles/selenium/java/src/org/openqa/selenium/grid/selenium_server_deploy.jar
    1519:  An error occurred in a `before(:suite)` hook.
    1520:  Failure/Error: @pid = Process.spawn(*@command, options)
    1521:  Errno::EACCES:
    1522:  Permission denied - java
    1523:  # ./rb/lib/selenium/webdriver/common/child_process.rb:57:in `spawn'
    1524:  # ./rb/lib/selenium/webdriver/common/child_process.rb:57:in `start'
    1525:  # ./rb/lib/selenium/server.rb:204:in `start'
    1526:  # //?/D:/a/selenium/selenium/rb/spec/integration/selenium/webdriver/spec_helper.rb:40:in `block (2 levels) in <top (required)>'
    1527:  Finished in 0.04719 seconds (files took 0.6393 seconds to load)
    1528:  0 examples, 0 failures, 1 error occurred outside of examples
    1529:  ================================================================================
    1530:  ==================== Test output for //rb/spec/integration/selenium/webdriver:storage-edge-remote:
    1531:  2024-03-27 14:21:52 INFO Selenium Server Location: D:/_bazel/execroot/selenium/bazel-out/x64_windows-fastbuild/bin/rb/spec/integration/selenium/webdriver/storage-edge-remote.cmd.runfiles/selenium/java/src/org/openqa/selenium/grid/selenium_server_deploy.jar
    1532:  An error occurred in a `before(:suite)` hook.
    1533:  Failure/Error: @pid = Process.spawn(*@command, options)
    1534:  Errno::EACCES:
    1535:  Permission denied - java
    1536:  # ./rb/lib/selenium/webdriver/common/child_process.rb:57:in `spawn'
    1537:  # ./rb/lib/selenium/webdriver/common/child_process.rb:57:in `start'
    1538:  # ./rb/lib/selenium/server.rb:204:in `start'
    1539:  # //?/D:/a/selenium/selenium/rb/spec/integration/selenium/webdriver/spec_helper.rb:40:in `block (2 levels) in <top (required)>'
    1540:  Finished in 0.04902 seconds (files took 0.62204 seconds to load)
    1541:  0 examples, 0 failures, 1 error occurred outside of examples
    1542:  ================================================================================
    1543:  �[32m[2,881 / 2,898]�[0m 6 / 27 tests, �[31m�[1m6 failed�[0m;�[0m Testing //rb/spec/integration/selenium/webdriver:shadow_root-edge-remote; 42s local, disk-cache ... (4 actions, 2 running)
    1544:  �[32m[2,881 / 2,898]�[0m 6 / 27 tests, �[31m�[1m6 failed�[0m;�[0m Testing //rb/spec/integration/selenium/webdriver:shadow_root-edge-remote; 48s local, disk-cache ... (4 actions, 2 running)
    1545:  �[31m�[1mFAIL: �[0m//rb/spec/integration/selenium/webdriver:virtual_authenticator-edge-remote (see D:/_bazel/execroot/selenium/bazel-out/x64_windows-fastbuild/testlogs/rb/spec/integration/selenium/webdriver/virtual_authenticator-edge-remote/test_attempts/attempt_2.log)
    1546:  �[32m[2,881 / 2,898]�[0m 6 / 27 tests, �[31m�[1m6 failed�[0m;�[0m Testing //rb/spec/integration/selenium/webdriver:shadow_root-edge-remote; 50s local, disk-cache ... (4 actions, 2 running)
    1547:  �[32m[2,881 / 2,898]�[0m 6 / 27 tests, �[31m�[1m6 failed�[0m;�[0m Testing //rb/spec/integration/selenium/webdriver:shadow_root-edge-remote; 53s local, disk-cache ... (4 actions, 2 running)
    1548:  �[32m[2,881 / 2,898]�[0m 6 / 27 tests, �[31m�[1m6 failed�[0m;�[0m Testing //rb/spec/integration/selenium/webdriver:shadow_root-edge-remote; 54s local, disk-cache ... (4 actions, 2 running)
    1549:  �[32m[2,881 / 2,898]�[0m 6 / 27 tests, �[31m�[1m6 failed�[0m;�[0m Testing //rb/spec/integration/selenium/webdriver:shadow_root-edge-remote; 55s local, disk-cache ... (4 actions, 3 running)
    1550:  �[31m�[1mFAIL: �[0m//rb/spec/integration/selenium/webdriver:shadow_root-edge-remote (see D:/_bazel/execroot/selenium/bazel-out/x64_windows-fastbuild/testlogs/rb/spec/integration/selenium/webdriver/shadow_root-edge-remote/test.log)
    1551:  �[31m�[1mFAILED: �[0m//rb/spec/integration/selenium/webdriver:shadow_root-edge-remote (Summary)
    1552:  D:/_bazel/execroot/selenium/bazel-out/x64_windows-fastbuild/testlogs/rb/spec/integration/selenium/webdriver/shadow_root-edge-remote/test.log
    1553:  D:/_bazel/execroot/selenium/bazel-out/x64_windows-fastbuild/testlogs/rb/spec/integration/selenium/webdriver/shadow_root-edge-remote/test_attempts/attempt_1.log
    1554:  D:/_bazel/execroot/selenium/bazel-out/x64_windows-fastbuild/testlogs/rb/spec/integration/selenium/webdriver/shadow_root-edge-remote/test_attempts/attempt_2.log
    1555:  �[32mINFO: �[0mFrom Testing //rb/spec/integration/selenium/webdriver:shadow_root-edge-remote:
    1556:  ==================== Test output for //rb/spec/integration/selenium/webdriver:shadow_root-edge-remote:
    1557:  2024-03-27 14:21:17 INFO Selenium Server Location: D:/_bazel/execroot/selenium/bazel-out/x64_windows-fastbuild/bin/rb/spec/integration/selenium/webdriver/shadow_root-edge-remote.cmd.runfiles/selenium/java/src/org/openqa/selenium/grid/selenium_server_deploy.jar
    1558:  An error occurred in a `before(:suite)` hook.
    1559:  Failure/Error: @pid = Process.spawn(*@command, options)
    1560:  Errno::EACCES:
    1561:  Permission denied - java
    1562:  # ./rb/lib/selenium/webdriver/common/child_process.rb:57:in `spawn'
    1563:  # ./rb/lib/selenium/webdriver/common/child_process.rb:57:in `start'
    1564:  # ./rb/lib/selenium/server.rb:204:in `start'
    1565:  # //?/D:/a/selenium/selenium/rb/spec/integration/selenium/webdriver/spec_helper.rb:40:in `block (2 levels) in <top (required)>'
    1566:  Finished in 0.04952 seconds (files took 0.65269 seconds to load)
    1567:  0 examples, 0 failures, 1 error occurred outside of examples
    1568:  ================================================================================
    1569:  ==================== Test output for //rb/spec/integration/selenium/webdriver:shadow_root-edge-remote:
    1570:  2024-03-27 14:21:45 INFO Selenium Server Location: D:/_bazel/execroot/selenium/bazel-out/x64_windows-fastbuild/bin/rb/spec/integration/selenium/webdriver/shadow_root-edge-remote.cmd.runfiles/selenium/java/src/org/openqa/selenium/grid/selenium_server_deploy.jar
    1571:  An error occurred in a `before(:suite)` hook.
    1572:  Failure/Error: @pid = Process.spawn(*@command, options)
    1573:  Errno::EACCES:
    1574:  Permission denied - java
    1575:  # ./rb/lib/selenium/webdriver/common/child_process.rb:57:in `spawn'
    1576:  # ./rb/lib/selenium/webdriver/common/child_process.rb:57:in `start'
    1577:  # ./rb/lib/selenium/server.rb:204:in `start'
    1578:  # //?/D:/a/selenium/selenium/rb/spec/integration/selenium/webdriver/spec_helper.rb:40:in `block (2 levels) in <top (required)>'
    1579:  Finished in 0.04905 seconds (files took 0.75823 seconds to load)
    1580:  0 examples, 0 failures, 1 error occurred outside of examples
    1581:  ================================================================================
    1582:  ==================== Test output for //rb/spec/integration/selenium/webdriver:shadow_root-edge-remote:
    1583:  2024-03-27 14:22:06 INFO Selenium Server Location: D:/_bazel/execroot/selenium/bazel-out/x64_windows-fastbuild/bin/rb/spec/integration/selenium/webdriver/shadow_root-edge-remote.cmd.runfiles/selenium/java/src/org/openqa/selenium/grid/selenium_server_deploy.jar
    1584:  An error occurred in a `before(:suite)` hook.
    1585:  Failure/Error: @pid = Process.spawn(*@command, options)
    1586:  Errno::EACCES:
    1587:  Permission denied - java
    1588:  # ./rb/lib/selenium/webdriver/common/child_process.rb:57:in `spawn'
    1589:  # ./rb/lib/selenium/webdriver/common/child_process.rb:57:in `start'
    1590:  # ./rb/lib/selenium/server.rb:204:in `start'
    1591:  # //?/D:/a/selenium/selenium/rb/spec/integration/selenium/webdriver/spec_helper.rb:40:in `block (2 levels) in <top (required)>'
    1592:  Finished in 0.04688 seconds (files took 0.6691 seconds to load)
    1593:  0 examples, 0 failures, 1 error occurred outside of examples
    1594:  ================================================================================
    1595:  �[32m[2,882 / 2,898]�[0m 7 / 27 tests, �[31m�[1m7 failed�[0m;�[0m Testing //rb/spec/integration/selenium/webdriver:virtual_authenticator-edge-remote; 43s local, disk-cache ... (4 actions, 2 running)
    1596:  �[32m[2,882 / 2,898]�[0m 7 / 27 tests, �[31m�[1m7 failed�[0m;�[0m Testing //rb/spec/integration/selenium/webdriver:virtual_authenticator-edge-remote; 48s local, disk-cache ... (4 actions, 2 running)
    1597:  �[31m�[1mFAIL: �[0m//rb/spec/integration/selenium/webdriver:element-edge-remote (see D:/_bazel/execroot/selenium/bazel-out/x64_windows-fastbuild/testlogs/rb/spec/integration/selenium/webdriver/element-edge-remote/test_attempts/attempt_1.log)
    1598:  �[32m[2,882 / 2,898]�[0m 7 / 27 tests, �[31m�[1m7 failed�[0m;�[0m Testing //rb/spec/integration/selenium/webdriver:virtual_authenticator-edge-remote; 50s local, disk-cache ... (4 actions, 2 running)
    1599:  �[32m[2,882 / 2,898]�[0m 7 / 27 tests, �[31m�[1m7 failed�[0m;�[0m Testing //rb/spec/integration/selenium/webdriver:virtual_authenticator-edge-remote; 51s local, disk-cache ... (4 actions, 2 running)
    1600:  �[32m[2,882 / 2,898]�[0m 7 / 27 tests, �[31m�[1m7 failed�[0m;�[0m Testing //rb/spec/integration/selenium/webdriver:virtual_authenticator-edge-remote; 53s local, disk-cache ... (4 actions, 2 running)
    1601:  �[32m[2,882 / 2,898]�[0m 7 / 27 tests, �[31m�[1m7 failed�[0m;�[0m Testing //rb/spec/integration/selenium/webdriver:virtual_authenticator-edge-remote; 54s local, disk-cache ... (4 actions, 2 running)
    1602:  �[32m[2,882 / 2,898]�[0m 7 / 27 tests, �[31m�[1m7 failed�[0m;�[0m Testing //rb/spec/integration/selenium/webdriver:virtual_authenticator-edge-remote; 56s local, disk-cache ... (4 actions, 3 running)
    1603:  �[31m�[1mFAIL: �[0m//rb/spec/integration/selenium/webdriver:virtual_authenticator-edge-remote (see D:/_bazel/execroot/selenium/bazel-out/x64_windows-fastbuild/testlogs/rb/spec/integration/selenium/webdriver/virtual_authenticator-edge-remote/test.log)
    1604:  �[31m�[1mFAILED: �[0m//rb/spec/integration/selenium/webdriver:virtual_authenticator-edge-remote (Summary)
    1605:  D:/_bazel/execroot/selenium/bazel-out/x64_windows-fastbuild/testlogs/rb/spec/integration/selenium/webdriver/virtual_authenticator-edge-remote/test.log
    1606:  D:/_bazel/execroot/selenium/bazel-out/x64_windows-fastbuild/testlogs/rb/spec/integration/selenium/webdriver/virtual_authenticator-edge-remote/test_attempts/attempt_1.log
    1607:  D:/_bazel/execroot/selenium/bazel-out/x64_windows-fastbuild/testlogs/rb/spec/integration/selenium/webdriver/virtual_authenticator-edge-remote/test_attempts/attempt_2.log
    1608:  �[32mINFO: �[0mFrom Testing //rb/spec/integration/selenium/webdriver:virtual_authenticator-edge-remote:
    1609:  ==================== Test output for //rb/spec/integration/selenium/webdriver:virtual_authenticator-edge-remote:
    1610:  2024-03-27 14:21:31 INFO Selenium Server Location: D:/_bazel/execroot/selenium/bazel-out/x64_windows-fastbuild/bin/rb/spec/integration/selenium/webdriver/virtual_authenticator-edge-remote.cmd.runfiles/selenium/java/src/org/openqa/selenium/grid/selenium_server_deploy.jar
    1611:  An error occurred in a `before(:suite)` hook.
    1612:  Failure/Error: @pid = Process.spawn(*@command, options)
    1613:  Errno::EACCES:
    1614:  Permission denied - java
    1615:  # ./rb/lib/selenium/webdriver/common/child_process.rb:57:in `spawn'
    1616:  # ./rb/lib/selenium/webdriver/common/child_process.rb:57:in `start'
    1617:  # ./rb/lib/selenium/server.rb:204:in `start'
    1618:  # //?/D:/a/selenium/selenium/rb/spec/integration/selenium/webdriver/spec_helper.rb:40:in `block (2 levels) in <top (required)>'
    1619:  Finished in 0.05108 seconds (files took 0.69118 seconds to load)
    1620:  0 examples, 0 failures, 1 error occurred outside of examples
    1621:  ================================================================================
    1622:  ==================== Test output for //rb/spec/integration/selenium/webdriver:virtual_authenticator-edge-remote:
    1623:  2024-03-27 14:21:59 INFO Selenium Server Location: D:/_bazel/execroot/selenium/bazel-out/x64_windows-fastbuild/bin/rb/spec/integration/selenium/webdriver/virtual_authenticator-edge-remote.cmd.runfiles/selenium/java/src/org/openqa/selenium/grid/selenium_server_deploy.jar
    1624:  An error occurred in a `before(:suite)` hook.
    1625:  Failure/Error: @pid = Process.spawn(*@command, options)
    1626:  Errno::EACCES:
    1627:  Permission denied - java
    1628:  # ./rb/lib/selenium/webdriver/common/child_process.rb:57:in `spawn'
    1629:  # ./rb/lib/selenium/webdriver/common/child_process.rb:57:in `start'
    1630:  # ./rb/lib/selenium/server.rb:204:in `start'
    1631:  # //?/D:/a/selenium/selenium/rb/spec/integration/selenium/webdriver/spec_helper.rb:40:in `block (2 levels) in <top (required)>'
    1632:  Finished in 0.04814 seconds (files took 0.69293 seconds to load)
    1633:  0 examples, 0 failures, 1 error occurred outside of examples
    1634:  ================================================================================
    1635:  ==================== Test output for //rb/spec/integration/selenium/webdriver:virtual_authenticator-edge-remote:
    1636:  2024-03-27 14:22:20 INFO Selenium Server Location: D:/_bazel/execroot/selenium/bazel-out/x64_windows-fastbuild/bin/rb/spec/integration/selenium/webdriver/virtual_authenticator-edge-remote.cmd.runfiles/selenium/java/src/org/openqa/selenium/grid/selenium_server_deploy.jar
    1637:  An error occurred in a `before(:suite)` hook.
    1638:  Failure/Error: @pid = Process.spawn(*@command, options)
    1639:  Errno::EACCES:
    1640:  Permission denied - java
    1641:  # ./rb/lib/selenium/webdriver/common/child_process.rb:57:in `spawn'
    1642:  # ./rb/lib/selenium/webdriver/common/child_process.rb:57:in `start'
    1643:  # ./rb/lib/selenium/server.rb:204:in `start'
    1644:  # //?/D:/a/selenium/selenium/rb/spec/integration/selenium/webdriver/spec_helper.rb:40:in `block (2 levels) in <top (required)>'
    1645:  Finished in 0.05099 seconds (files took 0.80549 seconds to load)
    1646:  0 examples, 0 failures, 1 error occurred outside of examples
    1647:  ================================================================================
    1648:  �[32m[2,883 / 2,898]�[0m 8 / 27 tests, �[31m�[1m8 failed�[0m;�[0m Testing //rb/spec/integration/selenium/webdriver:element-edge-remote; 15s local, disk-cache ... (4 actions, 2 running)
    1649:  �[32m[2,883 / 2,898]�[0m 8 / 27 tests, �[31m�[1m8 failed�[0m;�[0m Testing //rb/spec/integration/selenium/webdriver:element-edge-remote; 21s local, disk-cache ... (4 actions, 2 running)
    1650:  �[31m�[1mFAIL: �[0m//rb/spec/integration/selenium/webdriver:select-edge-remote (see D:/_bazel/execroot/selenium/bazel-out/x64_windows-fastbuild/testlogs/rb/spec/integration/selenium/webdriver/select-edge-remote/test_attempts/attempt_1.log)
    1651:  �[32m[2,883 / 2,898]�[0m 8 / 27 tests, �[31m�[1m8 failed�[0m;�[0m Testing //rb/spec/integration/selenium/webdriver:element-edge-remote; 22s local, disk-cache ... (4 actions, 2 running)
    1652:  �[32m[2,883 / 2,898]�[0m 8 / 27 tests, �[31m�[1m8 failed�[0m;�[0m Testing //rb/spec/integration/selenium/webdriver:element-edge-remote; 25s local, disk-cache ... (4 actions, 2 running)
    1653:  �[32m[2,883 / 2,898]�[0m 8 / 27 tests, �[31m�[1m8 failed�[0m;�[0m Testing //rb/spec/integration/selenium/webdriver:element-edge-remote; 26s local, disk-cache ... (4 actions, 2 running)
    1654:  �[32m[2,883 / 2,898]�[0m 8 / 27 tests, �[31m�[1m8 failed�[0m;�[0m Testing //rb/spec/integration/selenium/webdriver:element-edge-remote; 28s local, disk-cache ... (4 actions, 3 running)
    1655:  �[31m�[1mFAIL: �[0m//rb/spec/integration/selenium/webdriver:element-edge-remote (see D:/_bazel/execroot/selenium/bazel-out/x64_windows-fastbuild/testlogs/rb/spec/integration/selenium/webdriver/element-edge-remote/test_attempts/attempt_2.log)
    1656:  �[32m[2,883 / 2,898]�[0m 8 / 27 tests, �[31m�[1m8 failed�[0m;�[0m Testing //rb/spec/integration/selenium/webdriver:element-edge-remote; 29s local, disk-cache ... (4 actions, 3 running)
    1657:  �[32m[2,883 / 2,898]�[0m 8 / 27 tests, �[31m�[1m8 failed�[0m;�[0m Testing //rb/spec/integration/selenium/webdriver:element-edge-remote; 35s local, disk-cache ... (4 actions, 3 running)
    1658:  �[31m�[1mFAIL: �[0m//rb/spec/integration/selenium/webdriver:error-edge-remote (see D:/_bazel/execroot/selenium/bazel-out/x64_windows-fastbuild/testlogs/rb/spec/integration/selenium/webdriver/error-edge-remote/test_attempts/attempt_1.log)
    1659:  �[32m[2,883 / 2,898]�[0m 8 / 27 tests, �[31m�[1m8 failed�[0m;�[0m Testing //rb/spec/integration/selenium/webdriver:element-edge-remote; 36s local, disk-cache ... (4 actions, 3 running)
    1660:  �[32m[2,883 / 2,898]�[0m 8 / 27 tests, �[31m�[1m8 failed�[0m;�[0m Testing //rb/spec/integration/selenium/webdriver:element-edge-remote; 42s local, disk-cache ... (4 actions running)
    1661:  �[31m�[1mFAIL: �[0m//rb/spec/integration/selenium/webdriver:select-edge-remote (see D:/_bazel/execroot/selenium/bazel-out/x64_windows-fastbuild/testlogs/rb/spec/integration/selenium/webdriver/select-edge-remote/test_attempts/attempt_2.log)
    1662:  �[32m[2,883 / 2,898]�[0m 8 / 27 tests, �[31m�[1m8 failed�[0m;�[0m Testing //rb/spec/integration/selenium/webdriver:element-edge-remote; 43s local, disk-cache ... (4 actions running)
    1663:  �[32m[2,883 / 2,898]�[0m 8 / 27 tests, �[31m�[1m8 failed�[0m;�[0m Testing //rb/spec/integration/selenium/webdriver:element-edge-remote; 48s local, disk-cache ... (4 actions running)
    1664:  �[31m�[1mFAIL: �[0m//rb/spec/integration/selenium/webdriver:manager-edge-remote (see D:/_bazel/execroot/selenium/bazel-out/x64_windows-fastbuild/testlogs/rb/spec/integration/selenium/webdriver/manager-edge-remote/test_attempts/attempt_1.log)
    1665:  �[32m[2,883 / 2,898]�[0m 8 / 27 tests, �[31m�[1m8 failed�[0m;�[0m Testing //rb/spec/integration/selenium/webdriver:element-edge-remote; 49s local, disk-cache ... (4 actions running)
    1666:  �[32m[2,883 / 2,898]�[0m 8 / 27 tests, �[31m�[1m8 failed�[0m;�[0m Testing //rb/spec/integration/selenium/webdriver:element-edge-remote; 55s local, disk-cache ... (4 actions running)
    1667:  �[31m�[1mFAIL: �[0m//rb/spec/integration/selenium/webdriver:element-edge-remote (see D:/_bazel/execroot/selenium/bazel-out/x64_windows-fastbuild/testlogs/rb/spec/integration/selenium/webdriver/element-edge-remote/test.log)
    1668:  �[31m�[1mFAILED: �[0m//rb/spec/integration/selenium/webdriver:element-edge-remote (Summary)
    1669:  D:/_bazel/execroot/selenium/bazel-out/x64_windows-fastbuild/testlogs/rb/spec/integration/selenium/webdriver/element-edge-remote/test.log
    1670:  D:/_bazel/execroot/selenium/bazel-out/x64_windows-fastbuild/testlogs/rb/spec/integration/selenium/webdriver/element-edge-remote/test_attempts/attempt_1.log
    1671:  D:/_bazel/execroot/selenium/bazel-out/x64_windows-fastbuild/testlogs/rb/spec/integration/selenium/webdriver/element-edge-remote/test_attempts/attempt_2.log
    1672:  �[32mINFO: �[0mFrom Testing //rb/spec/integration/selenium/webdriver:element-edge-remote:
    1673:  ==================== Test output for //rb/spec/integration/selenium/webdriver:element-edge-remote:
    1674:  2024-03-27 14:22:13 INFO Selenium Server Location: D:/_bazel/execroot/selenium/bazel-out/x64_windows-fastbuild/bin/rb/spec/integration/selenium/webdriver/element-edge-remote.cmd.runfiles/selenium/java/src/org/openqa/selenium/grid/selenium_server_deploy.jar
    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.04966 seconds (files took 0.69656 seconds to load)
    1684:  0 examples, 0 failures, 1 error occurred outside of examples
    1685:  ================================================================================
    1686:  ==================== Test output for //rb/spec/integration/selenium/webdriver:element-edge-remote:
    1687:  2024-03-27 14:22:34 INFO Selenium Server Location: D:/_bazel/execroot/selenium/bazel-out/x64_windows-fastbuild/bin/rb/spec/integration/selenium/webdriver/element-edge-remote.cmd.runfiles/selenium/java/src/org/openqa/selenium/grid/selenium_server_deploy.jar
    1688:  An error occurred in a `before(:suite)` hook.
    1689:  Failure/Error: @pid = Process.spawn(*@command, options)
    1690:  Errno::EACCES:
    1691:  Permission denied - java
    1692:  # ./rb/lib/selenium/webdriver/common/child_process.rb:57:in `spawn'
    1693:  # ./rb/lib/selenium/webdriver/common/child_process.rb:57:in `start'
    1694:  # ./rb/lib/selenium/server.rb:204:in `start'
    1695:  # //?/D:/a/selenium/selenium/rb/spec/integration/selenium/webdriver/spec_helper.rb:40:in `block (2 levels) in <top (required)>'
    1696:  Finished in 0.05105 seconds (files took 0.65383 seconds to load)
    1697:  0 examples, 0 failures, 1 error occurred outside of examples
    1698:  ================================================================================
    1699:  ==================== Test output for //rb/spec/integration/selenium/webdriver:element-edge-remote:
    1700:  2024-03-27 14:23:02 INFO Selenium Server Location: D:/_bazel/execroot/selenium/bazel-out/x64_windows-fastbuild/bin/rb/spec/integration/selenium/webdriver/element-edge-remote.cmd.runfiles/selenium/java/src/org/openqa/selenium/grid/selenium_server_deploy.jar
    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.04831 seconds (files took 0.63203 seconds to load)
    1710:  0 examples, 0 failures, 1 error occurred outside of examples
    1711:  ================================================================================
    1712:  �[32m[2,884 / 2,898]�[0m 9 / 27 tests, �[31m�[1m9 failed�[0m;�[0m Testing //rb/spec/integration/selenium/webdriver:select-edge-remote; 42s local, disk-cache ... (4 actions, 3 running)
    1713:  �[32m[2,884 / 2,898]�[0m 9 / 27 tests, �[31m�[1m9 failed�[0m;�[0m Testing //rb/spec/integration/selenium/webdriver:select-edge-remote; 48s local, disk-cache ... (4 actions, 3 running)
    1714:  �[31m�[1mFAIL: �[0m//rb/spec/integration/selenium/webdriver:error-edge-remote (see D:/_bazel/execroot/selenium/bazel-out/x64_windows-fastbuild/testlogs/rb/spec/integration/selenium/webdriver/error-edge-remote/test_attempts/attempt_2.log)
    1715:  �[32m[2,884 / 2,898]�[0m 9 / 27 tests, �[31m�[1m9 failed�[0m;�[0m Testing //rb/spec/integration/selenium/webdriver:select-edge-remote; 49s local, disk-cache ... (4 actions, 3 running)
    1716:  �[32m[2,884 / 2,898]�[0m 9 / 27 tests, �[31m�[1m9 failed�[0m;�[0m Testing //rb/spec/integration/selenium/webdriver:select-edge-remote; 52s local, disk-cache ... (4 actions, 3 running)
    1717:  �[32m[2,884 / 2,898]�[0m 9 / 27 tests, �[31m�[1m9 failed�[0m;�[0m Testing //rb/spec/integration/selenium/webdriver:select-edge-remote; 54s local, disk-cache ... (4 actions, 3 running)
    1718:  �[31m�[1mFAIL: �[0m//rb/spec/integration/selenium/webdriver:select-edge-remote (see D:/_bazel/execroot/selenium/bazel-out/x64_windows-fastbuild/testlogs/rb/spec/integration/selenium/webdriver/select-edge-remote/test.log)
    1719:  ==================== Test output for //rb/spec/integration/selenium/webdriver:select-edge-remote:
    1720:  �[31m�[1mFAILED: �[0m//rb/spec/integration/selenium/webdriver:select-edge-remote (Summary)
    1721:  2024-03-27 14:22:27 INFO Selenium Server Location: D:/_bazel/execroot/selenium/bazel-out/x64_windows-fastbuild/bin/rb/spec/integration/selenium/webdriver/select-edge-remote.cmd.runfiles/selenium/java/src/org/openqa/selenium/grid/selenium_server_deploy.jar
    1722:  D:/_bazel/execroot/selenium/bazel-out/x64_windows-fastbuild/testlogs/rb/spec/integration/selenium/webdriver/select-edge-remote/test.log
    1723:  D:/_bazel/execroot/selenium/bazel-out/x64_windows-fastbuild/testlogs/rb/spec/integration/selenium/webdriver/select-edge-remote/test_attempts/attempt_1.log
    1724:  D:/_bazel/execroot/selenium/bazel-out/x64_windows-fastbuild/testlogs/rb/spec/integration/selenium/webdriver/select-edge-remote/test_attempts/attempt_2.log
    1725:  �[32mINFO: �[0mFrom Testing //rb/spec/integration/selenium/webdriver:select-edge-remote:
    1726:  An error occurred in a `before(:suite)` hook.
    1727:  Failure/Error: @pid = Process.spawn(*@command, options)
    1728:  Errno::EACCES:
    1729:  Permission denied - java
    1730:  # ./rb/lib/selenium/webdriver/common/child_process.rb:57:in `spawn'
    1731:  # ./rb/lib/selenium/webdriver/common/child_process.rb:57:in `start'
    1732:  # ./rb/lib/selenium/server.rb:204:in `start'
    1733:  # //?/D:/a/selenium/selenium/rb/spec/integration/selenium/webdriver/spec_helper.rb:40:in `block (2 levels) in <top (required)>'
    1734:  Finished in 0.04866 seconds (files took 0.69259 seconds to load)
    1735:  0 examples, 0 failures, 1 error occurred outside of examples
    1736:  ================================================================================
    1737:  ==================== Test output for //rb/spec/integration/selenium/webdriver:select-edge-remote:
    1738:  2024-03-27 14:22:48 INFO Selenium Server Location: D:/_bazel/execroot/selenium/bazel-out/x64_windows-fastbuild/bin/rb/spec/integration/selenium/webdriver/select-edge-remote.cmd.runfiles/selenium/java/src/org/openqa/selenium/grid/selenium_server_deploy.jar
    1739:  An error occurred in a `before(:suite)` hook.
    1740:  Failure/Error: @pid = Process.spawn(*@command, options)
    1741:  Errno::EACCES:
    1742:  Permission denied - java
    1743:  # ./rb/lib/selenium/webdriver/common/child_process.rb:57:in `spawn'
    1744:  # ./rb/lib/selenium/webdriver/common/child_process.rb:57:in `start'
    1745:  # ./rb/lib/selenium/server.rb:204:in `start'
    1746:  # //?/D:/a/selenium/selenium/rb/spec/integration/selenium/webdriver/spec_helper.rb:40:in `block (2 levels) in <top (required)>'
    1747:  Finished in 0.04649 seconds (files took 0.63046 seconds to load)
    1748:  0 examples, 0 failures, 1 error occurred outside of examples
    1749:  ================================================================================
    1750:  ==================== Test output for //rb/spec/integration/selenium/webdriver:select-edge-remote:
    1751:  2024-03-27 14:23:16 INFO Selenium Server Location: D:/_bazel/execroot/selenium/bazel-out/x64_windows-fastbuild/bin/rb/spec/integration/selenium/webdriver/select-edge-remote.cmd.runfiles/selenium/java/src/org/openqa/selenium/grid/selenium_server_deploy.jar
    1752:  An error occurred in a `before(:suite)` hook.
    1753:  Failure/Error: @pid = Process.spawn(*@command, options)
    1754:  Errno::EACCES:
    1755:  Permission denied - java
    1756:  # ./rb/lib/selenium/webdriver/common/child_process.rb:57:in `spawn'
    1757:  # ./rb/lib/selenium/webdriver/common/child_process.rb:57:in `start'
    1758:  # ./rb/lib/selenium/server.rb:204:in `start'
    1759:  # //?/D:/a/selenium/selenium/rb/spec/integration/selenium/webdriver/spec_helper.rb:40:in `block (2 levels) in <top (required)>'
    1760:  Finished in 0.05465 seconds (files took 0.65655 seconds to load)
    1761:  0 examples, 0 failures, 1 error occurred outside of examples
    1762:  ================================================================================
    1763:  �[32m[2,885 / 2,898]�[0m 10 / 27 tests, �[31m�[1m10 failed�[0m;�[0m Testing //rb/spec/integration/selenium/webdriver:error-edge-remote; 41s local, disk-cache ... (4 actions, 2 running)
    1764:  �[32m[2,885 / 2,898]�[0m 10 / 27 tests, �[31m�[1m10 failed�[0m;�[0m Testing //rb/spec/integration/selenium/webdriver:error-edge-remote; 42s local, disk-cache ... (4 actions, 2 running)
    1765:  �[32m[2,885 / 2,898]�[0m 10 / 27 tests, �[31m�[1m10 failed�[0m;�[0m Testing //rb/spec/integration/selenium/webdriver:error-edge-remote; 48s local, disk-cache ... (4 actions, 2 running)
    1766:  �[31m�[1mFAIL: �[0m//rb/spec/integration/selenium/webdriver:manager-edge-remote (see D:/_bazel/execroot/selenium/bazel-out/x64_windows-fastbuild/testlogs/rb/spec/integration/selenium/webdriver/manager-edge-remote/test_attempts/attempt_2.log)
    1767:  �[32m[2,885 / 2,898]�[0m 10 / 27 tests, �[31m�[1m10 failed�[0m;�[0m Testing //rb/spec/integration/selenium/webdriver:error-edge-remote; 49s local, disk-cache ... (4 actions, 2 running)
    1768:  �[32m[2,885 / 2,898]�[0m 10 / 27 tests, �[31m�[1m10 failed�[0m;�[0m Testing //rb/spec/integration/selenium/webdriver:error-edge-remote; 52s local, disk-cache ... (4 actions, 2 running)
    1769:  �[32m[2,885 / 2,898]�[0m 10 / 27 tests, �[31m�[1m10 failed�[0m;�[0m Testing //rb/spec/integration/selenium/webdriver:error-edge-remote; 53s local, disk-cache ... (4 actions, 2 running)
    1770:  �[32m[2,885 / 2,898]�[0m 10 / 27 tests, �[31m�[1m10 failed�[0m;�[0m Testing //rb/spec/integration/selenium/webdriver:error-edge-remote; 55s local, disk-cache ... (4 actions, 3 running)
    1771:  �[31m�[1mFAIL: �[0m//rb/spec/integration/selenium/webdriver:error-edge-remote (see D:/_bazel/execroot/selenium/bazel-out/x64_windows-fastbuild/testlogs/rb/spec/integration/selenium/webdriver/error-edge-remote/test.log)
    1772:  �[31m�[1mFAILED: �[0m//rb/spec/integration/selenium/webdriver:error-edge-remote (Summary)
    1773:  D:/_bazel/execroot/selenium/bazel-out/x64_windows-fastbuild/testlogs/rb/spec/integration/selenium/webdriver/error-edge-remote/test.log
    1774:  D:/_bazel/execroot/selenium/bazel-out/x64_windows-fastbuild/testlogs/rb/spec/integration/selenium/webdriver/error-edge-remote/test_attempts/attempt_1.log
    1775:  D:/_bazel/execroot/selenium/bazel-out/x64_windows-fastbuild/testlogs/rb/spec/integration/selenium/webdriver/error-edge-remote/test_attempts/attempt_2.log
    1776:  �[32mINFO: �[0mFrom Testing //rb/spec/integration/selenium/webdriver:error-edge-remote:
    1777:  ==================== Test output for //rb/spec/integration/selenium/webdriver:error-edge-remote:
    1778:  2024-03-27 14:22:41 INFO Selenium Server Location: D:/_bazel/execroot/selenium/bazel-out/x64_windows-fastbuild/bin/rb/spec/integration/selenium/webdriver/error-edge-remote.cmd.runfiles/selenium/java/src/org/openqa/selenium/grid/selenium_server_deploy.jar
    1779:  An error occurred in a `before(:suite)` hook.
    1780:  Failure/Error: @pid = Process.spawn(*@command, options)
    1781:  Errno::EACCES:
    1782:  Permission denied - java
    1783:  # ./rb/lib/selenium/webdriver/common/child_process.rb:57:in `spawn'
    1784:  # ./rb/lib/selenium/webdriver/common/child_process.rb:57:in `start'
    1785:  # ./rb/lib/selenium/server.rb:204:in `start'
    1786:  # //?/D:/a/selenium/selenium/rb/spec/integration/selenium/webdriver/spec_helper.rb:40:in `block (2 levels) in <top (required)>'
    1787:  Finished in 0.04586 seconds (files took 0.62644 seconds to load)
    1788:  0 examples, 0 failures, 1 error occurred outside of examples
    1789:  ================================================================================
    1790:  ==================== Test output for //rb/spec/integration/selenium/webdriver:error-edge-remote:
    1791:  2024-03-27 14:23:08 INFO Selenium Server Location: D:/_bazel/execroot/selenium/bazel-out/x64_windows-fastbuild/bin/rb/spec/integration/selenium/webdriver/error-edge-remote.cmd.runfiles/selenium/java/src/org/openqa/selenium/grid/selenium_server_deploy.jar
    1792:  An error occurred in a `before(:suite)` hook.
    1793:  Failure/Error: @pid = Process.spawn(*@command, options)
    1794:  Errno::EACCES:
    1795:  Permission denied - java
    1796:  # ./rb/lib/selenium/webdriver/common/child_process.rb:57:in `spawn'
    1797:  # ./rb/lib/selenium/webdriver/common/child_process.rb:57:in `start'
    1798:  # ./rb/lib/selenium/server.rb:204:in `start'
    1799:  # //?/D:/a/selenium/selenium/rb/spec/integration/selenium/webdriver/spec_helper.rb:40:in `block (2 levels) in <top (required)>'
    1800:  Finished in 0.04829 seconds (files took 0.68131 seconds to load)
    1801:  0 examples, 0 failures, 1 error occurred outside of examples
    1802:  ================================================================================
    1803:  ==================== Test output for //rb/spec/integration/selenium/webdriver:error-edge-remote:
    1804:  2024-03-27 14:23:30 INFO Selenium Server Location: D:/_bazel/execroot/selenium/bazel-out/x64_windows-fastbuild/bin/rb/spec/integration/selenium/webdriver/error-edge-remote.cmd.runfiles/selenium/java/src/org/openqa/selenium/grid/selenium_server_deploy.jar
    1805:  An error occurred in a `before(:suite)` hook.
    1806:  Failure/Error: @pid = Process.spawn(*@command, options)
    1807:  Errno::EACCES:
    1808:  Permission denied - java
    1809:  # ./rb/lib/selenium/webdriver/common/child_process.rb:57:in `spawn'
    1810:  # ./rb/lib/selenium/webdriver/common/child_process.rb:57:in `start'
    1811:  # ./rb/lib/selenium/server.rb:204:in `start'
    1812:  # //?/D:/a/selenium/selenium/rb/spec/integration/selenium/webdriver/spec_helper.rb:40:in `block (2 levels) in <top (required)>'
    1813:  Finished in 0.05265 seconds (files took 0.67613 seconds to load)
    1814:  0 examples, 0 failures, 1 error occurred outside of examples
    1815:  ================================================================================
    1816:  �[32m[2,886 / 2,898]�[0m 11 / 27 tests, �[31m�[1m11 failed�[0m;�[0m Testing //rb/spec/integration/selenium/webdriver:manager-edge-remote; 42s local, disk-cache ... (4 actions, 2 running)
    1817:  �[32m[2,886 / 2,898]�[0m 11 / 27 tests, �[31m�[1m11 failed�[0m;�[0m Testing //rb/spec/integration/selenium/webdriver:manager-edge-remote; 48s local, disk-cache ... (4 actions, 2 running)
    1818:  �[31m�[1mFAIL: �[0m//rb/spec/integration/selenium/webdriver:zipper-edge-remote (see D:/_bazel/execroot/selenium/bazel-out/x64_windows-fastbuild/testlogs/rb/spec/integration/selenium/webdriver/zipper-edge-remote/test_attempts/attempt_1.log)
    1819:  �[32m[2,886 / 2,898]�[0m 11 / 27 tests, �[31m�[1m11 failed�[0m;�[0m Testing //rb/spec/integration/selenium/webdriver:manager-edge-remote; 49s local, disk-cache ... (4 actions, 2 running)
    1820:  �[32m[2,886 / 2,898]�[0m 11 / 27 tests, �[31m�[1m11 failed�[0m;�[0m Testing //rb/spec/integration/selenium/webdriver:manager-edge-remote; 52s local, disk-cache ... (4 actions, 2 running)
    1821:  �[32m[2,886 / 2,898]�[0m 11 / 27 tests, �[31m�[1m11 failed�[0m;�[0m Testing //rb/spec/integration/selenium/webdriver:manager-edge-remote; 53s local, disk-cache ... (4 actions, 2 running)
    1822:  �[32m[2,886 / 2,898]�[0m 11 / 27 tests, �[31m�[1m11 failed�[0m;�[0m Testing //rb/spec/integration/selenium/webdriver:manager-edge-remote; 55s local, disk-cache ... (4 actions, 3 running)
    1823:  �[31m�[1mFAIL: �[0m//rb/spec/integration/selenium/webdriver:manager-edge-remote (see D:/_bazel/execroot/selenium/bazel-out/x64_windows-fastbuild/testlogs/rb/spec/integration/selenium/webdriver/manager-edge-remote/test.log)
    1824:  �[31m�[1mFAILED: �[0m//rb/spec/integration/selenium/webdriver:manager-edge-remote (Summary)
    1825:  D:/_bazel/execroot/selenium/bazel-out/x64_windows-fastbuild/testlogs/rb/spec/integration/selenium/webdriver/manager-edge-remote/test.log
    1826:  D:/_bazel/execroot/selenium/bazel-out/x64_windows-fastbuild/testlogs/rb/spec/integration/selenium/webdriver/manager-edge-remote/test_attempts/attempt_1.log
    1827:  D:/_bazel/execroot/selenium/bazel-out/x64_windows-fastbuild/testlogs/rb/spec/integration/selenium/webdriver/manager-edge-remote/test_attempts/attempt_2.log
    1828:  �[32mINFO: �[0mFrom Testing //rb/spec/integration/selenium/webdriver:manager-edge-remote:
    1829:  ==================== Test output for //rb/spec/integration/selenium/webdriver:manager-edge-remote:
    1830:  2024-03-27 14:22:55 INFO Selenium Server Location: D:/_bazel/execroot/selenium/bazel-out/x64_windows-fastbuild/bin/rb/spec/integration/selenium/webdriver/manager-edge-remote.cmd.runfiles/selenium/java/src/org/openqa/selenium/grid/selenium_server_deploy.jar
    1831:  An error occurred in a `before(:suite)` hook.
    1832:  Failure/Error: @pid = Process.spawn(*@command, options)
    1833:  Errno::EACCES:
    1834:  Permission denied - java
    1835:  # ./rb/lib/selenium/webdriver/common/child_process.rb:57:in `spawn'
    1836:  # ./rb/lib/selenium/webdriver/common/child_process.rb:57:in `start'
    1837:  # ./rb/lib/selenium/server.rb:204:in `start'
    1838:  # //?/D:/a/selenium/selenium/rb/spec/integration/selenium/webdriver/spec_helper.rb:40:in `block (2 levels) in <top (required)>'
    1839:  Finished in 0.04989 seconds (files took 0.61519 seconds to load)
    1840:  0 examples, 0 failures, 1 error occurred outside of examples
    1841:  ================================================================================
    1842:  ==================== Test output for //rb/spec/integration/selenium/webdriver:manager-edge-remote:
    1843:  2024-03-27 14:23:22 INFO Selenium Server Location: D:/_bazel/execroot/selenium/bazel-out/x64_windows-fastbuild/bin/rb/spec/integration/selenium/webdriver/manager-edge-remote.cmd.runfiles/selenium/java/src/org/openqa/selenium/grid/selenium_server_deploy.jar
    1844:  An error occurred in a `before(:suite)` hook.
    1845:  Failure/Error: @pid = Process.spawn(*@command, options)
    1846:  Errno::EACCES:
    1847:  Permission denied - java
    1848:  # ./rb/lib/selenium/webdriver/common/child_process.rb:57:in `spawn'
    1849:  # ./rb/lib/selenium/webdriver/common/child_process.rb:57:in `start'
    1850:  # ./rb/lib/selenium/server.rb:204:in `start'
    1851:  # //?/D:/a/selenium/selenium/rb/spec/integration/selenium/webdriver/spec_helper.rb:40:in `block (2 levels) in <top (required)>'
    1852:  Finished in 0.04467 seconds (files took 0.67425 seconds to load)
    1853:  0 examples, 0 failures, 1 error occurred outside of examples
    1854:  ================================================================================
    1855:  ==================== Test output for //rb/spec/integration/selenium/webdriver:manager-edge-remote:
    1856:  2024-03-27 14:23:44 INFO Selenium Server Location: D:/_bazel/execroot/selenium/bazel-out/x64_windows-fastbuild/bin/rb/spec/integration/selenium/webdriver/manager-edge-remote.cmd.runfiles/selenium/java/src/org/openqa/selenium/grid/selenium_server_deploy.jar
    1857:  An error occurred in a `before(:suite)` hook.
    1858:  Failure/Error: @pid = Process.spawn(*@command, options)
    1859:  Errno::EACCES:
    1860:  Permission denied - java
    1861:  # ./rb/lib/selenium/webdriver/common/child_process.rb:57:in `spawn'
    1862:  # ./rb/lib/selenium/webdriver/common/child_process.rb:57:in `start'
    1863:  # ./rb/lib/selenium/server.rb:204:in `start'
    1864:  # //?/D:/a/selenium/selenium/rb/spec/integration/selenium/webdriver/spec_helper.rb:40:in `block (2 levels) in <top (required)>'
    1865:  Finished in 0.05095 seconds (files took 0.65973 seconds to load)
    1866:  0 examples, 0 failures, 1 error occurred outside of examples
    1867:  ================================================================================
    1868:  �[32m[2,887 / 2,898]�[0m 12 / 27 tests, �[31m�[1m12 failed�[0m;�[0m Testing //rb/spec/integration/selenium/webdriver:zipper-edge-remote; 15s local, disk-cache ... (4 actions, 2 running)
    1869:  �[32m[2,887 / 2,898]�[0m 12 / 27 tests, �[31m�[1m12 failed�[0m;�[0m Testing //rb/spec/integration/selenium/webdriver:zipper-edge-remote; 21s local, disk-cache ... (4 actions, 2 running)
    1870:  �[31m�[1mFAIL: �[0m//rb/spec/integration/selenium/webdriver/edge:service-edge-remote (see D:/_bazel/execroot/selenium/bazel-out/x64_windows-fastbuild/testlogs/rb/spec/integration/selenium/webdriver/edge/service-edge-remote/test_attempts/attempt_1.log)
    1871:  �[32m[2,887 / 2,898]�[0m 12 / 27 tests, �[31m�[1m12 failed�[0m;�[0m Testing //rb/spec/integration/selenium/webdriver:zipper-edge-remote; 22s local, disk-cache ... (4 actions, 2 running)
    1872:  �[32m[2,887 / 2,898]�[0m 12 / 27 tests, �[31m�[1m12 failed�[0m;�[0m Testing //rb/spec/integration/selenium/webdriver:zipper-edge-remote; 23s local, disk-cache ... (4 actions, 2 running)
    1873:  �[32m[2,887 / 2,898]�[0m 12 / 27 tests, �[31m�[1m12 failed�[0m;�[0m Testing //rb/spec/integration/selenium/webdriver:zipper-edge-remote; 25s local, disk-cache ... (4 actions, 2 running)
    1874:  �[32m[2,887 / 2,898]�[0m 12 / 27 tests, �[31m�[1m12 failed�[0m;�[0m Testing //rb/spec/integration/selenium/webdriver:zipper-edge-remote; 26s local, disk-cache ... (4 actions, 2 running)
    1875:  �[32m[2,887 / 2,898]�[0m 12 / 27 tests, �[31m�[1m12 failed�[0m;�[0m Testing //rb/spec/integration/selenium/webdriver:zipper-edge-remote; 28s local, disk-cache ... (4 actions, 3 running)
    1876:  �[31m�[1mFAIL: �[0m//rb/spec/integration/selenium/webdriver:zipper-edge-remote (see D:/_bazel/execroot/selenium/bazel-out/x64_windows-fastbuild/testlogs/rb/spec/integration/selenium/webdriver/zipper-edge-remote/test_attempts/attempt_2.log)
    1877:  �[32m[2,887 / 2,898]�[0m 12 / 27 tests, �[31m�[1m12 failed�[0m;�[0m Testing //rb/spec/integration/selenium/webdriver:zipper-edge-remote; 29s local, disk-cache ... (4 actions, 3 running)
    1878:  �[32m[2,887 / 2,898]�[0m 12 / 27 tests, �[31m�[1m12 failed�[0m;�[0m Testing //rb/spec/integration/selenium/webdriver:zipper-edge-remote; 34s local, disk-cache ... (4 actions, 3 running)
    1879:  �[31m�[1mFAIL: �[0m//rb/spec/integration/selenium/webdriver:listener-edge-remote (see D:/_bazel/execroot/selenium/bazel-out/x64_windows-fastbuild/testlogs/rb/spec/integration/selenium/webdriver/listener-edge-remote/test_attempts/attempt_1.log)
    1880:  �[32m[2,887 / 2,898]�[0m 12 / 27 tests, �[31m�[1m12 failed�[0m;�[0m Testing //rb/spec/integration/selenium/webdriver:zipper-edge-remote; 36s local, disk-cache ... (4 actions, 3 running)
    1881:  �[32m[2,887 / 2,898]�[0m 12 / 27 tests, �[31m�[1m12 failed�[0m;�[0m Testing //rb/spec/integration/selenium/webdriver:zipper-edge-remote; 41s local, disk-cache ... (4 actions running)
    1882:  �[31m�[1mFAIL: �[0m//rb/spec/integration/selenium/webdriver/edge:service-edge-remote (see D:/_bazel/execroot/selenium/bazel-out/x64_windows-fastbuild/testlogs/rb/spec/integration/selenium/webdriver/edge/service-edge-remote/test_attempts/attempt_2.log)
    1883:  �[32m[2,887 / 2,898]�[0m 12 / 27 tests, �[31m�[1m12 failed�[0m;�[0m Testing //rb/spec/integration/selenium/webdriver:zipper-edge-remote; 43s local, disk-cache ... (4 actions running)
    1884:  �[32m[2,887 / 2,898]�[0m 12 / 27 tests, �[31m�[1m12 failed�[0m;�[0m Testing //rb/spec/integration/selenium/webdriver:zipper-edge-remote; 48s local, disk-cache ... (4 actions running)
    1885:  �[31m�[1mFAIL: �[0m//rb/spec/integration/selenium/webdriver:target_locator-edge-remote (see D:/_bazel/execroot/selenium/bazel-out/x64_windows-fastbuild/testlogs/rb/spec/integration/selenium/webdriver/target_locator-edge-remote/test_attempts/attempt_1.log)
    1886:  �[32m[2,887 / 2,898]�[0m 12 / 27 tests, �[31m�[1m12 failed�[0m;�[0m Testing //rb/spec/integration/selenium/webdriver:zipper-edge-remote; 50s local, disk-cache ... (4 actions running)
    1887:  �[32m[2,887 / 2,898]�[0m 12 / 27 tests, �[31m�[1m12 failed�[0m;�[0m Testing //rb/spec/integration/selenium/webdriver:zipper-edge-remote; 55s local, disk-cache ... (4 actions running)
    1888:  �[31m�[1mFAIL: �[0m//rb/spec/integration/selenium/webdriver:zipper-edge-remote (see D:/_bazel/execroot/selenium/bazel-out/x64_windows-fastbuild/testlogs/rb/spec/integration/selenium/webdriver/zipper-edge-remote/test.log)
    1889:  �[31m�[1mFAILED: �[0m//rb/spec/integration/selenium/webdriver:zipper-edge-remote (Summary)
    1890:  D:/_bazel/execroot/selenium/bazel-out/x64_windows-fastbuild/testlogs/rb/spec/integration/selenium/webdriver/zipper-edge-remote/test.log
    1891:  D:/_bazel/execroot/selenium/bazel-out/x64_windows-fastbuild/testlogs/rb/spec/integration/selenium/webdriver/zipper-edge-remote/test_attempts/attempt_1.log
    1892:  D:/_bazel/execroot/selenium/bazel-out/x64_windows-fastbuild/testlogs/rb/spec/integration/selenium/webdriver/zipper-edge-remote/test_attempts/attempt_2.log
    1893:  �[32mINFO: �[0mFrom Testing //rb/spec/integration/selenium/webdriver:zipper-edge-remote:
    1894:  ==================== Test output for //rb/spec/integration/selenium/webdriver:zipper-edge-remote:
    1895:  2024-03-27 14:23:37 INFO Selenium Server Location: D:/_bazel/execroot/selenium/bazel-out/x64_windows-fastbuild/bin/rb/spec/integration/selenium/webdriver/zipper-edge-remote.cmd.runfiles/selenium/java/src/org/openqa/selenium/grid/selenium_server_deploy.jar
    1896:  An error occurred in a `before(:suite)` hook.
    1897:  Failure/Error: @pid = Process.spawn(*@command, options)
    1898:  Errno::EACCES:
    1899:  Permission denied - java
    1900:  # ./rb/lib/selenium/webdriver/common/child_process.rb:57:in `spawn'
    1901:  # ./rb/lib/selenium/webdriver/common/child_process.rb:57:in `start'
    1902:  # ./rb/lib/selenium/server.rb:204:in `start'
    1903:  # //?/D:/a/selenium/selenium/rb/spec/integration/selenium/webdriver/spec_helper.rb:40:in `block (2 levels) in <top (required)>'
    1904:  Finished in 0.0499 seconds (files took 0.6727 seconds to load)
    1905:  0 examples, 0 failures, 1 error occurred outside of examples
    1906:  ================================================================================
    1907:  ==================== Test output for //rb/spec/integration/selenium/webdriver:zipper-edge-remote:
    1908:  2024-03-27 14:23:58 INFO Selenium Server Location: D:/_bazel/execroot/selenium/bazel-out/x64_windows-fastbuild/bin/rb/spec/integration/selenium/webdriver/zipper-edge-remote.cmd.runfiles/selenium/java/src/org/openqa/selenium/grid/selenium_server_deploy.jar
    1909:  An error occurred in a `before(:suite)` hook.
    1910:  Failure/Error: @pid = Process.spawn(*@command, options)
    1911:  Errno::EACCES:
    1912:  Permission denied - java
    1913:  # ./rb/lib/selenium/webdriver/common/child_process.rb:57:in `spawn'
    1914:  # ./rb/lib/selenium/webdriver/common/child_process.rb:57:in `start'
    1915:  # ./rb/lib/selenium/server.rb:204:in `start'
    1916:  # //?/D:/a/selenium/selenium/rb/spec/integration/selenium/webdriver/spec_helper.rb:40:in `block (2 levels) in <top (required)>'
    1917:  Finished in 0.05876 seconds (files took 0.66295 seconds to load)
    1918:  0 examples, 0 failures, 1 error occurred outside of examples
    1919:  ================================================================================
    1920:  ==================== Test output for //rb/spec/integration/selenium/webdriver:zipper-edge-remote:
    1921:  2024-03-27 14:24:25 INFO Selenium Server Location: D:/_bazel/execroot/selenium/bazel-out/x64_windows-fastbuild/bin/rb/spec/integration/selenium/webdriver/zipper-edge-remote.cmd.runfiles/selenium/java/src/org/openqa/selenium/grid/selenium_server_deploy.jar
    1922:  An error occurred in a `before(:suite)` hook.
    1923:  Failure/Error: @pid = Process.spawn(*@command, options)
    1924:  Errno::EACCES:
    1925:  Permission denied - java
    1926:  # ./rb/lib/selenium/webdriver/common/child_process.rb:57:in `spawn'
    1927:  # ./rb/lib/selenium/webdriver/common/child_process.rb:57:in `start'
    1928:  # ./rb/lib/selenium/server.rb:204:in `start'
    1929:  # //?/D:/a/selenium/selenium/rb/spec/integration/selenium/webdriver/spec_helper.rb:40:in `block (2 levels) in <top (required)>'
    1930:  Finished in 0.04457 seconds (files took 0.58427 seconds to load)
    1931:  0 examples, 0 failures, 1 error occurred outside of examples
    1932:  ================================================================================
    1933:  �[32m[2,888 / 2,898]�[0m 13 / 27 tests, �[31m�[1m13 failed�[0m;�[0m Testing //rb/spec/integration/selenium/webdriver/edge:service-edge-remote; 42s local, disk-cache ... (4 actions, 3 running)
    1934:  �[32m[2,888 / 2,898]�[0m 13 / 27 tests, �[31m�[1m13 failed�[0m;�[0m Testing //rb/spec/integration/selenium/webdriver/edge:service-edge-remote; 48s local, disk-cache ... (4 actions, 3 running)
    1935:  �[31m�[1mFAIL: �[0m//rb/spec/integration/selenium/webdriver:listener-edge-remote (see D:/_bazel/execroot/selenium/bazel-out/x64_windows-fastbuild/testlogs/rb/spec/integration/selenium/webdriver/listener-edge-remote/test_attempts/attempt_2.log)
    1936:  �[32m[2,888 / 2,898]�[0m 13 / 27 tests, �[31m�[1m13 failed�[0m;�[0m Testing //rb/spec/integration/selenium/webdriver/edge:service-edge-remote; 50s local, disk-cache ... (4 actions, 3 running)
    1937:  �[32m[2,888 / 2,898]�[0m 13 / 27 tests, �[31m�[1m13 failed�[0m;�[0m Testing //rb/spec/integration/selenium/webdriver/edge:service-edge-remote; 53s local, disk-cache ... (4 actions, 3 running)
    1938:  �[32m[2,888 / 2,898]�[0m 13 / 27 tests, �[31m�[1m13 failed�[0m;�[0m Testing //rb/spec/integration/selenium/webdriver/edge:service-edge-remote; 54s local, disk-cache ... (4 actions, 3 running)
    1939:  �[32m[2,888 / 2,898]�[0m 13 / 27 tests, �[31m�[1m13 failed�[0m;�[0m Testing //rb/spec/integration/selenium/webdriver/edge:service-edge-remote; 55s local, disk-cache ... (4 actions, 3 running)
    1940:  �[31m�[1mFAIL: �[0m//rb/spec/integration/selenium/webdriver/edge:service-edge-remote (see D:/_bazel/execroot/selenium/bazel-out/x64_windows-fastbuild/testlogs/rb/spec/integration/selenium/webdriver/edge/service-edge-remote/test.log)
    1941:  �[31m�[1mFAILED: �[0m//rb/spec/integration/selenium/webdriver/edge:service-edge-remote (Summary)
    1942:  D:/_bazel/execroot/selenium/bazel-out/x64_windows-fastbuild/testlogs/rb/spec/integration/selenium/webdriver/edge/service-edge-remote/test.log
    1943:  ==================== Test output for //rb/spec/integration/selenium/webdriver/edge:service-edge-remote:
    1944:  D:/_bazel/execroot/selenium/bazel-out/x64_windows-fastbuild/testlogs/rb/spec/integration/selenium/webdriver/edge/service-edge-remote/test_attempts/attempt_1.log
    1945:  2024-03-27 14:23:51 INFO Selenium Server Location: D:/_bazel/execroot/selenium/bazel-out/x64_windows-fastbuild/bin/rb/spec/integration/selenium/webdriver/edge/service-edge-remote.cmd.runfiles/selenium/java/src/org/openqa/selenium/grid/selenium_server_deploy.jar
    1946:  D:/_bazel/execroot/selenium/bazel-out/x64_windows-fastbuild/testlogs/rb/spec/integration/selenium/webdriver/edge/service-edge-remote/test_attempts/attempt_2.log
    1947:  �[32mINFO: �[0mFrom Testing //rb/spec/integration/selenium/webdriver/edge:service-edge-remote:
    1948:  An error occurred in a `before(:suite)` hook.
    1949:  Failure/Error: @pid = Process.spawn(*@command, options)
    1950:  Errno::EACCES:
    1951:  Permission denied - java
    1952:  # ./rb/lib/selenium/webdriver/common/child_process.rb:57:in `spawn'
    1953:  # ./rb/lib/selenium/webdriver/common/child_process.rb:57:in `start'
    1954:  # ./rb/lib/selenium/server.rb:204:in `start'
    1955:  # //?/D:/a/selenium/selenium/rb/spec/integration/selenium/webdriver/spec_helper.rb:40:in `block (2 levels) in <top (required)>'
    1956:  Finished in 0.06495 seconds (files took 0.79809 seconds to load)
    1957:  0 examples, 0 failures, 1 error occurred outside of examples
    1958:  ================================================================================
    1959:  ==================== Test output for //rb/spec/integration/selenium/webdriver/edge:service-edge-remote:
    1960:  2024-03-27 14:24:11 INFO Selenium Server Location: D:/_bazel/execroot/selenium/bazel-out/x64_windows-fastbuild/bin/rb/spec/integration/selenium/webdriver/edge/service-edge-remote.cmd.runfiles/selenium/java/src/org/openqa/selenium/grid/selenium_server_deploy.jar
    1961:  An error occurred in a `before(:suite)` hook.
    1962:  Failure/Error: @pid = Process.spawn(*@command, options)
    1963:  Errno::EACCES:
    1964:  Permission denied - java
    1965:  # ./rb/lib/selenium/webdriver/common/child_process.rb:57:in `spawn'
    1966:  # ./rb/lib/selenium/webdriver/common/child_process.rb:57:in `start'
    1967:  # ./rb/lib/selenium/server.rb:204:in `start'
    1968:  # //?/D:/a/selenium/selenium/rb/spec/integration/selenium/webdriver/spec_helper.rb:40:in `block (2 levels) in <top (required)>'
    1969:  Finished in 0.04619 seconds (files took 0.6261 seconds to load)
    1970:  0 examples, 0 failures, 1 error occurred outside of examples
    1971:  ================================================================================
    1972:  ==================== Test output for //rb/spec/integration/selenium/webdriver/edge:service-edge-remote:
    1973:  2024-03-27 14:24:39 INFO Selenium Server Location: D:/_bazel/execroot/selenium/bazel-out/x64_windows-fastbuild/bin/rb/spec/integration/selenium/webdriver/edge/service-edge-remote.cmd.runfiles/selenium/java/src/org/openqa/selenium/grid/selenium_server_deploy.jar
    1974:  An error occurred in a `before(:suite)` hook.
    1975:  Failure/Error: @pid = Process.spawn(*@command, options)
    1976:  Errno::EACCES:
    1977:  Permission denied - java
    1978:  # ./rb/lib/selenium/webdriver/common/child_process.rb:57:in `spawn'
    1979:  # ./rb/lib/selenium/webdriver/common/child_process.rb:57:in `start'
    1980:  # ./rb/lib/selenium/server.rb:204:in `start'
    1981:  # //?/D:/a/selenium/selenium/rb/spec/integration/selenium/webdriver/spec_helper.rb:40:in `block (2 levels) in <top (required)>'
    1982:  Finished in 0.04838 seconds (files took 0.66065 seconds to load)
    1983:  0 examples, 0 failures, 1 error occurred outside of examples
    1984:  ================================================================================
    1985:  �[32m[2,889 / 2,898]�[0m 14 / 27 tests, �[31m�[1m14 failed�[0m;�[0m Testing //rb/spec/integration/selenium/webdriver:listener-edge-remote; 43s local, disk-cache ... (4 actions, 2 running)
    1986:  �[32m[2,889 / 2,898]�[0m 14 / 27 tests, �[31m�[1m14 failed�[0m;�[0m Testing //rb/spec/integration/selenium/webdriver:listener-edge-remote; 48s local, disk-cache ... (4 actions, 2 running)
    1987:  �[31m�[1mFAIL: �[0m//rb/spec/integration/selenium/webdriver:target_locator-edge-remote (see D:/_bazel/execroot/selenium/bazel-out/x64_windows-fastbuild/testlogs/rb/spec/integration/selenium/webdriver/target_locator-edge-remote/test_attempts/attempt_2.log)
    1988:  �[32m[2,889 / 2,898]�[0m 14 / 27 tests, �[31m�[1m14 failed�[0m;�[0m Testing //rb/spec/integration/selenium/webdriver:listener-edge-remote; 50s local, disk-cache ... (4 actions, 2 running)
    1989:  �[32m[2,889 / 2,898]�[0m 14 / 27 tests, �[31m�[1m14 failed�[0m;�[0m Testing //rb/spec/integration/selenium/webdriver:listener-edge-remote; 52s local, disk-cache ... (4 actions, 2 running)
    1990:  �[32m[2,889 / 2,898]�[0m 14 / 27 tests, �[31m�[1m14 failed�[0m;�[0m Testing //rb/spec/integration/selenium/webdriver:listener-edge-remote; 54s local, disk-cache ... (4 actions, 2 running)
    1991:  �[31m�[1mFAIL: �[0m//rb/spec/integration/selenium/webdriver:listener-edge-remote (see D:/_bazel/execroot/selenium/bazel-out/x64_windows-fastbuild/testlogs/rb/spec/integration/selenium/webdriver/listener-edge-remote/test.log)
    1992:  ==================== Test output for //rb/spec/integration/selenium/webdriver:listener-edge-remote:
    1993:  2024-03-27 14:24:05 INFO Selenium Server Location: D:/_bazel/execroot/selenium/bazel-out/x64_windows-fastbuild/bin/rb/spec/integration/selenium/webdriver/listener-edge-remote.cmd.runfiles/selenium/java/src/org/openqa/selenium/grid/selenium_server_deploy.jar
    1994:  �[31m�[1mFAILED: �[0m//rb/spec/integration/selenium/webdriver:listener-edge-remote (Summary)
    1995:  An error occurred in a `before(:suite)` hook.
    1996:  D:/_bazel/execroot/selenium/bazel-out/x64_windows-fastbuild/testlogs/rb/spec/integration/selenium/webdriver/listener-edge-remote/test.log
    1997:  Failure/Error: @pid = Process.spawn(*@command, options)
    ...
    
    2000:  Errno::EACCES:
    2001:  �[32mINFO: �[0mFrom Testing //rb/spec/integration/selenium/webdriver:listener-edge-remote:
    2002:  Permission denied - java
    2003:  # ./rb/lib/selenium/webdriver/common/child_process.rb:57:in `spawn'
    2004:  # ./rb/lib/selenium/webdriver/common/child_process.rb:57:in `start'
    2005:  # ./rb/lib/selenium/server.rb:204:in `start'
    2006:  # //?/D:/a/selenium/selenium/rb/spec/integration/selenium/webdriver/spec_helper.rb:40:in `block (2 levels) in <top (required)>'
    2007:  Finished in 0.04597 seconds (files took 0.59688 seconds to load)
    2008:  0 examples, 0 failures, 1 error occurred outside of examples
    2009:  ================================================================================
    2010:  ==================== Test output for //rb/spec/integration/selenium/webdriver:listener-edge-remote:
    2011:  2024-03-27 14:24:32 INFO Selenium Server Location: D:/_bazel/execroot/selenium/bazel-out/x64_windows-fastbuild/bin/rb/spec/integration/selenium/webdriver/listener-edge-remote.cmd.runfiles/selenium/java/src/org/openqa/selenium/grid/selenium_server_deploy.jar
    2012:  An error occurred in a `before(:suite)` hook.
    2013:  Failure/Error: @pid = Process.spawn(*@command, options)
    2014:  Errno::EACCES:
    2015:  Permission denied - java
    2016:  # ./rb/lib/selenium/webdriver/common/child_process.rb:57:in `spawn'
    2017:  # ./rb/lib/selenium/webdriver/common/child_process.rb:57:in `start'
    2018:  # ./rb/lib/selenium/server.rb:204:in `start'
    2019:  # //?/D:/a/selenium/selenium/rb/spec/integration/selenium/webdriver/spec_helper.rb:40:in `block (2 levels) in <top (required)>'
    2020:  Finished in 0.06755 seconds (files took 0.76673 seconds to load)
    2021:  0 examples, 0 failures, 1 error occurred outside of examples
    2022:  ================================================================================
    2023:  ==================== Test output for //rb/spec/integration/selenium/webdriver:listener-edge-remote:
    2024:  2024-03-27 14:24:53 INFO Selenium Server Location: D:/_bazel/execroot/selenium/bazel-out/x64_windows-fastbuild/bin/rb/spec/integration/selenium/webdriver/listener-edge-remote.cmd.runfiles/selenium/java/src/org/openqa/selenium/grid/selenium_server_deploy.jar
    2025:  An error occurred in a `before(:suite)` hook.
    2026:  Failure/Error: @pid = Process.spawn(*@command, options)
    2027:  Errno::EACCES:
    2028:  Permission denied - java
    2029:  # ./rb/lib/selenium/webdriver/common/child_process.rb:57:in `spawn'
    2030:  # ./rb/lib/selenium/webdriver/common/child_process.rb:57:in `start'
    2031:  # ./rb/lib/selenium/server.rb:204:in `start'
    2032:  # //?/D:/a/selenium/selenium/rb/spec/integration/selenium/webdriver/spec_helper.rb:40:in `block (2 levels) in <top (required)>'
    2033:  Finished in 0.04635 seconds (files took 0.65488 seconds to load)
    2034:  0 examples, 0 failures, 1 error occurred outside of examples
    2035:  ================================================================================
    2036:  �[32m[2,890 / 2,898]�[0m 15 / 27 tests, �[31m�[1m15 failed�[0m;�[0m Testing //rb/spec/integration/selenium/webdriver:target_locator-edge-remote; 41s local, disk-cache ... (4 actions, 2 running)
    2037:  �[32m[2,890 / 2,898]�[0m 15 / 27 tests, �[31m�[1m15 failed�[0m;�[0m Testing //rb/spec/integration/selenium/webdriver:target_locator-edge-remote; 43s local, disk-cache ... (4 actions, 2 running)
    2038:  �[32m[2,890 / 2,898]�[0m 15 / 27 tests, �[31m�[1m15 failed�[0m;�[0m Testing //rb/spec/integration/selenium/webdriver:target_locator-edge-remote; 48s local, disk-cache ... (4 actions, 2 running)
    2039:  �[31m�[1mFAIL: �[0m//rb/spec/integration/selenium/webdriver:navigation-edge-remote (see D:/_bazel/execroot/selenium/bazel-out/x64_windows-fastbuild/testlogs/rb/spec/integration/selenium/webdriver/navigation-edge-remote/test_attempts/attempt_1.log)
    2040:  �[32m[2,890 / 2,898]�[0m 15 / 27 tests, �[31m�[1m15 failed�[0m;�[0m Testing //rb/spec/integration/selenium/webdriver:target_locator-edge-remote; 49s local, disk-cache ... (4 actions, 2 running)
    2041:  �[32m[2,890 / 2,898]�[0m 15 / 27 tests, �[31m�[1m15 failed�[0m;�[0m Testing //rb/spec/integration/selenium/webdriver:target_locator-edge-remote; 52s local, disk-cache ... (4 actions, 2 running)
    2042:  �[32m[2,890 / 2,898]�[0m 15 / 27 tests, �[31m�[1m15 failed�[0m;�[0m Testing //rb/spec/integration/selenium/webdriver:target_locator-edge-remote; 54s local, disk-cache ... (4 actions, 2 running)
    2043:  �[31m�[1mFAIL: �[0m//rb/spec/integration/selenium/webdriver:target_locator-edge-remote (see D:/_bazel/execroot/selenium/bazel-out/x64_windows-fastbuild/testlogs/rb/spec/integration/selenium/webdriver/target_locator-edge-remote/test.log)
    2044:  �[31m�[1mFAILED: �[0m//rb/spec/integration/selenium/webdriver:target_locator-edge-remote (Summary)
    2045:  D:/_bazel/execroot/selenium/bazel-out/x64_windows-fastbuild/testlogs/rb/spec/integration/selenium/webdriver/target_locator-edge-remote/test.log
    2046:  D:/_bazel/execroot/selenium/bazel-out/x64_windows-fastbuild/testlogs/rb/spec/integration/selenium/webdriver/target_locator-edge-remote/test_attempts/attempt_1.log
    2047:  D:/_bazel/execroot/selenium/bazel-out/x64_windows-fastbuild/testlogs/rb/spec/integration/selenium/webdriver/target_locator-edge-remote/test_attempts/attempt_2.log
    2048:  �[32mINFO: �[0mFrom Testing //rb/spec/integration/selenium/webdriver:target_locator-edge-remote:
    2049:  ==================== Test output for //rb/spec/integration/selenium/webdriver:target_locator-edge-remote:
    2050:  2024-03-27 14:24:18 INFO Selenium Server Location: D:/_bazel/execroot/selenium/bazel-out/x64_windows-fastbuild/bin/rb/spec/integration/selenium/webdriver/target_locator-edge-remote.cmd.runfiles/selenium/java/src/org/openqa/selenium/grid/selenium_server_deploy.jar
    2051:  An error occurred in a `before(:suite)` hook.
    2052:  Failure/Error: @pid = Process.spawn(*@command, options)
    2053:  Errno::EACCES:
    2054:  Permission denied - java
    2055:  # ./rb/lib/selenium/webdriver/common/child_process.rb:57:in `spawn'
    2056:  # ./rb/lib/selenium/webdriver/common/child_process.rb:57:in `start'
    2057:  # ./rb/lib/selenium/server.rb:204:in `start'
    2058:  # //?/D:/a/selenium/selenium/rb/spec/integration/selenium/webdriver/spec_helper.rb:40:in `block (2 levels) in <top (required)>'
    2059:  Finished in 0.04444 seconds (files took 0.61955 seconds to load)
    2060:  0 examples, 0 failures, 1 error occurred outside of examples
    2061:  ================================================================================
    2062:  ==================== Test output for //rb/spec/integration/selenium/webdriver:target_locator-edge-remote:
    2063:  2024-03-27 14:24:46 INFO Selenium Server Location: D:/_bazel/execroot/selenium/bazel-out/x64_windows-fastbuild/bin/rb/spec/integration/selenium/webdriver/target_locator-edge-remote.cmd.runfiles/selenium/java/src/org/openqa/selenium/grid/selenium_server_deploy.jar
    2064:  An error occurred in a `before(:suite)` hook.
    2065:  Failure/Error: @pid = Process.spawn(*@command, options)
    2066:  Errno::EACCES:
    2067:  Permission denied - java
    2068:  # ./rb/lib/selenium/webdriver/common/child_process.rb:57:in `spawn'
    2069:  # ./rb/lib/selenium/webdriver/common/child_process.rb:57:in `start'
    2070:  # ./rb/lib/selenium/server.rb:204:in `start'
    2071:  # //?/D:/a/selenium/selenium/rb/spec/integration/selenium/webdriver/spec_helper.rb:40:in `block (2 levels) in <top (required)>'
    2072:  Finished in 0.05137 seconds (files took 0.64627 seconds to load)
    2073:  0 examples, 0 failures, 1 error occurred outside of examples
    2074:  ================================================================================
    2075:  ==================== Test output for //rb/spec/integration/selenium/webdriver:target_locator-edge-remote:
    2076:  2024-03-27 14:25:07 INFO Selenium Server Location: D:/_bazel/execroot/selenium/bazel-out/x64_windows-fastbuild/bin/rb/spec/integration/selenium/webdriver/target_locator-edge-remote.cmd.runfiles/selenium/java/src/org/openqa/selenium/grid/selenium_server_deploy.jar
    2077:  An error occurred in a `before(:suite)` hook.
    2078:  Failure/Error: @pid = Process.spawn(*@command, options)
    2079:  Errno::EACCES:
    2080:  Permission denied - java
    2081:  # ./rb/lib/selenium/webdriver/common/child_process.rb:57:in `spawn'
    2082:  # ./rb/lib/selenium/webdriver/common/child_process.rb:57:in `start'
    2083:  # ./rb/lib/selenium/server.rb:204:in `start'
    2084:  # //?/D:/a/selenium/selenium/rb/spec/integration/selenium/webdriver/spec_helper.rb:40:in `block (2 levels) in <top (required)>'
    2085:  Finished in 0.0481 seconds (files took 0.65054 seconds to load)
    2086:  0 examples, 0 failures, 1 error occurred outside of examples
    2087:  ================================================================================
    2088:  �[32m[2,891 / 2,898]�[0m 16 / 27 tests, �[31m�[1m16 failed�[0m;�[0m Testing //rb/spec/integration/selenium/webdriver:navigation-edge-remote; 14s local, disk-cache ... (4 actions, 2 running)
    2089:  �[32m[2,891 / 2,898]�[0m 16 / 27 tests, �[31m�[1m16 failed�[0m;�[0m Testing //rb/spec/integration/selenium/webdriver:navigation-edge-remote; 20s local, disk-cache ... (4 actions, 2 running)
    2090:  �[31m�[1mFAIL: �[0m//rb/spec/integration/selenium/webdriver/edge:driver-edge-remote (see D:/_bazel/execroot/selenium/bazel-out/x64_windows-fastbuild/testlogs/rb/spec/integration/selenium/webdriver/edge/driver-edge-remote/test_attempts/attempt_1.log)
    2091:  �[32m[2,891 / 2,898]�[0m 16 / 27 tests, �[31m�[1m16 failed�[0m;�[0m Testing //rb/spec/integration/selenium/webdriver:navigation-edge-remote; 22s local, disk-cache ... (4 actions, 2 running)
    2092:  �[32m[2,891 / 2,898]�[0m 16 / 27 tests, �[31m�[1m16 failed�[0m;�[0m Testing //rb/spec/integration/selenium/webdriver:navigation-edge-remote; 25s local, disk-cache ... (4 actions, 2 running)
    2093:  �[32m[2,891 / 2,898]�[0m 16 / 27 tests, �[31m�[1m16 failed�[0m;�[0m Testing //rb/spec/integration/selenium/webdriver:navigation-edge-remote; 26s local, disk-cache ... (4 actions, 2 running)
    2094:  �[32m[2,891 / 2,898]�[0m 16 / 27 tests, �[31m�[1m16 failed�[0m;�[0m Testing //rb/spec/integration/selenium/webdriver:navigation-edge-remote; 28s local, disk-cache ... (4 actions, 3 running)
    2095:  �[31m�[1mFAIL: �[0m//rb/spec/integration/selenium/webdriver:navigation-edge-remote (see D:/_bazel/execroot/selenium/bazel-out/x64_windows-fastbuild/testlogs/rb/spec/integration/selenium/webdriver/navigation-edge-remote/test_attempts/attempt_2.log)
    2096:  �[32m[2,891 / 2,898]�[0m 16 / 27 tests, �[31m�[1m16 failed�[0m;�[0m Testing //rb/spec/integration/selenium/webdriver:navigation-edge-remote; 30s local, disk-cache ... (4 actions, 3 running)
    2097:  �[32m[2,891 / 2,898]�[0m 16 / 27 tests, �[31m�[1m16 failed�[0m;�[0m Testing //rb/spec/integration/selenium/webdriver:navigation-edge-remote; 35s local, disk-cache ... (4 actions, 3 running)
    2098:  �[31m�[1mFAIL: �[0m//rb/spec/integration/selenium/webdriver/edge:profile-edge-remote (see D:/_bazel/execroot/selenium/bazel-out/x64_windows-fastbuild/testlogs/rb/spec/integration/selenium/webdriver/edge/profile-edge-remote/test_attempts/attempt_1.log)
    2099:  �[32m[2,891 / 2,898]�[0m 16 / 27 tests, �[31m�[1m16 failed�[0m;�[0m Testing //rb/spec/integration/selenium/webdriver:navigation-edge-remote; 37s local, disk-cache ... (4 actions, 3 running)
    2100:  �[32m[2,891 / 2,898]�[0m 16 / 27 tests, �[31m�[1m16 failed�[0m;�[0m Testing //rb/spec/integration/selenium/webdriver:navigation-edge-remote; 42s local, disk-cache ... (4 actions running)
    2101:  �[31m�[1mFAIL: �[0m//rb/spec/integration/selenium/webdriver/edge:driver-edge-remote (see D:/_bazel/execroot/selenium/bazel-out/x64_windows-fastbuild/testlogs/rb/spec/integration/selenium/webdriver/edge/driver-edge-remote/test_attempts/attempt_2.log)
    2102:  �[32m[2,891 / 2,898]�[0m 16 / 27 tests, �[31m�[1m16 failed�[0m;�[0m Testing //rb/spec/integration/selenium/webdriver:navigation-edge-remote; 43s local, disk-cache ... (4 actions running)
    2103:  �[32m[2,891 / 2,898]�[0m 16 / 27 tests, �[31m�[1m16 failed�[0m;�[0m Testing //rb/spec/integration/selenium/webdriver:navigation-edge-remote; 48s local, disk-cache ... (4 actions running)
    2104:  �[31m�[1mFAIL: �[0m//rb/spec/integration/selenium/webdriver/remote:element-edge-remote (see D:/_bazel/execroot/selenium/bazel-out/x64_windows-fastbuild/testlogs/rb/spec/integration/selenium/webdriver/remote/element-edge-remote/test_attempts/attempt_1.log)
    2105:  �[32m[2,891 / 2,898]�[0m 16 / 27 tests, �[31m�[1m16 failed�[0m;�[0m Testing //rb/spec/integration/selenium/webdriver:navigation-edge-remote; 50s local, disk-cache ... (4 actions running)
    2106:  �[32m[2,891 / 2,898]�[0m 16 / 27 tests, �[31m�[1m16 failed�[0m;�[0m Testing //rb/spec/integration/selenium/webdriver:navigation-edge-remote; 55s local, disk-cache ... (4 actions running)
    2107:  �[31m�[1mFAIL: �[0m//rb/spec/integration/selenium/webdriver:navigation-edge-remote (see D:/_bazel/execroot/selenium/bazel-out/x64_windows-fastbuild/testlogs/rb/spec/integration/selenium/webdriver/navigation-edge-remote/test.log)
    2108:  �[31m�[1mFAILED: �[0m//rb/spec/integration/selenium/webdriver:navigation-edge-remote (Summary)
    2109:  D:/_bazel/execroot/selenium/bazel-out/x64_windows-fastbuild/testlogs/rb/spec/integration/selenium/webdriver/navigation-edge-remote/test.log
    2110:  D:/_bazel/execroot/selenium/bazel-out/x64_windows-fastbuild/testlogs/rb/spec/integration/selenium/webdriver/navigation-edge-remote/test_attempts/attempt_1.log
    2111:  D:/_bazel/execroot/selenium/bazel-out/x64_windows-fastbuild/testlogs/rb/spec/integration/selenium/webdriver/navigation-edge-remote/test_attempts/attempt_2.log
    2112:  �[32mINFO: �[0mFrom Testing //rb/spec/integration/selenium/webdriver:navigation-edge-remote:
    2113:  ==================== Test output for //rb/spec/integration/selenium/webdriver:navigation-edge-remote:
    2114:  2024-03-27 14:25:00 INFO Selenium Server Location: D:/_bazel/execroot/selenium/bazel-out/x64_windows-fastbuild/bin/rb/spec/integration/selenium/webdriver/navigation-edge-remote.cmd.runfiles/selenium/java/src/org/openqa/selenium/grid/selenium_server_deploy.jar
    2115:  An error occurred in a `before(:suite)` hook.
    2116:  Failure/Error: @pid = Process.spawn(*@command, options)
    2117:  Errno::EACCES:
    2118:  Permission denied - java
    2119:  # ./rb/lib/selenium/webdriver/common/child_process.rb:57:in `spawn'
    2120:  # ./rb/lib/selenium/webdriver/common/child_process.rb:57:in `start'
    2121:  # ./rb/lib/selenium/server.rb:204:in `start'
    2122:  # //?/D:/a/selenium/selenium/rb/spec/integration/selenium/webdriver/spec_helper.rb:40:in `block (2 levels) in <top (required)>'
    2123:  Finished in 0.0468 seconds (files took 0.69446 seconds to load)
    2124:  0 examples, 0 failures, 1 error occurred outside of examples
    2125:  ================================================================================
    2126:  ==================== Test output for //rb/spec/integration/selenium/webdriver:navigation-edge-remote:
    2127:  2024-03-27 14:25:21 INFO Selenium Server Location: D:/_bazel/execroot/selenium/bazel-out/x64_windows-fastbuild/bin/rb/spec/integration/selenium/webdriver/navigation-edge-remote.cmd.runfiles/selenium/java/src/org/openqa/selenium/grid/selenium_server_deploy.jar
    2128:  An error occurred in a `before(:suite)` hook.
    2129:  Failure/Error: @pid = Process.spawn(*@command, options)
    2130:  Errno::EACCES:
    2131:  Permission denied - java
    2132:  # ./rb/lib/selenium/webdriver/common/child_process.rb:57:in `spawn'
    2133:  # ./rb/lib/selenium/webdriver/common/child_process.rb:57:in `start'
    2134:  # ./rb/lib/selenium/server.rb:204:in `start'
    2135:  # //?/D:/a/selenium/selenium/rb/spec/integration/selenium/webdriver/spec_helper.rb:40:in `block (2 levels) in <top (required)>'
    2136:  Finished in 0.07028 seconds (files took 0.79718 seconds to load)
    2137:  0 examples, 0 failures, 1 error occurred outside of examples
    2138:  ================================================================================
    2139:  ==================== Test output for //rb/spec/integration/selenium/webdriver:navigation-edge-remote:
    2140:  2024-03-27 14:25:49 INFO Selenium Server Location: D:/_bazel/execroot/selenium/bazel-out/x64_windows-fastbuild/bin/rb/spec/integration/selenium/webdriver/navigation-edge-remote.cmd.runfiles/selenium/java/src/org/openqa/selenium/grid/selenium_server_deploy.jar
    2141:  An error occurred in a `before(:suite)` hook.
    2142:  Failure/Error: @pid = Process.spawn(*@command, options)
    2143:  Errno::EACCES:
    2144:  Permission denied - java
    2145:  # ./rb/lib/selenium/webdriver/common/child_process.rb:57:in `spawn'
    2146:  # ./rb/lib/selenium/webdriver/common/child_process.rb:57:in `start'
    2147:  # ./rb/lib/selenium/server.rb:204:in `start'
    2148:  # //?/D:/a/selenium/selenium/rb/spec/integration/selenium/webdriver/spec_helper.rb:40:in `block (2 levels) in <top (required)>'
    2149:  Finished in 0.046 seconds (files took 0.60552 seconds to load)
    2150:  0 examples, 0 failures, 1 error occurred outside of examples
    2151:  ================================================================================
    2152:  �[32m[2,892 / 2,898]�[0m 17 / 27 tests, �[31m�[1m17 failed�[0m;�[0m Testing //rb/spec/integration/selenium/webdriver/edge:driver-edge-remote; 42s local, disk-cache ... (4 actions, 3 running)
    2153:  �[32m[2,892 / 2,898]�[0m 17 / 27 tests, �[31m�[1m17 failed�[0m;�[0m Testing //rb/spec/integration/selenium/webdriver/edge:driver-edge-remote; 48s local, disk-cache ... (4 actions, 3 running)
    2154:  �[31m�[1mFAIL: �[0m//rb/spec/integration/selenium/webdriver/edge:profile-edge-remote (see D:/_bazel/execroot/selenium/bazel-out/x64_windows-fastbuild/testlogs/rb/spec/integration/selenium/webdriver/edge/profile-edge-remote/test_attempts/attempt_2.log)
    2155:  �[32m[2,892 / 2,898]�[0m 17 / 27 tests, �[31m�[1m17 failed�[0m;�[0m Testing //rb/spec/integration/selenium/webdriver/edge:driver-edge-remote; 49s local, disk-cache ... (4 actions, 3 running)
    2156:  �[32m[2,892 / 2,898]�[0m 17 / 27 tests, �[31m�[1m17 failed�[0m;�[0m Testing //rb/spec/integration/selenium/webdriver/edge:driver-edge-remote; 53s local, disk-cache ... (4 actions, 3 running)
    2157:  �[32m[2,892 / 2,898]�[0m 17 / 27 tests, �[31m�[1m17 failed�[0m;�[0m Testing //rb/spec/integration/selenium/webdriver/edge:driver-edge-remote; 54s local, disk-cache ... (4 actions, 3 running)
    2158:  �[32m[2,892 / 2,898]�[0m 17 / 27 tests, �[31m�[1m17 failed�[0m;�[0m Testing //rb/spec/integration/selenium/webdriver/edge:driver-edge-remote; 55s local, disk-cache ... (4 actions, 3 running)
    2159:  �[31m�[1mFAIL: �[0m//rb/spec/integration/selenium/webdriver/edge:driver-edge-remote (see D:/_bazel/execroot/selenium/bazel-out/x64_windows-fastbuild/testlogs/rb/spec/integration/selenium/webdriver/edge/driver-edge-remote/test.log)
    2160:  �[31m�[1mFAILED: �[0m//rb/spec/integration/selenium/webdriver/edge:driver-edge-remote (Summary)
    2161:  D:/_bazel/execroot/selenium/bazel-out/x64_windows-fastbuild/testlogs/rb/spec/integration/selenium/webdriver/edge/driver-edge-remote/test.log
    2162:  D:/_bazel/execroot/selenium/bazel-out/x64_windows-fastbuild/testlogs/rb/spec/integration/selenium/webdriver/edge/driver-edge-remote/test_attempts/attempt_1.log
    2163:  D:/_bazel/execroot/selenium/bazel-out/x64_windows-fastbuild/testlogs/rb/spec/integration/selenium/webdriver/edge/driver-edge-remote/test_attempts/attempt_2.log
    2164:  �[32mINFO: �[0mFrom Testing //rb/spec/integration/selenium/webdriver/edge:driver-edge-remote:
    2165:  ==================== Test output for //rb/spec/integration/selenium/webdriver/edge:driver-edge-remote:
    2166:  2024-03-27 14:25:14 INFO Selenium Server Location: D:/_bazel/execroot/selenium/bazel-out/x64_windows-fastbuild/bin/rb/spec/integration/selenium/webdriver/edge/driver-edge-remote.cmd.runfiles/selenium/java/src/org/openqa/selenium/grid/selenium_server_deploy.jar
    2167:  An error occurred in a `before(:suite)` hook.
    2168:  Failure/Error: @pid = Process.spawn(*@command, options)
    2169:  Errno::EACCES:
    2170:  Permission denied - java
    2171:  # ./rb/lib/selenium/webdriver/common/child_process.rb:57:in `spawn'
    2172:  # ./rb/lib/selenium/webdriver/common/child_process.rb:57:in `start'
    2173:  # ./rb/lib/selenium/server.rb:204:in `start'
    2174:  # //?/D:/a/selenium/selenium/rb/spec/integration/selenium/webdriver/spec_helper.rb:40:in `block (2 levels) in <top (required)>'
    2175:  Finished in 0.0612 seconds (files took 0.71045 seconds to load)
    2176:  0 examples, 0 failures, 1 error occurred outside of examples
    2177:  ================================================================================
    2178:  ==================== Test output for //rb/spec/integration/selenium/webdriver/edge:driver-edge-remote:
    2179:  2024-03-27 14:25:35 INFO Selenium Server Location: D:/_bazel/execroot/selenium/bazel-out/x64_windows-fastbuild/bin/rb/spec/integration/selenium/webdriver/edge/driver-edge-remote.cmd.runfiles/selenium/java/src/org/openqa/selenium/grid/selenium_server_deploy.jar
    2180:  An error occurred in a `before(:suite)` hook.
    2181:  Failure/Error: @pid = Process.spawn(*@command, options)
    2182:  Errno::EACCES:
    2183:  Permission denied - java
    2184:  # ./rb/lib/selenium/webdriver/common/child_process.rb:57:in `spawn'
    2185:  # ./rb/lib/selenium/webdriver/common/child_process.rb:57:in `start'
    2186:  # ./rb/lib/selenium/server.rb:204:in `start'
    2187:  # //?/D:/a/selenium/selenium/rb/spec/integration/selenium/webdriver/spec_helper.rb:40:in `block (2 levels) in <top (required)>'
    2188:  Finished in 0.04936 seconds (files took 0.63855 seconds to load)
    2189:  0 examples, 0 failures, 1 error occurred outside of examples
    2190:  ================================================================================
    2191:  ==================== Test output for //rb/spec/integration/selenium/webdriver/edge:driver-edge-remote:
    2192:  2024-03-27 14:26:03 INFO Selenium Server Location: D:/_bazel/execroot/selenium/bazel-out/x64_windows-fastbuild/bin/rb/spec/integration/selenium/webdriver/edge/driver-edge-remote.cmd.runfiles/selenium/java/src/org/openqa/selenium/grid/selenium_server_deploy.jar
    2193:  An error occurred in a `before(:suite)` hook.
    2194:  Failure/Error: @pid = Process.spawn(*@command, options)
    2195:  Errno::EACCES:
    2196:  Permission denied - java
    2197:  # ./rb/lib/selenium/webdriver/common/child_process.rb:57:in `spawn'
    2198:  # ./rb/lib/selenium/webdriver/common/child_process.rb:57:in `start'
    2199:  # ./rb/lib/selenium/server.rb:204:in `start'
    2200:  # //?/D:/a/selenium/selenium/rb/spec/integration/selenium/webdriver/spec_helper.rb:40:in `block (2 levels) in <top (required)>'
    2201:  Finished in 0.05406 seconds (files took 0.73602 seconds to load)
    2202:  0 examples, 0 failures, 1 error occurred outside of examples
    2203:  ================================================================================
    2204:  �[32m[2,893 / 2,898]�[0m 18 / 27 tests, �[31m�[1m18 failed�[0m;�[0m Testing //rb/spec/integration/selenium/webdriver/edge:profile-edge-remote; 42s local, disk-cache ... (4 actions, 2 running)
    2205:  �[32m[2,893 / 2,898]�[0m 18 / 27 tests, �[31m�[1m18 failed�[0m;�[0m Testing //rb/spec/integration/selenium/webdriver/edge:profile-edge-remote; 48s local, disk-cache ... (4 actions, 2 running)
    2206:  �[31m�[1mFAIL: �[0m//rb/spec/integration/selenium/webdriver/remote:element-edge-remote (see D:/_bazel/execroot/selenium/bazel-out/x64_windows-fastbuild/testlogs/rb/spec/integration/selenium/webdriver/remote/element-edge-remote/test_attempts/attempt_2.log)
    2207:  �[32m[2,893 / 2,898]�[0m 18 / 27 tests, �[31m�[1m18 failed�[0m;�[0m Testing //rb/spec/integration/selenium/webdriver/edge:profile-edge-remote; 49s local, disk-cache ... (4 actions, 2 running)
    2208:  �[32m[2,893 / 2,898]�[0m 18 / 27 tests, �[31m�[1m18 failed�[0m;�[0m Testing //rb/spec/integration/selenium/webdriver/edge:profile-edge-remote; 52s local, disk-cache ... (4 actions, 2 running)
    2209:  �[32m[2,893 / 2,898]�[0m 18 / 27 tests, �[31m�[1m18 failed�[0m;�[0m Testing //rb/spec/integration/selenium/webdriver/edge:profile-edge-remote; 54s local, disk-cache ... (4 actions, 2 running)
    2210:  �[31m�[1mFAIL: �[0m//rb/spec/integration/selenium/webdriver/edge:profile-edge-remote (see D:/_bazel/execroot/selenium/bazel-out/x64_windows-fastbuild/testlogs/rb/spec/integration/selenium/webdriver/edge/profile-edge-remote/test.log)
    2211:  �[31m�[1mFAILED: �[0m//rb/spec/integration/selenium/webdriver/edge:profile-edge-remote (Summary)
    2212:  D:/_bazel/execroot/selenium/bazel-out/x64_windows-fastbuild/testlogs/rb/spec/integration/selenium/webdriver/edge/profile-edge-remote/test.log
    2213:  D:/_bazel/execroot/selenium/bazel-out/x64_windows-fastbuild/testlogs/rb/spec/integration/selenium/webdriver/edge/profile-edge-remote/test_attempts/attempt_1.log
    2214:  D:/_bazel/execroot/selenium/bazel-out/x64_windows-fastbuild/testlogs/rb/spec/integration/selenium/webdriver/edge/profile-edge-remote/test_attempts/attempt_2.log
    2215:  �[32mINFO: �[0mFrom Testing //rb/spec/integration/selenium/webdriver/edge:profile-edge-remote:
    2216:  ==================== Test output for //rb/spec/integration/selenium/webdriver/edge:profile-edge-remote:
    2217:  2024-03-27 14:25:28 INFO Selenium Server Location: D:/_bazel/execroot/selenium/bazel-out/x64_windows-fastbuild/bin/rb/spec/integration/selenium/webdriver/edge/profile-edge-remote.cmd.runfiles/selenium/java/src/org/openqa/selenium/grid/selenium_server_deploy.jar
    2218:  An error occurred in a `before(:suite)` hook.
    2219:  Failure/Error: @pid = Process.spawn(*@command, options)
    2220:  Errno::EACCES:
    2221:  Permission denied - java
    2222:  # ./rb/lib/selenium/webdriver/common/child_process.rb:57:in `spawn'
    2223:  # ./rb/lib/selenium/webdriver/common/child_process.rb:57:in `start'
    2224:  # ./rb/lib/selenium/server.rb:204:in `start'
    2225:  # //?/D:/a/selenium/selenium/rb/spec/integration/selenium/webdriver/spec_helper.rb:40:in `block (2 levels) in <top (required)>'
    2226:  Finished in 0.04554 seconds (files took 0.62848 seconds to load)
    2227:  0 examples, 0 failures, 1 error occurred outside of examples
    2228:  ================================================================================
    2229:  ==================== Test output for //rb/spec/integration/selenium/webdriver/edge:profile-edge-remote:
    2230:  2024-03-27 14:25:56 INFO Selenium Server Location: D:/_bazel/execroot/selenium/bazel-out/x64_windows-fastbuild/bin/rb/spec/integration/selenium/webdriver/edge/profile-edge-remote.cmd.runfiles/selenium/java/src/org/openqa/selenium/grid/selenium_server_deploy.jar
    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.04891 seconds (files took 0.74002 seconds to load)
    2240:  0 examples, 0 failures, 1 error occurred outside of examples
    2241:  ================================================================================
    2242:  ==================== Test output for //rb/spec/integration/selenium/webdriver/edge:profile-edge-remote:
    2243:  2024-03-27 14:26:17 INFO Selenium Server Location: D:/_bazel/execroot/selenium/bazel-out/x64_windows-fastbuild/bin/rb/spec/integration/selenium/webdriver/edge/profile-edge-remote.cmd.runfiles/selenium/java/src/org/openqa/selenium/grid/selenium_server_deploy.jar
    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.04695 seconds (files took 0.67123 seconds to load)
    2253:  0 examples, 0 failures, 1 error occurred outside of examples
    2254:  ================================================================================
    2255:  �[32m[2,894 / 2,898]�[0m 19 / 27 tests, �[31m�[1m19 failed�[0m;�[0m Testing //rb/spec/integration/selenium/webdriver/remote:element-edge-remote; 42s local, disk-cache ... (4 actions, 2 running)
    2256:  �[32m[2,894 / 2,898]�[0m 19 / 27 tests, �[31m�[1m19 failed�[0m;�[0m Testing //rb/spec/integration/selenium/webdriver/remote:element-edge-remote; 44s local, disk-cache ... (4 actions, 2 running)
    2257:  �[32m[2,894 / 2,898]�[0m 19 / 27 tests, �[31m�[1m19 failed�[0m;�[0m Testing //rb/spec/integration/selenium/webdriver/remote:element-edge-remote; 48s local, disk-cache ... (4 actions, 2 running)
    2258:  �[31m�[1mFAIL: �[0m//rb/spec/integration/selenium/webdriver/edge:options-edge-remote (see D:/_bazel/execroot/selenium/bazel-out/x64_windows-fastbuild/testlogs/rb/spec/integration/selenium/webdriver/edge/options-edge-remote/test_attempts/attempt_1.log)
    2259:  �[32m[2,894 / 2,898]�[0m 19 / 27 tests, �[31m�[1m19 failed�[0m;�[0m Testing //rb/spec/integration/selenium/webdriver/remote:element-edge-remote; 49s local, disk-cache ... (4 actions, 2 running)
    2260:  �[32m[2,894 / 2,898]�[0m 19 / 27 tests, �[31m�[1m19 failed�[0m;�[0m Testing //rb/spec/integration/selenium/webdriver/remote:element-edge-remote; 53s local, disk-cache ... (4 actions, 2 running)
    2261:  �[32m[2,894 / 2,898]�[0m 19 / 27 tests, �[31m�[1m19 failed�[0m;�[0m Testing //rb/spec/integration/selenium/webdriver/remote:element-edge-remote; 55s local, disk-cache ... (4 actions, 2 running)
    2262:  �[31m�[1mFAIL: �[0m//rb/spec/integration/selenium/webdriver/remote:element-edge-remote (see D:/_bazel/execroot/selenium/bazel-out/x64_windows-fastbuild/testlogs/rb/spec/integration/selenium/webdriver/remote/element-edge-remote/test.log)
    2263:  ==================== Test output for //rb/spec/integration/selenium/webdriver/remote:element-edge-remote:
    2264:  2024-03-27 14:25:42 INFO Selenium Server Location: D:/_bazel/execroot/selenium/bazel-out/x64_windows-fastbuild/bin/rb/spec/integration/selenium/webdriver/remote/element-edge-remote.cmd.runfiles/selenium/java/src/org/openqa/selenium/grid/selenium_server_deploy.jar
    2265:  �[31m�[1mFAILED: �[0m//rb/spec/integration/selenium/webdriver/remote:element-edge-remote (Summary)
    2266:  D:/_bazel/execroot/selenium/bazel-out/x64_windows-fastbuild/testlogs/rb/spec/integration/selenium/webdriver/remote/element-edge-remote/test.log
    2267:  D:/_bazel/execroot/selenium/bazel-out/x64_windows-fastbuild/testlogs/rb/spec/integration/selenium/webdriver/remote/element-edge-remote/test_attempts/attempt_1.log
    2268:  D:/_bazel/execroot/selenium/bazel-out/x64_windows-fastbuild/testlogs/rb/spec/integration/selenium/webdriver/remote/element-edge-remote/test_attempts/attempt_2.log
    2269:  �[32mINFO: �[0mFrom Testing //rb/spec/integration/selenium/webdriver/remote:element-edge-remote:
    2270:  An error occurred in a `before(:suite)` hook.
    2271:  Failure/Error: @pid = Process.spawn(*@command, options)
    2272:  Errno::EACCES:
    2273:  Permission denied - java
    2274:  # ./rb/lib/selenium/webdriver/common/child_process.rb:57:in `spawn'
    2275:  # ./rb/lib/selenium/webdriver/common/child_process.rb:57:in `start'
    2276:  # ./rb/lib/selenium/server.rb:204:in `start'
    2277:  # //?/D:/a/selenium/selenium/rb/spec/integration/selenium/webdriver/spec_helper.rb:40:in `block (2 levels) in <top (required)>'
    2278:  Finished in 0.04672 seconds (files took 0.63111 seconds to load)
    2279:  0 examples, 0 failures, 1 error occurred outside of examples
    2280:  ================================================================================
    2281:  ==================== Test output for //rb/spec/integration/selenium/webdriver/remote:element-edge-remote:
    2282:  2024-03-27 14:26:10 INFO Selenium Server Location: D:/_bazel/execroot/selenium/bazel-out/x64_windows-fastbuild/bin/rb/spec/integration/selenium/webdriver/remote/element-edge-remote.cmd.runfiles/selenium/java/src/org/openqa/selenium/grid/selenium_server_deploy.jar
    2283:  An error occurred in a `before(:suite)` hook.
    2284:  Failure/Error: @pid = Process.spawn(*@command, options)
    2285:  Errno::EACCES:
    2286:  Permission denied - java
    2287:  # ./rb/lib/selenium/webdriver/common/child_process.rb:57:in `spawn'
    2288:  # ./rb/lib/selenium/webdriver/common/child_process.rb:57:in `start'
    2289:  # ./rb/lib/selenium/server.rb:204:in `start'
    2290:  # //?/D:/a/selenium/selenium/rb/spec/integration/selenium/webdriver/spec_helper.rb:40:in `block (2 levels) in <top (required)>'
    2291:  Finished in 0.05678 seconds (files took 0.66187 seconds to load)
    2292:  0 examples, 0 failures, 1 error occurred outside of examples
    2293:  ================================================================================
    2294:  ==================== Test output for //rb/spec/integration/selenium/webdriver/remote:element-edge-remote:
    2295:  2024-03-27 14:26:30 INFO Selenium Server Location: D:/_bazel/execroot/selenium/bazel-out/x64_windows-fastbuild/bin/rb/spec/integration/selenium/webdriver/remote/element-edge-remote.cmd.runfiles/selenium/java/src/org/openqa/selenium/grid/selenium_server_deploy.jar
    2296:  An error occurred in a `before(:suite)` hook.
    2297:  Failure/Error: @pid = Process.spawn(*@command, options)
    2298:  Errno::EACCES:
    2299:  Permission denied - java
    2300:  # ./rb/lib/selenium/webdriver/common/child_process.rb:57:in `spawn'
    2301:  # ./rb/lib/selenium/webdriver/common/child_process.rb:57:in `start'
    2302:  # ./rb/lib/selenium/server.rb:204:in `start'
    2303:  # //?/D:/a/selenium/selenium/rb/spec/integration/selenium/webdriver/spec_helper.rb:40:in `block (2 levels) in <top (required)>'
    2304:  Finished in 0.04652 seconds (files took 0.66269 seconds to load)
    2305:  0 examples, 0 failures, 1 error occurred outside of examples
    2306:  ================================================================================
    2307:  �[32m[2,895 / 2,898]�[0m 20 / 27 tests, �[31m�[1m20 failed�[0m;�[0m Testing //rb/spec/integration/selenium/webdriver/edge:options-edge-remote; 14s local, disk-cache ... (3 actions, 2 running)
    2308:  �[32m[2,895 / 2,898]�[0m 20 / 27 tests, �[31m�[1m20 failed�[0m;�[0m Testing //rb/spec/integration/selenium/webdriver/edge:options-edge-remote; 20s local, disk-cache ... (3 actions, 2 running)
    2309:  �[31m�[1mFAIL: �[0m//rb/spec/integration/selenium/webdriver:driver-edge-remote (see D:/_bazel/execroot/selenium/bazel-out/x64_windows-fastbuild/testlogs/rb/spec/integration/selenium/webdriver/driver-edge-remote/test_attempts/attempt_1.log)
    2310:  �[32m[2,895 / 2,898]�[0m 20 / 27 tests, �[31m�[1m20 failed�[0m;�[0m Testing //rb/spec/integration/selenium/webdriver/edge:options-edge-remote; 21s local, disk-cache ... (3 actions, 2 running)
    2311:  �[32m[2,895 / 2,898]�[0m 20 / 27 tests, �[31m�[1m20 failed�[0m;�[0m Testing //rb/spec/integration/selenium/webdriver/edge:options-edge-remote; 25s local, disk-cache ... (3 actions, 2 running)
    2312:  �[32m[2,895 / 2,898]�[0m 20 / 27 tests, �[31m�[1m20 failed�[0m;�[0m Testing //rb/spec/integration/selenium/webdriver/edge:options-edge-remote; 27s local, disk-cache ... (3 actions running)
    2313:  �[31m�[1mFAIL: �[0m//rb/spec/integration/selenium/webdriver/edge:options-edge-remote (see D:/_bazel/execroot/selenium/bazel-out/x64_windows-fastbuild/testlogs/rb/spec/integration/selenium/webdriver/edge/options-edge-remote/test_attempts/attempt_2.log)
    2314:  �[32m[2,895 / 2,898]�[0m 20 / 27 tests, �[31m�[1m20 failed�[0m;�[0m Testing //rb/spec/integration/selenium/webdriver/edge:options-edge-remote; 28s local, disk-cache ... (3 actions running)
    2315:  �[32m[2,895 / 2,898]�[0m 20 / 27 tests, �[31m�[1m20 failed�[0m;�[0m Testing //rb/spec/integration/selenium/webdriver/edge:options-edge-remote; 34s local, disk-cache ... (3 actions running)
    2316:  �[31m�[1mFAIL: �[0m//rb/spec/integration/selenium/webdriver:takes_screenshot-edge-remote (see D:/_bazel/execroot/selenium/bazel-out/x64_windows-fastbuild/testlogs/rb/spec/integration/selenium/webdriver/takes_screenshot-edge-remote/test_attempts/attempt_1.log)
    2317:  �[32m[2,895 / 2,898]�[0m 20 / 27 tests, �[31m�[1m20 failed�[0m;�[0m Testing //rb/spec/integration/selenium/webdriver/edge:options-edge-remote; 35s local, disk-cache ... (3 actions running)
    2318:  �[32m[2,895 / 2,898]�[0m 20 / 27 tests, �[31m�[1m20 failed�[0m;�[0m Testing //rb/spec/integration/selenium/webdriver/edge:options-edge-remote; 41s local, disk-cache ... (3 actions running)
    2319:  �[31m�[1mFAIL: �[0m//rb/spec/integration/selenium/webdriver:driver-edge-remote (see D:/_bazel/execroot/selenium/bazel-out/x64_windows-fastbuild/testlogs/rb/spec/integration/selenium/webdriver/driver-edge-remote/test_attempts/attempt_2.log)
    2320:  �[32m[2,895 / 2,898]�[0m 20 / 27 tests, �[31m�[1m20 failed�[0m;�[0m Testing //rb/spec/integration/selenium/webdriver/edge:options-edge-remote; 42s local, disk-cache ... (3 actions running)
    2321:  �[32m[2,895 / 2,898]�[0m 20 / 27 tests, �[31m�[1m20 failed�[0m;�[0m Testing //rb/spec/integration/selenium/webdriver/edge:options-edge-remote; 47s local, disk-cache ... (3 actions running)
    2322:  �[31m�[1mFAIL: �[0m//rb/spec/integration/selenium/webdriver/edge:options-edge-remote (see D:/_bazel/execroot/selenium/bazel-out/x64_windows-fastbuild/testlogs/rb/spec/integration/selenium/webdriver/edge/options-edge-remote/test.log)
    2323:  �[31m�[1mFAILED: �[0m//rb/spec/integration/selenium/webdriver/edge:options-edge-remote (Summary)
    2324:  D:/_bazel/execroot/selenium/bazel-out/x64_windows-fastbuild/testlogs/rb/spec/integration/selenium/webdriver/edge/options-edge-remote/test.log
    2325:  ==================== Test output for //rb/spec/integration/selenium/webdriver/edge:options-edge-remote:
    2326:  D:/_bazel/execroot/selenium/bazel-out/x64_windows-fastbuild/testlogs/rb/spec/integration/selenium/webdriver/edge/options-edge-remote/test_attempts/attempt_1.log
    2327:  D:/_bazel/execroot/selenium/bazel-out/x64_windows-fastbuild/testlogs/rb/spec/integration/selenium/webdriver/edge/options-edge-remote/test_attempts/attempt_2.log
    2328:  �[32mINFO: �[0mFrom Testing //rb/spec/integration/selenium/webdriver/edge:options-edge-remote:
    2329:  2024-03-27 14:26:23 INFO Selenium Server Location: D:/_bazel/execroot/selenium/bazel-out/x64_windows-fastbuild/bin/rb/spec/integration/selenium/webdriver/edge/options-edge-remote.cmd.runfiles/selenium/java/src/org/openqa/selenium/grid/selenium_server_deploy.jar
    2330:  An error occurred in a `before(:suite)` hook.
    2331:  Failure/Error: @pid = Process.spawn(*@command, options)
    2332:  Errno::EACCES:
    2333:  Permission denied - java
    2334:  # ./rb/lib/selenium/webdriver/common/child_process.rb:57:in `spawn'
    2335:  # ./rb/lib/selenium/webdriver/common/child_process.rb:57:in `start'
    2336:  # ./rb/lib/selenium/server.rb:204:in `start'
    2337:  # //?/D:/a/selenium/selenium/rb/spec/integration/selenium/webdriver/spec_helper.rb:40:in `block (2 levels) in <top (required)>'
    2338:  Finished in 0.05052 seconds (files took 0.67458 seconds to load)
    2339:  0 examples, 0 failures, 1 error occurred outside of examples
    2340:  ================================================================================
    2341:  ==================== Test output for //rb/spec/integration/selenium/webdriver/edge:options-edge-remote:
    2342:  2024-03-27 14:26:44 INFO Selenium Server Location: D:/_bazel/execroot/selenium/bazel-out/x64_windows-fastbuild/bin/rb/spec/integration/selenium/webdriver/edge/options-edge-remote.cmd.runfiles/selenium/java/src/org/openqa/selenium/grid/selenium_server_deploy.jar
    2343:  An error occurred in a `before(:suite)` hook.
    2344:  Failure/Error: @pid = Process.spawn(*@command, options)
    2345:  Errno::EACCES:
    2346:  Permission denied - java
    2347:  # ./rb/lib/selenium/webdriver/common/child_process.rb:57:in `spawn'
    2348:  # ./rb/lib/selenium/webdriver/common/child_process.rb:57:in `start'
    2349:  # ./rb/lib/selenium/server.rb:204:in `start'
    2350:  # //?/D:/a/selenium/selenium/rb/spec/integration/selenium/webdriver/spec_helper.rb:40:in `block (2 levels) in <top (required)>'
    2351:  Finished in 0.04541 seconds (files took 0.60558 seconds to load)
    2352:  0 examples, 0 failures, 1 error occurred outside of examples
    2353:  ================================================================================
    2354:  ==================== Test output for //rb/spec/integration/selenium/webdriver/edge:options-edge-remote:
    2355:  2024-03-27 14:27:04 INFO Selenium Server Location: D:/_bazel/execroot/selenium/bazel-out/x64_windows-fastbuild/bin/rb/spec/integration/selenium/webdriver/edge/options-edge-remote.cmd.runfiles/selenium/java/src/org/openqa/selenium/grid/selenium_server_deploy.jar
    2356:  An error occurred in a `before(:suite)` hook.
    2357:  Failure/Error: @pid = Process.spawn(*@command, options)
    2358:  Errno::EACCES:
    2359:  Permission denied - java
    2360:  # ./rb/lib/selenium/webdriver/common/child_process.rb:57:in `spawn'
    2361:  # ./rb/lib/selenium/webdriver/common/child_process.rb:57:in `start'
    2362:  # ./rb/lib/selenium/server.rb:204:in `start'
    2363:  # //?/D:/a/selenium/selenium/rb/spec/integration/selenium/webdriver/spec_helper.rb:40:in `block (2 levels) in <top (required)>'
    2364:  Finished in 0.04447 seconds (files took 0.61007 seconds to load)
    2365:  0 examples, 0 failures, 1 error occurred outside of examples
    2366:  ================================================================================
    2367:  �[32m[2,896 / 2,898]�[0m 21 / 27 tests, �[31m�[1m21 failed�[0m;�[0m Testing //rb/spec/integration/selenium/webdriver:driver-edge-remote; 35s local, disk-cache ... (2 actions running)
    2368:  �[32m[2,896 / 2,898]�[0m 21 / 27 tests, �[31m�[1m21 failed�[0m;�[0m Testing //rb/spec/integration/selenium/webdriver:driver-edge-remote; 40s local, disk-cache ... (2 actions running)
    2369:  �[31m�[1mFAIL: �[0m//rb/spec/integration/selenium/webdriver:takes_screenshot-edge-remote (see D:/_bazel/execroot/selenium/bazel-out/x64_windows-fastbuild/testlogs/rb/spec/integration/selenium/webdriver/takes_screenshot-edge-remote/test_attempts/attempt_2.log)
    2370:  �[32m[2,896 / 2,898]�[0m 21 / 27 tests, �[31m�[1m21 failed�[0m;�[0m Testing //rb/spec/integration/selenium/webdriver:driver-edge-remote; 41s local, disk-cache ... (2 actions running)
    2371:  �[32m[2,896 / 2,898]�[0m 21 / 27 tests, �[31m�[1m21 failed�[0m;�[0m Testing //rb/spec/integration/selenium/webdriver:driver-edge-remote; 45s local, disk-cache ... (2 actions running)
    2372:  �[32m[2,896 / 2,898]�[0m 21 / 27 tests, �[31m�[1m21 failed�[0m;�[0m Testing //rb/spec/integration/selenium/webdriver:driver-edge-remote; 47s local, disk-cache ... (2 actions running)
    2373:  �[31m�[1mFAIL: �[0m//rb/spec/integration/selenium/webdriver:driver-edge-remote (see D:/_bazel/execroot/selenium/bazel-out/x64_windows-fastbuild/testlogs/rb/spec/integration/selenium/webdriver/driver-edge-remote/test.log)
    2374:  �[31m�[1mFAILED: �[0m//rb/spec/integration/selenium/webdriver:driver-edge-remote (Summary)
    2375:  D:/_bazel/execroot/selenium/bazel-out/x64_windows-fastbuild/testlogs/rb/spec/integration/selenium/webdriver/driver-edge-remote/test.log
    2376:  D:/_bazel/execroot/selenium/bazel-out/x64_windows-fastbuild/testlogs/rb/spec/integration/selenium/webdriver/driver-edge-remote/test_attempts/attempt_1.log
    2377:  D:/_bazel/execroot/selenium/bazel-out/x64_windows-fastbuild/testlogs/rb/spec/integration/selenium/webdriver/driver-edge-remote/test_attempts/attempt_2.log
    2378:  �[32mINFO: �[0mFrom Testing //rb/spec/integration/selenium/webdriver:driver-edge-remote:
    2379:  ==================== Test output for //rb/spec/integration/selenium/webdriver:driver-edge-remote:
    2380:  2024-03-27 14:26:37 INFO Selenium Server Location: D:/_bazel/execroot/selenium/bazel-out/x64_windows-fastbuild/bin/rb/spec/integration/selenium/webdriver/driver-edge-remote.cmd.runfiles/selenium/java/src/org/openqa/selenium/grid/selenium_server_deploy.jar
    2381:  An error occurred in a `before(:suite)` hook.
    2382:  Failure/Error: @pid = Process.spawn(*@command, options)
    2383:  Errno::EACCES:
    2384:  Permission denied - java
    2385:  # ./rb/lib/selenium/webdriver/common/child_process.rb:57:in `spawn'
    2386:  # ./rb/lib/selenium/webdriver/common/child_process.rb:57:in `start'
    2387:  # ./rb/lib/selenium/server.rb:204:in `start'
    2388:  # //?/D:/a/selenium/selenium/rb/spec/integration/selenium/webdriver/spec_helper.rb:40:in `block (2 levels) in <top (required)>'
    2389:  Finished in 0.04461 seconds (files took 0.60132 seconds to load)
    2390:  0 examples, 0 failures, 1 error occurred outside of examples
    2391:  ================================================================================
    2392:  ==================== Test output for //rb/spec/integration/selenium/webdriver:driver-edge-remote:
    2393:  2024-03-27 14:26:58 INFO Selenium Server Location: D:/_bazel/execroot/selenium/bazel-out/x64_windows-fastbuild/bin/rb/spec/integration/selenium/webdriver/driver-edge-remote.cmd.runfiles/selenium/java/src/org/openqa/selenium/grid/selenium_server_deploy.jar
    2394:  An error occurred in a `before(:suite)` hook.
    2395:  Failure/Error: @pid = Process.spawn(*@command, options)
    2396:  Errno::EACCES:
    2397:  Permission denied - java
    2398:  # ./rb/lib/selenium/webdriver/common/child_process.rb:57:in `spawn'
    2399:  # ./rb/lib/selenium/webdriver/common/child_process.rb:57:in `start'
    2400:  # ./rb/lib/selenium/server.rb:204:in `start'
    2401:  # //?/D:/a/selenium/selenium/rb/spec/integration/selenium/webdriver/spec_helper.rb:40:in `block (2 levels) in <top (required)>'
    2402:  Finished in 0.04668 seconds (files took 0.71808 seconds to load)
    2403:  0 examples, 0 failures, 1 error occurred outside of examples
    2404:  ================================================================================
    2405:  ==================== Test output for //rb/spec/integration/selenium/webdriver:driver-edge-remote:
    2406:  2024-03-27 14:27:18 INFO Selenium Server Location: D:/_bazel/execroot/selenium/bazel-out/x64_windows-fastbuild/bin/rb/spec/integration/selenium/webdriver/driver-edge-remote.cmd.runfiles/selenium/java/src/org/openqa/selenium/grid/selenium_server_deploy.jar
    2407:  An error occurred in a `before(:suite)` hook.
    2408:  Failure/Error: @pid = Process.spawn(*@command, options)
    2409:  Errno::EACCES:
    2410:  Permission denied - java
    2411:  # ./rb/lib/selenium/webdriver/common/child_process.rb:57:in `spawn'
    2412:  # ./rb/lib/selenium/webdriver/common/child_process.rb:57:in `start'
    2413:  # ./rb/lib/selenium/server.rb:204:in `start'
    2414:  # //?/D:/a/selenium/selenium/rb/spec/integration/selenium/webdriver/spec_helper.rb:40:in `block (2 levels) in <top (required)>'
    2415:  Finished in 0.04701 seconds (files took 0.61051 seconds to load)
    2416:  0 examples, 0 failures, 1 error occurred outside of examples
    2417:  ================================================================================
    2418:  �[32m[2,897 / 2,898]�[0m 22 / 27 tests, �[31m�[1m22 failed�[0m;�[0m Testing //rb/spec/integration/selenium/webdriver:takes_screenshot-edge-remote; 35s local, disk-cache
    2419:  �[32m[2,897 / 2,898]�[0m 22 / 27 tests, �[31m�[1m22 failed�[0m;�[0m Testing //rb/spec/integration/selenium/webdriver:takes_screenshot-edge-remote; 40s local, disk-cache
    2420:  �[31m�[1mFAIL: �[0m//rb/spec/integration/selenium/webdriver:takes_screenshot-edge-remote (see D:/_bazel/execroot/selenium/bazel-out/x64_windows-fastbuild/testlogs/rb/spec/integration/selenium/webdriver/takes_screenshot-edge-remote/test.log)
    2421:  �[31m�[1mFAILED: �[0m//rb/spec/integration/selenium/webdriver:takes_screenshot-edge-remote (Summary)
    2422:  D:/_bazel/execroot/selenium/bazel-out/x64_windows-fastbuild/testlogs/rb/spec/integration/selenium/webdriver/takes_screenshot-edge-remote/test.log
    2423:  ==================== Test output for //rb/spec/integration/selenium/webdriver:takes_screenshot-edge-remote:
    2424:  D:/_bazel/execroot/selenium/bazel-out/x64_windows-fastbuild/testlogs/rb/spec/integration/selenium/webdriver/takes_screenshot-edge-remote/test_attempts/attempt_1.log
    2425:  D:/_bazel/execroot/selenium/bazel-out/x64_windows-fastbuild/testlogs/rb/spec/integration/selenium/webdriver/takes_screenshot-edge-remote/test_attempts/attempt_2.log
    2426:  �[32mINFO: �[0mFrom Testing //rb/spec/integration/selenium/webdriver:takes_screenshot-edge-remote:
    2427:  2024-03-27 14:26:51 INFO Selenium Server Location: D:/_bazel/execroot/selenium/bazel-out/x64_windows-fastbuild/bin/rb/spec/integration/selenium/webdriver/takes_screenshot-edge-remote.cmd.runfiles/selenium/java/src/org/openqa/selenium/grid/selenium_server_deploy.jar
    2428:  An error occurred in a `before(:suite)` hook.
    2429:  Failure/Error: @pid = Process.spawn(*@command, options)
    2430:  Errno::EACCES:
    2431:  Permission denied - java
    2432:  # ./rb/lib/selenium/webdriver/common/child_process.rb:57:in `spawn'
    2433:  # ./rb/lib/selenium/webdriver/common/child_process.rb:57:in `start'
    2434:  # ./rb/lib/selenium/server.rb:204:in `start'
    2435:  # //?/D:/a/selenium/selenium/rb/spec/integration/selenium/webdriver/spec_helper.rb:40:in `block (2 levels) in <top (required)>'
    2436:  Finished in 0.04611 seconds (files took 0.63406 seconds to load)
    2437:  0 examples, 0 failures, 1 error occurred outside of examples
    2438:  ================================================================================
    2439:  ==================== Test output for //rb/spec/integration/selenium/webdriver:takes_screenshot-edge-remote:
    2440:  2024-03-27 14:27:11 INFO Selenium Server Location: D:/_bazel/execroot/selenium/bazel-out/x64_windows-fastbuild/bin/rb/spec/integration/selenium/webdriver/takes_screenshot-edge-remote.cmd.runfiles/selenium/java/src/org/openqa/selenium/grid/selenium_server_deploy.jar
    2441:  An error occurred in a `before(:suite)` hook.
    2442:  Failure/Error: @pid = Process.spawn(*@command, options)
    2443:  Errno::EACCES:
    2444:  Permission denied - java
    2445:  # ./rb/lib/selenium/webdriver/common/child_process.rb:57:in `spawn'
    2446:  # ./rb/lib/selenium/webdriver/common/child_process.rb:57:in `start'
    2447:  # ./rb/lib/selenium/server.rb:204:in `start'
    2448:  # //?/D:/a/selenium/selenium/rb/spec/integration/selenium/webdriver/spec_helper.rb:40:in `block (2 levels) in <top (required)>'
    2449:  Finished in 0.04465 seconds (files took 0.60762 seconds to load)
    2450:  0 examples, 0 failures, 1 error occurred outside of examples
    2451:  ================================================================================
    2452:  ==================== Test output for //rb/spec/integration/selenium/webdriver:takes_screenshot-edge-remote:
    2453:  2024-03-27 14:27:25 INFO Selenium Server Location: D:/_bazel/execroot/selenium/bazel-out/x64_windows-fastbuild/bin/rb/spec/integration/selenium/webdriver/takes_screenshot-edge-remote.cmd.runfiles/selenium/java/src/org/openqa/selenium/grid/selenium_server_deploy.jar
    2454:  An error occurred in a `before(:suite)` hook.
    2455:  Failure/Error: @pid = Process.spawn(*@command, options)
    2456:  Errno::EACCES:
    2457:  Permission denied - java
    2458:  # ./rb/lib/selenium/webdriver/common/child_process.rb:57:in `spawn'
    2459:  # ./rb/lib/selenium/webdriver/common/child_process.rb:57:in `start'
    2460:  # ./rb/lib/selenium/server.rb:204:in `start'
    2461:  # //?/D:/a/selenium/selenium/rb/spec/integration/selenium/webdriver/spec_helper.rb:40:in `block (2 levels) in <top (required)>'
    2462:  Finished in 0.04638 seconds (files took 0.63358 seconds to load)
    2463:  0 examples, 0 failures, 1 error occurred outside of examples
    2464:  ================================================================================
    2465:  �[32m[2,898 / 2,899]�[0m 23 / 27 tests, �[31m�[1m23 failed�[0m;�[0m Testing //rb/spec/integration/selenium/webdriver:devtools-edge-remote; 1s disk-cache
    2466:  �[32m[2,898 / 2,899]�[0m 23 / 27 tests, �[31m�[1m23 failed�[0m;�[0m [Sched] Testing //rb/spec/integration/selenium/webdriver:devtools-edge-remote
    2467:  �[32m[2,898 / 2,899]�[0m 23 / 27 tests, �[31m�[1m23 failed�[0m;�[0m Testing //rb/spec/integration/selenium/webdriver:devtools-edge-remote; 1s local, disk-cache
    2468:  �[32m[2,898 / 2,899]�[0m 23 / 27 tests, �[31m�[1m23 failed�[0m;�[0m Testing //rb/spec/integration/selenium/webdriver:devtools-edge-remote; 6s local, disk-cache
    2469:  �[31m�[1mFAIL: �[0m//rb/spec/integration/selenium/webdriver:devtools-edge-remote (see D:/_bazel/execroot/selenium/bazel-out/x64_windows-fastbuild/testlogs/rb/spec/integration/selenium/webdriver/devtools-edge-remote/test_attempts/attempt_1.log)
    2470:  �[32m[2,898 / 2,899]�[0m 23 / 27 tests, �[31m�[1m23 failed�[0m;�[0m Testing //rb/spec/integration/selenium/webdriver:devtools-edge-remote; 7s local, disk-cache
    2471:  �[32m[2,898 / 2,899]�[0m 23 / 27 tests, �[31m�[1m23 failed�[0m;�[0m Testing //rb/spec/integration/selenium/webdriver:devtools-edge-remote; 14s local, disk-cache
    2472:  �[31m�[1mFAIL: �[0m//rb/spec/integration/selenium/webdriver:devtools-edge-remote (see D:/_bazel/execroot/selenium/bazel-out/x64_windows-fastbuild/testlogs/rb/spec/integration/selenium/webdriver/devtools-edge-remote/test_attempts/attempt_2.log)
    2473:  �[32m[2,898 / 2,899]�[0m 23 / 27 tests, �[31m�[1m23 failed�[0m;�[0m Testing //rb/spec/integration/selenium/webdriver:devtools-edge-remote; 15s local, disk-cache
    2474:  �[32m[2,898 / 2,899]�[0m 23 / 27 tests, �[31m�[1m23 failed�[0m;�[0m Testing //rb/spec/integration/selenium/webdriver:devtools-edge-remote; 21s local, disk-cache
    2475:  �[31m�[1mFAIL: �[0m//rb/spec/integration/selenium/webdriver:devtools-edge-remote (see D:/_bazel/execroot/selenium/bazel-out/x64_windows-fastbuild/testlogs/rb/spec/integration/selenium/webdriver/devtools-edge-remote/test.log)
    2476:  �[31m�[1mFAILED: �[0m//rb/spec/integration/selenium/webdriver:devtools-edge-remote (Summary)
    2477:  D:/_bazel/execroot/selenium/bazel-out/x64_windows-fastbuild/testlogs/rb/spec/integration/selenium/webdriver/devtools-edge-remote/test.log
    2478:  D:/_bazel/execroot/selenium/bazel-out/x64_windows-fastbuild/testlogs/rb/spec/integration/selenium/webdriver/devtools-edge-remote/test_attempts/attempt_1.log
    2479:  ==================== Test output for //rb/spec/integration/selenium/webdriver:devtools-edge-remote:
    2480:  D:/_bazel/execroot/selenium/bazel-out/x64_windows-fastbuild/testlogs/rb/spec/integration/selenium/webdriver/devtools-edge-remote/test_attempts/attempt_2.log
    2481:  �[32mINFO: �[0mFrom Testing //rb/spec/integration/selenium/webdriver:devtools-edge-remote:
    2482:  2024-03-27 14:27:42 INFO Selenium Server Location: D:/_bazel/execroot/selenium/bazel-out/x64_windows-fastbuild/bin/rb/spec/integration/selenium/webdriver/devtools-edge-remote.cmd.runfiles/selenium/java/src/org/openqa/selenium/grid/selenium_server_deploy.jar
    2483:  An error occurred in a `before(:suite)` hook.
    2484:  Failure/Error: @pid = Process.spawn(*@command, options)
    2485:  Errno::EACCES:
    2486:  Permission denied - java
    2487:  # ./rb/lib/selenium/webdriver/common/child_process.rb:57:in `spawn'
    2488:  # ./rb/lib/selenium/webdriver/common/child_process.rb:57:in `start'
    2489:  # ./rb/lib/selenium/server.rb:204:in `start'
    2490:  # //?/D:/a/selenium/selenium/rb/spec/integration/selenium/webdriver/spec_helper.rb:40:in `block (2 levels) in <top (required)>'
    2491:  Finished in 0.0454 seconds (files took 0.61102 seconds to load)
    2492:  0 examples, 0 failures, 1 error occurred outside of examples
    2493:  ================================================================================
    2494:  ==================== Test output for //rb/spec/integration/selenium/webdriver:devtools-edge-remote:
    2495:  2024-03-27 14:27:49 INFO Selenium Server Location: D:/_bazel/execroot/selenium/bazel-out/x64_windows-fastbuild/bin/rb/spec/integration/selenium/webdriver/devtools-edge-remote.cmd.runfiles/selenium/java/src/org/openqa/selenium/grid/selenium_server_deploy.jar
    2496:  An error occurred in a `before(:suite)` hook.
    2497:  Failure/Error: @pid = Process.spawn(*@command, options)
    2498:  Errno::EACCES:
    2499:  Permission denied - java
    2500:  # ./rb/lib/selenium/webdriver/common/child_process.rb:57:in `spawn'
    2501:  # ./rb/lib/selenium/webdriver/common/child_process.rb:57:in `start'
    2502:  # ./rb/lib/selenium/server.rb:204:in `start'
    2503:  # //?/D:/a/selenium/selenium/rb/spec/integration/selenium/webdriver/spec_helper.rb:40:in `block (2 levels) in <top (required)>'
    2504:  Finished in 0.04744 seconds (files took 0.59327 seconds to load)
    2505:  0 examples, 0 failures, 1 error occurred outside of examples
    2506:  ================================================================================
    2507:  ==================== Test output for //rb/spec/integration/selenium/webdriver:devtools-edge-remote:
    2508:  2024-03-27 14:27:57 INFO Selenium Server Location: D:/_bazel/execroot/selenium/bazel-out/x64_windows-fastbuild/bin/rb/spec/integration/selenium/webdriver/devtools-edge-remote.cmd.runfiles/selenium/java/src/org/openqa/selenium/grid/selenium_server_deploy.jar
    2509:  An error occurred in a `before(:suite)` hook.
    2510:  Failure/Error: @pid = Process.spawn(*@command, options)
    2511:  Errno::EACCES:
    2512:  Permission denied - java
    2513:  # ./rb/lib/selenium/webdriver/common/child_process.rb:57:in `spawn'
    2514:  # ./rb/lib/selenium/webdriver/common/child_process.rb:57:in `start'
    2515:  # ./rb/lib/selenium/server.rb:204:in `start'
    2516:  # //?/D:/a/selenium/selenium/rb/spec/integration/selenium/webdriver/spec_helper.rb:40:in `block (2 levels) in <top (required)>'
    2517:  Finished in 0.04561 seconds (files took 0.64232 seconds to load)
    2518:  0 examples, 0 failures, 1 error occurred outside of examples
    2519:  ================================================================================
    2520:  �[32m[2,899 / 2,900]�[0m 24 / 27 tests, �[31m�[1m24 failed�[0m;�[0m Testing //rb/spec/integration/selenium/webdriver/bidi:log_inspector-edge-remote; 1s disk-cache
    2521:  �[32m[2,899 / 2,900]�[0m 24 / 27 tests, �[31m�[1m24 failed�[0m;�[0m [Sched] Testing //rb/spec/integration/selenium/webdriver/bidi:log_inspector-edge-remote
    2522:  �[32m[2,899 / 2,900]�[0m 24 / 27 tests, �[31m�[1m24 failed�[0m;�[0m Testing //rb/spec/integration/selenium/webdriver/bidi:log_inspector-edge-remote; 1s local, disk-cache
    2523:  �[32m[2,899 / 2,900]�[0m 24 / 27 tests, �[31m�[1m24 failed�[0m;�[0m Testing //rb/spec/integration/selenium/webdriver/bidi:log_inspector-edge-remote; 6s local, disk-cache
    2524:  �[31m�[1mFAIL: �[0m//rb/spec/integration/selenium/webdriver/bidi:log_inspector-edge-remote (see D:/_bazel/execroot/selenium/bazel-out/x64_windows-fastbuild/testlogs/rb/spec/integration/selenium/webdriver/bidi/log_inspector-edge-remote/test_attempts/attempt_1.log)
    2525:  �[32m[2,899 / 2,900]�[0m 24 / 27 tests, �[31m�[1m24 failed�[0m;�[0m Testing //rb/spec/integration/selenium/webdriver/bidi:log_inspector-edge-remote; 8s local, disk-cache
    2526:  �[32m[2,899 / 2,900]�[0m 24 / 27 tests, �[31m�[1m24 failed�[0m;�[0m Testing //rb/spec/integration/selenium/webdriver/bidi:log_inspector-edge-remote; 14s local, disk-cache
    2527:  �[31m�[1mFAIL: �[0m//rb/spec/integration/selenium/webdriver/bidi:log_inspector-edge-remote (see D:/_bazel/execroot/selenium/bazel-out/x64_windows-fastbuild/testlogs/rb/spec/integration/selenium/webdriver/bidi/log_inspector-edge-remote/test_attempts/attempt_2.log)
    2528:  �[32m[2,899 / 2,900]�[0m 24 / 27 tests, �[31m�[1m24 failed�[0m;�[0m Testing //rb/spec/integration/selenium/webdriver/bidi:log_inspector-edge-remote; 16s local, disk-cache
    2529:  �[32m[2,899 / 2,900]�[0m 24 / 27 tests, �[31m�[1m24 failed�[0m;�[0m Testing //rb/spec/integration/selenium/webdriver/bidi:log_inspector-edge-remote; 21s local, disk-cache
    2530:  �[31m�[1mFAIL: �[0m//rb/spec/integration/selenium/webdriver/bidi:log_inspector-edge-remote (see D:/_bazel/execroot/selenium/bazel-out/x64_windows-fastbuild/testlogs/rb/spec/integration/selenium/webdriver/bidi/log_inspector-edge-remote/test.log)
    2531:  �[31m�[1mFAILED: �[0m//rb/spec/integration/selenium/webdriver/bidi:log_inspector-edge-remote (Summary)
    2532:  D:/_bazel/execroot/selenium/bazel-out/x64_windows-fastbuild/testlogs/rb/spec/integration/selenium/webdriver/bidi/log_inspector-edge-remote/test.log
    2533:  D:/_bazel/execroot/selenium/bazel-out/x64_windows-fastbuild/testlogs/rb/spec/integration/selenium/webdriver/bidi/log_inspector-edge-remote/test_attempts/attempt_1.log
    2534:  D:/_bazel/execroot/selenium/bazel-out/x64_windows-fastbuild/testlogs/rb/spec/integration/selenium/webdriver/bidi/log_inspector-edge-remote/test_attempts/attempt_2.log
    2535:  �[32mINFO: �[0mFrom Testing //rb/spec/integration/selenium/webdriver/bidi:log_inspector-edge-remote:
    2536:  ==================== Test output for //rb/spec/integration/selenium/webdriver/bidi:log_inspector-edge-remote:
    2537:  2024-03-27 14:28:15 INFO Selenium Server Location: D:/_bazel/execroot/selenium/bazel-out/x64_windows-fastbuild/bin/rb/spec/integration/selenium/webdriver/bidi/log_inspector-edge-remote.cmd.runfiles/selenium/java/src/org/openqa/selenium/grid/selenium_server_deploy.jar
    2538:  An error occurred in a `before(:suite)` hook.
    2539:  Failure/Error: @pid = Process.spawn(*@command, options)
    2540:  Errno::EACCES:
    2541:  Permission denied - java
    2542:  # ./rb/lib/selenium/webdriver/common/child_process.rb:57:in `spawn'
    2543:  # ./rb/lib/selenium/webdriver/common/child_process.rb:57:in `start'
    2544:  # ./rb/lib/selenium/server.rb:204:in `start'
    2545:  # //?/D:/a/selenium/selenium/rb/spec/integration/selenium/webdriver/spec_helper.rb:40:in `block (2 levels) in <top (required)>'
    2546:  Finished in 0.04504 seconds (files took 0.62369 seconds to load)
    2547:  0 examples, 0 failures, 1 error occurred outside of examples
    2548:  ================================================================================
    2549:  ==================== Test output for //rb/spec/integration/selenium/webdriver/bidi:log_inspector-edge-remote:
    2550:  2024-03-27 14:28:22 INFO Selenium Server Location: D:/_bazel/execroot/selenium/bazel-out/x64_windows-fastbuild/bin/rb/spec/integration/selenium/webdriver/bidi/log_inspector-edge-remote.cmd.runfiles/selenium/java/src/org/openqa/selenium/grid/selenium_server_deploy.jar
    2551:  An error occurred in a `before(:suite)` hook.
    2552:  Failure/Error: @pid = Process.spawn(*@command, options)
    2553:  Errno::EACCES:
    2554:  Permission denied - java
    2555:  # ./rb/lib/selenium/webdriver/common/child_process.rb:57:in `spawn'
    2556:  # ./rb/lib/selenium/webdriver/common/child_process.rb:57:in `start'
    2557:  # ./rb/lib/selenium/server.rb:204:in `start'
    2558:  # //?/D:/a/selenium/selenium/rb/spec/integration/selenium/webdriver/spec_helper.rb:40:in `block (2 levels) in <top (required)>'
    2559:  Finished in 0.04612 seconds (files took 0.6123 seconds to load)
    2560:  0 examples, 0 failures, 1 error occurred outside of examples
    2561:  ================================================================================
    2562:  ==================== Test output for //rb/spec/integration/selenium/webdriver/bidi:log_inspector-edge-remote:
    2563:  2024-03-27 14:28:30 INFO Selenium Server Location: D:/_bazel/execroot/selenium/bazel-out/x64_windows-fastbuild/bin/rb/spec/integration/selenium/webdriver/bidi/log_inspector-edge-remote.cmd.runfiles/selenium/java/src/org/openqa/selenium/grid/selenium_server_deploy.jar
    2564:  An error occurred in a `before(:suite)` hook.
    2565:  Failure/Error: @pid = Process.spawn(*@command, options)
    2566:  Errno::EACCES:
    2567:  Permission denied - java
    2568:  # ./rb/lib/selenium/webdriver/common/child_process.rb:57:in `spawn'
    2569:  # ./rb/lib/selenium/webdriver/common/child_process.rb:57:in `start'
    2570:  # ./rb/lib/selenium/server.rb:204:in `start'
    2571:  # //?/D:/a/selenium/selenium/rb/spec/integration/selenium/webdriver/spec_helper.rb:40:in `block (2 levels) in <top (required)>'
    2572:  Finished in 0.04522 seconds (files took 0.62853 seconds to load)
    2573:  0 examples, 0 failures, 1 error occurred outside of examples
    2574:  ================================================================================
    2575:  �[32m[2,900 / 2,901]�[0m 25 / 27 tests, �[31m�[1m25 failed�[0m;�[0m Testing //rb/spec/integration/selenium/webdriver/bidi:browsing_context-edge-remote; 1s disk-cache
    2576:  �[32m[2,900 / 2,901]�[0m 25 / 27 tests, �[31m�[1m25 failed�[0m;�[0m [Sched] Testing //rb/spec/integration/selenium/webdriver/bidi:browsing_context-edge-remote
    2577:  �[32m[2,900 / 2,901]�[0m 25 / 27 tests, �[31m�[1m25 failed�[0m;�[0m Testing //rb/spec/integration/selenium/webdriver/bidi:browsing_context-edge-remote; 1s local, disk-cache
    2578:  �[32m[2,900 / 2,901]�[0m 25 / 27 tests, �[31m�[1m25 failed�[0m;�[0m Testing //rb/spec/integration/selenium/webdriver/bidi:browsing_context-edge-remote; 6s local, disk-cache
    2579:  �[31m�[1mFAIL: �[0m//rb/spec/integration/selenium/webdriver/bidi:browsing_context-edge-remote (see D:/_bazel/execroot/selenium/bazel-out/x64_windows-fastbuild/testlogs/rb/spec/integration/selenium/webdriver/bidi/browsing_context-edge-remote/test_attempts/attempt_1.log)
    2580:  �[32m[2,900 / 2,901]�[0m 25 / 27 tests, �[31m�[1m25 failed�[0m;�[0m Testing //rb/spec/integration/selenium/webdriver/bidi:browsing_context-edge-remote; 7s local, disk-cache
    2581:  �[32m[2,900 / 2,901]�[0m 25 / 27 tests, �[31m�[1m25 failed�[0m;�[0m Testing //rb/spec/integration/selenium/webdriver/bidi:browsing_context-edge-remote; 14s local, disk-cache
    2582:  �[31m�[1mFAIL: �[0m//rb/spec/integration/selenium/webdriver/bidi:browsing_context-edge-remote (see D:/_bazel/execroot/selenium/bazel-out/x64_windows-fastbuild/testlogs/rb/spec/integration/selenium/webdriver/bidi/browsing_context-edge-remote/test_attempts/attempt_2.log)
    2583:  �[32m[2,900 / 2,901]�[0m 25 / 27 tests, �[31m�[1m25 failed�[0m;�[0m Testing //rb/spec/integration/selenium/webdriver/bidi:browsing_context-edge-remote; 15s local, disk-cache
    2584:  �[32m[2,900 / 2,901]�[0m 25 / 27 tests, �[31m�[1m25 failed�[0m;�[0m Testing //rb/spec/integration/selenium/webdriver/bidi:browsing_context-edge-remote; 21s local, disk-cache
    2585:  �[31m�[1mFAIL: �[0m//rb/spec/integration/selenium/webdriver/bidi:browsing_context-edge-remote (see D:/_bazel/execroot/selenium/bazel-out/x64_windows-fastbuild/testlogs/rb/spec/integration/selenium/webdriver/bidi/browsing_context-edge-remote/test.log)
    2586:  �[31m�[1mFAILED: �[0m//rb/spec/integration/selenium/webdriver/bidi:browsing_context-edge-remote (Summary)
    2587:  D:/_bazel/execroot/selenium/bazel-out/x64_windows-fastbuild/testlogs/rb/spec/integration/selenium/webdriver/bidi/browsing_context-edge-remote/test.log
    2588:  D:/_bazel/execroot/selenium/bazel-out/x64_windows-fastbuild/testlogs/rb/spec/integration/selenium/webdriver/bidi/browsing_context-edge-remote/test_attempts/attempt_1.log
    2589:  D:/_bazel/execroot/selenium/bazel-out/x64_windows-fastbuild/testlogs/rb/spec/integration/selenium/webdriver/bidi/browsing_context-edge-remote/test_attempts/attempt_2.log
    2590:  �[32mINFO: �[0mFrom Testing //rb/spec/integration/selenium/webdriver/bidi:browsing_context-edge-remote:
    2591:  ==================== Test output for //rb/spec/integration/selenium/webdriver/bidi:browsing_context-edge-remote:
    2592:  2024-03-27 14:28:48 INFO Selenium Server Location: D:/_bazel/execroot/selenium/bazel-out/x64_windows-fastbuild/bin/rb/spec/integration/selenium/webdriver/bidi/browsing_context-edge-remote.cmd.runfiles/selenium/java/src/org/openqa/selenium/grid/selenium_server_deploy.jar
    2593:  An error occurred in a `before(:suite)` hook.
    2594:  Failure/Error: @pid = Process.spawn(*@command, options)
    2595:  Errno::EACCES:
    2596:  Permission denied - java
    2597:  # ./rb/lib/selenium/webdriver/common/child_process.rb:57:in `spawn'
    2598:  # ./rb/lib/selenium/webdriver/common/child_process.rb:57:in `start'
    2599:  # ./rb/lib/selenium/server.rb:204:in `start'
    2600:  # //?/D:/a/selenium/selenium/rb/spec/integration/selenium/webdriver/spec_helper.rb:40:in `block (2 levels) in <top (required)>'
    2601:  Finished in 0.04448 seconds (files took 0.60758 seconds to load)
    2602:  0 examples, 0 failures, 1 error occurred outside of examples
    2603:  ================================================================================
    2604:  ==================== Test output for //rb/spec/integration/selenium/webdriver/bidi:browsing_context-edge-remote:
    2605:  2024-03-27 14:28:56 INFO Selenium Server Location: D:/_bazel/execroot/selenium/bazel-out/x64_windows-fastbuild/bin/rb/spec/integration/selenium/webdriver/bidi/browsing_context-edge-remote.cmd.runfiles/selenium/java/src/org/openqa/selenium/grid/selenium_server_deploy.jar
    2606:  An error occurred in a `before(:suite)` hook.
    2607:  Failure/Error: @pid = Process.spawn(*@command, options)
    2608:  Errno::EACCES:
    2609:  Permission denied - java
    2610:  # ./rb/lib/selenium/webdriver/common/child_process.rb:57:in `spawn'
    2611:  # ./rb/lib/selenium/webdriver/common/child_process.rb:57:in `start'
    2612:  # ./rb/lib/selenium/server.rb:204:in `start'
    2613:  # //?/D:/a/selenium/selenium/rb/spec/integration/selenium/webdriver/spec_helper.rb:40:in `block (2 levels) in <top (required)>'
    2614:  Finished in 0.0474 seconds (files took 0.60765 seconds to load)
    2615:  0 examples, 0 failures, 1 error occurred outside of examples
    2616:  ================================================================================
    2617:  ==================== Test output for //rb/spec/integration/selenium/webdriver/bidi:browsing_context-edge-remote:
    2618:  2024-03-27 14:29:03 INFO Selenium Server Location: D:/_bazel/execroot/selenium/bazel-out/x64_windows-fastbuild/bin/rb/spec/integration/selenium/webdriver/bidi/browsing_context-edge-remote.cmd.runfiles/selenium/java/src/org/openqa/selenium/grid/selenium_server_deploy.jar
    2619:  An error occurred in a `before(:suite)` hook.
    2620:  Failure/Error: @pid = Process.spawn(*@command, options)
    2621:  Errno::EACCES:
    2622:  Permission denied - java
    2623:  # ./rb/lib/selenium/webdriver/common/child_process.rb:57:in `spawn'
    2624:  # ./rb/lib/selenium/webdriver/common/child_process.rb:57:in `start'
    2625:  # ./rb/lib/selenium/server.rb:204:in `start'
    2626:  # //?/D:/a/selenium/selenium/rb/spec/integration/selenium/webdriver/spec_helper.rb:40:in `block (2 levels) in <top (required)>'
    2627:  Finished in 0.0462 seconds (files took 0.62227 seconds to load)
    2628:  0 examples, 0 failures, 1 error occurred outside of examples
    2629:  ================================================================================
    2630:  �[32m[2,901 / 2,902]�[0m 26 / 27 tests, �[31m�[1m26 failed�[0m;�[0m Testing //rb/spec/integration/selenium/webdriver:bidi-edge-remote; 1s disk-cache
    2631:  �[32m[2,901 / 2,902]�[0m 26 / 27 tests, �[31m�[1m26 failed�[0m;�[0m [Sched] Testing //rb/spec/integration/selenium/webdriver:bidi-edge-remote
    2632:  �[32m[2,901 / 2,902]�[0m 26 / 27 tests, �[31m�[1m26 failed�[0m;�[0m Testing //rb/spec/integration/selenium/webdriver:bidi-edge-remote; 1s local, disk-cache
    2633:  �[32m[2,901 / 2,902]�[0m 26 / 27 tests, �[31m�[1m26 failed�[0m;�[0m Testing //rb/spec/integration/selenium/webdriver:bidi-edge-remote; 6s local, disk-cache
    2634:  �[31m�[1mFAIL: �[0m//rb/spec/integration/selenium/webdriver:bidi-edge-remote (see D:/_bazel/execroot/selenium/bazel-out/x64_windows-fastbuild/testlogs/rb/spec/integration/selenium/webdriver/bidi-edge-remote/test_attempts/attempt_1.log)
    2635:  �[32m[2,901 / 2,902]�[0m 26 / 27 tests, �[31m�[1m26 failed�[0m;�[0m Testing //rb/spec/integration/selenium/webdriver:bidi-edge-remote; 7s local, disk-cache
    2636:  �[32m[2,901 / 2,902]�[0m 26 / 27 tests, �[31m�[1m26 failed�[0m;�[0m Testing //rb/spec/integration/selenium/webdriver:bidi-edge-remote; 13s local, disk-cache
    2637:  �[31m�[1mFAIL: �[0m//rb/spec/integration/selenium/webdriver:bidi-edge-remote (see D:/_bazel/execroot/selenium/bazel-out/x64_windows-fastbuild/testlogs/rb/spec/integration/selenium/webdriver/bidi-edge-remote/test_attempts/attempt_2.log)
    2638:  �[32m[2,901 / 2,902]�[0m 26 / 27 tests, �[31m�[1m26 failed�[0m;�[0m Testing //rb/spec/integration/selenium/webdriver:bidi-edge-remote; 15s local, disk-cache
    2639:  �[32m[2,901 / 2,902]�[0m 26 / 27 tests, �[31m�[1m26 failed�[0m;�[0m Testing //rb/spec/integration/selenium/webdriver:bidi-edge-remote; 21s local, disk-cache
    2640:  �[31m�[1mFAIL: �[0m//rb/spec/integration/selenium/webdriver:bidi-edge-remote (see D:/_bazel/execroot/selenium/bazel-out/x64_windows-fastbuild/testlogs/rb/spec/integration/selenium/webdriver/bidi-edge-remote/test.log)
    2641:  �[31m�[1mFAILED: �[0m//rb/spec/integration/selenium/webdriver:bidi-edge-remote (Summary)
    2642:  D:/_bazel/execroot/selenium/bazel-out/x64_windows-fastbuild/testlogs/rb/spec/integration/selenium/webdriver/bidi-edge-remote/test.log
    2643:  D:/_bazel/execroot/selenium/bazel-out/x64_windows-fastbuild/testlogs/rb/spec/integration/selenium/webdriver/bidi-edge-remote/test_attempts/attempt_1.log
    2644:  D:/_bazel/execroot/selenium/bazel-out/x64_windows-fastbuild/testlogs/rb/spec/integration/selenium/webdriver/bidi-edge-remote/test_attempts/attempt_2.log
    2645:  �[32mINFO: �[0mFrom Testing //rb/spec/integration/selenium/webdriver:bidi-edge-remote:
    2646:  ==================== Test output for //rb/spec/integration/selenium/webdriver:bidi-edge-remote:
    2647:  2024-03-27 14:29:21 INFO Selenium Server Location: D:/_bazel/execroot/selenium/bazel-out/x64_windows-fastbuild/bin/rb/spec/integration/selenium/webdriver/bidi-edge-remote.cmd.runfiles/selenium/java/src/org/openqa/selenium/grid/selenium_server_deploy.jar
    2648:  An error occurred in a `before(:suite)` hook.
    2649:  Failure/Error: @pid = Process.spawn(*@command, options)
    2650:  Errno::EACCES:
    2651:  Permission denied - java
    2652:  # ./rb/lib/selenium/webdriver/common/child_process.rb:57:in `spawn'
    2653:  # ./rb/lib/selenium/webdriver/common/child_process.rb:57:in `start'
    2654:  # ./rb/lib/selenium/server.rb:204:in `start'
    2655:  # //?/D:/a/selenium/selenium/rb/spec/integration/selenium/webdriver/spec_helper.rb:40:in `block (2 levels) in <top (required)>'
    2656:  Finished in 0.04534 seconds (files took 0.593 seconds to load)
    2657:  0 examples, 0 failures, 1 error occurred outside of examples
    2658:  ================================================================================
    2659:  ==================== Test output for //rb/spec/integration/selenium/webdriver:bidi-edge-remote:
    2660:  2024-03-27 14:29:29 INFO Selenium Server Location: D:/_bazel/execroot/selenium/bazel-out/x64_windows-fastbuild/bin/rb/spec/integration/selenium/webdriver/bidi-edge-remote.cmd.runfiles/selenium/java/src/org/openqa/selenium/grid/selenium_server_deploy.jar
    2661:  An error occurred in a `before(:suite)` hook.
    2662:  Failure/Error: @pid = Process.spawn(*@command, options)
    2663:  Errno::EACCES:
    2664:  Permission denied - java
    2665:  # ./rb/lib/selenium/webdriver/common/child_process.rb:57:in `spawn'
    2666:  # ./rb/lib/selenium/webdriver/common/child_process.rb:57:in `start'
    2667:  # ./rb/lib/selenium/server.rb:204:in `start'
    2668:  # //?/D:/a/selenium/selenium/rb/spec/integration/selenium/webdriver/spec_helper.rb:40:in `block (2 levels) in <top (required)>'
    2669:  Finished in 0.05431 seconds (files took 0.5824 seconds to load)
    2670:  0 examples, 0 failures, 1 error occurred outside of examples
    2671:  ================================================================================
    2672:  ==================== Test output for //rb/spec/integration/selenium/webdriver:bidi-edge-remote:
    2673:  2024-03-27 14:29:36 INFO Selenium Server Location: D:/_bazel/execroot/selenium/bazel-out/x64_windows-fastbuild/bin/rb/spec/integration/selenium/webdriver/bidi-edge-remote.cmd.runfiles/selenium/java/src/org/openqa/selenium/grid/selenium_server_deploy.jar
    2674:  An error occurred in a `before(:suite)` hook.
    2675:  Failure/Error: @pid = Process.spawn(*@command, options)
    2676:  Errno::EACCES:
    2677:  Permission denied - java
    2678:  # ./rb/lib/selenium/webdriver/common/child_process.rb:57:in `spawn'
    2679:  # ./rb/lib/selenium/webdriver/common/child_process.rb:57:in `start'
    2680:  # ./rb/lib/selenium/server.rb:204:in `start'
    2681:  # //?/D:/a/selenium/selenium/rb/spec/integration/selenium/webdriver/spec_helper.rb:40:in `block (2 levels) in <top (required)>'
    2682:  Finished in 0.04615 seconds (files took 0.63385 seconds to load)
    2683:  0 examples, 0 failures, 1 error occurred outside of examples
    2684:  ================================================================================
    2685:  �[32mINFO: �[0mFound 27 test targets...
    2686:  �[32mINFO: �[0mElapsed time: 1353.996s, Critical Path: 362.63s
    2687:  �[32mINFO: �[0m2672 processes: 39 disk cache hit, 1059 internal, 727 local, 847 worker.
    2688:  �[32mINFO: �[0mBuild completed, 27 tests FAILED, 2672 total actions
    2689:  //rb/spec/integration/selenium/webdriver:action_builder-edge-remote      �[0m�[31m�[1mFAILED�[0m in 3 out of 3 in 7.0s
    2690:  Stats over 3 runs: max = 7.0s, min = 6.9s, avg = 6.9s, dev = 0.0s
    2691:  D:/_bazel/execroot/selenium/bazel-out/x64_windows-fastbuild/testlogs/rb/spec/integration/selenium/webdriver/action_builder-edge-remote/test.log
    2692:  D:/_bazel/execroot/selenium/bazel-out/x64_windows-fastbuild/testlogs/rb/spec/integration/selenium/webdriver/action_builder-edge-remote/test_attempts/attempt_1.log
    2693:  D:/_bazel/execroot/selenium/bazel-out/x64_windows-fastbuild/testlogs/rb/spec/integration/selenium/webdriver/action_builder-edge-remote/test_attempts/attempt_2.log
    2694:  //rb/spec/integration/selenium/webdriver:bidi-edge-remote                �[0m�[31m�[1mFAILED�[0m in 3 out of 3 in 6.7s
    2695:  Stats over 3 runs: max = 6.7s, min = 6.6s, avg = 6.7s, dev = 0.0s
    2696:  D:/_bazel/execroot/selenium/bazel-out/x64_windows-fastbuild/testlogs/rb/spec/integration/selenium/webdriver/bidi-edge-remote/test.log
    2697:  D:/_bazel/execroot/selenium/bazel-out/x64_windows-fastbuild/testlogs/rb/spec/integration/selenium/webdriver/bidi-edge-remote/test_attempts/attempt_1.log
    2698:  D:/_bazel/execroot/selenium/bazel-out/x64_windows-fastbuild/testlogs/rb/spec/integration/selenium/webdriver/bidi-edge-remote/test_attempts/attempt_2.log
    2699:  //rb/spec/integration/selenium/webdriver:devtools-edge-remote            �[0m�[31m�[1mFAILED�[0m in 3 out of 3 in 6.7s
    2700:  Stats over 3 runs: max = 6.7s, min = 6.6s, avg = 6.7s, dev = 0.0s
    2701:  D:/_bazel/execroot/selenium/bazel-out/x64_windows-fastbuild/testlogs/rb/spec/integration/selenium/webdriver/devtools-edge-remote/test.log
    2702:  D:/_bazel/execroot/selenium/bazel-out/x64_windows-fastbuild/testlogs/rb/spec/integration/selenium/webdriver/devtools-edge-remote/test_attempts/attempt_1.log
    2703:  D:/_bazel/execroot/selenium/bazel-out/x64_windows-fastbuild/testlogs/rb/spec/integration/selenium/webdriver/devtools-edge-remote/test_attempts/attempt_2.log
    2704:  //rb/spec/integration/selenium/webdriver:driver-edge-remote              �[0m�[31m�[1mFAILED�[0m in 3 out of 3 in 7.0s
    2705:  Stats over 3 runs: max = 7.0s, min = 6.6s, avg = 6.8s, dev = 0.1s
    2706:  D:/_bazel/execroot/selenium/bazel-out/x64_windows-fastbuild/testlogs/rb/spec/integration/selenium/webdriver/driver-edge-remote/test.log
    2707:  D:/_bazel/execroot/selenium/bazel-out/x64_windows-fastbuild/testlogs/rb/spec/integration/selenium/webdriver/driver-edge-remote/test_attempts/attempt_1.log
    2708:  D:/_bazel/execroot/selenium/bazel-out/x64_windows-fastbuild/testlogs/rb/spec/integration/selenium/webdriver/driver-edge-remote/test_attempts/attempt_2.log
    2709:  //rb/spec/integration/selenium/webdriver:element-edge-remote             �[0m�[31m�[1mFAILED�[0m in 3 out of 3 in 7.0s
    2710:  Stats over 3 runs: max = 7.0s, min = 6.9s, avg = 6.9s, dev = 0.0s
    2711:  D:/_bazel/execroot/selenium/bazel-out/x64_windows-fastbuild/testlogs/rb/spec/integration/selenium/webdriver/element-edge-remote/test.log
    2712:  D:/_bazel/execroot/selenium/bazel-out/x64_windows-fastbuild/testlogs/rb/spec/integration/selenium/webdriver/element-edge-remote/test_attempts/attempt_1.log
    2713:  D:/_bazel/execroot/selenium/bazel-out/x64_windows-fastbuild/testlogs/rb/spec/integration/selenium/webdriver/element-edge-remote/test_attempts/attempt_2.log
    2714:  //rb/spec/integration/selenium/webdriver:error-edge-remote               �[0m�[31m�[1mFAILED�[0m in 3 out of 3 in 7.2s
    2715:  Stats over 3 runs: max = 7.2s, min = 6.8s, avg = 7.0s, dev = 0.2s
    2716:  D:/_bazel/execroot/selenium/bazel-out/x64_windows-fastbuild/testlogs/rb/spec/integration/selenium/webdriver/error-edge-remote/test.log
    2717:  D:/_bazel/execroot/selenium/bazel-out/x64_windows-fastbuild/testlogs/rb/spec/integration/selenium/webdriver/error-edge-remote/test_attempts/attempt_1.log
    2718:  D:/_bazel/execroot/selenium/bazel-out/x64_windows-fastbuild/testlogs/rb/spec/integration/selenium/webdriver/error-edge-remote/test_attempts/attempt_2.log
    2719:  //rb/spec/integration/selenium/webdriver:guard-edge-remote               �[0m�[31m�[1mFAILED�[0m in 3 out of 3 in 7.7s
    2720:  Stats over 3 runs: max = 7.7s, min = 6.7s, avg = 7.0s, dev = 0.5s
    2721:  D:/_bazel/execroot/selenium/bazel-out/x64_windows-fastbuild/testlogs/rb/spec/integration/selenium/webdriver/guard-edge-remote/test.log
    2722:  D:/_bazel/execroot/selenium/bazel-out/x64_windows-fastbuild/testlogs/rb/spec/integration/selenium/webdriver/guard-edge-remote/test_attempts/attempt_1.log
    2723:  D:/_bazel/execroot/selenium/bazel-out/x64_windows-fastbuild/testlogs/rb/spec/integration/selenium/webdriver/guard-edge-remote/test_attempts/attempt_2.log
    2724:  //rb/spec/integration/selenium/webdriver:listener-edge-remote            �[0m�[31m�[1mFAILED�[0m in 3 out of 3 in 7.1s
    2725:  Stats over 3 runs: max = 7.1s, min = 6.8s, avg = 6.9s, dev = 0.2s
    2726:  D:/_bazel/execroot/selenium/bazel-out/x64_windows-fastbuild/testlogs/rb/spec/integration/selenium/webdriver/listener-edge-remote/test.log
    2727:  D:/_bazel/execroot/selenium/bazel-out/x64_windows-fastbuild/testlogs/rb/spec/integration/selenium/webdriver/listener-edge-remote/test_attempts/attempt_1.log
    2728:  D:/_bazel/execroot/selenium/bazel-out/x64_windows-fastbuild/testlogs/rb/spec/integration/selenium/webdriver/listener-edge-remote/test_attempts/attempt_2.log
    2729:  //rb/spec/integration/selenium/webdriver:manager-edge-remote             �[0m�[31m�[1mFAILED�[0m in 3 out of 3 in 7.0s
    2730:  Stats over 3 runs: max = 7.0s, min = 6.8s, avg = 6.9s, dev = 0.1s
    2731:  D:/_bazel/execroot/selenium/bazel-out/x64_windows-fastbuild/testlogs/rb/spec/integration/selenium/webdriver/manager-edge-remote/test.log
    2732:  D:/_bazel/execroot/selenium/bazel-out/x64_windows-fastbuild/testlogs/rb/spec/integration/selenium/webdriver/manager-edge-remote/test_attempts/attempt_1.log
    2733:  D:/_bazel/execroot/selenium/bazel-out/x64_windows-fastbuild/testlogs/rb/spec/integration/selenium/webdriver/manager-edge-remote/test_attempts/attempt_2.log
    2734:  //rb/spec/integration/selenium/webdriver:navigation-edge-remote          �[0m�[31m�[1mFAILED�[0m in 3 out of 3 in 7.5s
    2735:  Stats over 3 runs: max = 7.5s, min = 6.9s, avg = 7.1s, dev = 0.3s
    2736:  D:/_bazel/execroot/selenium/bazel-out/x64_windows-fastbuild/testlogs/rb/spec/integration/selenium/webdriver/navigation-edge-remote/test.log
    2737:  D:/_bazel/execroot/selenium/bazel-out/x64_windows-fastbuild/testlogs/rb/spec/integration/selenium/webdriver/navigation-edge-remote/test_attempts/attempt_1.log
    2738:  D:/_bazel/execroot/selenium/bazel-out/x64_windows-fastbuild/testlogs/rb/spec/integration/selenium/webdriver/navigation-edge-remote/test_attempts/attempt_2.log
    2739:  //rb/spec/integration/selenium/webdriver:select-edge-remote              �[0m�[31m�[1mFAILED�[0m in 3 out of 3 in 7.1s
    2740:  Stats over 3 runs: max = 7.1s, min = 6.9s, avg = 7.0s, dev = 0.1s
    2741:  D:/_bazel/execroot/selenium/bazel-out/x64_windows-fastbuild/testlogs/rb/spec/integration/selenium/webdriver/select-edge-remote/test.log
    2742:  D:/_bazel/execroot/selenium/bazel-out/x64_windows-fastbuild/testlogs/rb/spec/integration/selenium/webdriver/select-edge-remote/test_attempts/attempt_1.log
    2743:  D:/_bazel/execroot/selenium/bazel-out/x64_windows-fastbuild/testlogs/rb/spec/integration/selenium/webdriver/select-edge-remote/test_attempts/attempt_2.log
    2744:  //rb/spec/integration/selenium/webdriver:shadow_root-edge-remote         �[0m�[31m�[1mFAILED�[0m in 3 out of 3 in 7.1s
    2745:  Stats over 3 runs: max = 7.1s, min = 6.9s, avg = 7.0s, dev = 0.1s
    2746:  D:/_bazel/execroot/selenium/bazel-out/x64_windows-fastbuild/testlogs/rb/spec/integration/selenium/webdriver/shadow_root-edge-remote/test.log
    2747:  D:/_bazel/execroot/selenium/bazel-out/x64_windows-fastbuild/testlogs/rb/spec/integration/selenium/webdriver/shadow_root-edge-remote/test_attempts/attempt_1.log
    2748:  D:/_bazel/execroot/selenium/bazel-out/x64_windows-fastbuild/testlogs/rb/spec/integration/selenium/webdriver/shadow_root-edge-remote/test_attempts/attempt_2.log
    2749:  //rb/spec/integration/selenium/webdriver:storage-edge-remote             �[0m�[31m�[1mFAILED�[0m in 3 out of 3 in 8.0s
    2750:  Stats over 3 runs: max = 8.0s, min = 6.8s, avg = 7.3s, dev = 0.5s
    2751:  D:/_bazel/execroot/selenium/bazel-out/x64_windows-fastbuild/testlogs/rb/spec/integration/selenium/webdriver/storage-edge-remote/test.log
    2752:  D:/_bazel/execroot/selenium/bazel-out/x64_windows-fastbuild/testlogs/rb/spec/integration/selenium/webdriver/storage-edge-remote/test_attempts/attempt_1.log
    2753:  D:/_bazel/execroot/selenium/bazel-out/x64_windows-fastbuild/testlogs/rb/spec/integration/selenium/webdriver/storage-edge-remote/test_attempts/attempt_2.log
    2754:  //rb/spec/integration/selenium/webdriver:takes_screenshot-edge-remote    �[0m�[31m�[1mFAILED�[0m in 3 out of 3 in 6.8s
    2755:  Stats over 3 runs: max = 6.8s, min = 6.7s, avg = 6.7s, dev = 0.0s
    2756:  D:/_bazel/execroot/selenium/bazel-out/x64_windows-fastbuild/testlogs/rb/spec/integration/selenium/webdriver/takes_screenshot-edge-remote/test.log
    2757:  D:/_bazel/execroot/selenium/bazel-out/x64_windows-fastbuild/testlogs/rb/spec/integration/selenium/webdriver/takes_screenshot-edge-remote/test_attempts/attempt_1.log
    2758:  D:/_bazel/execroot/selenium/bazel-out/x64_windows-fastbuild/testlogs/rb/spec/integration/selenium/webdriver/takes_screenshot-edge-remote/test_attempts/attempt_2.log
    2759:  //rb/spec/integration/selenium/webdriver:target_locator-edge-remote      �[0m�[31m�[1mFAILED�[0m in 3 out of 3 in 7.2s
    2760:  Stats over 3 runs: max = 7.2s, min = 6.9s, avg = 7.0s, dev = 0.1s
    2761:  D:/_bazel/execroot/selenium/bazel-out/x64_windows-fastbuild/testlogs/rb/spec/integration/selenium/webdriver/target_locator-edge-remote/test.log
    2762:  D:/_bazel/execroot/selenium/bazel-out/x64_windows-fastbuild/testlogs/rb/spec/integration/selenium/webdriver/target_locator-edge-remote/test_attempts/attempt_1.log
    2763:  D:/_bazel/execroot/selenium/bazel-out/x64_windows-fastbuild/testlogs/rb/spec/integration/selenium/webdriver/target_locator-edge-remote/test_attempts/attempt_2.log
    2764:  //rb/spec/integration/selenium/webdriver:timeout-edge-remote             �[0m�[31m�[1mFAILED�[0m in 3 out of 3 in 7.4s
    2765:  Stats over 3 runs: max = 7.4s, min = 6.7s, avg = 6.9s, dev = 0.3s
    2766:  D:/_bazel/execroot/selenium/bazel-out/x64_windows-fastbuild/testlogs/rb/spec/integration/selenium/webdriver/timeout-edge-remote/test.log
    2767:  D:/_bazel/execroot/selenium/bazel-out/x64_windows-fastbuild/testlogs/rb/spec/integration/selenium/webdriver/timeout-edge-remote/test_attempts/attempt_1.log
    2768:  D:/_bazel/execroot/selenium/bazel-out/x64_windows-fastbuild/testlogs/rb/spec/integration/selenium/webdriver/timeout-edge-remote/test_attempts/attempt_2.log
    2769:  //rb/spec/integration/selenium/webdriver:virtual_authenticator-edge-remote �[0m�[31m�[1mFAILED�[0m in 3 out of 3 in 7.5s
    2770:  Stats over 3 runs: max = 7.5s, min = 7.0s, avg = 7.2s, dev = 0.2s
    2771:  D:/_bazel/execroot/selenium/bazel-out/x64_windows-fastbuild/testlogs/rb/spec/integration/selenium/webdriver/virtual_authenticator-edge-remote/test.log
    2772:  D:/_bazel/execroot/selenium/bazel-out/x64_windows-fastbuild/testlogs/rb/spec/integration/selenium/webdriver/virtual_authenticator-edge-remote/test_attempts/attempt_1.log
    2773:  D:/_bazel/execroot/selenium/bazel-out/x64_windows-fastbuild/testlogs/rb/spec/integration/selenium/webdriver/virtual_authenticator-edge-remote/test_attempts/attempt_2.log
    2774:  //rb/spec/integration/selenium/webdriver:window-edge-remote              �[0m�[31m�[1mFAILED�[0m in 3 out of 3 in 8.0s
    2775:  Stats over 3 runs: max = 8.0s, min = 6.9s, avg = 7.3s, dev = 0.5s
    2776:  D:/_bazel/execroot/selenium/bazel-out/x64_windows-fastbuild/testlogs/rb/spec/integration/selenium/webdriver/window-edge-remote/test.log
    2777:  D:/_bazel/execroot/selenium/bazel-out/x64_windows-fastbuild/testlogs/rb/spec/integration/selenium/webdriver/window-edge-remote/test_attempts/attempt_1.log
    2778:  D:/_bazel/execroot/selenium/bazel-out/x64_windows-fastbuild/testlogs/rb/spec/integration/selenium/webdriver/window-edge-remote/test_attempts/attempt_2.log
    2779:  //rb/spec/integration/selenium/webdriver:zipper-edge-remote              �[0m�[31m�[1mFAILED�[0m in 3 out of 3 in 7.1s
    2780:  Stats over 3 runs: max = 7.1s, min = 6.7s, avg = 6.9s, dev = 0.2s
    2781:  D:/_bazel/execroot/selenium/bazel-out/x64_windows-fastbuild/testlogs/rb/spec/integration/selenium/webdriver/zipper-edge-remote/test.log
    2782:  D:/_bazel/execroot/selenium/bazel-out/x64_windows-fastbuild/testlogs/rb/spec/integration/selenium/webdriver/zipper-edge-remote/test_attempts/attempt_1.log
    2783:  D:/_bazel/execroot/selenium/bazel-out/x64_windows-fastbuild/testlogs/rb/spec/integration/selenium/webdriver/zipper-edge-remote/test_attempts/attempt_2.log
    2784:  //rb/spec/integration/selenium/webdriver/bidi:browsing_context-edge-remote �[0m�[31m�[1mFAILED�[0m in 3 out of 3 in 6.7s
    2785:  Stats over 3 runs: max = 6.7s, min = 6.7s, avg = 6.7s, dev = 0.0s
    2786:  D:/_bazel/execroot/selenium/bazel-out/x64_windows-fastbuild/testlogs/rb/spec/integration/selenium/webdriver/bidi/browsing_context-edge-remote/test.log
    2787:  D:/_bazel/execroot/selenium/bazel-out/x64_windows-fastbuild/testlogs/rb/spec/integration/selenium/webdriver/bidi/browsing_context-edge-remote/test_attempts/attempt_1.log
    2788:  D:/_bazel/execroot/selenium/bazel-out/x64_windows-fastbuild/testlogs/rb/spec/integration/selenium/webdriver/bidi/browsing_context-edge-remote/test_attempts/attempt_2.log
    2789:  //rb/spec/integration/selenium/webdriver/bidi:log_inspector-edge-remote  �[0m�[31m�[1mFAILED�[0m in 3 out of 3 in 6.8s
    2790:  Stats over 3 runs: max = 6.8s, min = 6.7s, avg = 6.7s, dev = 0.1s
    2791:  D:/_bazel/execroot/selenium/bazel-out/x64_windows-fastbuild/testlogs/rb/spec/integration/selenium/webdriver/bidi/log_inspector-edge-remote/test.log
    2792:  D:/_bazel/execroot/selenium/bazel-out/x64_windows-fastbuild/testlogs/rb/spec/integration/selenium/webdriver/bidi/log_inspector-edge-remote/test_attempts/attempt_1.log
    2793:  D:/_bazel/execroot/selenium/bazel-out/x64_windows-fastbuild/testlogs/rb/spec/integration/selenium/webdriver/bidi/log_inspector-edge-remote/test_attempts/attempt_2.log
    2794:  //rb/spec/integration/selenium/webdriver/edge:driver-edge-remote         �[0m�[31m�[1mFAILED�[0m in 3 out of 3 in 7.1s
    2795:  Stats over 3 runs: max = 7.1s, min = 6.9s, avg = 7.0s, dev = 0.1s
    2796:  D:/_bazel/execroot/selenium/bazel-out/x64_windows-fastbuild/testlogs/rb/spec/integration/selenium/webdriver/edge/driver-edge-remote/test.log
    2797:  D:/_bazel/execroot/selenium/bazel-out/x64_windows-fastbuild/testlogs/rb/spec/integration/selenium/webdriver/edge/driver-edge-remote/test_attempts/attempt_1.log
    2798:  D:/_bazel/execroot/selenium/bazel-out/x64_windows-fastbuild/testlogs/rb/spec/integration/selenium/webdriver/edge/driver-edge-remote/test_attempts/attempt_2.log
    2799:  //rb/spec/integration/selenium/webdriver/edge:options-edge-remote        �[0m�[31m�[1mFAILED�[0m in 3 out of 3 in 6.8s
    2800:  Stats over 3 runs: max = 6.8s, min = 6.7s, avg = 6.8s, dev = 0.1s
    2801:  D:/_bazel/execroot/selenium/bazel-out/x64_windows-fastbuild/testlogs/rb/spec/integration/selenium/webdriver/edge/options-edge-remote/test.log
    2802:  D:/_bazel/execroot/selenium/bazel-out/x64_windows-fastbuild/testlogs/rb/spec/integration/selenium/webdriver/edge/options-edge-remote/test_attempts/attempt_1.log
    2803:  D:/_bazel/execroot/selenium/bazel-out/x64_windows-fastbuild/testlogs/rb/spec/integration/selenium/webdriver/edge/options-edge-remote/test_attempts/attempt_2.log
    2804:  //rb/spec/integration/selenium/webdriver/edge:profile-edge-remote        �[0m�[31m�[1mFAILED�[0m in 3 out of 3 in 7.0s
    2805:  Stats over 3 runs: max = 7.0s, min = 6.8s, avg = 6.9s, dev = 0.1s
    2806:  D:/_bazel/execroot/selenium/bazel-out/x64_windows-fastbuild/testlogs/rb/spec/integration/selenium/webdriver/edge/profile-edge-remote/test.log
    2807:  D:/_bazel/execroot/selenium/bazel-out/x64_windows-fastbuild/testlogs/rb/spec/integration/selenium/webdriver/edge/profile-edge-remote/test_attempts/attempt_1.log
    2808:  D:/_bazel/execroot/selenium/bazel-out/x64_windows-fastbuild/testlogs/rb/spec/integration/selenium/webdriver/edge/profile-edge-remote/test_attempts/attempt_2.log
    2809:  //rb/spec/integration/selenium/webdriver/edge:service-edge-remote        �[0m�[31m�[1mFAILED�[0m in 3 out of 3 in 7.3s
    2810:  Stats over 3 runs: max = 7.3s, min = 6.8s, avg = 7.0s, dev = 0.2s
    2811:  D:/_bazel/execroot/selenium/bazel-out/x64_windows-fastbuild/testlogs/rb/spec/integration/selenium/webdriver/edge/service-edge-remote/test.log
    2812:  D:/_bazel/execroot/selenium/bazel-out/x64_windows-fastbuild/testlogs/rb/spec/integration/selenium/webdriver/edge/service-edge-remote/test_attempts/attempt_1.log
    2813:  D:/_bazel/execroot/selenium/bazel-out/x64_windows-fastbuild/testlogs/rb/spec/integration/selenium/webdriver/edge/service-edge-remote/test_attempts/attempt_2.log
    2814:  //rb/spec/integration/selenium/webdriver/remote:driver-edge-remote       �[0m�[31m�[1mFAILED�[0m in 3 out of 3 in 6.8s
    2815:  Stats over 3 runs: max = 6.8s, min = 6.7s, avg = 6.7s, dev = 0.1s
    2816:  D:/_bazel/execroot/selenium/bazel-out/x64_windows-fastbuild/testlogs/rb/spec/integration/selenium/webdriver/remote/driver-edge-remote/test.log
    2817:  D:/_bazel/execroot/selenium/bazel-out/x64_windows-fastbuild/testlogs/rb/spec/integration/selenium/webdriver/remote/driver-edge-remote/test_attempts/attempt_1.log
    2818:  D:/_bazel/execroot/selenium/bazel-out/x64_windows-fastbuild/testlogs/rb/spec/integration/selenium/webdriver/remote/driver-edge-remote/test_attempts/attempt_2.log
    2819:  //rb/spec/integration/selenium/webdriver/remote:element-edge-remote      �[0m�[31m�[1mFAILED�[0m in 3 out of 3 in 7.0s
    2820:  Stats over 3 runs: max = 7.0s, min = 6.8s, avg = 6.9s, dev = 0.1s
    2821:  D:/_bazel/execroot/selenium/bazel-out/x64_windows-fastbuild/testlogs/rb/spec/integration/selenium/webdriver/remote/element-edge-remote/test.log
    2822:  D:/_bazel/execroot/selenium/bazel-out/x64_windows-fastbuild/testlogs/rb/spec/integration/selenium/webdriver/remote/element-edge-remote/test_attempts/attempt_1.log
    2823:  D:/_bazel/execroot/selenium/bazel-out/x64_windows-fastbuild/testlogs/rb/spec/integration/selenium/webdriver/remote/element-edge-remote/test_attempts/attempt_2.log
    2824:  Executed 27 out of 27 tests: �[0m�[31m�[1m27 fail locally�[0m.
    2825:  �[0m
    2826:  ##[error]Process completed with exit code 1.
    2827:  Post job cleanup.
    2828:  ##[group]Save cache for bazelisk
    2829:  Attempting to save C:/Users/runneradmin/AppData/Local/bazelisk cache to setup-bazel-1-win32-bazelisk-08ea2f71e68e1207415971222beffd388f7876fe120fb8503aebb28bd190118a
    2830:  [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"
    2831:  Failed to save: Unable to reserve cache with key setup-bazel-1-win32-bazelisk-08ea2f71e68e1207415971222beffd388f7876fe120fb8503aebb28bd190118a, another job may be creating this cache. More details: Cache already exists. Scope: refs/pull/13747/merge, Key: setup-bazel-1-win32-bazelisk-08ea2f71e68e1207415971222beffd388f7876fe120fb8503aebb28bd190118a, Version: a7f3d4b1d55bd32dc08066b2b9d5d6bd4a724bb37b6bc8df82bd871f23758369
    ...
    
    2836:  [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"
    2837:  Cache Size: ~253 MB (265643894 B)
    2838:  Cache saved successfully
    2839:  Successfully saved cache
    2840:  ##[endgroup]
    2841:  ##[group]Save cache for repository
    2842:  Attempting to save D:/_bazel-repo cache to setup-bazel-1-win32-repository-2de8c8951eb17afeec727f2b9b4393753d8e82d6aeb7ae10ad067e08fb21db92
    2843:  [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"
    2844:  Failed to save: Unable to reserve cache with key setup-bazel-1-win32-repository-2de8c8951eb17afeec727f2b9b4393753d8e82d6aeb7ae10ad067e08fb21db92, another job may be creating this cache. More details: Cache already exists. Scope: refs/pull/13747/merge, Key: setup-bazel-1-win32-repository-2de8c8951eb17afeec727f2b9b4393753d8e82d6aeb7ae10ad067e08fb21db92, Version: 2db72f5dfd1720e8486e342cff652f17e6342fbba8f9d194b436469eb88c04d2
    ...
    
    2856:  [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"
    2857:  Cache Size: ~5 MB (5503904 B)
    2858:  Cache saved successfully
    2859:  Successfully saved cache
    2860:  ##[endgroup]
    2861:  ##[group]Save cache for external-crates
    2862:  Attempting to save D:/_bazel/external/@crates.marker,D:/_bazel/external/crates cache to setup-bazel-1-win32-external-crates-6efcb509723f60d2310e359d79be51a4ffc099ef394b1413c85ba63044a14df4
    2863:  [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"
    2864:  Failed to save: Unable to reserve cache with key setup-bazel-1-win32-external-crates-6efcb509723f60d2310e359d79be51a4ffc099ef394b1413c85ba63044a14df4, another job may be creating this cache. More details: Cache already exists. Scope: refs/pull/13747/merge, Key: setup-bazel-1-win32-external-crates-6efcb509723f60d2310e359d79be51a4ffc099ef394b1413c85ba63044a14df4, Version: 841881583094ba32efc2804b453d0cfd71a80131acb0d304c0a1cab70ab5ba25
    2865:  Successfully saved cache
    2866:  ##[endgroup]
    2867:  ##[group]Save cache for external-io_bazel_rules_go
    2868:  Attempting to save D:/_bazel/external/@io_bazel_rules_go.marker,D:/_bazel/external/io_bazel_rules_go cache to setup-bazel-1-win32-external-io_bazel_rules_go-2de8c8951eb17afeec727f2b9b4393753d8e82d6aeb7ae10ad067e08fb21db92
    2869:  [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"
    2870:  Failed to save: Unable to reserve cache with key setup-bazel-1-win32-external-io_bazel_rules_go-2de8c8951eb17afeec727f2b9b4393753d8e82d6aeb7ae10ad067e08fb21db92, another job may be creating this cache. More details: Cache already exists. Scope: refs/pull/13747/merge, Key: setup-bazel-1-win32-external-io_bazel_rules_go-2de8c8951eb17afeec727f2b9b4393753d8e82d6aeb7ae10ad067e08fb21db92, Version: 10e9275cf4630512430e3ffa18ea06e5057b263f917202b0524be33ee5c9d6eb
    ...
    
    2889:  [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"
    2890:  Cache Size: ~3 MB (3417339 B)
    2891:  Cache saved successfully
    2892:  Successfully saved cache
    2893:  ##[endgroup]
    2894:  ##[group]Save cache for external-python_3_10_x86_64-pc-windows-msvc
    2895:  Attempting to save D:/_bazel/external/@python_3_10_x86_64-pc-windows-msvc.marker,D:/_bazel/external/python_3_10_x86_64-pc-windows-msvc cache to setup-bazel-1-win32-external-python_3_10_x86_64-pc-windows-msvc-2de8c8951eb17afeec727f2b9b4393753d8e82d6aeb7ae10ad067e08fb21db92
    2896:  [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"
    2897:  Failed to save: Unable to reserve cache with key setup-bazel-1-win32-external-python_3_10_x86_64-pc-windows-msvc-2de8c8951eb17afeec727f2b9b4393753d8e82d6aeb7ae10ad067e08fb21db92, another job may be creating this cache. More details: Cache already exists. Scope: refs/pull/13747/merge, Key: setup-bazel-1-win32-external-python_3_10_x86_64-pc-windows-msvc-2de8c8951eb17afeec727f2b9b4393753d8e82d6aeb7ae10ad067e08fb21db92, Version: f67806b582710def9eeb04dc8dc1f852b991d96b29536f5c8f8c7dc34a31516c
    2898:  Successfully saved cache
    2899:  ##[endgroup]
    2900:  ##[group]Save cache for external-python_3_11_x86_64-pc-windows-msvc
    2901:  Attempting to save D:/_bazel/external/@python_3_11_x86_64-pc-windows-msvc.marker,D:/_bazel/external/python_3_11_x86_64-pc-windows-msvc cache to setup-bazel-1-win32-external-python_3_11_x86_64-pc-windows-msvc-2de8c8951eb17afeec727f2b9b4393753d8e82d6aeb7ae10ad067e08fb21db92
    2902:  [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"
    2903:  Failed to save: Unable to reserve cache with key setup-bazel-1-win32-external-python_3_11_x86_64-pc-windows-msvc-2de8c8951eb17afeec727f2b9b4393753d8e82d6aeb7ae10ad067e08fb21db92, another job may be creating this cache. More details: Cache already exists. Scope: refs/pull/13747/merge, Key: setup-bazel-1-win32-external-python_3_11_x86_64-pc-windows-msvc-2de8c8951eb17afeec727f2b9b4393753d8e82d6aeb7ae10ad067e08fb21db92, Version: d02054aa296aeaf95f67cad4fe78097d2d0f791ebadc5592b2d8bf386036135c
    2904:  Successfully saved cache
    2905:  ##[endgroup]
    2906:  ##[group]Save cache for external-python_3_8_x86_64-pc-windows-msvc
    2907:  Attempting to save D:/_bazel/external/@python_3_8_x86_64-pc-windows-msvc.marker,D:/_bazel/external/python_3_8_x86_64-pc-windows-msvc cache to setup-bazel-1-win32-external-python_3_8_x86_64-pc-windows-msvc-2de8c8951eb17afeec727f2b9b4393753d8e82d6aeb7ae10ad067e08fb21db92
    2908:  [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"
    2909:  Failed to save: Unable to reserve cache with key setup-bazel-1-win32-external-python_3_8_x86_64-pc-windows-msvc-2de8c8951eb17afeec727f2b9b4393753d8e82d6aeb7ae10ad067e08fb21db92, another job may be creating this cache. More details: Cache already exists. Scope: refs/pull/13747/merge, Key: setup-bazel-1-win32-external-python_3_8_x86_64-pc-windows-msvc-2de8c8951eb17afeec727f2b9b4393753d8e82d6aeb7ae10ad067e08fb21db92, Version: cc777c6fdd3c71b3a7b86756e7ab1c28e6b6cc1d5397b5c1c4623af7c4d28915
    2910:  Successfully saved cache
    2911:  ##[endgroup]
    2912:  ##[group]Save cache for external-python_3_9_x86_64-pc-windows-msvc
    2913:  Attempting to save D:/_bazel/external/@python_3_9_x86_64-pc-windows-msvc.marker,D:/_bazel/external/python_3_9_x86_64-pc-windows-msvc cache to setup-bazel-1-win32-external-python_3_9_x86_64-pc-windows-msvc-2de8c8951eb17afeec727f2b9b4393753d8e82d6aeb7ae10ad067e08fb21db92
    2914:  [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"
    2915:  Failed to save: Unable to reserve cache with key setup-bazel-1-win32-external-python_3_9_x86_64-pc-windows-msvc-2de8c8951eb17afeec727f2b9b4393753d8e82d6aeb7ae10ad067e08fb21db92, another job may be creating this cache. More details: Cache already exists. Scope: refs/pull/13747/merge, Key: setup-bazel-1-win32-external-python_3_9_x86_64-pc-windows-msvc-2de8c8951eb17afeec727f2b9b4393753d8e82d6aeb7ae10ad067e08fb21db92, Version: 2fa799fba322625760debbab8b0b869695878c32f1fa9227628fad96670a645e
    ...
    
    2927:  [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"
    2928:  Cache Size: ~38 MB (39874206 B)
    2929:  Cache saved successfully
    2930:  Successfully saved cache
    2931:  ##[endgroup]
    2932:  ##[group]Save cache for external-rules_rust
    2933:  Attempting to save D:/_bazel/external/@rules_rust.marker,D:/_bazel/external/rules_rust cache to setup-bazel-1-win32-external-rules_rust-2de8c8951eb17afeec727f2b9b4393753d8e82d6aeb7ae10ad067e08fb21db92
    2934:  [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"
    2935:  Failed to save: Unable to reserve cache with key setup-bazel-1-win32-external-rules_rust-2de8c8951eb17afeec727f2b9b4393753d8e82d6aeb7ae10ad067e08fb21db92, another job may be creating this cache. More details: Cache already exists. Scope: refs/pull/13747/merge, Key: setup-bazel-1-win32-external-rules_rust-2de8c8951eb17afeec727f2b9b4393753d8e82d6aeb7ae10ad067e08fb21db92, Version: 7c160a3d286df738506de7ffc9c482b05917d137a2ed8be6cda7b85cc32621e5
    2936:  Successfully saved cache
    2937:  ##[endgroup]
    2938:  ##[group]Save cache for external-rust_windows_x86_64__x86_64-pc-windows-msvc__stable_tools
    2939:  Attempting to save D:/_bazel/external/@rust_windows_x86_64__x86_64-pc-windows-msvc__stable_tools.marker,D:/_bazel/external/rust_windows_x86_64__x86_64-pc-windows-msvc__stable_tools cache to setup-bazel-1-win32-external-rust_windows_x86_64__x86_64-pc-windows-msvc__stable_tools-2de8c8951eb17afeec727f2b9b4393753d8e82d6aeb7ae10ad067e08fb21db92
    2940:  [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"
    2941:  Failed to save: Unable to reserve cache with key setup-bazel-1-win32-external-rust_windows_x86_64__x86_64-pc-windows-msvc__stable_tools-2de8c8951eb17afeec727f2b9b4393753d8e82d6aeb7ae10ad067e08fb21db92, another job may be creating this cache. More details: Cache already exists. Scope: refs/pull/13747/merge, Key: setup-bazel-1-win32-external-rust_windows_x86_64__x86_64-pc-windows-msvc__stable_tools-2de8c8951eb17afeec727f2b9b4393753d8e82d6aeb7ae10ad067e08fb21db92, Version: 07eb8ddb4b2275fa969b8ec4b793d705bb4316dd051b130c7855650609fae98d
    

    ✨ 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 5f9cec8 into trunk Mar 27, 2024
    47 of 49 checks passed
    @diemol diemol deleted the release-4.19.0 branch March 27, 2024 14:54
    Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
    Projects
    None yet
    Development

    Successfully merging this pull request may close these issues.

    None yet

    3 participants