Skip to content

Conversation

selenium-ci
Copy link
Member

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

User description

Warning: Manually update the changelogs before merging

This PR:

  • Updates Rust version for Selenium Manager release
  • Updates Pinned browser version to coincide with new CDP release
  • Adds support for new CDP version and removes old CDP version
  • Selenium Manager references the new Selenium Manager release
  • Updates Maven Dependencies
  • Adds new authors to authors file
  • Updates all versions for all bindings
  • Generates rough change logs for each bindings (please tidy them up before merging this)

Type

Enhancement, Documentation


Description

  • Updated Java, .NET, and Ruby WebDriver to support Chrome DevTools Protocol version 124 and removed support for version 121.
  • Updated various files across all bindings to reflect new version changes, including updates to dependencies, version files, and build configurations.
  • Added new entries to AUTHORS file and updated changelogs for all bindings to include the changes in this release.
  • Fixed typographical errors in documentation and improved configuration files for build and release processes.

Changes walkthrough

Relevant files
Enhancement
14 files
v124Target.java
Update Java DevTools classes to version v124                         

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

  • Updated package and imports from v121 to v124.
  • Updated class and method references to align with the new v124
    package.
  • +12/-12 
    v124Network.java
    Update Java DevTools Network classes to version v124         

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

  • Updated package and imports from v121 to v124.
  • Updated class and method references to align with the new v124
    package.
  • +10/-10 
    v124Events.java
    Update Java DevTools Events classes to version v124           

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

  • Updated package and imports from v121 to v124.
  • Updated class and method references to align with the new v124
    package.
  • +9/-9     
    v124Domains.java
    Update Java DevTools Domains classes to version v124         

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

  • Updated package and imports from v121 to v124.
  • Updated class and method references to align with the new v124
    package.
  • +13/-13 
    v124Javascript.java
    Update Java DevTools Javascript classes to version v124   

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

  • Updated package and imports from v121 to v124.
  • Updated class and method references to align with the new v124
    package.
  • +7/-7     
    v124Log.java
    Update Java DevTools Log classes to version v124                 

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

  • Updated package and imports from v121 to v124.
  • Updated class and method references to align with the new v124
    package.
  • +5/-5     
    v124CdpInfo.java
    Update Java DevTools CDP Info classes to version v124       

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

  • Updated package and imports from v121 to v124.
  • Updated class and method references to align with the new v124
    package.
  • +4/-4     
    V124Domains.cs
    Update .NET WebDriver DevTools Domains to version v124     

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

  • Updated namespace and class name from V121 to V124.
  • Updated method implementations to align with the new v124 version.
  • +11/-11 
    V124Network.cs
    Update .NET WebDriver DevTools Network to version v124     

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

  • Updated namespace and class name from V121 to V124.
  • Updated method implementations to align with the new v124 version.
  • +12/-12 
    V124JavaScript.cs
    Update .NET WebDriver DevTools JavaScript to version v124

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

  • Updated namespace and class name from V121 to V124.
  • Updated method implementations to align with the new v124 version.
  • +8/-8     
    V124Target.cs
    Update .NET WebDriver DevTools Target to version v124       

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

  • Updated namespace and class name from V121 to V124.
  • Updated method implementations to align with the new v124 version.
  • +7/-7     
    V124Log.cs
    Update .NET WebDriver DevTools Log to version v124             

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

  • Updated namespace and class name from V121 to V124.
  • Updated method implementations to align with the new v124 version.
  • +7/-7     
    DevToolsDomains.cs
    Update .NET WebDriver DevTools Domains Dictionary               

    dotnet/src/webdriver/DevTools/DevToolsDomains.cs

  • Updated dictionary to include the new v124 version and remove v121.
  • +1/-1     
    network_interceptor.rb
    Refactor Ruby WebDriver DevTools Network Interceptor         

    rb/lib/selenium/webdriver/devtools/network_interceptor.rb

    • Updated comment to remove redundant block call.
    +1/-1     
    Tests
    8 files
    DevToolsTargetTest.cs
    Update .NET WebDriver DevTools Target Test to version v124

    dotnet/test/common/DevTools/DevToolsTargetTest.cs

    • Updated using directive to reference the new v124 version.
    +2/-2     
    DevToolsConsoleTest.cs
    Update .NET WebDriver DevTools Console Test to version v124

    dotnet/test/common/DevTools/DevToolsConsoleTest.cs

    • Updated using directive to reference the new v124 version.
    +1/-1     
    DevToolsLogTest.cs
    Update .NET WebDriver DevTools Log Test to version v124   

    dotnet/test/common/DevTools/DevToolsLogTest.cs

    • Updated using directive to reference the new v124 version.
    +1/-1     
    DevToolsNetworkTest.cs
    Update .NET WebDriver DevTools Network Test to version v124

    dotnet/test/common/DevTools/DevToolsNetworkTest.cs

    • Updated using directive to reference the new v124 version.
    +1/-1     
    DevToolsPerformanceTest.cs
    Update .NET WebDriver DevTools Performance Test to version v124

    dotnet/test/common/DevTools/DevToolsPerformanceTest.cs

    • Updated using directive to reference the new v124 version.
    +1/-1     
    DevToolsProfilerTest.cs
    Update .NET WebDriver DevTools Profiler Test to version v124

    dotnet/test/common/DevTools/DevToolsProfilerTest.cs

    • Updated using directive to reference the new v124 version.
    +1/-1     
    DevToolsSecurityTest.cs
    Update .NET WebDriver DevTools Security Test to version v124

    dotnet/test/common/DevTools/DevToolsSecurityTest.cs

    • Updated using directive to reference the new v124 version.
    +1/-1     
    DevToolsTabsTest.cs
    Update .NET WebDriver DevTools Tabs Test to version v124 

    dotnet/test/common/DevTools/DevToolsTabsTest.cs

    • Updated using directive to reference the new v124 version.
    +1/-1     
    Configuration changes
    3 files
    StableChannelChromeDriver.cs
    Update .NET WebDriver Stable Channel Chrome Driver Config

    dotnet/test/common/CustomDriverConfigs/StableChannelChromeDriver.cs

    • Updated browser version to 124 in default options.
    +1/-1     
    pre-release.yml
    Update GitHub Actions Workflow for Pre-Release                     

    .github/workflows/pre-release.yml

  • Added working directory specification for Ruby setup.
  • Updated branch naming for release preparation.
  • +5/-3     
    .rubocop.yml
    Add RuboCop Configuration for Capybara Debugger Methods   

    rb/.rubocop.yml

  • Added configuration for RuboCop to handle debugger methods for
    Capybara.
  • +6/-0     
    Version update
    13 files
    version.rb
    Update Ruby WebDriver DevTools Version                                     

    rb/lib/selenium/devtools/version.rb

    • Updated DevTools version to 0.124.0.
    +1/-1     
    version.rb
    Update Ruby WebDriver Version                                                       

    rb/lib/selenium/webdriver/version.rb

    • Updated WebDriver version to 4.20.0.
    +1/-1     
    selenium-dotnet-version.bzl
    Update .NET Selenium Version Definition                                   

    dotnet/selenium-dotnet-version.bzl

    • Updated Selenium version to 4.20.0.
    +2/-2     
    __init__.py
    Update Python WebDriver Version                                                   

    py/selenium/webdriver/init.py

    • Updated WebDriver version to 4.20.0.
    +1/-1     
    setup.py
    Update Python Setup Script Version                                             

    py/setup.py

    • Updated package version to 4.20.0.
    +1/-1     
    versions.bzl
    Update Java CDP Versions List                                                       

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

    • Updated CDP versions list to include v124 and remove v121.
    +1/-1     
    __init__.py
    Update Python Selenium Version                                                     

    py/selenium/init.py

    • Updated Selenium version to 4.20.0.
    +1/-1     
    version.bzl
    Update Java Selenium Version                                                         

    java/version.bzl

    • Updated Selenium version to 4.20.0.
    +1/-1     
    BUILD.bazel
    Update JavaScript WebDriver Bazel Build Version                   

    javascript/node/selenium-webdriver/BUILD.bazel

    • Updated version to 4.20.0.
    +2/-2     
    BUILD.bazel
    Update Python WebDriver Bazel Build Version                           

    py/BUILD.bazel

    • Updated Python WebDriver version to 4.20.0.
    +2/-2     
    package-lock.json
    Update JavaScript Node Package Version in Lock File           

    package-lock.json

    • Updated version for JavaScript node package to 4.20.0.
    +1/-1     
    package.json
    Update JavaScript WebDriver Package Version                           

    javascript/node/selenium-webdriver/package.json

    • Updated version to 4.20.0.
    +1/-1     
    BUILD.bazel
    Update Ruby DevTools CDP Versions List                                     

    rb/lib/selenium/devtools/BUILD.bazel

    • Updated CDP versions list to include v124 and remove v121.
    +1/-1     
    Dependencies
    3 files
    repositories.bzl
    Update Browser Binary URLs and Hashes in Bazel Repository Definitions

    common/repositories.bzl

  • Updated URLs and SHA256 hashes for Firefox and Edge browser binaries.
  • +21/-21 
    selenium_manager.bzl
    Update Selenium Manager Binary URLs and Hashes in Bazel Definitions

    common/selenium_manager.bzl

    • Updated URLs and SHA256 hashes for Selenium Manager binaries.
    +6/-6     
    MODULE.bazel
    Update Ruby Bundle Fetch Versions                                               

    MODULE.bazel

    • Updated Ruby bundle fetch versions for various dependencies.
    +10/-9   
    Documentation
    10 files
    conf.py
    Update Python Documentation Configuration                               

    py/docs/source/conf.py

    • Updated version and release information to 4.20.0.
    +1/-1     
    browser_protocol.pdl
    Fix Typographical Errors in Browser Protocol Definitions 

    common/devtools/chromium/v124/browser_protocol.pdl

    • Corrected typographical errors in comments.
    +492/-127
    js_protocol.pdl
    Update JavaScript Protocol Method Annotations                       

    common/devtools/chromium/v124/js_protocol.pdl

  • Updated method annotations from experimental to standard for
    addBinding and removeBinding.
  • +4/-4     
    AUTHORS
    Update Authors List                                                                           

    AUTHORS

    • Added new authors to the AUTHORS file.
    +2/-0     
    CHANGELOG
    Update Java Changelog for 4.20.0 Release                                 

    java/CHANGELOG

  • Added changelog entries for version 4.20.0 detailing new features and
    fixes.
  • +17/-0   
    CHANGES.md
    Update JavaScript WebDriver Changelog for 4.20.0 Release 

    javascript/node/selenium-webdriver/CHANGES.md

  • Added changelog entries for version 4.20.0 detailing new features and
    fixes.
  • +15/-0   
    CHANGES
    Update Python Changelog for 4.20.0 Release                             

    py/CHANGES

  • Added changelog entries for Python version 4.20.0 detailing new
    features and fixes.
  • +11/-0   
    CHANGELOG
    Update .NET Changelog for 4.20.0 Release                                 

    dotnet/CHANGELOG

  • Added changelog entries for .NET version 4.20.0 detailing new features
    and fixes.
  • +11/-0   
    CHANGES
    Update Ruby Changelog for 4.20.0 Release                                 

    rb/CHANGES

  • Added changelog entries for Ruby version 4.20.0 detailing new features
    and fixes.
  • +9/-0     
    CHANGELOG.md
    Fix Typographical Errors in Rust Changelog                             

    rust/CHANGELOG.md

    • Corrected typographical errors in changelog entries.
    +2/-2     
    Build configuration
    4 files
    BUILD.bazel
    Add Build Rules for v124 Protocol JSON Conversion               

    common/devtools/chromium/v124/BUILD.bazel

  • Created build rules for converting PDL files to JSON for the v124
    protocol.
  • +38/-1   
    Rakefile
    Update Rakefile for Java Release Targets and Ruby Setup   

    Rakefile

  • Updated Java release targets to include v124 and remove v121.
  • Added bundle version output before update in Ruby setup.
  • +2/-2     
    WebDriver.csproj
    Update .NET WebDriver Project File for CDP Generation       

    dotnet/src/webdriver/WebDriver.csproj

  • Updated Bazel build command to include v124 and remove v121 for CDP
    generation.
  • +1/-1     
    BUILD.bazel
    Correct CDP Version Variable in Java Build Configuration 

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

    • Corrected variable name for CDP version in build configuration.
    +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 selenium-ci added the B-build Includes scripting, bazel and CI integrations label Apr 24, 2024
    Copy link
    Contributor

    qodo-merge-pro bot commented Apr 24, 2024

    CI Failure Feedback

    (Checks updated until commit b2db57e)

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

    Failed stage: Run Bazel [❌]

    Failure summary:

    The action failed due to multiple test failures across various test suites. Each failure was caused
    by an Errno::EACCES error, indicating a permission denied issue when attempting to spawn a process
    using Java. This suggests that there might be insufficient permissions set for executing Java
    commands required by the test environments or issues with the configuration of the environment where
    the tests are being run.

    Relevant error logs:
    1:  ##[group]Operating System
    2:  Microsoft Windows Server 2022
    ...
    
    703:  ^
    704:  �[32m[2,278 / 3,088]�[0m [Prepa] Splitting Javascript ../../../javascript/grid-ui/src/index.tsx [esbuild] ... (3 actions, 0 running)
    705:  �[32mINFO: �[0mFrom PackageZip javascript/grid-ui/react-zip.jar:
    706:  C:\Users\RUNNER~1\AppData\Local\Temp\Bazel.runfiles_u0mc0jrv\runfiles\rules_python~~python~python_3_8_x86_64-pc-windows-msvc\lib\zipfile.py:1517: UserWarning: Duplicate name: 'grid-ui/'
    707:  return self._open_to_write(zinfo, force_zip64=force_zip64)
    708:  �[32m[2,476 / 3,088]�[0m Checking @@io_bazel_rules_closure//closure/library/proto2:all_js; 0s disk-cache ... (2 actions, 0 running)
    709:  �[32m[2,777 / 3,088]�[0m [Prepa] RunBinary rb/lib/selenium/devtools/v124.rb ... (4 actions, 0 running)
    710:  �[32mINFO: �[0mFrom Building java/src/org/openqa/selenium/remote/libapi-class.jar (66 source files):
    711:  java\src\org\openqa\selenium\remote\ErrorHandler.java:46: warning: [removal] ErrorCodes in org.openqa.selenium.remote has been deprecated and marked for removal
    712:  private final ErrorCodes errorCodes;
    713:  ^
    714:  java\src\org\openqa\selenium\remote\ErrorHandler.java:60: warning: [removal] ErrorCodes in org.openqa.selenium.remote has been deprecated and marked for removal
    715:  this.errorCodes = new ErrorCodes();
    716:  ^
    717:  java\src\org\openqa\selenium\remote\ErrorHandler.java:68: warning: [removal] ErrorCodes in org.openqa.selenium.remote has been deprecated and marked for removal
    718:  public ErrorHandler(ErrorCodes codes, boolean includeServerErrors) {
    719:  ^
    720:  java\src\org\openqa\selenium\remote\Response.java:97: warning: [removal] ErrorCodes in org.openqa.selenium.remote has been deprecated and marked for removal
    721:  ErrorCodes errorCodes = new ErrorCodes();
    722:  ^
    723:  java\src\org\openqa\selenium\remote\Response.java:97: warning: [removal] ErrorCodes in org.openqa.selenium.remote has been deprecated and marked for removal
    724:  ErrorCodes errorCodes = new ErrorCodes();
    725:  ^
    726:  java\src\org\openqa\selenium\remote\ProtocolHandshake.java:181: warning: [removal] ErrorCodes in org.openqa.selenium.remote has been deprecated and marked for removal
    727:  response.setStatus(ErrorCodes.SUCCESS);
    728:  ^
    729:  java\src\org\openqa\selenium\remote\ProtocolHandshake.java:182: warning: [removal] ErrorCodes in org.openqa.selenium.remote has been deprecated and marked for removal
    730:  response.setState(ErrorCodes.SUCCESS_STRING);
    731:  ^
    732:  java\src\org\openqa\selenium\remote\W3CHandshakeResponse.java:53: warning: [removal] ErrorCodes in org.openqa.selenium.remote has been deprecated and marked for removal
    733:  new ErrorCodes().toStatus((String) rawError, Optional.of(tuple.getStatusCode())));
    734:  ^
    735:  java\src\org\openqa\selenium\remote\W3CHandshakeResponse.java:56: warning: [removal] ErrorCodes in org.openqa.selenium.remote has been deprecated and marked for removal
    736:  new ErrorCodes().getExceptionType((String) rawError);
    737:  ^
    738:  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
    739:  private final ErrorCodes errorCodes = new ErrorCodes();
    740:  ^
    741:  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
    742:  private final ErrorCodes errorCodes = new ErrorCodes();
    743:  ^
    744:  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
    745:  int status = response.getStatus() == ErrorCodes.SUCCESS ? HTTP_OK : HTTP_INTERNAL_ERROR;
    746:  ^
    747:  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
    748:  response.setStatus(ErrorCodes.UNKNOWN_COMMAND);
    749:  ^
    750:  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
    751:  response.setStatus(ErrorCodes.UNHANDLED_ERROR);
    752:  ^
    753:  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
    754:  response.setStatus(ErrorCodes.SUCCESS);
    755:  ^
    756:  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
    757:  response.setState(errorCodes.toState(ErrorCodes.SUCCESS));
    758:  ^
    759:  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
    760:  response.setState(errorCodes.toState(ErrorCodes.SUCCESS));
    761:  ^
    762:  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
    763:  private final ErrorCodes errorCodes = new ErrorCodes();
    764:  ^
    765:  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
    766:  private final ErrorCodes errorCodes = new ErrorCodes();
    767:  ^
    768:  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
    769:  response.setStatus(ErrorCodes.UNKNOWN_COMMAND);
    770:  ^
    771:  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
    772:  response.setStatus(ErrorCodes.UNHANDLED_ERROR);
    773:  ^
    774:  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
    775:  response.setStatus(ErrorCodes.SUCCESS);
    ...
    
    902:  �[32m[3,088 / 3,111]�[0m Testing //rb/spec/integration/selenium/webdriver/edge:driver-edge-remote; 47s local, disk-cache ... (4 actions running)
    903:  �[31m�[1mFAIL: �[0m//rb/spec/integration/selenium/webdriver:timeout-edge-remote (see D:/_bazel/execroot/_main/bazel-out/x64_windows-fastbuild/testlogs/rb/spec/integration/selenium/webdriver/timeout-edge-remote/test_attempts/attempt_2.log)
    904:  �[32m[3,088 / 3,111]�[0m Testing //rb/spec/integration/selenium/webdriver/edge:driver-edge-remote; 49s local, disk-cache ... (4 actions running)
    905:  �[32m[3,088 / 3,111]�[0m Testing //rb/spec/integration/selenium/webdriver/edge:driver-edge-remote; 54s local, disk-cache ... (4 actions running)
    906:  �[31m�[1mFAIL: �[0m//rb/spec/integration/selenium/webdriver:action_builder-edge-remote (see D:/_bazel/execroot/_main/bazel-out/x64_windows-fastbuild/testlogs/rb/spec/integration/selenium/webdriver/action_builder-edge-remote/test_attempts/attempt_2.log)
    907:  �[32m[3,088 / 3,111]�[0m Testing //rb/spec/integration/selenium/webdriver/edge:driver-edge-remote; 56s local, disk-cache ... (4 actions running)
    908:  �[32m[3,088 / 3,111]�[0m Testing //rb/spec/integration/selenium/webdriver/edge:driver-edge-remote; 61s local, disk-cache ... (4 actions running)
    909:  �[31m�[1mFAIL: �[0m//rb/spec/integration/selenium/webdriver/edge:driver-edge-remote (see D:/_bazel/execroot/_main/bazel-out/x64_windows-fastbuild/testlogs/rb/spec/integration/selenium/webdriver/edge/driver-edge-remote/test.log)
    910:  �[31m�[1mFAILED: �[0m//rb/spec/integration/selenium/webdriver/edge:driver-edge-remote (Summary)
    911:  ==================== Test output for //rb/spec/integration/selenium/webdriver/edge:driver-edge-remote:
    912:  D:/_bazel/execroot/_main/bazel-out/x64_windows-fastbuild/testlogs/rb/spec/integration/selenium/webdriver/edge/driver-edge-remote/test.log
    913:  2024-04-24 16:53:41 INFO Selenium Server Location: D:/_bazel/execroot/_main/bazel-out/x64_windows-fastbuild/bin/rb/spec/integration/selenium/webdriver/edge/driver-edge-remote.cmd.runfiles/_main/java/src/org/openqa/selenium/grid/selenium_server_deploy.jar
    914:  D:/_bazel/execroot/_main/bazel-out/x64_windows-fastbuild/testlogs/rb/spec/integration/selenium/webdriver/edge/driver-edge-remote/test_attempts/attempt_1.log
    915:  D:/_bazel/execroot/_main/bazel-out/x64_windows-fastbuild/testlogs/rb/spec/integration/selenium/webdriver/edge/driver-edge-remote/test_attempts/attempt_2.log
    916:  An error occurred in a `before(:suite)` hook.
    917:  �[32mINFO: �[0mFrom Testing //rb/spec/integration/selenium/webdriver/edge:driver-edge-remote:
    918:  Failure/Error: @pid = Process.spawn(*@command, options)
    919:  Errno::EACCES:
    920:  Permission denied - java
    921:  # ./rb/lib/selenium/webdriver/common/child_process.rb:57:in `spawn'
    922:  # ./rb/lib/selenium/webdriver/common/child_process.rb:57:in `start'
    923:  # ./rb/lib/selenium/server.rb:204:in `start'
    924:  # //?/D:/a/selenium/selenium/rb/spec/integration/selenium/webdriver/spec_helper.rb:40:in `block (2 levels) in <top (required)>'
    925:  Finished in 0.04535 seconds (files took 0.59982 seconds to load)
    926:  0 examples, 0 failures, 1 error occurred outside of examples
    927:  ================================================================================
    928:  ==================== Test output for //rb/spec/integration/selenium/webdriver/edge:driver-edge-remote:
    929:  2024-04-24 16:54:08 INFO Selenium Server Location: D:/_bazel/execroot/_main/bazel-out/x64_windows-fastbuild/bin/rb/spec/integration/selenium/webdriver/edge/driver-edge-remote.cmd.runfiles/_main/java/src/org/openqa/selenium/grid/selenium_server_deploy.jar
    930:  An error occurred in a `before(:suite)` hook.
    931:  Failure/Error: @pid = Process.spawn(*@command, options)
    932:  Errno::EACCES:
    933:  Permission denied - java
    934:  # ./rb/lib/selenium/webdriver/common/child_process.rb:57:in `spawn'
    935:  # ./rb/lib/selenium/webdriver/common/child_process.rb:57:in `start'
    936:  # ./rb/lib/selenium/server.rb:204:in `start'
    937:  # //?/D:/a/selenium/selenium/rb/spec/integration/selenium/webdriver/spec_helper.rb:40:in `block (2 levels) in <top (required)>'
    938:  Finished in 0.04609 seconds (files took 0.61397 seconds to load)
    939:  0 examples, 0 failures, 1 error occurred outside of examples
    940:  ================================================================================
    941:  ==================== Test output for //rb/spec/integration/selenium/webdriver/edge:driver-edge-remote:
    942:  2024-04-24 16:54:35 INFO Selenium Server Location: D:/_bazel/execroot/_main/bazel-out/x64_windows-fastbuild/bin/rb/spec/integration/selenium/webdriver/edge/driver-edge-remote.cmd.runfiles/_main/java/src/org/openqa/selenium/grid/selenium_server_deploy.jar
    943:  An error occurred in a `before(:suite)` hook.
    944:  Failure/Error: @pid = Process.spawn(*@command, options)
    945:  Errno::EACCES:
    946:  Permission denied - java
    947:  # ./rb/lib/selenium/webdriver/common/child_process.rb:57:in `spawn'
    948:  # ./rb/lib/selenium/webdriver/common/child_process.rb:57:in `start'
    949:  # ./rb/lib/selenium/server.rb:204:in `start'
    950:  # //?/D:/a/selenium/selenium/rb/spec/integration/selenium/webdriver/spec_helper.rb:40:in `block (2 levels) in <top (required)>'
    951:  Finished in 0.04722 seconds (files took 0.63452 seconds to load)
    952:  0 examples, 0 failures, 1 error occurred outside of examples
    953:  ================================================================================
    954:  �[32m[3,089 / 3,111]�[0m 1 / 27 tests, �[31m�[1m1 failed�[0m;�[0m Testing //rb/spec/integration/selenium/webdriver:listener-edge-remote; 56s local, disk-cache ... (4 actions, 3 running)
    955:  �[32m[3,089 / 3,111]�[0m 1 / 27 tests, �[31m�[1m1 failed�[0m;�[0m Testing //rb/spec/integration/selenium/webdriver:listener-edge-remote; 61s local, disk-cache ... (4 actions, 3 running)
    956:  �[31m�[1mFAIL: �[0m//rb/spec/integration/selenium/webdriver:listener-edge-remote (see D:/_bazel/execroot/_main/bazel-out/x64_windows-fastbuild/testlogs/rb/spec/integration/selenium/webdriver/listener-edge-remote/test.log)
    957:  �[31m�[1mFAILED: �[0m//rb/spec/integration/selenium/webdriver:listener-edge-remote (Summary)
    958:  ==================== Test output for //rb/spec/integration/selenium/webdriver:listener-edge-remote:
    959:  D:/_bazel/execroot/_main/bazel-out/x64_windows-fastbuild/testlogs/rb/spec/integration/selenium/webdriver/listener-edge-remote/test.log
    960:  2024-04-24 16:53:48 INFO Selenium Server Location: D:/_bazel/execroot/_main/bazel-out/x64_windows-fastbuild/bin/rb/spec/integration/selenium/webdriver/listener-edge-remote.cmd.runfiles/_main/java/src/org/openqa/selenium/grid/selenium_server_deploy.jar
    961:  D:/_bazel/execroot/_main/bazel-out/x64_windows-fastbuild/testlogs/rb/spec/integration/selenium/webdriver/listener-edge-remote/test_attempts/attempt_1.log
    962:  D:/_bazel/execroot/_main/bazel-out/x64_windows-fastbuild/testlogs/rb/spec/integration/selenium/webdriver/listener-edge-remote/test_attempts/attempt_2.log
    963:  An error occurred in a `before(:suite)` hook.
    964:  �[32mINFO: �[0mFrom Testing //rb/spec/integration/selenium/webdriver:listener-edge-remote:
    965:  Failure/Error: @pid = Process.spawn(*@command, options)
    966:  Errno::EACCES:
    967:  Permission denied - java
    968:  # ./rb/lib/selenium/webdriver/common/child_process.rb:57:in `spawn'
    969:  # ./rb/lib/selenium/webdriver/common/child_process.rb:57:in `start'
    970:  # ./rb/lib/selenium/server.rb:204:in `start'
    971:  # //?/D:/a/selenium/selenium/rb/spec/integration/selenium/webdriver/spec_helper.rb:40:in `block (2 levels) in <top (required)>'
    972:  Finished in 0.04551 seconds (files took 0.62782 seconds to load)
    973:  0 examples, 0 failures, 1 error occurred outside of examples
    974:  ================================================================================
    975:  ==================== Test output for //rb/spec/integration/selenium/webdriver:listener-edge-remote:
    976:  2024-04-24 16:54:15 INFO Selenium Server Location: D:/_bazel/execroot/_main/bazel-out/x64_windows-fastbuild/bin/rb/spec/integration/selenium/webdriver/listener-edge-remote.cmd.runfiles/_main/java/src/org/openqa/selenium/grid/selenium_server_deploy.jar
    977:  An error occurred in a `before(:suite)` hook.
    978:  Failure/Error: @pid = Process.spawn(*@command, options)
    979:  Errno::EACCES:
    980:  Permission denied - java
    981:  # ./rb/lib/selenium/webdriver/common/child_process.rb:57:in `spawn'
    982:  # ./rb/lib/selenium/webdriver/common/child_process.rb:57:in `start'
    983:  # ./rb/lib/selenium/server.rb:204:in `start'
    984:  # //?/D:/a/selenium/selenium/rb/spec/integration/selenium/webdriver/spec_helper.rb:40:in `block (2 levels) in <top (required)>'
    985:  Finished in 0.04397 seconds (files took 0.6105 seconds to load)
    986:  0 examples, 0 failures, 1 error occurred outside of examples
    987:  ================================================================================
    988:  ==================== Test output for //rb/spec/integration/selenium/webdriver:listener-edge-remote:
    989:  2024-04-24 16:54:42 INFO Selenium Server Location: D:/_bazel/execroot/_main/bazel-out/x64_windows-fastbuild/bin/rb/spec/integration/selenium/webdriver/listener-edge-remote.cmd.runfiles/_main/java/src/org/openqa/selenium/grid/selenium_server_deploy.jar
    990:  An error occurred in a `before(:suite)` hook.
    991:  Failure/Error: @pid = Process.spawn(*@command, options)
    992:  Errno::EACCES:
    993:  Permission denied - java
    994:  # ./rb/lib/selenium/webdriver/common/child_process.rb:57:in `spawn'
    995:  # ./rb/lib/selenium/webdriver/common/child_process.rb:57:in `start'
    996:  # ./rb/lib/selenium/server.rb:204:in `start'
    997:  # //?/D:/a/selenium/selenium/rb/spec/integration/selenium/webdriver/spec_helper.rb:40:in `block (2 levels) in <top (required)>'
    998:  Finished in 0.04365 seconds (files took 0.72773 seconds to load)
    999:  0 examples, 0 failures, 1 error occurred outside of examples
    1000:  ================================================================================
    1001:  �[32m[3,090 / 3,111]�[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)
    1002:  �[32m[3,090 / 3,111]�[0m 2 / 27 tests, �[31m�[1m2 failed�[0m;�[0m Testing //rb/spec/integration/selenium/webdriver:timeout-edge-remote; 59s local, disk-cache ... (4 actions, 2 running)
    1003:  �[32m[3,090 / 3,111]�[0m 2 / 27 tests, �[31m�[1m2 failed�[0m;�[0m Testing //rb/spec/integration/selenium/webdriver:timeout-edge-remote; 62s local, disk-cache ... (4 actions, 2 running)
    1004:  �[31m�[1mFAIL: �[0m//rb/spec/integration/selenium/webdriver:timeout-edge-remote (see D:/_bazel/execroot/_main/bazel-out/x64_windows-fastbuild/testlogs/rb/spec/integration/selenium/webdriver/timeout-edge-remote/test.log)
    1005:  ==================== Test output for //rb/spec/integration/selenium/webdriver:timeout-edge-remote:
    1006:  2024-04-24 16:53:55 INFO Selenium Server Location: D:/_bazel/execroot/_main/bazel-out/x64_windows-fastbuild/bin/rb/spec/integration/selenium/webdriver/timeout-edge-remote.cmd.runfiles/_main/java/src/org/openqa/selenium/grid/selenium_server_deploy.jar
    1007:  �[31m�[1mFAILED: �[0m//rb/spec/integration/selenium/webdriver:timeout-edge-remote (Summary)
    1008:  D:/_bazel/execroot/_main/bazel-out/x64_windows-fastbuild/testlogs/rb/spec/integration/selenium/webdriver/timeout-edge-remote/test.log
    1009:  D:/_bazel/execroot/_main/bazel-out/x64_windows-fastbuild/testlogs/rb/spec/integration/selenium/webdriver/timeout-edge-remote/test_attempts/attempt_1.log
    1010:  D:/_bazel/execroot/_main/bazel-out/x64_windows-fastbuild/testlogs/rb/spec/integration/selenium/webdriver/timeout-edge-remote/test_attempts/attempt_2.log
    1011:  �[32mINFO: �[0mFrom Testing //rb/spec/integration/selenium/webdriver:timeout-edge-remote:
    1012:  An error occurred in a `before(:suite)` hook.
    1013:  Failure/Error: @pid = Process.spawn(*@command, options)
    1014:  Errno::EACCES:
    1015:  Permission denied - java
    1016:  # ./rb/lib/selenium/webdriver/common/child_process.rb:57:in `spawn'
    1017:  # ./rb/lib/selenium/webdriver/common/child_process.rb:57:in `start'
    1018:  # ./rb/lib/selenium/server.rb:204:in `start'
    1019:  # //?/D:/a/selenium/selenium/rb/spec/integration/selenium/webdriver/spec_helper.rb:40:in `block (2 levels) in <top (required)>'
    1020:  Finished in 0.04349 seconds (files took 0.60843 seconds to load)
    1021:  0 examples, 0 failures, 1 error occurred outside of examples
    1022:  ================================================================================
    1023:  ==================== Test output for //rb/spec/integration/selenium/webdriver:timeout-edge-remote:
    1024:  2024-04-24 16:54:22 INFO Selenium Server Location: D:/_bazel/execroot/_main/bazel-out/x64_windows-fastbuild/bin/rb/spec/integration/selenium/webdriver/timeout-edge-remote.cmd.runfiles/_main/java/src/org/openqa/selenium/grid/selenium_server_deploy.jar
    1025:  An error occurred in a `before(:suite)` hook.
    1026:  Failure/Error: @pid = Process.spawn(*@command, options)
    1027:  Errno::EACCES:
    1028:  Permission denied - java
    1029:  # ./rb/lib/selenium/webdriver/common/child_process.rb:57:in `spawn'
    1030:  # ./rb/lib/selenium/webdriver/common/child_process.rb:57:in `start'
    1031:  # ./rb/lib/selenium/server.rb:204:in `start'
    1032:  # //?/D:/a/selenium/selenium/rb/spec/integration/selenium/webdriver/spec_helper.rb:40:in `block (2 levels) in <top (required)>'
    1033:  Finished in 0.04759 seconds (files took 0.59717 seconds to load)
    1034:  0 examples, 0 failures, 1 error occurred outside of examples
    1035:  ================================================================================
    1036:  ==================== Test output for //rb/spec/integration/selenium/webdriver:timeout-edge-remote:
    1037:  2024-04-24 16:54:50 INFO Selenium Server Location: D:/_bazel/execroot/_main/bazel-out/x64_windows-fastbuild/bin/rb/spec/integration/selenium/webdriver/timeout-edge-remote.cmd.runfiles/_main/java/src/org/openqa/selenium/grid/selenium_server_deploy.jar
    1038:  An error occurred in a `before(:suite)` hook.
    1039:  Failure/Error: @pid = Process.spawn(*@command, options)
    1040:  Errno::EACCES:
    1041:  Permission denied - java
    1042:  # ./rb/lib/selenium/webdriver/common/child_process.rb:57:in `spawn'
    1043:  # ./rb/lib/selenium/webdriver/common/child_process.rb:57:in `start'
    1044:  # ./rb/lib/selenium/server.rb:204:in `start'
    1045:  # //?/D:/a/selenium/selenium/rb/spec/integration/selenium/webdriver/spec_helper.rb:40:in `block (2 levels) in <top (required)>'
    1046:  Finished in 0.07153 seconds (files took 0.72652 seconds to load)
    1047:  0 examples, 0 failures, 1 error occurred outside of examples
    1048:  ================================================================================
    1049:  �[32m[3,091 / 3,111]�[0m 3 / 27 tests, �[31m�[1m3 failed�[0m;�[0m Testing //rb/spec/integration/selenium/webdriver:action_builder-edge-remote; 56s local, disk-cache ... (4 actions, 1 running)
    1050:  �[32m[3,091 / 3,111]�[0m 3 / 27 tests, �[31m�[1m3 failed�[0m;�[0m Testing //rb/spec/integration/selenium/webdriver:action_builder-edge-remote; 60s local, disk-cache ... (4 actions, 1 running)
    1051:  �[32m[3,091 / 3,111]�[0m 3 / 27 tests, �[31m�[1m3 failed�[0m;�[0m Testing //rb/spec/integration/selenium/webdriver:action_builder-edge-remote; 62s local, disk-cache ... (4 actions, 2 running)
    1052:  �[31m�[1mFAIL: �[0m//rb/spec/integration/selenium/webdriver:action_builder-edge-remote (see D:/_bazel/execroot/_main/bazel-out/x64_windows-fastbuild/testlogs/rb/spec/integration/selenium/webdriver/action_builder-edge-remote/test.log)
    1053:  ==================== Test output for //rb/spec/integration/selenium/webdriver:action_builder-edge-remote:
    1054:  2024-04-24 16:54:01 INFO Selenium Server Location: D:/_bazel/execroot/_main/bazel-out/x64_windows-fastbuild/bin/rb/spec/integration/selenium/webdriver/action_builder-edge-remote.cmd.runfiles/_main/java/src/org/openqa/selenium/grid/selenium_server_deploy.jar
    1055:  �[31m�[1mFAILED: �[0m//rb/spec/integration/selenium/webdriver:action_builder-edge-remote (Summary)
    1056:  D:/_bazel/execroot/_main/bazel-out/x64_windows-fastbuild/testlogs/rb/spec/integration/selenium/webdriver/action_builder-edge-remote/test.log
    1057:  An error occurred in a `before(:suite)` hook.
    1058:  D:/_bazel/execroot/_main/bazel-out/x64_windows-fastbuild/testlogs/rb/spec/integration/selenium/webdriver/action_builder-edge-remote/test_attempts/attempt_1.log
    1059:  Failure/Error: @pid = Process.spawn(*@command, options)
    ...
    
    1061:  �[32mINFO: �[0mFrom Testing //rb/spec/integration/selenium/webdriver:action_builder-edge-remote:
    1062:  Errno::EACCES:
    1063:  Permission denied - java
    1064:  # ./rb/lib/selenium/webdriver/common/child_process.rb:57:in `spawn'
    1065:  # ./rb/lib/selenium/webdriver/common/child_process.rb:57:in `start'
    1066:  # ./rb/lib/selenium/server.rb:204:in `start'
    1067:  # //?/D:/a/selenium/selenium/rb/spec/integration/selenium/webdriver/spec_helper.rb:40:in `block (2 levels) in <top (required)>'
    1068:  Finished in 0.04481 seconds (files took 0.58048 seconds to load)
    1069:  0 examples, 0 failures, 1 error occurred outside of examples
    1070:  ================================================================================
    1071:  ==================== Test output for //rb/spec/integration/selenium/webdriver:action_builder-edge-remote:
    1072:  2024-04-24 16:54:29 INFO Selenium Server Location: D:/_bazel/execroot/_main/bazel-out/x64_windows-fastbuild/bin/rb/spec/integration/selenium/webdriver/action_builder-edge-remote.cmd.runfiles/_main/java/src/org/openqa/selenium/grid/selenium_server_deploy.jar
    1073:  An error occurred in a `before(:suite)` hook.
    1074:  Failure/Error: @pid = Process.spawn(*@command, options)
    1075:  Errno::EACCES:
    1076:  Permission denied - java
    1077:  # ./rb/lib/selenium/webdriver/common/child_process.rb:57:in `spawn'
    1078:  # ./rb/lib/selenium/webdriver/common/child_process.rb:57:in `start'
    1079:  # ./rb/lib/selenium/server.rb:204:in `start'
    1080:  # //?/D:/a/selenium/selenium/rb/spec/integration/selenium/webdriver/spec_helper.rb:40:in `block (2 levels) in <top (required)>'
    1081:  Finished in 0.04698 seconds (files took 0.65055 seconds to load)
    1082:  0 examples, 0 failures, 1 error occurred outside of examples
    1083:  ================================================================================
    1084:  ==================== Test output for //rb/spec/integration/selenium/webdriver:action_builder-edge-remote:
    1085:  2024-04-24 16:54:57 INFO Selenium Server Location: D:/_bazel/execroot/_main/bazel-out/x64_windows-fastbuild/bin/rb/spec/integration/selenium/webdriver/action_builder-edge-remote.cmd.runfiles/_main/java/src/org/openqa/selenium/grid/selenium_server_deploy.jar
    1086:  An error occurred in a `before(:suite)` hook.
    1087:  Failure/Error: @pid = Process.spawn(*@command, options)
    1088:  Errno::EACCES:
    1089:  Permission denied - java
    1090:  # ./rb/lib/selenium/webdriver/common/child_process.rb:57:in `spawn'
    1091:  # ./rb/lib/selenium/webdriver/common/child_process.rb:57:in `start'
    1092:  # ./rb/lib/selenium/server.rb:204:in `start'
    1093:  # //?/D:/a/selenium/selenium/rb/spec/integration/selenium/webdriver/spec_helper.rb:40:in `block (2 levels) in <top (required)>'
    1094:  Finished in 0.06288 seconds (files took 0.88109 seconds to load)
    1095:  0 examples, 0 failures, 1 error occurred outside of examples
    1096:  ================================================================================
    1097:  �[32m[3,092 / 3,111]�[0m 4 / 27 tests, �[31m�[1m4 failed�[0m;�[0m Testing //rb/spec/integration/selenium/webdriver/edge:options-edge-remote; 7s disk-cache ... (4 actions, 1 running)
    1098:  �[32m[3,092 / 3,111]�[0m 4 / 27 tests, �[31m�[1m4 failed�[0m;�[0m [Sched] Testing //rb/spec/integration/selenium/webdriver/edge:service-edge-remote; 7s ... (4 actions, 1 running)
    1099:  �[32m[3,092 / 3,111]�[0m 4 / 27 tests, �[31m�[1m4 failed�[0m;�[0m Testing //rb/spec/integration/selenium/webdriver:takes_screenshot-edge-remote; 7s local, disk-cache ... (4 actions, 2 running)
    1100:  �[31m�[1mFAIL: �[0m//rb/spec/integration/selenium/webdriver:takes_screenshot-edge-remote (see D:/_bazel/execroot/_main/bazel-out/x64_windows-fastbuild/testlogs/rb/spec/integration/selenium/webdriver/takes_screenshot-edge-remote/test_attempts/attempt_1.log)
    1101:  �[32m[3,092 / 3,111]�[0m 4 / 27 tests, �[31m�[1m4 failed�[0m;�[0m Testing //rb/spec/integration/selenium/webdriver:takes_screenshot-edge-remote; 8s local, disk-cache ... (4 actions, 2 running)
    1102:  �[32m[3,092 / 3,111]�[0m 4 / 27 tests, �[31m�[1m4 failed�[0m;�[0m Testing //rb/spec/integration/selenium/webdriver:takes_screenshot-edge-remote; 12s local, disk-cache ... (4 actions, 2 running)
    1103:  �[32m[3,092 / 3,111]�[0m 4 / 27 tests, �[31m�[1m4 failed�[0m;�[0m Testing //rb/spec/integration/selenium/webdriver:takes_screenshot-edge-remote; 13s local, disk-cache ... (4 actions, 2 running)
    1104:  �[32m[3,092 / 3,111]�[0m 4 / 27 tests, �[31m�[1m4 failed�[0m;�[0m Testing //rb/spec/integration/selenium/webdriver:takes_screenshot-edge-remote; 14s local, disk-cache ... (4 actions, 3 running)
    1105:  �[31m�[1mFAIL: �[0m//rb/spec/integration/selenium/webdriver/edge:service-edge-remote (see D:/_bazel/execroot/_main/bazel-out/x64_windows-fastbuild/testlogs/rb/spec/integration/selenium/webdriver/edge/service-edge-remote/test_attempts/attempt_1.log)
    1106:  �[32m[3,092 / 3,111]�[0m 4 / 27 tests, �[31m�[1m4 failed�[0m;�[0m Testing //rb/spec/integration/selenium/webdriver:takes_screenshot-edge-remote; 16s local, disk-cache ... (4 actions, 3 running)
    1107:  �[32m[3,092 / 3,111]�[0m 4 / 27 tests, �[31m�[1m4 failed�[0m;�[0m Testing //rb/spec/integration/selenium/webdriver:takes_screenshot-edge-remote; 21s local, disk-cache ... (4 actions, 3 running)
    1108:  �[31m�[1mFAIL: �[0m//rb/spec/integration/selenium/webdriver/edge:options-edge-remote (see D:/_bazel/execroot/_main/bazel-out/x64_windows-fastbuild/testlogs/rb/spec/integration/selenium/webdriver/edge/options-edge-remote/test_attempts/attempt_1.log)
    1109:  �[32m[3,092 / 3,111]�[0m 4 / 27 tests, �[31m�[1m4 failed�[0m;�[0m Testing //rb/spec/integration/selenium/webdriver:takes_screenshot-edge-remote; 23s local, disk-cache ... (4 actions, 3 running)
    1110:  �[32m[3,092 / 3,111]�[0m 4 / 27 tests, �[31m�[1m4 failed�[0m;�[0m Testing //rb/spec/integration/selenium/webdriver:takes_screenshot-edge-remote; 28s local, disk-cache ... (4 actions running)
    1111:  �[31m�[1mFAIL: �[0m//rb/spec/integration/selenium/webdriver:takes_screenshot-edge-remote (see D:/_bazel/execroot/_main/bazel-out/x64_windows-fastbuild/testlogs/rb/spec/integration/selenium/webdriver/takes_screenshot-edge-remote/test_attempts/attempt_2.log)
    1112:  �[32m[3,092 / 3,111]�[0m 4 / 27 tests, �[31m�[1m4 failed�[0m;�[0m Testing //rb/spec/integration/selenium/webdriver:takes_screenshot-edge-remote; 30s local, disk-cache ... (4 actions running)
    1113:  �[32m[3,092 / 3,111]�[0m 4 / 27 tests, �[31m�[1m4 failed�[0m;�[0m Testing //rb/spec/integration/selenium/webdriver:takes_screenshot-edge-remote; 35s local, disk-cache ... (4 actions running)
    1114:  �[31m�[1mFAIL: �[0m//rb/spec/integration/selenium/webdriver/remote:element-edge-remote (see D:/_bazel/execroot/_main/bazel-out/x64_windows-fastbuild/testlogs/rb/spec/integration/selenium/webdriver/remote/element-edge-remote/test_attempts/attempt_1.log)
    1115:  �[32m[3,092 / 3,111]�[0m 4 / 27 tests, �[31m�[1m4 failed�[0m;�[0m Testing //rb/spec/integration/selenium/webdriver:takes_screenshot-edge-remote; 37s local, disk-cache ... (4 actions running)
    1116:  �[32m[3,092 / 3,111]�[0m 4 / 27 tests, �[31m�[1m4 failed�[0m;�[0m Testing //rb/spec/integration/selenium/webdriver:takes_screenshot-edge-remote; 42s local, disk-cache ... (4 actions running)
    1117:  �[31m�[1mFAIL: �[0m//rb/spec/integration/selenium/webdriver/edge:service-edge-remote (see D:/_bazel/execroot/_main/bazel-out/x64_windows-fastbuild/testlogs/rb/spec/integration/selenium/webdriver/edge/service-edge-remote/test_attempts/attempt_2.log)
    1118:  �[32m[3,092 / 3,111]�[0m 4 / 27 tests, �[31m�[1m4 failed�[0m;�[0m Testing //rb/spec/integration/selenium/webdriver:takes_screenshot-edge-remote; 43s local, disk-cache ... (4 actions running)
    1119:  �[32m[3,092 / 3,111]�[0m 4 / 27 tests, �[31m�[1m4 failed�[0m;�[0m Testing //rb/spec/integration/selenium/webdriver:takes_screenshot-edge-remote; 49s local, disk-cache ... (4 actions running)
    1120:  �[31m�[1mFAIL: �[0m//rb/spec/integration/selenium/webdriver/edge:options-edge-remote (see D:/_bazel/execroot/_main/bazel-out/x64_windows-fastbuild/testlogs/rb/spec/integration/selenium/webdriver/edge/options-edge-remote/test_attempts/attempt_2.log)
    1121:  �[32m[3,092 / 3,111]�[0m 4 / 27 tests, �[31m�[1m4 failed�[0m;�[0m Testing //rb/spec/integration/selenium/webdriver:takes_screenshot-edge-remote; 50s local, disk-cache ... (4 actions running)
    1122:  �[32m[3,092 / 3,111]�[0m 4 / 27 tests, �[31m�[1m4 failed�[0m;�[0m Testing //rb/spec/integration/selenium/webdriver:takes_screenshot-edge-remote; 55s local, disk-cache ... (4 actions running)
    1123:  �[31m�[1mFAIL: �[0m//rb/spec/integration/selenium/webdriver:takes_screenshot-edge-remote (see D:/_bazel/execroot/_main/bazel-out/x64_windows-fastbuild/testlogs/rb/spec/integration/selenium/webdriver/takes_screenshot-edge-remote/test.log)
    1124:  ==================== Test output for //rb/spec/integration/selenium/webdriver:takes_screenshot-edge-remote:
    1125:  2024-04-24 16:55:04 INFO Selenium Server Location: D:/_bazel/execroot/_main/bazel-out/x64_windows-fastbuild/bin/rb/spec/integration/selenium/webdriver/takes_screenshot-edge-remote.cmd.runfiles/_main/java/src/org/openqa/selenium/grid/selenium_server_deploy.jar
    1126:  �[31m�[1mFAILED: �[0m//rb/spec/integration/selenium/webdriver:takes_screenshot-edge-remote (Summary)
    1127:  D:/_bazel/execroot/_main/bazel-out/x64_windows-fastbuild/testlogs/rb/spec/integration/selenium/webdriver/takes_screenshot-edge-remote/test.log
    1128:  D:/_bazel/execroot/_main/bazel-out/x64_windows-fastbuild/testlogs/rb/spec/integration/selenium/webdriver/takes_screenshot-edge-remote/test_attempts/attempt_1.log
    1129:  D:/_bazel/execroot/_main/bazel-out/x64_windows-fastbuild/testlogs/rb/spec/integration/selenium/webdriver/takes_screenshot-edge-remote/test_attempts/attempt_2.log
    1130:  �[32mINFO: �[0mFrom Testing //rb/spec/integration/selenium/webdriver:takes_screenshot-edge-remote:
    1131:  An error occurred in a `before(:suite)` hook.
    1132:  Failure/Error: @pid = Process.spawn(*@command, options)
    1133:  Errno::EACCES:
    1134:  Permission denied - java
    1135:  # ./rb/lib/selenium/webdriver/common/child_process.rb:57:in `spawn'
    1136:  # ./rb/lib/selenium/webdriver/common/child_process.rb:57:in `start'
    1137:  # ./rb/lib/selenium/server.rb:204:in `start'
    1138:  # //?/D:/a/selenium/selenium/rb/spec/integration/selenium/webdriver/spec_helper.rb:40:in `block (2 levels) in <top (required)>'
    1139:  Finished in 0.05868 seconds (files took 0.86681 seconds to load)
    1140:  0 examples, 0 failures, 1 error occurred outside of examples
    1141:  ================================================================================
    1142:  ==================== Test output for //rb/spec/integration/selenium/webdriver:takes_screenshot-edge-remote:
    1143:  2024-04-24 16:55:25 INFO Selenium Server Location: D:/_bazel/execroot/_main/bazel-out/x64_windows-fastbuild/bin/rb/spec/integration/selenium/webdriver/takes_screenshot-edge-remote.cmd.runfiles/_main/java/src/org/openqa/selenium/grid/selenium_server_deploy.jar
    1144:  An error occurred in a `before(:suite)` hook.
    1145:  Failure/Error: @pid = Process.spawn(*@command, options)
    1146:  Errno::EACCES:
    1147:  Permission denied - java
    1148:  # ./rb/lib/selenium/webdriver/common/child_process.rb:57:in `spawn'
    1149:  # ./rb/lib/selenium/webdriver/common/child_process.rb:57:in `start'
    1150:  # ./rb/lib/selenium/server.rb:204:in `start'
    1151:  # //?/D:/a/selenium/selenium/rb/spec/integration/selenium/webdriver/spec_helper.rb:40:in `block (2 levels) in <top (required)>'
    1152:  Finished in 0.04551 seconds (files took 0.59172 seconds to load)
    1153:  0 examples, 0 failures, 1 error occurred outside of examples
    1154:  ================================================================================
    1155:  ==================== Test output for //rb/spec/integration/selenium/webdriver:takes_screenshot-edge-remote:
    1156:  2024-04-24 16:55:53 INFO Selenium Server Location: D:/_bazel/execroot/_main/bazel-out/x64_windows-fastbuild/bin/rb/spec/integration/selenium/webdriver/takes_screenshot-edge-remote.cmd.runfiles/_main/java/src/org/openqa/selenium/grid/selenium_server_deploy.jar
    1157:  An error occurred in a `before(:suite)` hook.
    1158:  Failure/Error: @pid = Process.spawn(*@command, options)
    1159:  Errno::EACCES:
    1160:  Permission denied - java
    1161:  # ./rb/lib/selenium/webdriver/common/child_process.rb:57:in `spawn'
    1162:  # ./rb/lib/selenium/webdriver/common/child_process.rb:57:in `start'
    1163:  # ./rb/lib/selenium/server.rb:204:in `start'
    1164:  # //?/D:/a/selenium/selenium/rb/spec/integration/selenium/webdriver/spec_helper.rb:40:in `block (2 levels) in <top (required)>'
    1165:  Finished in 0.04567 seconds (files took 0.58721 seconds to load)
    1166:  0 examples, 0 failures, 1 error occurred outside of examples
    1167:  ================================================================================
    1168:  �[32m[3,093 / 3,111]�[0m 5 / 27 tests, �[31m�[1m5 failed�[0m;�[0m Testing //rb/spec/integration/selenium/webdriver/edge:service-edge-remote; 49s local, disk-cache ... (4 actions, 3 running)
    1169:  �[32m[3,093 / 3,111]�[0m 5 / 27 tests, �[31m�[1m5 failed�[0m;�[0m Testing //rb/spec/integration/selenium/webdriver/edge:service-edge-remote; 55s local, disk-cache ... (4 actions, 3 running)
    1170:  �[31m�[1mFAIL: �[0m//rb/spec/integration/selenium/webdriver/remote:element-edge-remote (see D:/_bazel/execroot/_main/bazel-out/x64_windows-fastbuild/testlogs/rb/spec/integration/selenium/webdriver/remote/element-edge-remote/test_attempts/attempt_2.log)
    1171:  �[32m[3,093 / 3,111]�[0m 5 / 27 tests, �[31m�[1m5 failed�[0m;�[0m Testing //rb/spec/integration/selenium/webdriver/edge:service-edge-remote; 56s local, disk-cache ... (4 actions, 3 running)
    1172:  �[32m[3,093 / 3,111]�[0m 5 / 27 tests, �[31m�[1m5 failed�[0m;�[0m Testing //rb/spec/integration/selenium/webdriver/edge:service-edge-remote; 59s local, disk-cache ... (4 actions, 3 running)
    1173:  �[32m[3,093 / 3,111]�[0m 5 / 27 tests, �[31m�[1m5 failed�[0m;�[0m Testing //rb/spec/integration/selenium/webdriver/edge:service-edge-remote; 60s local, disk-cache ... (4 actions, 3 running)
    1174:  �[32m[3,093 / 3,111]�[0m 5 / 27 tests, �[31m�[1m5 failed�[0m;�[0m Testing //rb/spec/integration/selenium/webdriver/edge:service-edge-remote; 62s local, disk-cache ... (4 actions, 3 running)
    1175:  �[31m�[1mFAIL: �[0m//rb/spec/integration/selenium/webdriver/edge:service-edge-remote (see D:/_bazel/execroot/_main/bazel-out/x64_windows-fastbuild/testlogs/rb/spec/integration/selenium/webdriver/edge/service-edge-remote/test.log)
    1176:  �[31m�[1mFAILED: �[0m//rb/spec/integration/selenium/webdriver/edge:service-edge-remote (Summary)
    1177:  D:/_bazel/execroot/_main/bazel-out/x64_windows-fastbuild/testlogs/rb/spec/integration/selenium/webdriver/edge/service-edge-remote/test.log
    1178:  ==================== Test output for //rb/spec/integration/selenium/webdriver/edge:service-edge-remote:
    1179:  D:/_bazel/execroot/_main/bazel-out/x64_windows-fastbuild/testlogs/rb/spec/integration/selenium/webdriver/edge/service-edge-remote/test_attempts/attempt_1.log
    1180:  2024-04-24 16:55:12 INFO Selenium Server Location: D:/_bazel/execroot/_main/bazel-out/x64_windows-fastbuild/bin/rb/spec/integration/selenium/webdriver/edge/service-edge-remote.cmd.runfiles/_main/java/src/org/openqa/selenium/grid/selenium_server_deploy.jar
    1181:  An error occurred in a `before(:suite)` hook.
    1182:  Failure/Error: @pid = Process.spawn(*@command, options)
    1183:  Errno::EACCES:
    1184:  Permission denied - java
    1185:  # ./rb/lib/selenium/webdriver/common/child_process.rb:57:in `spawn'
    1186:  # ./rb/lib/selenium/webdriver/common/child_process.rb:57:in `start'
    1187:  # ./rb/lib/selenium/server.rb:204:in `start'
    1188:  # //?/D:/a/selenium/selenium/rb/spec/integration/selenium/webdriver/spec_helper.rb:40:in `block (2 levels) in <top (required)>'
    1189:  Finished in 0.05311 seconds (files took 0.76496 seconds to load)
    1190:  0 examples, 0 failures, 1 error occurred outside of examples
    1191:  ================================================================================
    1192:  ==================== Test output for //rb/spec/integration/selenium/webdriver/edge:service-edge-remote:
    1193:  2024-04-24 16:55:39 INFO Selenium Server Location: D:/_bazel/execroot/_main/bazel-out/x64_windows-fastbuild/bin/rb/spec/integration/selenium/webdriver/edge/service-edge-remote.cmd.runfiles/_main/java/src/org/openqa/selenium/grid/selenium_server_deploy.jar
    1194:  An error occurred in a `before(:suite)` hook.
    1195:  Failure/Error: @pid = Process.spawn(*@command, options)
    1196:  Errno::EACCES:
    1197:  Permission denied - java
    1198:  # ./rb/lib/selenium/webdriver/common/child_process.rb:57:in `spawn'
    1199:  # ./rb/lib/selenium/webdriver/common/child_process.rb:57:in `start'
    1200:  # ./rb/lib/selenium/server.rb:204:in `start'
    1201:  # //?/D:/a/selenium/selenium/rb/spec/integration/selenium/webdriver/spec_helper.rb:40:in `block (2 levels) in <top (required)>'
    1202:  Finished in 0.04671 seconds (files took 0.62426 seconds to load)
    1203:  0 examples, 0 failures, 1 error occurred outside of examples
    1204:  ================================================================================
    1205:  ==================== Test output for //rb/spec/integration/selenium/webdriver/edge:service-edge-remote:
    1206:  2024-04-24 16:56:07 INFO Selenium Server Location: D:/_bazel/execroot/_main/bazel-out/x64_windows-fastbuild/bin/rb/spec/integration/selenium/webdriver/edge/service-edge-remote.cmd.runfiles/_main/java/src/org/openqa/selenium/grid/selenium_server_deploy.jar
    1207:  An error occurred in a `before(:suite)` hook.
    1208:  Failure/Error: @pid = Process.spawn(*@command, options)
    1209:  Errno::EACCES:
    1210:  Permission denied - java
    1211:  # ./rb/lib/selenium/webdriver/common/child_process.rb:57:in `spawn'
    1212:  # ./rb/lib/selenium/webdriver/common/child_process.rb:57:in `start'
    1213:  # ./rb/lib/selenium/server.rb:204:in `start'
    1214:  # //?/D:/a/selenium/selenium/rb/spec/integration/selenium/webdriver/spec_helper.rb:40:in `block (2 levels) in <top (required)>'
    1215:  Finished in 0.05578 seconds (files took 0.66293 seconds to load)
    1216:  0 examples, 0 failures, 1 error occurred outside of examples
    1217:  ================================================================================
    1218:  D:/_bazel/execroot/_main/bazel-out/x64_windows-fastbuild/testlogs/rb/spec/integration/selenium/webdriver/edge/service-edge-remote/test_attempts/attempt_2.log
    1219:  �[32mINFO: �[0mFrom Testing //rb/spec/integration/selenium/webdriver/edge:service-edge-remote:
    1220:  �[32m[3,094 / 3,111]�[0m 6 / 27 tests, �[31m�[1m6 failed�[0m;�[0m Testing //rb/spec/integration/selenium/webdriver/edge:options-edge-remote; 56s local, disk-cache ... (4 actions, 2 running)
    1221:  �[32m[3,094 / 3,111]�[0m 6 / 27 tests, �[31m�[1m6 failed�[0m;�[0m Testing //rb/spec/integration/selenium/webdriver/edge:options-edge-remote; 62s local, disk-cache ... (4 actions, 2 running)
    1222:  �[31m�[1mFAIL: �[0m//rb/spec/integration/selenium/webdriver/edge:options-edge-remote (see D:/_bazel/execroot/_main/bazel-out/x64_windows-fastbuild/testlogs/rb/spec/integration/selenium/webdriver/edge/options-edge-remote/test.log)
    1223:  ==================== Test output for //rb/spec/integration/selenium/webdriver/edge:options-edge-remote:
    1224:  2024-04-24 16:55:19 INFO Selenium Server Location: D:/_bazel/execroot/_main/bazel-out/x64_windows-fastbuild/bin/rb/spec/integration/selenium/webdriver/edge/options-edge-remote.cmd.runfiles/_main/java/src/org/openqa/selenium/grid/selenium_server_deploy.jar
    1225:  �[31m�[1mFAILED: �[0m//rb/spec/integration/selenium/webdriver/edge:options-edge-remote (Summary)
    1226:  D:/_bazel/execroot/_main/bazel-out/x64_windows-fastbuild/testlogs/rb/spec/integration/selenium/webdriver/edge/options-edge-remote/test.log
    1227:  D:/_bazel/execroot/_main/bazel-out/x64_windows-fastbuild/testlogs/rb/spec/integration/selenium/webdriver/edge/options-edge-remote/test_attempts/attempt_1.log
    1228:  D:/_bazel/execroot/_main/bazel-out/x64_windows-fastbuild/testlogs/rb/spec/integration/selenium/webdriver/edge/options-edge-remote/test_attempts/attempt_2.log
    1229:  �[32mINFO: �[0mFrom Testing //rb/spec/integration/selenium/webdriver/edge:options-edge-remote:
    1230:  An error occurred in a `before(:suite)` hook.
    1231:  Failure/Error: @pid = Process.spawn(*@command, options)
    1232:  Errno::EACCES:
    1233:  Permission denied - java
    1234:  # ./rb/lib/selenium/webdriver/common/child_process.rb:57:in `spawn'
    1235:  # ./rb/lib/selenium/webdriver/common/child_process.rb:57:in `start'
    1236:  # ./rb/lib/selenium/server.rb:204:in `start'
    1237:  # //?/D:/a/selenium/selenium/rb/spec/integration/selenium/webdriver/spec_helper.rb:40:in `block (2 levels) in <top (required)>'
    1238:  Finished in 0.04504 seconds (files took 0.59943 seconds to load)
    1239:  0 examples, 0 failures, 1 error occurred outside of examples
    1240:  ================================================================================
    1241:  ==================== Test output for //rb/spec/integration/selenium/webdriver/edge:options-edge-remote:
    1242:  2024-04-24 16:55:46 INFO Selenium Server Location: D:/_bazel/execroot/_main/bazel-out/x64_windows-fastbuild/bin/rb/spec/integration/selenium/webdriver/edge/options-edge-remote.cmd.runfiles/_main/java/src/org/openqa/selenium/grid/selenium_server_deploy.jar
    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.04457 seconds (files took 0.59686 seconds to load)
    1252:  0 examples, 0 failures, 1 error occurred outside of examples
    1253:  ================================================================================
    1254:  ==================== Test output for //rb/spec/integration/selenium/webdriver/edge:options-edge-remote:
    1255:  2024-04-24 16:56:14 INFO Selenium Server Location: D:/_bazel/execroot/_main/bazel-out/x64_windows-fastbuild/bin/rb/spec/integration/selenium/webdriver/edge/options-edge-remote.cmd.runfiles/_main/java/src/org/openqa/selenium/grid/selenium_server_deploy.jar
    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.05411 seconds (files took 0.63738 seconds to load)
    1265:  0 examples, 0 failures, 1 error occurred outside of examples
    1266:  ================================================================================
    1267:  �[32m[3,095 / 3,111]�[0m 7 / 27 tests, �[31m�[1m7 failed�[0m;�[0m Testing //rb/spec/integration/selenium/webdriver/remote:element-edge-remote; 49s local, disk-cache ... (4 actions, 1 running)
    1268:  �[32m[3,095 / 3,111]�[0m 7 / 27 tests, �[31m�[1m7 failed�[0m;�[0m Testing //rb/spec/integration/selenium/webdriver/remote:element-edge-remote; 53s local, disk-cache ... (4 actions, 1 running)
    1269:  �[32m[3,095 / 3,111]�[0m 7 / 27 tests, �[31m�[1m7 failed�[0m;�[0m Testing //rb/spec/integration/selenium/webdriver/remote:element-edge-remote; 55s local, disk-cache ... (4 actions, 2 running)
    1270:  �[31m�[1mFAIL: �[0m//rb/spec/integration/selenium/webdriver/remote:element-edge-remote (see D:/_bazel/execroot/_main/bazel-out/x64_windows-fastbuild/testlogs/rb/spec/integration/selenium/webdriver/remote/element-edge-remote/test.log)
    1271:  ==================== Test output for //rb/spec/integration/selenium/webdriver/remote:element-edge-remote:
    1272:  2024-04-24 16:55:32 INFO Selenium Server Location: D:/_bazel/execroot/_main/bazel-out/x64_windows-fastbuild/bin/rb/spec/integration/selenium/webdriver/remote/element-edge-remote.cmd.runfiles/_main/java/src/org/openqa/selenium/grid/selenium_server_deploy.jar
    1273:  �[31m�[1mFAILED: �[0m//rb/spec/integration/selenium/webdriver/remote:element-edge-remote (Summary)
    1274:  D:/_bazel/execroot/_main/bazel-out/x64_windows-fastbuild/testlogs/rb/spec/integration/selenium/webdriver/remote/element-edge-remote/test.log
    1275:  An error occurred in a `before(:suite)` hook.
    1276:  D:/_bazel/execroot/_main/bazel-out/x64_windows-fastbuild/testlogs/rb/spec/integration/selenium/webdriver/remote/element-edge-remote/test_attempts/attempt_1.log
    1277:  Failure/Error: @pid = Process.spawn(*@command, options)
    ...
    
    1279:  �[32mINFO: �[0mFrom Testing //rb/spec/integration/selenium/webdriver/remote:element-edge-remote:
    1280:  Errno::EACCES:
    1281:  Permission denied - java
    1282:  # ./rb/lib/selenium/webdriver/common/child_process.rb:57:in `spawn'
    1283:  # ./rb/lib/selenium/webdriver/common/child_process.rb:57:in `start'
    1284:  # ./rb/lib/selenium/server.rb:204:in `start'
    1285:  # //?/D:/a/selenium/selenium/rb/spec/integration/selenium/webdriver/spec_helper.rb:40:in `block (2 levels) in <top (required)>'
    1286:  Finished in 0.04679 seconds (files took 0.64678 seconds to load)
    1287:  0 examples, 0 failures, 1 error occurred outside of examples
    1288:  ================================================================================
    1289:  ==================== Test output for //rb/spec/integration/selenium/webdriver/remote:element-edge-remote:
    1290:  2024-04-24 16:56:00 INFO Selenium Server Location: D:/_bazel/execroot/_main/bazel-out/x64_windows-fastbuild/bin/rb/spec/integration/selenium/webdriver/remote/element-edge-remote.cmd.runfiles/_main/java/src/org/openqa/selenium/grid/selenium_server_deploy.jar
    1291:  An error occurred in a `before(:suite)` hook.
    1292:  Failure/Error: @pid = Process.spawn(*@command, options)
    1293:  Errno::EACCES:
    1294:  Permission denied - java
    1295:  # ./rb/lib/selenium/webdriver/common/child_process.rb:57:in `spawn'
    1296:  # ./rb/lib/selenium/webdriver/common/child_process.rb:57:in `start'
    1297:  # ./rb/lib/selenium/server.rb:204:in `start'
    1298:  # //?/D:/a/selenium/selenium/rb/spec/integration/selenium/webdriver/spec_helper.rb:40:in `block (2 levels) in <top (required)>'
    1299:  Finished in 0.04604 seconds (files took 0.69038 seconds to load)
    1300:  0 examples, 0 failures, 1 error occurred outside of examples
    1301:  ================================================================================
    1302:  ==================== Test output for //rb/spec/integration/selenium/webdriver/remote:element-edge-remote:
    1303:  2024-04-24 16:56:21 INFO Selenium Server Location: D:/_bazel/execroot/_main/bazel-out/x64_windows-fastbuild/bin/rb/spec/integration/selenium/webdriver/remote/element-edge-remote.cmd.runfiles/_main/java/src/org/openqa/selenium/grid/selenium_server_deploy.jar
    1304:  An error occurred in a `before(:suite)` hook.
    1305:  Failure/Error: @pid = Process.spawn(*@command, options)
    1306:  Errno::EACCES:
    1307:  Permission denied - java
    1308:  # ./rb/lib/selenium/webdriver/common/child_process.rb:57:in `spawn'
    1309:  # ./rb/lib/selenium/webdriver/common/child_process.rb:57:in `start'
    1310:  # ./rb/lib/selenium/server.rb:204:in `start'
    1311:  # //?/D:/a/selenium/selenium/rb/spec/integration/selenium/webdriver/spec_helper.rb:40:in `block (2 levels) in <top (required)>'
    1312:  Finished in 0.06052 seconds (files took 0.86834 seconds to load)
    1313:  0 examples, 0 failures, 1 error occurred outside of examples
    1314:  ================================================================================
    1315:  �[32m[3,096 / 3,111]�[0m 8 / 27 tests, �[31m�[1m8 failed�[0m;�[0m Testing //rb/spec/integration/selenium/webdriver:manager-edge-remote; 7s disk-cache ... (4 actions, 1 running)
    1316:  �[32m[3,096 / 3,111]�[0m 8 / 27 tests, �[31m�[1m8 failed�[0m;�[0m [Sched] Testing //rb/spec/integration/selenium/webdriver/remote:driver-edge-remote; 8s ... (4 actions, 1 running)
    1317:  �[32m[3,096 / 3,111]�[0m 8 / 27 tests, �[31m�[1m8 failed�[0m;�[0m Testing //rb/spec/integration/selenium/webdriver:navigation-edge-remote; 7s local, disk-cache ... (4 actions, 2 running)
    1318:  �[31m�[1mFAIL: �[0m//rb/spec/integration/selenium/webdriver:navigation-edge-remote (see D:/_bazel/execroot/_main/bazel-out/x64_windows-fastbuild/testlogs/rb/spec/integration/selenium/webdriver/navigation-edge-remote/test_attempts/attempt_1.log)
    1319:  �[32m[3,096 / 3,111]�[0m 8 / 27 tests, �[31m�[1m8 failed�[0m;�[0m Testing //rb/spec/integration/selenium/webdriver:navigation-edge-remote; 9s local, disk-cache ... (4 actions, 2 running)
    1320:  �[32m[3,096 / 3,111]�[0m 8 / 27 tests, �[31m�[1m8 failed�[0m;�[0m Testing //rb/spec/integration/selenium/webdriver:navigation-edge-remote; 11s local, disk-cache ... (4 actions, 2 running)
    1321:  �[32m[3,096 / 3,111]�[0m 8 / 27 tests, �[31m�[1m8 failed�[0m;�[0m Testing //rb/spec/integration/selenium/webdriver:navigation-edge-remote; 13s local, disk-cache ... (4 actions, 2 running)
    1322:  �[32m[3,096 / 3,111]�[0m 8 / 27 tests, �[31m�[1m8 failed�[0m;�[0m Testing //rb/spec/integration/selenium/webdriver:navigation-edge-remote; 14s local, disk-cache ... (4 actions, 3 running)
    1323:  �[31m�[1mFAIL: �[0m//rb/spec/integration/selenium/webdriver/remote:driver-edge-remote (see D:/_bazel/execroot/_main/bazel-out/x64_windows-fastbuild/testlogs/rb/spec/integration/selenium/webdriver/remote/driver-edge-remote/test_attempts/attempt_1.log)
    1324:  �[32m[3,096 / 3,111]�[0m 8 / 27 tests, �[31m�[1m8 failed�[0m;�[0m Testing //rb/spec/integration/selenium/webdriver:navigation-edge-remote; 16s local, disk-cache ... (4 actions, 3 running)
    1325:  �[32m[3,096 / 3,111]�[0m 8 / 27 tests, �[31m�[1m8 failed�[0m;�[0m Testing //rb/spec/integration/selenium/webdriver:navigation-edge-remote; 21s local, disk-cache ... (4 actions, 3 running)
    1326:  �[31m�[1mFAIL: �[0m//rb/spec/integration/selenium/webdriver:manager-edge-remote (see D:/_bazel/execroot/_main/bazel-out/x64_windows-fastbuild/testlogs/rb/spec/integration/selenium/webdriver/manager-edge-remote/test_attempts/attempt_1.log)
    1327:  �[32m[3,096 / 3,111]�[0m 8 / 27 tests, �[31m�[1m8 failed�[0m;�[0m Testing //rb/spec/integration/selenium/webdriver:navigation-edge-remote; 23s local, disk-cache ... (4 actions, 3 running)
    1328:  �[32m[3,096 / 3,111]�[0m 8 / 27 tests, �[31m�[1m8 failed�[0m;�[0m Testing //rb/spec/integration/selenium/webdriver:navigation-edge-remote; 28s local, disk-cache ... (4 actions running)
    1329:  �[31m�[1mFAIL: �[0m//rb/spec/integration/selenium/webdriver:navigation-edge-remote (see D:/_bazel/execroot/_main/bazel-out/x64_windows-fastbuild/testlogs/rb/spec/integration/selenium/webdriver/navigation-edge-remote/test_attempts/attempt_2.log)
    1330:  �[32m[3,096 / 3,111]�[0m 8 / 27 tests, �[31m�[1m8 failed�[0m;�[0m Testing //rb/spec/integration/selenium/webdriver:navigation-edge-remote; 29s local, disk-cache ... (4 actions running)
    1331:  �[32m[3,096 / 3,111]�[0m 8 / 27 tests, �[31m�[1m8 failed�[0m;�[0m Testing //rb/spec/integration/selenium/webdriver:navigation-edge-remote; 34s local, disk-cache ... (4 actions running)
    1332:  �[31m�[1mFAIL: �[0m//rb/spec/integration/selenium/webdriver:virtual_authenticator-edge-remote (see D:/_bazel/execroot/_main/bazel-out/x64_windows-fastbuild/testlogs/rb/spec/integration/selenium/webdriver/virtual_authenticator-edge-remote/test_attempts/attempt_1.log)
    1333:  �[32m[3,096 / 3,111]�[0m 8 / 27 tests, �[31m�[1m8 failed�[0m;�[0m Testing //rb/spec/integration/selenium/webdriver:navigation-edge-remote; 36s local, disk-cache ... (4 actions running)
    1334:  �[32m[3,096 / 3,111]�[0m 8 / 27 tests, �[31m�[1m8 failed�[0m;�[0m Testing //rb/spec/integration/selenium/webdriver:navigation-edge-remote; 41s local, disk-cache ... (4 actions running)
    1335:  �[31m�[1mFAIL: �[0m//rb/spec/integration/selenium/webdriver/remote:driver-edge-remote (see D:/_bazel/execroot/_main/bazel-out/x64_windows-fastbuild/testlogs/rb/spec/integration/selenium/webdriver/remote/driver-edge-remote/test_attempts/attempt_2.log)
    1336:  �[32m[3,096 / 3,111]�[0m 8 / 27 tests, �[31m�[1m8 failed�[0m;�[0m Testing //rb/spec/integration/selenium/webdriver:navigation-edge-remote; 43s local, disk-cache ... (4 actions running)
    1337:  �[32m[3,096 / 3,111]�[0m 8 / 27 tests, �[31m�[1m8 failed�[0m;�[0m Testing //rb/spec/integration/selenium/webdriver:navigation-edge-remote; 48s local, disk-cache ... (4 actions running)
    1338:  �[31m�[1mFAIL: �[0m//rb/spec/integration/selenium/webdriver:manager-edge-remote (see D:/_bazel/execroot/_main/bazel-out/x64_windows-fastbuild/testlogs/rb/spec/integration/selenium/webdriver/manager-edge-remote/test_attempts/attempt_2.log)
    1339:  �[32m[3,096 / 3,111]�[0m 8 / 27 tests, �[31m�[1m8 failed�[0m;�[0m Testing //rb/spec/integration/selenium/webdriver:navigation-edge-remote; 50s local, disk-cache ... (4 actions running)
    1340:  �[32m[3,096 / 3,111]�[0m 8 / 27 tests, �[31m�[1m8 failed�[0m;�[0m Testing //rb/spec/integration/selenium/webdriver:navigation-edge-remote; 55s local, disk-cache ... (4 actions running)
    1341:  �[31m�[1mFAIL: �[0m//rb/spec/integration/selenium/webdriver:navigation-edge-remote (see D:/_bazel/execroot/_main/bazel-out/x64_windows-fastbuild/testlogs/rb/spec/integration/selenium/webdriver/navigation-edge-remote/test.log)
    1342:  �[31m�[1mFAILED: �[0m//rb/spec/integration/selenium/webdriver:navigation-edge-remote (Summary)
    1343:  D:/_bazel/execroot/_main/bazel-out/x64_windows-fastbuild/testlogs/rb/spec/integration/selenium/webdriver/navigation-edge-remote/test.log
    1344:  ==================== Test output for //rb/spec/integration/selenium/webdriver:navigation-edge-remote:
    1345:  D:/_bazel/execroot/_main/bazel-out/x64_windows-fastbuild/testlogs/rb/spec/integration/selenium/webdriver/navigation-edge-remote/test_attempts/attempt_1.log
    1346:  2024-04-24 16:56:29 INFO Selenium Server Location: D:/_bazel/execroot/_main/bazel-out/x64_windows-fastbuild/bin/rb/spec/integration/selenium/webdriver/navigation-edge-remote.cmd.runfiles/_main/java/src/org/openqa/selenium/grid/selenium_server_deploy.jar
    1347:  D:/_bazel/execroot/_main/bazel-out/x64_windows-fastbuild/testlogs/rb/spec/integration/selenium/webdriver/navigation-edge-remote/test_attempts/attempt_2.log
    1348:  �[32mINFO: �[0mFrom Testing //rb/spec/integration/selenium/webdriver:navigation-edge-remote:
    1349:  An error occurred in a `before(:suite)` hook.
    1350:  Failure/Error: @pid = Process.spawn(*@command, options)
    1351:  Errno::EACCES:
    1352:  Permission denied - java
    1353:  # ./rb/lib/selenium/webdriver/common/child_process.rb:57:in `spawn'
    1354:  # ./rb/lib/selenium/webdriver/common/child_process.rb:57:in `start'
    1355:  # ./rb/lib/selenium/server.rb:204:in `start'
    1356:  # //?/D:/a/selenium/selenium/rb/spec/integration/selenium/webdriver/spec_helper.rb:40:in `block (2 levels) in <top (required)>'
    1357:  Finished in 0.05698 seconds (files took 0.74876 seconds to load)
    1358:  0 examples, 0 failures, 1 error occurred outside of examples
    1359:  ================================================================================
    1360:  ==================== Test output for //rb/spec/integration/selenium/webdriver:navigation-edge-remote:
    1361:  2024-04-24 16:56:49 INFO Selenium Server Location: D:/_bazel/execroot/_main/bazel-out/x64_windows-fastbuild/bin/rb/spec/integration/selenium/webdriver/navigation-edge-remote.cmd.runfiles/_main/java/src/org/openqa/selenium/grid/selenium_server_deploy.jar
    1362:  An error occurred in a `before(:suite)` hook.
    1363:  Failure/Error: @pid = Process.spawn(*@command, options)
    1364:  Errno::EACCES:
    1365:  Permission denied - java
    1366:  # ./rb/lib/selenium/webdriver/common/child_process.rb:57:in `spawn'
    1367:  # ./rb/lib/selenium/webdriver/common/child_process.rb:57:in `start'
    1368:  # ./rb/lib/selenium/server.rb:204:in `start'
    1369:  # //?/D:/a/selenium/selenium/rb/spec/integration/selenium/webdriver/spec_helper.rb:40:in `block (2 levels) in <top (required)>'
    1370:  Finished in 0.04353 seconds (files took 0.57912 seconds to load)
    1371:  0 examples, 0 failures, 1 error occurred outside of examples
    1372:  ================================================================================
    1373:  ==================== Test output for //rb/spec/integration/selenium/webdriver:navigation-edge-remote:
    1374:  2024-04-24 16:57:17 INFO Selenium Server Location: D:/_bazel/execroot/_main/bazel-out/x64_windows-fastbuild/bin/rb/spec/integration/selenium/webdriver/navigation-edge-remote.cmd.runfiles/_main/java/src/org/openqa/selenium/grid/selenium_server_deploy.jar
    1375:  An error occurred in a `before(:suite)` hook.
    1376:  Failure/Error: @pid = Process.spawn(*@command, options)
    1377:  Errno::EACCES:
    1378:  Permission denied - java
    1379:  # ./rb/lib/selenium/webdriver/common/child_process.rb:57:in `spawn'
    1380:  # ./rb/lib/selenium/webdriver/common/child_process.rb:57:in `start'
    1381:  # ./rb/lib/selenium/server.rb:204:in `start'
    1382:  # //?/D:/a/selenium/selenium/rb/spec/integration/selenium/webdriver/spec_helper.rb:40:in `block (2 levels) in <top (required)>'
    1383:  Finished in 0.0441 seconds (files took 0.58324 seconds to load)
    1384:  0 examples, 0 failures, 1 error occurred outside of examples
    1385:  ================================================================================
    1386:  �[32m[3,097 / 3,111]�[0m 9 / 27 tests, �[31m�[1m9 failed�[0m;�[0m Testing //rb/spec/integration/selenium/webdriver/remote:driver-edge-remote; 49s local, disk-cache ... (4 actions, 3 running)
    1387:  �[32m[3,097 / 3,111]�[0m 9 / 27 tests, �[31m�[1m9 failed�[0m;�[0m Testing //rb/spec/integration/selenium/webdriver/remote:driver-edge-remote; 55s local, disk-cache ... (4 actions, 3 running)
    1388:  �[31m�[1mFAIL: �[0m//rb/spec/integration/selenium/webdriver:virtual_authenticator-edge-remote (see D:/_bazel/execroot/_main/bazel-out/x64_windows-fastbuild/testlogs/rb/spec/integration/selenium/webdriver/virtual_authenticator-edge-remote/test_attempts/attempt_2.log)
    1389:  �[32m[3,097 / 3,111]�[0m 9 / 27 tests, �[31m�[1m9 failed�[0m;�[0m Testing //rb/spec/integration/selenium/webdriver/remote:driver-edge-remote; 56s local, disk-cache ... (4 actions, 3 running)
    1390:  �[32m[3,097 / 3,111]�[0m 9 / 27 tests, �[31m�[1m9 failed�[0m;�[0m Testing //rb/spec/integration/selenium/webdriver/remote:driver-edge-remote; 58s local, disk-cache ... (4 actions, 3 running)
    1391:  �[32m[3,097 / 3,111]�[0m 9 / 27 tests, �[31m�[1m9 failed�[0m;�[0m Testing //rb/spec/integration/selenium/webdriver/remote:driver-edge-remote; 59s local, disk-cache ... (4 actions, 3 running)
    1392:  �[32m[3,097 / 3,111]�[0m 9 / 27 tests, �[31m�[1m9 failed�[0m;�[0m Testing //rb/spec/integration/selenium/webdriver/remote:driver-edge-remote; 62s local, disk-cache ... (4 actions, 3 running)
    1393:  �[31m�[1mFAIL: �[0m//rb/spec/integration/selenium/webdriver/remote:driver-edge-remote (see D:/_bazel/execroot/_main/bazel-out/x64_windows-fastbuild/testlogs/rb/spec/integration/selenium/webdriver/remote/driver-edge-remote/test.log)
    1394:  �[31m�[1mFAILED: �[0m//rb/spec/integration/selenium/webdriver/remote:driver-edge-remote (Summary)
    1395:  D:/_bazel/execroot/_main/bazel-out/x64_windows-fastbuild/testlogs/rb/spec/integration/selenium/webdriver/remote/driver-edge-remote/test.log
    1396:  D:/_bazel/execroot/_main/bazel-out/x64_windows-fastbuild/testlogs/rb/spec/integration/selenium/webdriver/remote/driver-edge-remote/test_attempts/attempt_1.log
    1397:  D:/_bazel/execroot/_main/bazel-out/x64_windows-fastbuild/testlogs/rb/spec/integration/selenium/webdriver/remote/driver-edge-remote/test_attempts/attempt_2.log
    1398:  �[32mINFO: �[0mFrom Testing //rb/spec/integration/selenium/webdriver/remote:driver-edge-remote:
    1399:  ==================== Test output for //rb/spec/integration/selenium/webdriver/remote:driver-edge-remote:
    1400:  2024-04-24 16:56:36 INFO Selenium Server Location: D:/_bazel/execroot/_main/bazel-out/x64_windows-fastbuild/bin/rb/spec/integration/selenium/webdriver/remote/driver-edge-remote.cmd.runfiles/_main/java/src/org/openqa/selenium/grid/selenium_server_deploy.jar
    1401:  An error occurred in a `before(:suite)` hook.
    1402:  Failure/Error: @pid = Process.spawn(*@command, options)
    1403:  Errno::EACCES:
    1404:  Permission denied - java
    1405:  # ./rb/lib/selenium/webdriver/common/child_process.rb:57:in `spawn'
    1406:  # ./rb/lib/selenium/webdriver/common/child_process.rb:57:in `start'
    1407:  # ./rb/lib/selenium/server.rb:204:in `start'
    1408:  # //?/D:/a/selenium/selenium/rb/spec/integration/selenium/webdriver/spec_helper.rb:40:in `block (2 levels) in <top (required)>'
    1409:  Finished in 0.04773 seconds (files took 0.63939 seconds to load)
    1410:  0 examples, 0 failures, 1 error occurred outside of examples
    1411:  ================================================================================
    1412:  ==================== Test output for //rb/spec/integration/selenium/webdriver/remote:driver-edge-remote:
    1413:  2024-04-24 16:57:03 INFO Selenium Server Location: D:/_bazel/execroot/_main/bazel-out/x64_windows-fastbuild/bin/rb/spec/integration/selenium/webdriver/remote/driver-edge-remote.cmd.runfiles/_main/java/src/org/openqa/selenium/grid/selenium_server_deploy.jar
    1414:  An error occurred in a `before(:suite)` hook.
    1415:  Failure/Error: @pid = Process.spawn(*@command, options)
    1416:  Errno::EACCES:
    1417:  Permission denied - java
    1418:  # ./rb/lib/selenium/webdriver/common/child_process.rb:57:in `spawn'
    1419:  # ./rb/lib/selenium/webdriver/common/child_process.rb:57:in `start'
    1420:  # ./rb/lib/selenium/server.rb:204:in `start'
    1421:  # //?/D:/a/selenium/selenium/rb/spec/integration/selenium/webdriver/spec_helper.rb:40:in `block (2 levels) in <top (required)>'
    1422:  Finished in 0.04495 seconds (files took 0.61856 seconds to load)
    1423:  0 examples, 0 failures, 1 error occurred outside of examples
    1424:  ================================================================================
    1425:  ==================== Test output for //rb/spec/integration/selenium/webdriver/remote:driver-edge-remote:
    1426:  2024-04-24 16:57:31 INFO Selenium Server Location: D:/_bazel/execroot/_main/bazel-out/x64_windows-fastbuild/bin/rb/spec/integration/selenium/webdriver/remote/driver-edge-remote.cmd.runfiles/_main/java/src/org/openqa/selenium/grid/selenium_server_deploy.jar
    1427:  An error occurred in a `before(:suite)` hook.
    1428:  Failure/Error: @pid = Process.spawn(*@command, options)
    1429:  Errno::EACCES:
    1430:  Permission denied - java
    1431:  # ./rb/lib/selenium/webdriver/common/child_process.rb:57:in `spawn'
    1432:  # ./rb/lib/selenium/webdriver/common/child_process.rb:57:in `start'
    1433:  # ./rb/lib/selenium/server.rb:204:in `start'
    1434:  # //?/D:/a/selenium/selenium/rb/spec/integration/selenium/webdriver/spec_helper.rb:40:in `block (2 levels) in <top (required)>'
    1435:  Finished in 0.05845 seconds (files took 0.62874 seconds to load)
    1436:  0 examples, 0 failures, 1 error occurred outside of examples
    1437:  ================================================================================
    1438:  �[32m[3,098 / 3,111]�[0m 10 / 27 tests, �[31m�[1m10 failed�[0m;�[0m Testing //rb/spec/integration/selenium/webdriver:manager-edge-remote; 56s local, disk-cache ... (4 actions, 2 running)
    1439:  �[32m[3,098 / 3,111]�[0m 10 / 27 tests, �[31m�[1m10 failed�[0m;�[0m Testing //rb/spec/integration/selenium/webdriver:manager-edge-remote; 61s local, disk-cache ... (4 actions, 2 running)
    1440:  �[31m�[1mFAIL: �[0m//rb/spec/integration/selenium/webdriver:manager-edge-remote (see D:/_bazel/execroot/_main/bazel-out/x64_windows-fastbuild/testlogs/rb/spec/integration/selenium/webdriver/manager-edge-remote/test.log)
    1441:  ==================== Test output for //rb/spec/integration/selenium/webdriver:manager-edge-remote:
    1442:  2024-04-24 16:56:43 INFO Selenium Server Location: D:/_bazel/execroot/_main/bazel-out/x64_windows-fastbuild/bin/rb/spec/integration/selenium/webdriver/manager-edge-remote.cmd.runfiles/_main/java/src/org/openqa/selenium/grid/selenium_server_deploy.jar
    1443:  �[31m�[1mFAILED: �[0m//rb/spec/integration/selenium/webdriver:manager-edge-remote (Summary)
    1444:  D:/_bazel/execroot/_main/bazel-out/x64_windows-fastbuild/testlogs/rb/spec/integration/selenium/webdriver/manager-edge-remote/test.log
    1445:  An error occurred in a `before(:suite)` hook.
    1446:  Failure/Error: @pid = Process.spawn(*@command, options)
    1447:  Errno::EACCES:
    1448:  Permission denied - java
    1449:  # ./rb/lib/selenium/webdriver/common/child_process.rb:57:in `spawn'
    1450:  # ./rb/lib/selenium/webdriver/common/child_process.rb:57:in `start'
    1451:  # ./rb/lib/selenium/server.rb:204:in `start'
    1452:  # //?/D:/a/selenium/selenium/rb/spec/integration/selenium/webdriver/spec_helper.rb:40:in `block (2 levels) in <top (required)>'
    1453:  Finished in 0.04679 seconds (files took 0.66657 seconds to load)
    1454:  0 examples, 0 failures, 1 error occurred outside of examples
    1455:  ================================================================================
    1456:  ==================== Test output for //rb/spec/integration/selenium/webdriver:manager-edge-remote:
    1457:  2024-04-24 16:57:10 INFO Selenium Server Location: D:/_bazel/execroot/_main/bazel-out/x64_windows-fastbuild/bin/rb/spec/integration/selenium/webdriver/manager-edge-remote.cmd.runfiles/_main/java/src/org/openqa/selenium/grid/selenium_server_deploy.jar
    1458:  An error occurred in a `before(:suite)` hook.
    1459:  Failure/Error: @pid = Process.spawn(*@command, options)
    ...
    
    1462:  # ./rb/lib/selenium/webdriver/common/child_process.rb:57:in `spawn'
    1463:  # ./rb/lib/selenium/webdriver/common/child_process.rb:57:in `start'
    1464:  # ./rb/lib/selenium/server.rb:204:in `start'
    1465:  # //?/D:/a/selenium/selenium/rb/spec/integration/selenium/webdriver/spec_helper.rb:40:in `block (2 levels) in <top (required)>'
    1466:  D:/_bazel/execroot/_main/bazel-out/x64_windows-fastbuild/testlogs/rb/spec/integration/selenium/webdriver/manager-edge-remote/test_attempts/attempt_1.log
    1467:  D:/_bazel/execroot/_main/bazel-out/x64_windows-fastbuild/testlogs/rb/spec/integration/selenium/webdriver/manager-edge-remote/test_attempts/attempt_2.log
    1468:  �[32mINFO: �[0mFrom Testing //rb/spec/integration/selenium/webdriver:manager-edge-remote:
    1469:  Finished in 0.04504 seconds (files took 0.59029 seconds to load)
    1470:  0 examples, 0 failures, 1 error occurred outside of examples
    1471:  ================================================================================
    1472:  ==================== Test output for //rb/spec/integration/selenium/webdriver:manager-edge-remote:
    1473:  2024-04-24 16:57:38 INFO Selenium Server Location: D:/_bazel/execroot/_main/bazel-out/x64_windows-fastbuild/bin/rb/spec/integration/selenium/webdriver/manager-edge-remote.cmd.runfiles/_main/java/src/org/openqa/selenium/grid/selenium_server_deploy.jar
    1474:  An error occurred in a `before(:suite)` hook.
    1475:  Failure/Error: @pid = Process.spawn(*@command, options)
    1476:  Errno::EACCES:
    1477:  Permission denied - java
    1478:  # ./rb/lib/selenium/webdriver/common/child_process.rb:57:in `spawn'
    1479:  # ./rb/lib/selenium/webdriver/common/child_process.rb:57:in `start'
    1480:  # ./rb/lib/selenium/server.rb:204:in `start'
    1481:  # //?/D:/a/selenium/selenium/rb/spec/integration/selenium/webdriver/spec_helper.rb:40:in `block (2 levels) in <top (required)>'
    1482:  Finished in 0.0442 seconds (files took 0.60263 seconds to load)
    1483:  0 examples, 0 failures, 1 error occurred outside of examples
    1484:  ================================================================================
    1485:  �[32m[3,099 / 3,111]�[0m 11 / 27 tests, �[31m�[1m11 failed�[0m;�[0m Testing //rb/spec/integration/selenium/webdriver:virtual_authenticator-edge-remote; 50s local, disk-cache ... (4 actions, 1 running)
    1486:  �[32m[3,099 / 3,111]�[0m 11 / 27 tests, �[31m�[1m11 failed�[0m;�[0m Testing //rb/spec/integration/selenium/webdriver:virtual_authenticator-edge-remote; 52s local, disk-cache ... (4 actions, 1 running)
    1487:  �[32m[3,099 / 3,111]�[0m 11 / 27 tests, �[31m�[1m11 failed�[0m;�[0m Testing //rb/spec/integration/selenium/webdriver:virtual_authenticator-edge-remote; 55s local, disk-cache ... (4 actions, 2 running)
    1488:  �[31m�[1mFAIL: �[0m//rb/spec/integration/selenium/webdriver:virtual_authenticator-edge-remote (see D:/_bazel/execroot/_main/bazel-out/x64_windows-fastbuild/testlogs/rb/spec/integration/selenium/webdriver/virtual_authenticator-edge-remote/test.log)
    1489:  ==================== Test output for //rb/spec/integration/selenium/webdriver:virtual_authenticator-edge-remote:
    1490:  2024-04-24 16:56:56 INFO Selenium Server Location: D:/_bazel/execroot/_main/bazel-out/x64_windows-fastbuild/bin/rb/spec/integration/selenium/webdriver/virtual_authenticator-edge-remote.cmd.runfiles/_main/java/src/org/openqa/selenium/grid/selenium_server_deploy.jar
    1491:  �[31m�[1mFAILED: �[0m//rb/spec/integration/selenium/webdriver:virtual_authenticator-edge-remote (Summary)
    1492:  D:/_bazel/execroot/_main/bazel-out/x64_windows-fastbuild/testlogs/rb/spec/integration/selenium/webdriver/virtual_authenticator-edge-remote/test.log
    1493:  An error occurred in a `before(:suite)` hook.
    1494:  D:/_bazel/execroot/_main/bazel-out/x64_windows-fastbuild/testlogs/rb/spec/integration/selenium/webdriver/virtual_authenticator-edge-remote/test_attempts/attempt_1.log
    1495:  Failure/Error: @pid = Process.spawn(*@command, options)
    ...
    
    1497:  �[32mINFO: �[0mFrom Testing //rb/spec/integration/selenium/webdriver:virtual_authenticator-edge-remote:
    1498:  Errno::EACCES:
    1499:  Permission denied - java
    1500:  # ./rb/lib/selenium/webdriver/common/child_process.rb:57:in `spawn'
    1501:  # ./rb/lib/selenium/webdriver/common/child_process.rb:57:in `start'
    1502:  # ./rb/lib/selenium/server.rb:204:in `start'
    1503:  # //?/D:/a/selenium/selenium/rb/spec/integration/selenium/webdriver/spec_helper.rb:40:in `block (2 levels) in <top (required)>'
    1504:  Finished in 0.04823 seconds (files took 0.64397 seconds to load)
    1505:  0 examples, 0 failures, 1 error occurred outside of examples
    1506:  ================================================================================
    1507:  ==================== Test output for //rb/spec/integration/selenium/webdriver:virtual_authenticator-edge-remote:
    1508:  2024-04-24 16:57:24 INFO Selenium Server Location: D:/_bazel/execroot/_main/bazel-out/x64_windows-fastbuild/bin/rb/spec/integration/selenium/webdriver/virtual_authenticator-edge-remote.cmd.runfiles/_main/java/src/org/openqa/selenium/grid/selenium_server_deploy.jar
    1509:  An error occurred in a `before(:suite)` hook.
    1510:  Failure/Error: @pid = Process.spawn(*@command, options)
    1511:  Errno::EACCES:
    1512:  Permission denied - java
    1513:  # ./rb/lib/selenium/webdriver/common/child_process.rb:57:in `spawn'
    1514:  # ./rb/lib/selenium/webdriver/common/child_process.rb:57:in `start'
    1515:  # ./rb/lib/selenium/server.rb:204:in `start'
    1516:  # //?/D:/a/selenium/selenium/rb/spec/integration/selenium/webdriver/spec_helper.rb:40:in `block (2 levels) in <top (required)>'
    1517:  Finished in 0.05905 seconds (files took 0.80842 seconds to load)
    1518:  0 examples, 0 failures, 1 error occurred outside of examples
    1519:  ================================================================================
    1520:  ==================== Test output for //rb/spec/integration/selenium/webdriver:virtual_authenticator-edge-remote:
    1521:  2024-04-24 16:57:45 INFO Selenium Server Location: D:/_bazel/execroot/_main/bazel-out/x64_windows-fastbuild/bin/rb/spec/integration/selenium/webdriver/virtual_authenticator-edge-remote.cmd.runfiles/_main/java/src/org/openqa/selenium/grid/selenium_server_deploy.jar
    1522:  An error occurred in a `before(:suite)` hook.
    1523:  Failure/Error: @pid = Process.spawn(*@command, options)
    1524:  Errno::EACCES:
    1525:  Permission denied - java
    1526:  # ./rb/lib/selenium/webdriver/common/child_process.rb:57:in `spawn'
    1527:  # ./rb/lib/selenium/webdriver/common/child_process.rb:57:in `start'
    1528:  # ./rb/lib/selenium/server.rb:204:in `start'
    1529:  # //?/D:/a/selenium/selenium/rb/spec/integration/selenium/webdriver/spec_helper.rb:40:in `block (2 levels) in <top (required)>'
    1530:  Finished in 0.07155 seconds (files took 0.83698 seconds to load)
    1531:  0 examples, 0 failures, 1 error occurred outside of examples
    1532:  ================================================================================
    1533:  �[32m[3,100 / 3,111]�[0m 12 / 27 tests, �[31m�[1m12 failed�[0m;�[0m Testing //rb/spec/integration/selenium/webdriver:target_locator-edge-remote; 8s disk-cache ... (4 actions, 1 running)
    1534:  �[32m[3,100 / 3,111]�[0m 12 / 27 tests, �[31m�[1m12 failed�[0m;�[0m [Sched] Testing //rb/spec/integration/selenium/webdriver:window-edge-remote; 8s ... (4 actions, 1 running)
    1535:  �[32m[3,100 / 3,111]�[0m 12 / 27 tests, �[31m�[1m12 failed�[0m;�[0m Testing //rb/spec/integration/selenium/webdriver:driver-edge-remote; 7s local, disk-cache ... (4 actions, 2 running)
    1536:  �[31m�[1mFAIL: �[0m//rb/spec/integration/selenium/webdriver:driver-edge-remote (see D:/_bazel/execroot/_main/bazel-out/x64_windows-fastbuild/testlogs/rb/spec/integration/selenium/webdriver/driver-edge-remote/test_attempts/attempt_1.log)
    1537:  �[32m[3,100 / 3,111]�[0m 12 / 27 tests, �[31m�[1m12 failed�[0m;�[0m Testing //rb/spec/integration/selenium/webdriver:driver-edge-remote; 8s local, disk-cache ... (4 actions, 2 running)
    1538:  �[32m[3,100 / 3,111]�[0m 12 / 27 tests, �[31m�[1m12 failed�[0m;�[0m Testing //rb/spec/integration/selenium/webdriver:driver-edge-remote; 11s local, disk-cache ... (4 actions, 2 running)
    1539:  �[32m[3,100 / 3,111]�[0m 12 / 27 tests, �[31m�[1m12 failed�[0m;�[0m Testing //rb/spec/integration/selenium/webdriver:driver-edge-remote; 12s local, disk-cache ... (4 actions, 2 running)
    1540:  �[32m[3,100 / 3,111]�[0m 12 / 27 tests, �[31m�[1m12 failed�[0m;�[0m Testing //rb/spec/integration/selenium/webdriver:driver-edge-remote; 14s local, disk-cache ... (4 actions, 3 running)
    1541:  �[31m�[1mFAIL: �[0m//rb/spec/integration/selenium/webdriver:window-edge-remote (see D:/_bazel/execroot/_main/bazel-out/x64_windows-fastbuild/testlogs/rb/spec/integration/selenium/webdriver/window-edge-remote/test_attempts/attempt_1.log)
    1542:  �[32m[3,100 / 3,111]�[0m 12 / 27 tests, �[31m�[1m12 failed�[0m;�[0m Testing //rb/spec/integration/selenium/webdriver:driver-edge-remote; 15s local, disk-cache ... (4 actions, 3 running)
    1543:  �[32m[3,100 / 3,111]�[0m 12 / 27 tests, �[31m�[1m12 failed�[0m;�[0m Testing //rb/spec/integration/selenium/webdriver:driver-edge-remote; 21s local, disk-cache ... (4 actions, 3 running)
    1544:  �[31m�[1mFAIL: �[0m//rb/spec/integration/selenium/webdriver:target_locator-edge-remote (see D:/_bazel/execroot/_main/bazel-out/x64_windows-fastbuild/testlogs/rb/spec/integration/selenium/webdriver/target_locator-edge-remote/test_attempts/attempt_1.log)
    1545:  �[32m[3,100 / 3,111]�[0m 12 / 27 tests, �[31m�[1m12 failed�[0m;�[0m Testing //rb/spec/integration/selenium/webdriver:driver-edge-remote; 22s local, disk-cache ... (4 actions, 3 running)
    1546:  �[32m[3,100 / 3,111]�[0m 12 / 27 tests, �[31m�[1m12 failed�[0m;�[0m Testing //rb/spec/integration/selenium/webdriver:driver-edge-remote; 28s local, disk-cache ... (4 actions running)
    1547:  �[31m�[1mFAIL: �[0m//rb/spec/integration/selenium/webdriver:driver-edge-remote (see D:/_bazel/execroot/_main/bazel-out/x64_windows-fastbuild/testlogs/rb/spec/integration/selenium/webdriver/driver-edge-remote/test_attempts/attempt_2.log)
    1548:  �[32m[3,100 / 3,111]�[0m 12 / 27 tests, �[31m�[1m12 failed�[0m;�[0m Testing //rb/spec/integration/selenium/webdriver:driver-edge-remote; 29s local, disk-cache ... (4 actions running)
    1549:  �[32m[3,100 / 3,111]�[0m 12 / 27 tests, �[31m�[1m12 failed�[0m;�[0m Testing //rb/spec/integration/selenium/webdriver:driver-edge-remote; 34s local, disk-cache ... (4 actions running)
    1550:  �[31m�[1mFAIL: �[0m//rb/spec/integration/selenium/webdriver:shadow_root-edge-remote (see D:/_bazel/execroot/_main/bazel-out/x64_windows-fastbuild/testlogs/rb/spec/integration/selenium/webdriver/shadow_root-edge-remote/test_attempts/attempt_1.log)
    1551:  �[32m[3,100 / 3,111]�[0m 12 / 27 tests, �[31m�[1m12 failed�[0m;�[0m Testing //rb/spec/integration/selenium/webdriver:driver-edge-remote; 36s local, disk-cache ... (4 actions running)
    1552:  �[32m[3,100 / 3,111]�[0m 12 / 27 tests, �[31m�[1m12 failed�[0m;�[0m Testing //rb/spec/integration/selenium/webdriver:driver-edge-remote; 41s local, disk-cache ... (4 actions running)
    1553:  �[31m�[1mFAIL: �[0m//rb/spec/integration/selenium/webdriver:window-edge-remote (see D:/_bazel/execroot/_main/bazel-out/x64_windows-fastbuild/testlogs/rb/spec/integration/selenium/webdriver/window-edge-remote/test_attempts/attempt_2.log)
    1554:  �[32m[3,100 / 3,111]�[0m 12 / 27 tests, �[31m�[1m12 failed�[0m;�[0m Testing //rb/spec/integration/selenium/webdriver:driver-edge-remote; 42s local, disk-cache ... (4 actions running)
    1555:  �[32m[3,100 / 3,111]�[0m 12 / 27 tests, �[31m�[1m12 failed�[0m;�[0m Testing //rb/spec/integration/selenium/webdriver:driver-edge-remote; 48s local, disk-cache ... (4 actions running)
    1556:  �[31m�[1mFAIL: �[0m//rb/spec/integration/selenium/webdriver:target_locator-edge-remote (see D:/_bazel/execroot/_main/bazel-out/x64_windows-fastbuild/testlogs/rb/spec/integration/selenium/webdriver/target_locator-edge-remote/test_attempts/attempt_2.log)
    1557:  �[32m[3,100 / 3,111]�[0m 12 / 27 tests, �[31m�[1m12 failed�[0m;�[0m Testing //rb/spec/integration/selenium/webdriver:driver-edge-remote; 49s local, disk-cache ... (4 actions running)
    1558:  �[32m[3,100 / 3,111]�[0m 12 / 27 tests, �[31m�[1m12 failed�[0m;�[0m Testing //rb/spec/integration/selenium/webdriver:driver-edge-remote; 55s local, disk-cache ... (4 actions running)
    1559:  �[31m�[1mFAIL: �[0m//rb/spec/integration/selenium/webdriver:driver-edge-remote (see D:/_bazel/execroot/_main/bazel-out/x64_windows-fastbuild/testlogs/rb/spec/integration/selenium/webdriver/driver-edge-remote/test.log)
    1560:  ==================== Test output for //rb/spec/integration/selenium/webdriver:driver-edge-remote:
    1561:  2024-04-24 16:57:52 INFO Selenium Server Location: D:/_bazel/execroot/_main/bazel-out/x64_windows-fastbuild/bin/rb/spec/integration/selenium/webdriver/driver-edge-remote.cmd.runfiles/_main/java/src/org/openqa/selenium/grid/selenium_server_deploy.jar
    1562:  �[31m�[1mFAILED: �[0m//rb/spec/integration/selenium/webdriver:driver-edge-remote (Summary)
    1563:  D:/_bazel/execroot/_main/bazel-out/x64_windows-fastbuild/testlogs/rb/spec/integration/selenium/webdriver/driver-edge-remote/test.log
    1564:  D:/_bazel/execroot/_main/bazel-out/x64_windows-fastbuild/testlogs/rb/spec/integration/selenium/webdriver/driver-edge-remote/test_attempts/attempt_1.log
    1565:  D:/_bazel/execroot/_main/bazel-out/x64_windows-fastbuild/testlogs/rb/spec/integration/selenium/webdriver/driver-edge-remote/test_attempts/attempt_2.log
    1566:  �[32mINFO: �[0mFrom Testing //rb/spec/integration/selenium/webdriver:driver-edge-remote:
    1567:  An error occurred in a `before(:suite)` hook.
    1568:  Failure/Error: @pid = Process.spawn(*@command, options)
    1569:  Errno::EACCES:
    1570:  Permission denied - java
    1571:  # ./rb/lib/selenium/webdriver/common/child_process.rb:57:in `spawn'
    1572:  # ./rb/lib/selenium/webdriver/common/child_process.rb:57:in `start'
    1573:  # ./rb/lib/selenium/server.rb:204:in `start'
    1574:  # //?/D:/a/selenium/selenium/rb/spec/integration/selenium/webdriver/spec_helper.rb:40:in `block (2 levels) in <top (required)>'
    1575:  Finished in 0.0695 seconds (files took 0.80675 seconds to load)
    1576:  0 examples, 0 failures, 1 error occurred outside of examples
    1577:  ================================================================================
    1578:  ==================== Test output for //rb/spec/integration/selenium/webdriver:driver-edge-remote:
    1579:  2024-04-24 16:58:13 INFO Selenium Server Location: D:/_bazel/execroot/_main/bazel-out/x64_windows-fastbuild/bin/rb/spec/integration/selenium/webdriver/driver-edge-remote.cmd.runfiles/_main/java/src/org/openqa/selenium/grid/selenium_server_deploy.jar
    1580:  An error occurred in a `before(:suite)` hook.
    1581:  Failure/Error: @pid = Process.spawn(*@command, options)
    1582:  Errno::EACCES:
    1583:  Permission denied - java
    1584:  # ./rb/lib/selenium/webdriver/common/child_process.rb:57:in `spawn'
    1585:  # ./rb/lib/selenium/webdriver/common/child_process.rb:57:in `start'
    1586:  # ./rb/lib/selenium/server.rb:204:in `start'
    1587:  # //?/D:/a/selenium/selenium/rb/spec/integration/selenium/webdriver/spec_helper.rb:40:in `block (2 levels) in <top (required)>'
    1588:  Finished in 0.04385 seconds (files took 0.6888 seconds to load)
    1589:  0 examples, 0 failures, 1 error occurred outside of examples
    1590:  ================================================================================
    1591:  ==================== Test output for //rb/spec/integration/selenium/webdriver:driver-edge-remote:
    1592:  2024-04-24 16:58:40 INFO Selenium Server Location: D:/_bazel/execroot/_main/bazel-out/x64_windows-fastbuild/bin/rb/spec/integration/selenium/webdriver/driver-edge-remote.cmd.runfiles/_main/java/src/org/openqa/selenium/grid/selenium_server_deploy.jar
    1593:  An error occurred in a `before(:suite)` hook.
    1594:  Failure/Error: @pid = Process.spawn(*@command, options)
    1595:  Errno::EACCES:
    1596:  Permission denied - java
    1597:  # ./rb/lib/selenium/webdriver/common/child_process.rb:57:in `spawn'
    1598:  # ./rb/lib/selenium/webdriver/common/child_process.rb:57:in `start'
    1599:  # ./rb/lib/selenium/server.rb:204:in `start'
    1600:  # //?/D:/a/selenium/selenium/rb/spec/integration/selenium/webdriver/spec_helper.rb:40:in `block (2 levels) in <top (required)>'
    1601:  Finished in 0.04275 seconds (files took 0.57705 seconds to load)
    1602:  0 examples, 0 failures, 1 error occurred outside of examples
    1603:  ================================================================================
    1604:  �[32m[3,101 / 3,111]�[0m 13 / 27 tests, �[31m�[1m13 failed�[0m;�[0m Testing //rb/spec/integration/selenium/webdriver:window-edge-remote; 49s local, disk-cache ... (4 actions, 3 running)
    1605:  �[32m[3,101 / 3,111]�[0m 13 / 27 tests, �[31m�[1m13 failed�[0m;�[0m Testing //rb/spec/integration/selenium/webdriver:window-edge-remote; 54s local, disk-cache ... (4 actions, 3 running)
    1606:  �[31m�[1mFAIL: �[0m//rb/spec/integration/selenium/webdriver:shadow_root-edge-remote (see D:/_bazel/execroot/_main/bazel-out/x64_windows-fastbuild/testlogs/rb/spec/integration/selenium/webdriver/shadow_root-edge-remote/test_attempts/attempt_2.log)
    1607:  �[32m[3,101 / 3,111]�[0m 13 / 27 tests, �[31m�[1m13 failed�[0m;�[0m Testing //rb/spec/integration/selenium/webdriver:window-edge-remote; 55s local, disk-cache ... (4 actions, 3 running)
    1608:  �[32m[3,101 / 3,111]�[0m 13 / 27 tests, �[31m�[1m13 failed�[0m;�[0m Testing //rb/spec/integration/selenium/webdriver:window-edge-remote; 58s local, disk-cache ... (4 actions, 3 running)
    1609:  �[32m[3,101 / 3,111]�[0m 13 / 27 tests, �[31m�[1m13 failed�[0m;�[0m Testing //rb/spec/integration/selenium/webdriver:window-edge-remote; 60s local, disk-cache ... (4 actions, 3 running)
    1610:  �[32m[3,101 / 3,111]�[0m 13 / 27 tests, �[31m�[1m13 failed�[0m;�[0m Testing //rb/spec/integration/selenium/webdriver:window-edge-remote; 62s local, disk-cache ... (4 actions, 3 running)
    1611:  �[31m�[1mFAIL: �[0m//rb/spec/integration/selenium/webdriver:window-edge-remote (see D:/_bazel/execroot/_main/bazel-out/x64_windows-fastbuild/testlogs/rb/spec/integration/selenium/webdriver/window-edge-remote/test.log)
    1612:  �[31m�[1mFAILED: �[0m//rb/spec/integration/selenium/webdriver:window-edge-remote (Summary)
    1613:  D:/_bazel/execroot/_main/bazel-out/x64_windows-fastbuild/testlogs/rb/spec/integration/selenium/webdriver/window-edge-remote/test.log
    1614:  D:/_bazel/execroot/_main/bazel-out/x64_windows-fastbuild/testlogs/rb/spec/integration/selenium/webdriver/window-edge-remote/test_attempts/attempt_1.log
    1615:  D:/_bazel/execroot/_main/bazel-out/x64_windows-fastbuild/testlogs/rb/spec/integration/selenium/webdriver/window-edge-remote/test_attempts/attempt_2.log
    1616:  �[32mINFO: �[0mFrom Testing //rb/spec/integration/selenium/webdriver:window-edge-remote:
    1617:  ==================== Test output for //rb/spec/integration/selenium/webdriver:window-edge-remote:
    1618:  2024-04-24 16:57:59 INFO Selenium Server Location: D:/_bazel/execroot/_main/bazel-out/x64_windows-fastbuild/bin/rb/spec/integration/selenium/webdriver/window-edge-remote.cmd.runfiles/_main/java/src/org/openqa/selenium/grid/selenium_server_deploy.jar
    1619:  An error occurred in a `before(:suite)` hook.
    1620:  Failure/Error: @pid = Process.spawn(*@command, options)
    1621:  Errno::EACCES:
    1622:  Permission denied - java
    1623:  # ./rb/lib/selenium/webdriver/common/child_process.rb:57:in `spawn'
    1624:  # ./rb/lib/selenium/webdriver/common/child_process.rb:57:in `start'
    1625:  # ./rb/lib/selenium/server.rb:204:in `start'
    1626:  # //?/D:/a/selenium/selenium/rb/spec/integration/selenium/webdriver/spec_helper.rb:40:in `block (2 levels) in <top (required)>'
    1627:  Finished in 0.04754 seconds (files took 0.73252 seconds to load)
    1628:  0 examples, 0 failures, 1 error occurred outside of examples
    1629:  ================================================================================
    1630:  ==================== Test output for //rb/spec/integration/selenium/webdriver:window-edge-remote:
    1631:  2024-04-24 16:58:27 INFO Selenium Server Location: D:/_bazel/execroot/_main/bazel-out/x64_windows-fastbuild/bin/rb/spec/integration/selenium/webdriver/window-edge-remote.cmd.runfiles/_main/java/src/org/openqa/selenium/grid/selenium_server_deploy.jar
    1632:  An error occurred in a `before(:suite)` hook.
    1633:  Failure/Error: @pid = Process.spawn(*@command, options)
    1634:  Errno::EACCES:
    1635:  Permission denied - java
    1636:  # ./rb/lib/selenium/webdriver/common/child_process.rb:57:in `spawn'
    1637:  # ./rb/lib/selenium/webdriver/common/child_process.rb:57:in `start'
    1638:  # ./rb/lib/selenium/server.rb:204:in `start'
    1639:  # //?/D:/a/selenium/selenium/rb/spec/integration/selenium/webdriver/spec_helper.rb:40:in `block (2 levels) in <top (required)>'
    1640:  Finished in 0.04689 seconds (files took 0.62358 seconds to load)
    1641:  0 examples, 0 failures, 1 error occurred outside of examples
    1642:  ================================================================================
    1643:  ==================== Test output for //rb/spec/integration/selenium/webdriver:window-edge-remote:
    1644:  2024-04-24 16:58:54 INFO Selenium Server Location: D:/_bazel/execroot/_main/bazel-out/x64_windows-fastbuild/bin/rb/spec/integration/selenium/webdriver/window-edge-remote.cmd.runfiles/_main/java/src/org/openqa/selenium/grid/selenium_server_deploy.jar
    1645:  An error occurred in a `before(:suite)` hook.
    1646:  Failure/Error: @pid = Process.spawn(*@command, options)
    1647:  Errno::EACCES:
    1648:  Permission denied - java
    1649:  # ./rb/lib/selenium/webdriver/common/child_process.rb:57:in `spawn'
    1650:  # ./rb/lib/selenium/webdriver/common/child_process.rb:57:in `start'
    1651:  # ./rb/lib/selenium/server.rb:204:in `start'
    1652:  # //?/D:/a/selenium/selenium/rb/spec/integration/selenium/webdriver/spec_helper.rb:40:in `block (2 levels) in <top (required)>'
    1653:  Finished in 0.06113 seconds (files took 0.80236 seconds to load)
    1654:  0 examples, 0 failures, 1 error occurred outside of examples
    1655:  ================================================================================
    1656:  �[32m[3,102 / 3,111]�[0m 14 / 27 tests, �[31m�[1m14 failed�[0m;�[0m Testing //rb/spec/integration/selenium/webdriver:target_locator-edge-remote; 56s local, disk-cache ... (4 actions, 2 running)
    1657:  �[32m[3,102 / 3,111]�[0m 14 / 27 tests, �[31m�[1m14 failed�[0m;�[0m Testing //rb/spec/integration/selenium/webdriver:target_locator-edge-remote; 61s local, disk-cache ... (4 actions, 2 running)
    1658:  ==================== Test output for //rb/spec/integration/selenium/webdriver:target_locator-edge-remote:
    1659:  �[31m�[1mFAIL: �[0m//rb/spec/integration/selenium/webdriver:target_locator-edge-remote (see D:/_bazel/execroot/_main/bazel-out/x64_windows-fastbuild/testlogs/rb/spec/integration/selenium/webdriver/target_locator-edge-remote/test.log)
    1660:  2024-04-24 16:58:06 INFO Selenium Server Location: D:/_bazel/execroot/_main/bazel-out/x64_windows-fastbuild/bin/rb/spec/integration/selenium/webdriver/target_locator-edge-remote.cmd.runfiles/_main/java/src/org/openqa/selenium/grid/selenium_server_deploy.jar
    1661:  �[31m�[1mFAILED: �[0m//rb/spec/integration/selenium/webdriver:target_locator-edge-remote (Summary)
    1662:  D:/_bazel/execroot/_main/bazel-out/x64_windows-fastbuild/testlogs/rb/spec/integration/selenium/webdriver/target_locator-edge-remote/test.log
    1663:  An error occurred in a `before(:suite)` hook.
    1664:  D:/_bazel/execroot/_main/bazel-out/x64_windows-fastbuild/testlogs/rb/spec/integration/selenium/webdriver/target_locator-edge-remote/test_attempts/attempt_1.log
    1665:  Failure/Error: @pid = Process.spawn(*@command, options)
    ...
    
    1667:  �[32mINFO: �[0mFrom Testing //rb/spec/integration/selenium/webdriver:target_locator-edge-remote:
    1668:  Errno::EACCES:
    1669:  Permission denied - java
    1670:  # ./rb/lib/selenium/webdriver/common/child_process.rb:57:in `spawn'
    1671:  # ./rb/lib/selenium/webdriver/common/child_process.rb:57:in `start'
    1672:  # ./rb/lib/selenium/server.rb:204:in `start'
    1673:  # //?/D:/a/selenium/selenium/rb/spec/integration/selenium/webdriver/spec_helper.rb:40:in `block (2 levels) in <top (required)>'
    1674:  Finished in 0.04259 seconds (files took 0.59361 seconds to load)
    1675:  0 examples, 0 failures, 1 error occurred outside of examples
    1676:  ================================================================================
    1677:  ==================== Test output for //rb/spec/integration/selenium/webdriver:target_locator-edge-remote:
    1678:  2024-04-24 16:58:33 INFO Selenium Server Location: D:/_bazel/execroot/_main/bazel-out/x64_windows-fastbuild/bin/rb/spec/integration/selenium/webdriver/target_locator-edge-remote.cmd.runfiles/_main/java/src/org/openqa/selenium/grid/selenium_server_deploy.jar
    1679:  An error occurred in a `before(:suite)` hook.
    1680:  Failure/Error: @pid = Process.spawn(*@command, options)
    1681:  Errno::EACCES:
    1682:  Permission denied - java
    1683:  # ./rb/lib/selenium/webdriver/common/child_process.rb:57:in `spawn'
    1684:  # ./rb/lib/selenium/webdriver/common/child_process.rb:57:in `start'
    1685:  # ./rb/lib/selenium/server.rb:204:in `start'
    1686:  # //?/D:/a/selenium/selenium/rb/spec/integration/selenium/webdriver/spec_helper.rb:40:in `block (2 levels) in <top (required)>'
    1687:  Finished in 0.04533 seconds (files took 0.63317 seconds to load)
    1688:  0 examples, 0 failures, 1 error occurred outside of examples
    1689:  ================================================================================
    1690:  ==================== Test output for //rb/spec/integration/selenium/webdriver:target_locator-edge-remote:
    1691:  2024-04-24 16:59:01 INFO Selenium Server Location: D:/_bazel/execroot/_main/bazel-out/x64_windows-fastbuild/bin/rb/spec/integration/selenium/webdriver/target_locator-edge-remote.cmd.runfiles/_main/java/src/org/openqa/selenium/grid/selenium_server_deploy.jar
    1692:  An error occurred in a `before(:suite)` hook.
    1693:  Failure/Error: @pid = Process.spawn(*@command, options)
    1694:  Errno::EACCES:
    1695:  Permission denied - java
    1696:  # ./rb/lib/selenium/webdriver/common/child_process.rb:57:in `spawn'
    1697:  # ./rb/lib/selenium/webdriver/common/child_process.rb:57:in `start'
    1698:  # ./rb/lib/selenium/server.rb:204:in `start'
    1699:  # //?/D:/a/selenium/selenium/rb/spec/integration/selenium/webdriver/spec_helper.rb:40:in `block (2 levels) in <top (required)>'
    1700:  Finished in 0.0484 seconds (files took 0.64523 seconds to load)
    1701:  0 examples, 0 failures, 1 error occurred outside of examples
    1702:  ================================================================================
    1703:  �[32m[3,103 / 3,111]�[0m 15 / 27 tests, �[31m�[1m15 failed�[0m;�[0m Testing //rb/spec/integration/selenium/webdriver:shadow_root-edge-remote; 49s local, disk-cache ... (4 actions, 1 running)
    1704:  �[32m[3,103 / 3,111]�[0m 15 / 27 tests, �[31m�[1m15 failed�[0m;�[0m Testing //rb/spec/integration/selenium/webdriver:shadow_root-edge-remote; 52s local, disk-cache ... (4 actions, 1 running)
    1705:  �[32m[3,103 / 3,111]�[0m 15 / 27 tests, �[31m�[1m15 failed�[0m;�[0m Testing //rb/spec/integration/selenium/webdriver:shadow_root-edge-remote; 55s local, disk-cache ... (4 actions, 2 running)
    1706:  �[31m�[1mFAIL: �[0m//rb/spec/integration/selenium/webdriver:shadow_root-edge-remote (see D:/_bazel/execroot/_main/bazel-out/x64_windows-fastbuild/testlogs/rb/spec/integration/selenium/webdriver/shadow_root-edge-remote/test.log)
    1707:  ==================== Test output for //rb/spec/integration/selenium/webdriver:shadow_root-edge-remote:
    1708:  �[31m�[1mFAILED: �[0m//rb/spec/integration/selenium/webdriver:shadow_root-edge-remote (Summary)
    1709:  2024-04-24 16:58:20 INFO Selenium Server Location: D:/_bazel/execroot/_main/bazel-out/x64_windows-fastbuild/bin/rb/spec/integration/selenium/webdriver/shadow_root-edge-remote.cmd.runfiles/_main/java/src/org/openqa/selenium/grid/selenium_server_deploy.jar
    1710:  D:/_bazel/execroot/_main/bazel-out/x64_windows-fastbuild/testlogs/rb/spec/integration/selenium/webdriver/shadow_root-edge-remote/test.log
    1711:  D:/_bazel/execroot/_main/bazel-out/x64_windows-fastbuild/testlogs/rb/spec/integration/selenium/webdriver/shadow_root-edge-remote/test_attempts/attempt_1.log
    1712:  An error occurred in a `before(:suite)` hook.
    1713:  D:/_bazel/execroot/_main/bazel-out/x64_windows-fastbuild/testlogs/rb/spec/integration/selenium/webdriver/shadow_root-edge-remote/test_attempts/attempt_2.log
    1714:  Failure/Error: @pid = Process.spawn(*@command, options)
    1715:  �[32mINFO: �[0mFrom Testing //rb/spec/integration/selenium/webdriver:shadow_root-edge-remote:
    1716:  Errno::EACCES:
    1717:  Permission denied - java
    1718:  # ./rb/lib/selenium/webdriver/common/child_process.rb:57:in `spawn'
    1719:  # ./rb/lib/selenium/webdriver/common/child_process.rb:57:in `start'
    1720:  # ./rb/lib/selenium/server.rb:204:in `start'
    1721:  # //?/D:/a/selenium/selenium/rb/spec/integration/selenium/webdriver/spec_helper.rb:40:in `block (2 levels) in <top (required)>'
    1722:  Finished in 0.04291 seconds (files took 0.5747 seconds to load)
    1723:  0 examples, 0 failures, 1 error occurred outside of examples
    1724:  ================================================================================
    1725:  ==================== Test output for //rb/spec/integration/selenium/webdriver:shadow_root-edge-remote:
    1726:  2024-04-24 16:58:47 INFO Selenium Server Location: D:/_bazel/execroot/_main/bazel-out/x64_windows-fastbuild/bin/rb/spec/integration/selenium/webdriver/shadow_root-edge-remote.cmd.runfiles/_main/java/src/org/openqa/selenium/grid/selenium_server_deploy.jar
    1727:  An error occurred in a `before(:suite)` hook.
    1728:  Failure/Error: @pid = Process.spawn(*@command, options)
    1729:  Errno::EACCES:
    1730:  Permission denied - java
    1731:  # ./rb/lib/selenium/webdriver/common/child_process.rb:57:in `spawn'
    1732:  # ./rb/lib/selenium/webdriver/common/child_process.rb:57:in `start'
    1733:  # ./rb/lib/selenium/server.rb:204:in `start'
    1734:  # //?/D:/a/selenium/selenium/rb/spec/integration/selenium/webdriver/spec_helper.rb:40:in `block (2 levels) in <top (required)>'
    1735:  Finished in 0.05048 seconds (files took 0.6499 seconds to load)
    1736:  0 examples, 0 failures, 1 error occurred outside of examples
    1737:  ================================================================================
    1738:  ==================== Test output for //rb/spec/integration/selenium/webdriver:shadow_root-edge-remote:
    1739:  2024-04-24 16:59:08 INFO Selenium Server Location: D:/_bazel/execroot/_main/bazel-out/x64_windows-fastbuild/bin/rb/spec/integration/selenium/webdriver/shadow_root-edge-remote.cmd.runfiles/_main/java/src/org/openqa/selenium/grid/selenium_server_deploy.jar
    1740:  An error occurred in a `before(:suite)` hook.
    1741:  Failure/Error: @pid = Process.spawn(*@command, options)
    1742:  Errno::EACCES:
    1743:  Permission denied - java
    1744:  # ./rb/lib/selenium/webdriver/common/child_process.rb:57:in `spawn'
    1745:  # ./rb/lib/selenium/webdriver/common/child_process.rb:57:in `start'
    1746:  # ./rb/lib/selenium/server.rb:204:in `start'
    1747:  # //?/D:/a/selenium/selenium/rb/spec/integration/selenium/webdriver/spec_helper.rb:40:in `block (2 levels) in <top (required)>'
    1748:  Finished in 0.05544 seconds (files took 0.77934 seconds to load)
    1749:  0 examples, 0 failures, 1 error occurred outside of examples
    1750:  ================================================================================
    1751:  �[32m[3,104 / 3,111]�[0m 16 / 27 tests, �[31m�[1m16 failed�[0m;�[0m Testing //rb/spec/integration/selenium/webdriver/edge:profile-edge-remote; 7s disk-cache ... (4 actions, 1 running)
    1752:  �[32m[3,104 / 3,111]�[0m 16 / 27 tests, �[31m�[1m16 failed�[0m;�[0m [Sched] Testing //rb/spec/integration/selenium/webdriver:guard-edge-remote; 8s ... (4 actions, 1 running)
    1753:  �[32m[3,104 / 3,111]�[0m 16 / 27 tests, �[31m�[1m16 failed�[0m;�[0m Testing //rb/spec/integration/selenium/webdriver:element-edge-remote; 7s local, disk-cache ... (4 actions, 2 running)
    1754:  �[31m�[1mFAIL: �[0m//rb/spec/integration/selenium/webdriver:element-edge-remote (see D:/_bazel/execroot/_main/bazel-out/x64_windows-fastbuild/testlogs/rb/spec/integration/selenium/webdriver/element-edge-remote/test_attempts/attempt_1.log)
    1755:  �[32m[3,104 / 3,111]�[0m 16 / 27 tests, �[31m�[1m16 failed�[0m;�[0m Testing //rb/spec/integration/selenium/webdriver:element-edge-remote; 8s local, disk-cache ... (4 actions, 2 running)
    1756:  �[32m[3,104 / 3,111]�[0m 16 / 27 tests, �[31m�[1m16 failed�[0m;�[0m Testing //rb/spec/integration/selenium/webdriver:element-edge-remote; 10s local, disk-cache ... (4 actions, 2 running)
    1757:  �[32m[3,104 / 3,111]�[0m 16 / 27 tests, �[31m�[1m16 failed�[0m;�[0m Testing //rb/spec/integration/selenium/webdriver:element-edge-remote; 12s local, disk-cache ... (4 actions, 2 running)
    1758:  �[32m[3,104 / 3,111]�[0m 16 / 27 tests, �[31m�[1m16 failed�[0m;�[0m Testing //rb/spec/integration/selenium/webdriver:element-edge-remote; 13s local, disk-cache ... (4 actions, 2 running)
    1759:  �[32m[3,104 / 3,111]�[0m 16 / 27 tests, �[31m�[1m16 failed�[0m;�[0m Testing //rb/spec/integration/selenium/webdriver:element-edge-remote; 14s local, disk-cache ... (4 actions, 3 running)
    1760:  �[31m�[1mFAIL: �[0m//rb/spec/integration/selenium/webdriver:guard-edge-remote (see D:/_bazel/execroot/_main/bazel-out/x64_windows-fastbuild/testlogs/rb/spec/integration/selenium/webdriver/guard-edge-remote/test_attempts/attempt_1.log)
    1761:  �[32m[3,104 / 3,111]�[0m 16 / 27 tests, �[31m�[1m16 failed�[0m;�[0m Testing //rb/spec/integration/selenium/webdriver:element-edge-remote; 16s local, disk-cache ... (4 actions, 3 running)
    1762:  �[32m[3,104 / 3,111]�[0m 16 / 27 tests, �[31m�[1m16 failed�[0m;�[0m Testing //rb/spec/integration/selenium/webdriver:element-edge-remote; 21s local, disk-cache ... (4 actions, 3 running)
    1763:  �[31m�[1mFAIL: �[0m//rb/spec/integration/selenium/webdriver/edge:profile-edge-remote (see D:/_bazel/execroot/_main/bazel-out/x64_windows-fastbuild/testlogs/rb/spec/integration/selenium/webdriver/edge/profile-edge-remote/test_attempts/attempt_1.log)
    1764:  �[32m[3,104 / 3,111]�[0m 16 / 27 tests, �[31m�[1m16 failed�[0m;�[0m Testing //rb/spec/integration/selenium/webdriver:element-edge-remote; 23s local, disk-cache ... (4 actions, 3 running)
    1765:  �[32m[3,104 / 3,111]�[0m 16 / 27 tests, �[31m�[1m16 failed�[0m;�[0m Testing //rb/spec/integration/selenium/webdriver:element-edge-remote; 27s local, disk-cache ... (4 actions running)
    1766:  �[31m�[1mFAIL: �[0m//rb/spec/integration/selenium/webdriver:element-edge-remote (see D:/_bazel/execroot/_main/bazel-out/x64_windows-fastbuild/testlogs/rb/spec/integration/selenium/webdriver/element-edge-remote/test_attempts/attempt_2.log)
    1767:  �[32m[3,104 / 3,111]�[0m 16 / 27 tests, �[31m�[1m16 failed�[0m;�[0m Testing //rb/spec/integration/selenium/webdriver:element-edge-remote; 29s local, disk-cache ... (4 actions running)
    1768:  �[32m[3,104 / 3,111]�[0m 16 / 27 tests, �[31m�[1m16 failed�[0m;�[0m Testing //rb/spec/integration/selenium/webdriver:element-edge-remote; 34s local, disk-cache ... (4 actions running)
    1769:  �[31m�[1mFAIL: �[0m//rb/spec/integration/selenium/webdriver:storage-edge-remote (see D:/_bazel/execroot/_main/bazel-out/x64_windows-fastbuild/testlogs/rb/spec/integration/selenium/webdriver/storage-edge-remote/test_attempts/attempt_1.log)
    1770:  �[32m[3,104 / 3,111]�[0m 16 / 27 tests, �[31m�[1m16 failed�[0m;�[0m Testing //rb/spec/integration/selenium/webdriver:element-edge-remote; 36s local, disk-cache ... (4 actions running)
    1771:  �[32m[3,104 / 3,111]�[0m 16 / 27 tests, �[31m�[1m16 failed�[0m;�[0m Testing //rb/spec/integration/selenium/webdriver:element-edge-remote; 41s local, disk-cache ... (4 actions running)
    1772:  �[31m�[1mFAIL: �[0m//rb/spec/integration/selenium/webdriver:guard-edge-remote (see D:/_bazel/execroot/_main/bazel-out/x64_windows-fastbuild/testlogs/rb/spec/integration/selenium/webdriver/guard-edge-remote/test_attempts/attempt_2.log)
    1773:  �[32m[3,104 / 3,111]�[0m 16 / 27 tests, �[31m�[1m16 failed�[0m;�[0m Testing //rb/spec/integration/selenium/webdriver:element-edge-remote; 43s local, disk-cache ... (4 actions running)
    1774:  �[32m[3,104 / 3,111]�[0m 16 / 27 tests, �[31m�[1m16 failed�[0m;�[0m Testing //rb/spec/integration/selenium/webdriver:element-edge-remote; 48s local, disk-cache ... (4 actions running)
    1775:  �[31m�[1mFAIL: �[0m//rb/spec/integration/selenium/webdriver/edge:profile-edge-remote (see D:/_bazel/execroot/_main/bazel-out/x64_windows-fastbuild/testlogs/rb/spec/integration/selenium/webdriver/edge/profile-edge-remote/test_attempts/attempt_2.log)
    1776:  �[32m[3,104 / 3,111]�[0m 16 / 27 tests, �[31m�[1m16 failed�[0m;�[0m Testing //rb/spec/integration/selenium/webdriver:element-edge-remote; 50s local, disk-cache ... (4 actions running)
    1777:  �[32m[3,104 / 3,111]�[0m 16 / 27 tests, �[31m�[1m16 failed�[0m;�[0m Testing //rb/spec/integration/selenium/webdriver:element-edge-remote; 55s local, disk-cache ... (4 actions running)
    1778:  �[31m�[1mFAIL: �[0m//rb/spec/integration/selenium/webdriver:element-edge-remote (see D:/_bazel/execroot/_main/bazel-out/x64_windows-fastbuild/testlogs/rb/spec/integration/selenium/webdriver/element-edge-remote/test.log)
    1779:  �[31m�[1mFAILED: �[0m//rb/spec/integration/selenium/webdriver:element-edge-remote (Summary)
    1780:  D:/_bazel/execroot/_main/bazel-out/x64_windows-fastbuild/testlogs/rb/spec/integration/selenium/webdriver/element-edge-remote/test.log
    1781:  D:/_bazel/execroot/_main/bazel-out/x64_windows-fastbuild/testlogs/rb/spec/integration/selenium/webdriver/element-edge-remote/test_attempts/attempt_1.log
    1782:  D:/_bazel/execroot/_main/bazel-out/x64_windows-fastbuild/testlogs/rb/spec/integration/selenium/webdriver/element-edge-remote/test_attempts/attempt_2.log
    1783:  �[32mINFO: �[0mFrom Testing //rb/spec/integration/selenium/webdriver:element-edge-remote:
    1784:  ==================== Test output for //rb/spec/integration/selenium/webdriver:element-edge-remote:
    1785:  2024-04-24 16:59:16 INFO Selenium Server Location: D:/_bazel/execroot/_main/bazel-out/x64_windows-fastbuild/bin/rb/spec/integration/selenium/webdriver/element-edge-remote.cmd.runfiles/_main/java/src/org/openqa/selenium/grid/selenium_server_deploy.jar
    1786:  An error occurred in a `before(:suite)` hook.
    1787:  Failure/Error: @pid = Process.spawn(*@command, options)
    1788:  Errno::EACCES:
    1789:  Permission denied - java
    1790:  # ./rb/lib/selenium/webdriver/common/child_process.rb:57:in `spawn'
    1791:  # ./rb/lib/selenium/webdriver/common/child_process.rb:57:in `start'
    1792:  # ./rb/lib/selenium/server.rb:204:in `start'
    1793:  # //?/D:/a/selenium/selenium/rb/spec/integration/selenium/webdriver/spec_helper.rb:40:in `block (2 levels) in <top (required)>'
    1794:  Finished in 0.0635 seconds (files took 0.83611 seconds to load)
    1795:  0 examples, 0 failures, 1 error occurred outside of examples
    1796:  ================================================================================
    1797:  ==================== Test output for //rb/spec/integration/selenium/webdriver:element-edge-remote:
    1798:  2024-04-24 16:59:36 INFO Selenium Server Location: D:/_bazel/execroot/_main/bazel-out/x64_windows-fastbuild/bin/rb/spec/integration/selenium/webdriver/element-edge-remote.cmd.runfiles/_main/java/src/org/openqa/selenium/grid/selenium_server_deploy.jar
    1799:  An error occurred in a `before(:suite)` hook.
    1800:  Failure/Error: @pid = Process.spawn(*@command, options)
    1801:  Errno::EACCES:
    1802:  Permission denied - java
    1803:  # ./rb/lib/selenium/webdriver/common/child_process.rb:57:in `spawn'
    1804:  # ./rb/lib/selenium/webdriver/common/child_process.rb:57:in `start'
    1805:  # ./rb/lib/selenium/server.rb:204:in `start'
    1806:  # //?/D:/a/selenium/selenium/rb/spec/integration/selenium/webdriver/spec_helper.rb:40:in `block (2 levels) in <top (required)>'
    1807:  Finished in 0.04899 seconds (files took 0.61435 seconds to load)
    1808:  0 examples, 0 failures, 1 error occurred outside of examples
    1809:  ================================================================================
    1810:  ==================== Test output for //rb/spec/integration/selenium/webdriver:element-edge-remote:
    1811:  2024-04-24 17:00:04 INFO Selenium Server Location: D:/_bazel/execroot/_main/bazel-out/x64_windows-fastbuild/bin/rb/spec/integration/selenium/webdriver/element-edge-remote.cmd.runfiles/_main/java/src/org/openqa/selenium/grid/selenium_server_deploy.jar
    1812:  An error occurred in a `before(:suite)` hook.
    1813:  Failure/Error: @pid = Process.spawn(*@command, options)
    1814:  Errno::EACCES:
    1815:  Permission denied - java
    1816:  # ./rb/lib/selenium/webdriver/common/child_process.rb:57:in `spawn'
    1817:  # ./rb/lib/selenium/webdriver/common/child_process.rb:57:in `start'
    1818:  # ./rb/lib/selenium/server.rb:204:in `start'
    1819:  # //?/D:/a/selenium/selenium/rb/spec/integration/selenium/webdriver/spec_helper.rb:40:in `block (2 levels) in <top (required)>'
    1820:  Finished in 0.04411 seconds (files took 0.71286 seconds to load)
    1821:  0 examples, 0 failures, 1 error occurred outside of examples
    1822:  ================================================================================
    1823:  �[32m[3,105 / 3,111]�[0m 17 / 27 tests, �[31m�[1m17 failed�[0m;�[0m Testing //rb/spec/integration/selenium/webdriver:guard-edge-remote; 49s local, disk-cache ... (4 actions, 3 running)
    1824:  �[32m[3,105 / 3,111]�[0m 17 / 27 tests, �[31m�[1m17 failed�[0m;�[0m Testing //rb/spec/integration/selenium/webdriver:guard-edge-remote; 54s local, disk-cache ... (4 actions, 3 running)
    1825:  �[31m�[1mFAIL: �[0m//rb/spec/integration/selenium/webdriver:storage-edge-remote (see D:/_bazel/execroot/_main/bazel-out/x64_windows-fastbuild/testlogs/rb/spec/integration/selenium/webdriver/storage-edge-remote/test_attempts/attempt_2.log)
    1826:  �[32m[3,105 / 3,111]�[0m 17 / 27 tests, �[31m�[1m17 failed�[0m;�[0m Testing //rb/spec/integration/selenium/webdriver:guard-edge-remote; 55s local, disk-cache ... (4 actions, 3 running)
    1827:  �[32m[3,105 / 3,111]�[0m 17 / 27 tests, �[31m�[1m17 failed�[0m;�[0m Testing //rb/spec/integration/selenium/webdriver:guard-edge-remote; 58s local, disk-cache ... (4 actions, 3 running)
    1828:  �[32m[3,105 / 3,111]�[0m 17 / 27 tests, �[31m�[1m17 failed�[0m;�[0m Testing //rb/spec/integration/selenium/webdriver:guard-edge-remote; 59s local, disk-cache ... (4 actions, 3 running)
    1829:  �[32m[3,105 / 3,111]�[0m 17 / 27 tests, �[31m�[1m17 failed�[0m;�[0m Testing //rb/spec/integration/selenium/webdriver:guard-edge-remote; 61s local, disk-cache ... (4 actions, 3 running)
    1830:  �[31m�[1mFAIL: �[0m//rb/spec/integration/selenium/webdriver:guard-edge-remote (see D:/_bazel/execroot/_main/bazel-out/x64_windows-fastbuild/testlogs/rb/spec/integration/selenium/webdriver/guard-edge-remote/test.log)
    1831:  �[31m�[1mFAILED: �[0m//rb/spec/integration/selenium/webdriver:guard-edge-remote (Summary)
    1832:  D:/_bazel/execroot/_main/bazel-out/x64_windows-fastbuild/testlogs/rb/spec/integration/selenium/webdriver/guard-edge-remote/test.log
    1833:  D:/_bazel/execroot/_main/bazel-out/x64_windows-fastbuild/testlogs/rb/spec/integration/selenium/webdriver/guard-edge-remote/test_attempts/attempt_1.log
    1834:  D:/_bazel/execroot/_main/bazel-out/x64_windows-fastbuild/testlogs/rb/spec/integration/selenium/webdriver/guard-edge-remote/test_attempts/attempt_2.log
    1835:  �[32mINFO: �[0mFrom Testing //rb/spec/integration/selenium/webdriver:guard-edge-remote:
    1836:  ==================== Test output for //rb/spec/integration/selenium/webdriver:guard-edge-remote:
    1837:  2024-04-24 16:59:23 INFO Selenium Server Location: D:/_bazel/execroot/_main/bazel-out/x64_windows-fastbuild/bin/rb/spec/integration/selenium/webdriver/guard-edge-remote.cmd.runfiles/_main/java/src/org/openqa/selenium/grid/selenium_server_deploy.jar
    1838:  An error occurred in a `before(:suite)` hook.
    1839:  Failure/Error: @pid = Process.spawn(*@command, options)
    1840:  Errno::EACCES:
    1841:  Permission denied - java
    1842:  # ./rb/lib/selenium/webdriver/common/child_process.rb:57:in `spawn'
    1843:  # ./rb/lib/selenium/webdriver/common/child_process.rb:57:in `start'
    1844:  # ./rb/lib/selenium/server.rb:204:in `start'
    1845:  # //?/D:/a/selenium/selenium/rb/spec/integration/selenium/webdriver/spec_helper.rb:40:in `block (2 levels) in <top (required)>'
    1846:  Finished in 0.04502 seconds (files took 0.6309 seconds to load)
    1847:  0 examples, 0 failures, 1 error occurred outside of examples
    1848:  ================================================================================
    1849:  ==================== Test output for //rb/spec/integration/selenium/webdriver:guard-edge-remote:
    1850:  2024-04-24 16:59:50 INFO Selenium Server Location: D:/_bazel/execroot/_main/bazel-out/x64_windows-fastbuild/bin/rb/spec/integration/selenium/webdriver/guard-edge-remote.cmd.runfiles/_main/java/src/org/openqa/selenium/grid/selenium_server_deploy.jar
    1851:  An error occurred in a `before(:suite)` hook.
    1852:  Failure/Error: @pid = Process.spawn(*@command, options)
    1853:  Errno::EACCES:
    1854:  Permission denied - java
    1855:  # ./rb/lib/selenium/webdriver/common/child_process.rb:57:in `spawn'
    1856:  # ./rb/lib/selenium/webdriver/common/child_process.rb:57:in `start'
    1857:  # ./rb/lib/selenium/server.rb:204:in `start'
    1858:  # //?/D:/a/selenium/selenium/rb/spec/integration/selenium/webdriver/spec_helper.rb:40:in `block (2 levels) in <top (required)>'
    1859:  Finished in 0.04379 seconds (files took 0.57819 seconds to load)
    1860:  0 examples, 0 failures, 1 error occurred outside of examples
    1861:  ================================================================================
    1862:  ==================== Test output for //rb/spec/integration/selenium/webdriver:guard-edge-remote:
    1863:  2024-04-24 17:00:18 INFO Selenium Server Location: D:/_bazel/execroot/_main/bazel-out/x64_windows-fastbuild/bin/rb/spec/integration/selenium/webdriver/guard-edge-remote.cmd.runfiles/_main/java/src/org/openqa/selenium/grid/selenium_server_deploy.jar
    1864:  An error occurred in a `before(:suite)` hook.
    1865:  Failure/Error: @pid = Process.spawn(*@command, options)
    1866:  Errno::EACCES:
    1867:  Permission denied - java
    1868:  # ./rb/lib/selenium/webdriver/common/child_process.rb:57:in `spawn'
    1869:  # ./rb/lib/selenium/webdriver/common/child_process.rb:57:in `start'
    1870:  # ./rb/lib/selenium/server.rb:204:in `start'
    1871:  # //?/D:/a/selenium/selenium/rb/spec/integration/selenium/webdriver/spec_helper.rb:40:in `block (2 levels) in <top (required)>'
    1872:  Finished in 0.04634 seconds (files took 0.63962 seconds to load)
    1873:  0 examples, 0 failures, 1 error occurred outside of examples
    1874:  ================================================================================
    1875:  �[32m[3,106 / 3,111]�[0m 18 / 27 tests, �[31m�[1m18 failed�[0m;�[0m Testing //rb/spec/integration/selenium/webdriver/edge:profile-edge-remote; 55s local, disk-cache ... (4 actions, 2 running)
    1876:  �[32m[3,106 / 3,111]�[0m 18 / 27 tests, �[31m�[1m18 failed�[0m;�[0m Testing //rb/spec/integration/selenium/webdriver/edge:profile-edge-remote; 61s local, disk-cache ... (4 actions, 2 running)
    1877:  �[31m�[1mFAIL: �[0m//rb/spec/integration/selenium/webdriver/edge:profile-edge-remote (see D:/_bazel/execroot/_main/bazel-out/x64_windows-fastbuild/testlogs/rb/spec/integration/selenium/webdriver/edge/profile-edge-remote/test.log)
    1878:  ==================== Test output for //rb/spec/integration/selenium/webdriver/edge:profile-edge-remote:
    1879:  2024-04-24 16:59:30 INFO Selenium Server Location: D:/_bazel/execroot/_main/bazel-out/x64_windows-fastbuild/bin/rb/spec/integration/selenium/webdriver/edge/profile-edge-remote.cmd.runfiles/_main/java/src/org/openqa/selenium/grid/selenium_server_deploy.jar
    1880:  �[31m�[1mFAILED: �[0m//rb/spec/integration/selenium/webdriver/edge:profile-edge-remote (Summary)
    1881:  D:/_bazel/execroot/_main/bazel-out/x64_windows-fastbuild/testlogs/rb/spec/integration/selenium/webdriver/edge/profile-edge-remote/test.log
    1882:  An error occurred in a `before(:suite)` hook.
    1883:  D:/_bazel/execroot/_main/bazel-out/x64_windows-fastbuild/testlogs/rb/spec/integration/selenium/webdriver/edge/profile-edge-remote/test_attempts/attempt_1.log
    1884:  D:/_bazel/execroot/_main/bazel-out/x64_windows-fastbuild/testlogs/rb/spec/integration/selenium/webdriver/edge/profile-edge-remote/test_attempts/attempt_2.log
    1885:  �[32mINFO: �[0mFrom Testing //rb/spec/integration/selenium/webdriver/edge:profile-edge-remote:
    1886:  Failure/Error: @pid = Process.spawn(*@command, options)
    1887:  Errno::EACCES:
    1888:  Permission denied - java
    1889:  # ./rb/lib/selenium/webdriver/common/child_process.rb:57:in `spawn'
    1890:  # ./rb/lib/selenium/webdriver/common/child_process.rb:57:in `start'
    1891:  # ./rb/lib/selenium/server.rb:204:in `start'
    1892:  # //?/D:/a/selenium/selenium/rb/spec/integration/selenium/webdriver/spec_helper.rb:40:in `block (2 levels) in <top (required)>'
    1893:  Finished in 0.04398 seconds (files took 0.6502 seconds to load)
    1894:  0 examples, 0 failures, 1 error occurred outside of examples
    1895:  ================================================================================
    1896:  ==================== Test output for //rb/spec/integration/selenium/webdriver/edge:profile-edge-remote:
    1897:  2024-04-24 16:59:57 INFO Selenium Server Location: D:/_bazel/execroot/_main/bazel-out/x64_windows-fastbuild/bin/rb/spec/integration/selenium/webdriver/edge/profile-edge-remote.cmd.runfiles/_main/java/src/org/openqa/selenium/grid/selenium_server_deploy.jar
    1898:  An error occurred in a `before(:suite)` hook.
    1899:  Failure/Error: @pid = Process.spawn(*@command, options)
    1900:  Errno::EACCES:
    1901:  Permission denied - java
    1902:  # ./rb/lib/selenium/webdriver/common/child_process.rb:57:in `spawn'
    1903:  # ./rb/lib/selenium/webdriver/common/child_process.rb:57:in `start'
    1904:  # ./rb/lib/selenium/server.rb:204:in `start'
    1905:  # //?/D:/a/selenium/selenium/rb/spec/integration/selenium/webdriver/spec_helper.rb:40:in `block (2 levels) in <top (required)>'
    1906:  Finished in 0.04674 seconds (files took 0.64789 seconds to load)
    1907:  0 examples, 0 failures, 1 error occurred outside of examples
    1908:  ================================================================================
    1909:  ==================== Test output for //rb/spec/integration/selenium/webdriver/edge:profile-edge-remote:
    1910:  2024-04-24 17:00:25 INFO Selenium Server Location: D:/_bazel/execroot/_main/bazel-out/x64_windows-fastbuild/bin/rb/spec/integration/selenium/webdriver/edge/profile-edge-remote.cmd.runfiles/_main/java/src/org/openqa/selenium/grid/selenium_server_deploy.jar
    1911:  An error occurred in a `before(:suite)` hook.
    1912:  Failure/Error: @pid = Process.spawn(*@command, options)
    1913:  Errno::EACCES:
    1914:  Permission denied - java
    1915:  # ./rb/lib/selenium/webdriver/common/child_process.rb:57:in `spawn'
    1916:  # ./rb/lib/selenium/webdriver/common/child_process.rb:57:in `start'
    1917:  # ./rb/lib/selenium/server.rb:204:in `start'
    1918:  # //?/D:/a/selenium/selenium/rb/spec/integration/selenium/webdriver/spec_helper.rb:40:in `block (2 levels) in <top (required)>'
    1919:  Finished in 0.04946 seconds (files took 0.6517 seconds to load)
    1920:  0 examples, 0 failures, 1 error occurred outside of examples
    1921:  ================================================================================
    1922:  �[32m[3,107 / 3,111]�[0m 19 / 27 tests, �[31m�[1m19 failed�[0m;�[0m Testing //rb/spec/integration/selenium/webdriver:storage-edge-remote; 49s local, disk-cache ... (4 actions, 1 running)
    1923:  �[32m[3,107 / 3,111]�[0m 19 / 27 tests, �[31m�[1m19 failed�[0m;�[0m Testing //rb/spec/integration/selenium/webdriver:storage-edge-remote; 52s local, disk-cache ... (4 actions, 1 running)
    1924:  �[32m[3,107 / 3,111]�[0m 19 / 27 tests, �[31m�[1m19 failed�[0m;�[0m Testing //rb/spec/integration/selenium/webdriver:storage-edge-remote; 55s local, disk-cache ... (4 actions, 2 running)
    1925:  �[31m�[1mFAIL: �[0m//rb/spec/integration/selenium/webdriver:storage-edge-remote (see D:/_bazel/execroot/_main/bazel-out/x64_windows-fastbuild/testlogs/rb/spec/integration/selenium/webdriver/storage-edge-remote/test.log)
    1926:  ==================== Test output for //rb/spec/integration/selenium/webdriver:storage-edge-remote:
    1927:  �[31m�[1mFAILED: �[0m//rb/spec/integration/selenium/webdriver:storage-edge-remote (Summary)
    1928:  D:/_bazel/execroot/_main/bazel-out/x64_windows-fastbuild/testlogs/rb/spec/integration/selenium/webdriver/storage-edge-remote/test.log
    1929:  D:/_bazel/execroot/_main/bazel-out/x64_windows-fastbuild/testlogs/rb/spec/integration/selenium/webdriver/storage-edge-remote/test_attempts/attempt_1.log
    1930:  D:/_bazel/execroot/_main/bazel-out/x64_windows-fastbuild/testlogs/rb/spec/integration/selenium/webdriver/storage-edge-remote/test_attempts/attempt_2.log
    1931:  �[32mINFO: �[0mFrom Testing //rb/spec/integration/selenium/webdriver:storage-edge-remote:
    1932:  2024-04-24 16:59:43 INFO Selenium Server Location: D:/_bazel/execroot/_main/bazel-out/x64_windows-fastbuild/bin/rb/spec/integration/selenium/webdriver/storage-edge-remote.cmd.runfiles/_main/java/src/org/openqa/selenium/grid/selenium_server_deploy.jar
    1933:  An error occurred in a `before(:suite)` hook.
    1934:  Failure/Error: @pid = Process.spawn(*@command, options)
    1935:  Errno::EACCES:
    1936:  Permission denied - java
    1937:  # ./rb/lib/selenium/webdriver/common/child_process.rb:57:in `spawn'
    1938:  # ./rb/lib/selenium/webdriver/common/child_process.rb:57:in `start'
    1939:  # ./rb/lib/selenium/server.rb:204:in `start'
    1940:  # //?/D:/a/selenium/selenium/rb/spec/integration/selenium/webdriver/spec_helper.rb:40:in `block (2 levels) in <top (required)>'
    1941:  Finished in 0.04347 seconds (files took 0.58114 seconds to load)
    1942:  0 examples, 0 failures, 1 error occurred outside of examples
    1943:  ================================================================================
    1944:  ==================== Test output for //rb/spec/integration/selenium/webdriver:storage-edge-remote:
    1945:  2024-04-24 17:00:11 INFO Selenium Server Location: D:/_bazel/execroot/_main/bazel-out/x64_windows-fastbuild/bin/rb/spec/integration/selenium/webdriver/storage-edge-remote.cmd.runfiles/_main/java/src/org/openqa/selenium/grid/selenium_server_deploy.jar
    1946:  An error occurred in a `before(:suite)` hook.
    1947:  Failure/Error: @pid = Process.spawn(*@command, options)
    1948:  Errno::EACCES:
    1949:  Permission denied - java
    1950:  # ./rb/lib/selenium/webdriver/common/child_process.rb:57:in `spawn'
    1951:  # ./rb/lib/selenium/webdriver/common/child_process.rb:57:in `start'
    1952:  # ./rb/lib/selenium/server.rb:204:in `start'
    1953:  # //?/D:/a/selenium/selenium/rb/spec/integration/selenium/webdriver/spec_helper.rb:40:in `block (2 levels) in <top (required)>'
    1954:  Finished in 0.05048 seconds (files took 0.64437 seconds to load)
    1955:  0 examples, 0 failures, 1 error occurred outside of examples
    1956:  ================================================================================
    1957:  ==================== Test output for //rb/spec/integration/selenium/webdriver:storage-edge-remote:
    1958:  2024-04-24 17:00:32 INFO Selenium Server Location: D:/_bazel/execroot/_main/bazel-out/x64_windows-fastbuild/bin/rb/spec/integration/selenium/webdriver/storage-edge-remote.cmd.runfiles/_main/java/src/org/openqa/selenium/grid/selenium_server_deploy.jar
    1959:  An error occurred in a `before(:suite)` hook.
    1960:  Failure/Error: @pid = Process.spawn(*@command, options)
    1961:  Errno::EACCES:
    1962:  Permission denied - java
    1963:  # ./rb/lib/selenium/webdriver/common/child_process.rb:57:in `spawn'
    1964:  # ./rb/lib/selenium/webdriver/common/child_process.rb:57:in `start'
    1965:  # ./rb/lib/selenium/server.rb:204:in `start'
    1966:  # //?/D:/a/selenium/selenium/rb/spec/integration/selenium/webdriver/spec_helper.rb:40:in `block (2 levels) in <top (required)>'
    1967:  Finished in 0.0539 seconds (files took 0.7967 seconds to load)
    1968:  0 examples, 0 failures, 1 error occurred outside of examples
    1969:  ================================================================================
    1970:  �[32m[3,108 / 3,111]�[0m 20 / 27 tests, �[31m�[1m20 failed�[0m;�[0m Testing //rb/spec/integration/selenium/webdriver:error-edge-remote; 7s disk-cache ... (3 actions, 1 running)
    1971:  �[32m[3,108 / 3,111]�[0m 20 / 27 tests, �[31m�[1m20 failed�[0m;�[0m [Sched] Testing //rb/spec/integration/selenium/webdriver:select-edge-remote; 7s ... (3 actions, 1 running)
    1972:  �[32m[3,108 / 3,111]�[0m 20 / 27 tests, �[31m�[1m20 failed�[0m;�[0m Testing //rb/spec/integration/selenium/webdriver:zipper-edge-remote; 6s local, disk-cache ... (3 actions, 2 running)
    1973:  �[31m�[1mFAIL: �[0m//rb/spec/integration/selenium/webdriver:zipper-edge-remote (see D:/_bazel/execroot/_main/bazel-out/x64_windows-fastbuild/testlogs/rb/spec/integration/selenium/webdriver/zipper-edge-remote/test_attempts/attempt_1.log)
    1974:  �[32m[3,108 / 3,111]�[0m 20 / 27 tests, �[31m�[1m20 failed�[0m;�[0m Testing //rb/spec/integration/selenium/webdriver:zipper-edge-remote; 8s local, disk-cache ... (3 actions, 2 running)
    1975:  �[32m[3,108 / 3,111]�[0m 20 / 27 tests, �[31m�[1m20 failed�[0m;�[0m Testing //rb/spec/integration/selenium/webdriver:zipper-edge-remote; 11s local, disk-cache ... (3 actions, 2 running)
    1976:  �[32m[3,108 / 3,111]�[0m 20 / 27 tests, �[31m�[1m20 failed�[0m;�[0m Testing //rb/spec/integration/selenium/webdriver:zipper-edge-remote; 13s local, disk-cache ... (3 actions running)
    1977:  �[31m�[1mFAIL: �[0m//rb/spec/integration/selenium/webdriver:select-edge-remote (see D:/_bazel/execroot/_main/bazel-out/x64_windows-fastbuild/testlogs/rb/spec/integration/selenium/webdriver/select-edge-remote/test_attempts/attempt_1.log)
    1978:  �[32m[3,108 / 3,111]�[0m 20 / 27 tests, �[31m�[1m20 failed�[0m;�[0m Testing //rb/spec/integration/selenium/webdriver:zipper-edge-remote; 15s local, disk-cache ... (3 actions running)
    1979:  �[32m[3,108 / 3,111]�[0m 20 / 27 tests, �[31m�[1m20 failed�[0m;�[0m Testing //rb/spec/integration/selenium/webdriver:zipper-edge-remote; 20s local, disk-cache ... (3 actions running)
    1980:  �[31m�[1mFAIL: �[0m//rb/spec/integration/selenium/webdriver:error-edge-remote (see D:/_bazel/execroot/_main/bazel-out/x64_windows-fastbuild/testlogs/rb/spec/integration/selenium/webdriver/error-edge-remote/test_attempts/attempt_1.log)
    1981:  �[32m[3,108 / 3,111]�[0m 20 / 27 tests, �[31m�[1m20 failed�[0m;�[0m Testing //rb/spec/integration/selenium/webdriver:zipper-edge-remote; 22s local, disk-cache ... (3 actions running)
    1982:  �[32m[3,108 / 3,111]�[0m 20 / 27 tests, �[31m�[1m20 failed�[0m;�[0m Testing //rb/spec/integration/selenium/webdriver:zipper-edge-remote; 27s local, disk-cache ... (3 actions running)
    1983:  �[31m�[1mFAIL: �[0m//rb/spec/integration/selenium/webdriver:zipper-edge-remote (see D:/_bazel/execroot/_main/bazel-out/x64_windows-fastbuild/testlogs/rb/spec/integration/selenium/webdriver/zipper-edge-remote/test_attempts/attempt_2.log)
    1984:  �[32m[3,108 / 3,111]�[0m 20 / 27 tests, �[31m�[1m20 failed�[0m;�[0m Testing //rb/spec/integration/selenium/webdriver:zipper-edge-remote; 29s local, disk-cache ... (3 actions running)
    1985:  �[32m[3,108 / 3,111]�[0m 20 / 27 tests, �[31m�[1m20 failed�[0m;�[0m Testing //rb/spec/integration/selenium/webdriver:zipper-edge-remote; 34s local, disk-cache ... (3 actions running)
    1986:  �[31m�[1mFAIL: �[0m//rb/spec/integration/selenium/webdriver:select-edge-remote (see D:/_bazel/execroot/_main/bazel-out/x64_windows-fastbuild/testlogs/rb/spec/integration/selenium/webdriver/select-edge-remote/test_attempts/attempt_2.log)
    1987:  �[32m[3,108 / 3,111]�[0m 20 / 27 tests, �[31m�[1m20 failed�[0m;�[0m Testing //rb/spec/integration/selenium/webdriver:zipper-edge-remote; 35s local, disk-cache ... (3 actions running)
    1988:  �[32m[3,108 / 3,111]�[0m 20 / 27 tests, �[31m�[1m20 failed�[0m;�[0m Testing //rb/spec/integration/selenium/webdriver:zipper-edge-remote; 41s local, disk-cache ... (3 actions running)
    1989:  �[31m�[1mFAIL: �[0m//rb/spec/integration/selenium/webdriver:error-edge-remote (see D:/_bazel/execroot/_main/bazel-out/x64_windows-fastbuild/testlogs/rb/spec/integration/selenium/webdriver/error-edge-remote/test_attempts/attempt_2.log)
    1990:  �[32m[3,108 / 3,111]�[0m 20 / 27 tests, �[31m�[1m20 failed�[0m;�[0m Testing //rb/spec/integration/selenium/webdriver:zipper-edge-remote; 42s local, disk-cache ... (3 actions running)
    1991:  �[32m[3,108 / 3,111]�[0m 20 / 27 tests, �[31m�[1m20 failed�[0m;�[0m Testing //rb/spec/integration/selenium/webdriver:zipper-edge-remote; 47s local, disk-cache ... (3 actions running)
    1992:  �[31m�[1mFAIL: �[0m//rb/spec/integration/selenium/webdriver:zipper-edge-remote (see D:/_bazel/execroot/_main/bazel-out/x64_windows-fastbuild/testlogs/rb/spec/integration/selenium/webdriver/zipper-edge-remote/test.log)
    1993:  �[31m�[1mFAILED: �[0m//rb/spec/integration/selenium/webdriver:zipper-edge-remote (Summary)
    1994:  ==================== Test output for //rb/spec/integration/selenium/webdriver:zipper-edge-remote:
    1995:  D:/_bazel/execroot/_main/bazel-out/x64_windows-fastbuild/testlogs/rb/spec/integration/selenium/webdriver/zipper-edge-remote/test.log
    1996:  2024-04-24 17:00:39 INFO Selenium Server Location: D:/_bazel/execroot/_main/bazel-out/x64_windows-fastbuild/bin/rb/spec/integration/selenium/webdriver/zipper-edge-remote.cmd.runfiles/_main/java/src/org/openqa/selenium/grid/selenium_server_deploy.jar
    1997:  D:/_bazel/execroot/_main/bazel-out/x64_windows-fastbuild/testlogs/rb/spec/integration/selenium/webdriver/zipper-edge-remote/test_attempts/attempt_1.log
    1998:  D:/_bazel/execroot/_main/bazel-out/x64_windows-fastbuild/testlogs/rb/spec/integration/selenium/webdriver/zipper-edge-remote/test_attempts/attempt_2.log
    1999:  An error occurred in a `before(:suite)` hook.
    2000:  Failure/Error: @pid = Process.spawn(*@command, options)
    2001:  �[32mINFO: �[0mFrom Testing //rb/spec/integration/selenium/webdriver:zipper-edge-remote:
    2002:  Errno::EACCES:
    2003:  Permission denied - java
    2004:  # ./rb/lib/selenium/webdriver/common/child_process.rb:57:in `spawn'
    2005:  # ./rb/lib/selenium/webdriver/common/child_process.rb:57:in `start'
    2006:  # ./rb/lib/selenium/server.rb:204:in `start'
    2007:  # //?/D:/a/selenium/selenium/rb/spec/integration/selenium/webdriver/spec_helper.rb:40:in `block (2 levels) in <top (required)>'
    2008:  Finished in 0.04518 seconds (files took 0.68048 seconds to load)
    2009:  0 examples, 0 failures, 1 error occurred outside of examples
    2010:  ================================================================================
    2011:  ==================== Test output for //rb/spec/integration/selenium/webdriver:zipper-edge-remote:
    2012:  2024-04-24 17:00:59 INFO Selenium Server Location: D:/_bazel/execroot/_main/bazel-out/x64_windows-fastbuild/bin/rb/spec/integration/selenium/webdriver/zipper-edge-remote.cmd.runfiles/_main/java/src/org/openqa/selenium/grid/selenium_server_deploy.jar
    2013:  An error occurred in a `before(:suite)` hook.
    2014:  Failure/Error: @pid = Process.spawn(*@command, options)
    2015:  Errno::EACCES:
    2016:  Permission denied - java
    2017:  # ./rb/lib/selenium/webdriver/common/child_process.rb:57:in `spawn'
    2018:  # ./rb/lib/selenium/webdriver/common/child_process.rb:57:in `start'
    2019:  # ./rb/lib/selenium/server.rb:204:in `start'
    2020:  # //?/D:/a/selenium/selenium/rb/spec/integration/selenium/webdriver/spec_helper.rb:40:in `block (2 levels) in <top (required)>'
    2021:  Finished in 0.04508 seconds (files took 0.60444 seconds to load)
    2022:  0 examples, 0 failures, 1 error occurred outside of examples
    2023:  ================================================================================
    2024:  ==================== Test output for //rb/spec/integration/selenium/webdriver:zipper-edge-remote:
    2025:  2024-04-24 17:01:20 INFO Selenium Server Location: D:/_bazel/execroot/_main/bazel-out/x64_windows-fastbuild/bin/rb/spec/integration/selenium/webdriver/zipper-edge-remote.cmd.runfiles/_main/java/src/org/openqa/selenium/grid/selenium_server_deploy.jar
    2026:  An error occurred in a `before(:suite)` hook.
    2027:  Failure/Error: @pid = Process.spawn(*@command, options)
    2028:  Errno::EACCES:
    2029:  Permission denied - java
    2030:  # ./rb/lib/selenium/webdriver/common/child_process.rb:57:in `spawn'
    2031:  # ./rb/lib/selenium/webdriver/common/child_process.rb:57:in `start'
    2032:  # ./rb/lib/selenium/server.rb:204:in `start'
    2033:  # //?/D:/a/selenium/selenium/rb/spec/integration/selenium/webdriver/spec_helper.rb:40:in `block (2 levels) in <top (required)>'
    2034:  Finished in 0.04918 seconds (files took 0.58958 seconds to load)
    2035:  0 examples, 0 failures, 1 error occurred outside of examples
    2036:  ================================================================================
    2037:  �[32m[3,109 / 3,111]�[0m 21 / 27 tests, �[31m�[1m21 failed�[0m;�[0m Testing //rb/spec/integration/selenium/webdriver:select-edge-remote; 42s local, disk-cache ... (2 actions running)
    2038:  �[32m[3,109 / 3,111]�[0m 21 / 27 tests, �[31m�[1m21 failed�[0m;�[0m Testing //rb/spec/integration/selenium/webdriver:select-edge-remote; 47s local, disk-cache ... (2 actions running)
    2039:  �[31m�[1mFAIL: �[0m//rb/spec/integration/selenium/webdriver:select-edge-remote (see D:/_bazel/execroot/_main/bazel-out/x64_windows-fastbuild/testlogs/rb/spec/integration/selenium/webdriver/select-edge-remote/test.log)
    2040:  ==================== Test output for //rb/spec/integration/selenium/webdriver:select-edge-remote:
    2041:  �[31m�[1mFAILED: �[0m//rb/spec/integration/selenium/webdriver:select-edge-remote (Summary)
    2042:  2024-04-24 17:00:45 INFO Selenium Server Location: D:/_bazel/execroot/_main/bazel-out/x64_windows-fastbuild/bin/rb/spec/integration/selenium/webdriver/select-edge-remote.cmd.runfiles/_main/java/src/org/openqa/selenium/grid/selenium_server_deploy.jar
    2043:  D:/_bazel/execroot/_main/bazel-out/x64_windows-fastbuild/testlogs/rb/spec/integration/selenium/webdriver/select-edge-remote/test.log
    2044:  D:/_bazel/execroot/_main/bazel-out/x64_windows-fastbuild/testlogs/rb/spec/integration/selenium/webdriver/select-edge-remote/test_attempts/attempt_1.log
    2045:  D:/_bazel/execroot/_main/bazel-out/x64_windows-fastbuild/testlogs/rb/spec/integration/selenium/webdriver/select-edge-remote/test_attempts/attempt_2.log
    2046:  �[32mINFO: �[0mFrom Testing //rb/spec/integration/selenium/webdriver:select-edge-remote:
    2047:  An error occurred in a `before(:suite)` hook.
    2048:  Failure/Error: @pid = Process.spawn(*@command, options)
    2049:  Errno::EACCES:
    2050:  Permission denied - java
    2051:  # ./rb/lib/selenium/webdriver/common/child_process.rb:57:in `spawn'
    2052:  # ./rb/lib/selenium/webdriver/common/child_process.rb:57:in `start'
    2053:  # ./rb/lib/selenium/server.rb:204:in `start'
    2054:  # //?/D:/a/selenium/selenium/rb/spec/integration/selenium/webdriver/spec_helper.rb:40:in `block (2 levels) in <top (required)>'
    2055:  Finished in 0.05838 seconds (files took 0.66203 seconds to load)
    2056:  0 examples, 0 failures, 1 error occurred outside of examples
    2057:  ================================================================================
    2058:  ==================== Test output for //rb/spec/integration/selenium/webdriver:select-edge-remote:
    2059:  2024-04-24 17:01:06 INFO Selenium Server Location: D:/_bazel/execroot/_main/bazel-out/x64_windows-fastbuild/bin/rb/spec/integration/selenium/webdriver/select-edge-remote.cmd.runfiles/_main/java/src/org/openqa/selenium/grid/selenium_server_deploy.jar
    2060:  An error occurred in a `before(:suite)` hook.
    2061:  Failure/Error: @pid = Process.spawn(*@command, options)
    2062:  Errno::EACCES:
    2063:  Permission denied - java
    2064:  # ./rb/lib/selenium/webdriver/common/child_process.rb:57:in `spawn'
    2065:  # ./rb/lib/selenium/webdriver/common/child_process.rb:57:in `start'
    2066:  # ./rb/lib/selenium/server.rb:204:in `start'
    2067:  # //?/D:/a/selenium/selenium/rb/spec/integration/selenium/webdriver/spec_helper.rb:40:in `block (2 levels) in <top (required)>'
    2068:  Finished in 0.04619 seconds (files took 0.60904 seconds to load)
    2069:  0 examples, 0 failures, 1 error occurred outside of examples
    2070:  ================================================================================
    2071:  ==================== Test output for //rb/spec/integration/selenium/webdriver:select-edge-remote:
    2072:  2024-04-24 17:01:26 INFO Selenium Server Location: D:/_bazel/execroot/_main/bazel-out/x64_windows-fastbuild/bin/rb/spec/integration/selenium/webdriver/select-edge-remote.cmd.runfiles/_main/java/src/org/openqa/selenium/grid/selenium_server_deploy.jar
    2073:  An error occurred in a `before(:suite)` hook.
    2074:  Failure/Error: @pid = Process.spawn(*@command, options)
    2075:  Errno::EACCES:
    2076:  Permission denied - java
    2077:  # ./rb/lib/selenium/webdriver/common/child_process.rb:57:in `spawn'
    2078:  # ./rb/lib/selenium/webdriver/common/child_process.rb:57:in `start'
    2079:  # ./rb/lib/selenium/server.rb:204:in `start'
    2080:  # //?/D:/a/selenium/selenium/rb/spec/integration/selenium/webdriver/spec_helper.rb:40:in `block (2 levels) in <top (required)>'
    2081:  Finished in 0.04424 seconds (files took 0.59354 seconds to load)
    2082:  0 examples, 0 failures, 1 error occurred outside of examples
    2083:  ================================================================================
    2084:  �[32m[3,110 / 3,111]�[0m 22 / 27 tests, �[31m�[1m22 failed�[0m;�[0m Testing //rb/spec/integration/selenium/webdriver:error-edge-remote; 42s local, disk-cache
    2085:  �[32m[3,110 / 3,111]�[0m 22 / 27 tests, �[31m�[1m22 failed�[0m;�[0m Testing //rb/spec/integration/selenium/webdriver:error-edge-remote; 47s local, disk-cache
    2086:  �[31m�[1mFAIL: �[0m//rb/spec/integration/selenium/webdriver:error-edge-remote (see D:/_bazel/execroot/_main/bazel-out/x64_windows-fastbuild/testlogs/rb/spec/integration/selenium/webdriver/error-edge-remote/test.log)
    2087:  �[31m�[1mFAILED: �[0m//rb/spec/integration/selenium/webdriver:error-edge-remote (Summary)
    2088:  D:/_bazel/execroot/_main/bazel-out/x64_windows-fastbuild/testlogs/rb/spec/integration/selenium/webdriver/error-edge-remote/test.log
    2089:  D:/_bazel/execroot/_main/bazel-out/x64_windows-fastbuild/testlogs/rb/spec/integration/selenium/webdriver/error-edge-remote/test_attempts/attempt_1.log
    2090:  D:/_bazel/execroot/_main/bazel-out/x64_windows-fastbuild/testlogs/rb/spec/integration/selenium/webdriver/error-edge-remote/test_attempts/attempt_2.log
    2091:  �[32mINFO: �[0mFrom Testing //rb/spec/integration/selenium/webdriver:error-edge-remote:
    2092:  ==================== Test output for //rb/spec/integration/selenium/webdriver:error-edge-remote:
    2093:  2024-04-24 17:00:52 INFO Selenium Server Location: D:/_bazel/execroot/_main/bazel-out/x64_windows-fastbuild/bin/rb/spec/integration/selenium/webdriver/error-edge-remote.cmd.runfiles/_main/java/src/org/openqa/selenium/grid/selenium_server_deploy.jar
    2094:  An error occurred in a `before(:suite)` hook.
    2095:  Failure/Error: @pid = Process.spawn(*@command, options)
    2096:  Errno::EACCES:
    2097:  Permission denied - java
    2098:  # ./rb/lib/selenium/webdriver/common/child_process.rb:57:in `spawn'
    2099:  # ./rb/lib/selenium/webdriver/common/child_process.rb:57:in `start'
    2100:  # ./rb/lib/selenium/server.rb:204:in `start'
    2101:  # //?/D:/a/selenium/selenium/rb/spec/integration/selenium/webdriver/spec_helper.rb:40:in `block (2 levels) in <top (required)>'
    2102:  Finished in 0.04363 seconds (files took 0.58833 seconds to load)
    2103:  0 examples, 0 failures, 1 error occurred outside of examples
    2104:  ================================================================================
    2105:  ==================== Test output for //rb/spec/integration/selenium/webdriver:error-edge-remote:
    2106:  2024-04-24 17:01:13 INFO Selenium Server Location: D:/_bazel/execroot/_main/bazel-out/x64_windows-fastbuild/bin/rb/spec/integration/selenium/webdriver/error-edge-remote.cmd.runfiles/_main/java/src/org/openqa/selenium/grid/selenium_server_deploy.jar
    2107:  An error occurred in a `before(:suite)` hook.
    2108:  Failure/Error: @pid = Process.spawn(*@command, options)
    2109:  Errno::EACCES:
    2110:  Permission denied - java
    2111:  # ./rb/lib/selenium/webdriver/common/child_process.rb:57:in `spawn'
    2112:  # ./rb/lib/selenium/webdriver/common/child_process.rb:57:in `start'
    2113:  # ./rb/lib/selenium/server.rb:204:in `start'
    2114:  # //?/D:/a/selenium/selenium/rb/spec/integration/selenium/webdriver/spec_helper.rb:40:in `block (2 levels) in <top (required)>'
    2115:  Finished in 0.04722 seconds (files took 0.63589 seconds to load)
    2116:  0 examples, 0 failures, 1 error occurred outside of examples
    2117:  ================================================================================
    2118:  ==================== Test output for //rb/spec/integration/selenium/webdriver:error-edge-remote:
    2119:  2024-04-24 17:01:33 INFO Selenium Server Location: D:/_bazel/execroot/_main/bazel-out/x64_windows-fastbuild/bin/rb/spec/integration/selenium/webdriver/error-edge-remote.cmd.runfiles/_main/java/src/org/openqa/selenium/grid/selenium_server_deploy.jar
    2120:  An error occurred in a `before(:suite)` hook.
    2121:  Failure/Error: @pid = Process.spawn(*@command, options)
    2122:  Errno::EACCES:
    2123:  Permission denied - java
    2124:  # ./rb/lib/selenium/webdriver/common/child_process.rb:57:in `spawn'
    2125:  # ./rb/lib/selenium/webdriver/common/child_process.rb:57:in `start'
    2126:  # ./rb/lib/selenium/server.rb:204:in `start'
    2127:  # //?/D:/a/selenium/selenium/rb/spec/integration/selenium/webdriver/spec_helper.rb:40:in `block (2 levels) in <top (required)>'
    2128:  Finished in 0.04802 seconds (files took 0.62386 seconds to load)
    2129:  0 examples, 0 failures, 1 error occurred outside of examples
    2130:  ================================================================================
    2131:  �[32m[3,111 / 3,112]�[0m 23 / 27 tests, �[31m�[1m23 failed�[0m;�[0m Testing //rb/spec/integration/selenium/webdriver:devtools-edge-remote; 1s disk-cache
    2132:  �[32m[3,111 / 3,112]�[0m 23 / 27 tests, �[31m�[1m23 failed�[0m;�[0m [Sched] Testing //rb/spec/integration/selenium/webdriver:devtools-edge-remote
    2133:  �[32m[3,111 / 3,112]�[0m 23 / 27 tests, �[31m�[1m23 failed�[0m;�[0m Testing //rb/spec/integration/selenium/webdriver:devtools-edge-remote; 1s local, disk-cache
    2134:  �[32m[3,111 / 3,112]�[0m 23 / 27 tests, �[31m�[1m23 failed�[0m;�[0m Testing //rb/spec/integration/selenium/webdriver:devtools-edge-remote; 6s local, disk-cache
    2135:  �[31m�[1mFAIL: �[0m//rb/spec/integration/selenium/webdriver:devtools-edge-remote (see D:/_bazel/execroot/_main/bazel-out/x64_windows-fastbuild/testlogs/rb/spec/integration/selenium/webdriver/devtools-edge-remote/test_attempts/attempt_1.log)
    2136:  �[32m[3,111 / 3,112]�[0m 23 / 27 tests, �[31m�[1m23 failed�[0m;�[0m Testing //rb/spec/integration/selenium/webdriver:devtools-edge-remote; 8s local, disk-cache
    2137:  �[32m[3,111 / 3,112]�[0m 23 / 27 tests, �[31m�[1m23 failed�[0m;�[0m Testing //rb/spec/integration/selenium/webdriver:devtools-edge-remote; 13s local, disk-cache
    2138:  �[31m�[1mFAIL: �[0m//rb/spec/integration/selenium/webdriver:devtools-edge-remote (see D:/_bazel/execroot/_main/bazel-out/x64_windows-fastbuild/testlogs/rb/spec/integration/selenium/webdriver/devtools-edge-remote/test_attempts/attempt_2.log)
    2139:  �[32m[3,111 / 3,112]�[0m 23 / 27 tests, �[31m�[1m23 failed�[0m;�[0m Testing //rb/spec/integration/selenium/webdriver:devtools-edge-remote; 15s local, disk-cache
    2140:  �[32m[3,111 / 3,112]�[0m 23 / 27 tests, �[31m�[1m23 failed�[0m;�[0m Testing //rb/spec/integration/selenium/webdriver:devtools-edge-remote; 21s local, disk-cache
    2141:  �[31m�[1mFAIL: �[0m//rb/spec/integration/selenium/webdriver:devtools-edge-remote (see D:/_bazel/execroot/_main/bazel-out/x64_windows-fastbuild/testlogs/rb/spec/integration/selenium/webdriver/devtools-edge-remote/test.log)
    2142:  �[31m�[1mFAILED: �[0m//rb/spec/integration/selenium/webdriver:devtools-edge-remote (Summary)
    2143:  D:/_bazel/execroot/_main/bazel-out/x64_windows-fastbuild/testlogs/rb/spec/integration/selenium/webdriver/devtools-edge-remote/test.log
    2144:  D:/_bazel/execroot/_main/bazel-out/x64_windows-fastbuild/testlogs/rb/spec/integration/selenium/webdriver/devtools-edge-remote/test_attempts/attempt_1.log
    2145:  D:/_bazel/execroot/_main/bazel-out/x64_windows-fastbuild/testlogs/rb/spec/integration/selenium/webdriver/devtools-edge-remote/test_attempts/attempt_2.log
    2146:  �[32mINFO: �[0mFrom Testing //rb/spec/integration/selenium/webdriver:devtools-edge-remote:
    2147:  ==================== Test output for //rb/spec/integration/selenium/webdriver:devtools-edge-remote:
    2148:  2024-04-24 17:01:49 INFO Selenium Server Location: D:/_bazel/execroot/_main/bazel-out/x64_windows-fastbuild/bin/rb/spec/integration/selenium/webdriver/devtools-edge-remote.cmd.runfiles/_main/java/src/org/openqa/selenium/grid/selenium_server_deploy.jar
    2149:  An error occurred in a `before(:suite)` hook.
    2150:  Failure/Error: @pid = Process.spawn(*@command, options)
    2151:  Errno::EACCES:
    2152:  Permission denied - java
    2153:  # ./rb/lib/selenium/webdriver/common/child_process.rb:57:in `spawn'
    2154:  # ./rb/lib/selenium/webdriver/common/child_process.rb:57:in `start'
    2155:  # ./rb/lib/selenium/server.rb:204:in `start'
    2156:  # //?/D:/a/selenium/selenium/rb/spec/integration/selenium/webdriver/spec_helper.rb:40:in `block (2 levels) in <top (required)>'
    2157:  Finished in 0.0442 seconds (files took 0.59714 seconds to load)
    2158:  0 examples, 0 failures, 1 error occurred outside of examples
    2159:  ================================================================================
    2160:  ==================== Test output for //rb/spec/integration/selenium/webdriver:devtools-edge-remote:
    2161:  2024-04-24 17:01:57 INFO Selenium Server Location: D:/_bazel/execroot/_main/bazel-out/x64_windows-fastbuild/bin/rb/spec/integration/selenium/webdriver/devtools-edge-remote.cmd.runfiles/_main/java/src/org/openqa/selenium/grid/selenium_server_deploy.jar
    2162:  An error occurred in a `before(:suite)` hook.
    2163:  Failure/Error: @pid = Process.spawn(*@command, options)
    2164:  Errno::EACCES:
    2165:  Permission denied - java
    2166:  # ./rb/lib/selenium/webdriver/common/child_process.rb:57:in `spawn'
    2167:  # ./rb/lib/selenium/webdriver/common/child_process.rb:57:in `start'
    2168:  # ./rb/lib/selenium/server.rb:204:in `start'
    2169:  # //?/D:/a/selenium/selenium/rb/spec/integration/selenium/webdriver/spec_helper.rb:40:in `block (2 levels) in <top (required)>'
    2170:  Finished in 0.04519 seconds (files took 0.61 seconds to load)
    2171:  0 examples, 0 failures, 1 error occurred outside of examples
    2172:  ================================================================================
    2173:  ==================== Test output for //rb/spec/integration/selenium/webdriver:devtools-edge-remote:
    2174:  2024-04-24 17:02:04 INFO Selenium Server Location: D:/_bazel/execroot/_main/bazel-out/x64_windows-fastbuild/bin/rb/spec/integration/selenium/webdriver/devtools-edge-remote.cmd.runfiles/_main/java/src/org/openqa/selenium/grid/selenium_server_deploy.jar
    2175:  An error occurred in a `before(:suite)` hook.
    2176:  Failure/Error: @pid = Process.spawn(*@command, options)
    2177:  Errno::EACCES:
    2178:  Permission denied - java
    2179:  # ./rb/lib/selenium/webdriver/common/child_process.rb:57:in `spawn'
    2180:  # ./rb/lib/selenium/webdriver/common/child_process.rb:57:in `start'
    2181:  # ./rb/lib/selenium/server.rb:204:in `start'
    2182:  # //?/D:/a/selenium/selenium/rb/spec/integration/selenium/webdriver/spec_helper.rb:40:in `block (2 levels) in <top (required)>'
    2183:  Finished in 0.04501 seconds (files took 0.60907 seconds to load)
    2184:  0 examples, 0 failures, 1 error occurred outside of examples
    2185:  ================================================================================
    2186:  �[32m[3,112 / 3,113]�[0m 24 / 27 tests, �[31m�[1m24 failed�[0m;�[0m Testing //rb/spec/integration/selenium/webdriver:bidi-edge-remote; 1s disk-cache
    2187:  �[32m[3,112 / 3,113]�[0m 24 / 27 tests, �[31m�[1m24 failed�[0m;�[0m [Sched] Testing //rb/spec/integration/selenium/webdriver:bidi-edge-remote
    2188:  �[32m[3,112 / 3,113]�[0m 24 / 27 tests, �[31m�[1m24 failed�[0m;�[0m Testing //rb/spec/integration/selenium/webdriver:bidi-edge-remote; 1s local, disk-cache
    2189:  �[32m[3,112 / 3,113]�[0m 24 / 27 tests, �[31m�[1m24 failed�[0m;�[0m Testing //rb/spec/integration/selenium/webdriver:bidi-edge-remote; 6s local, disk-cache
    2190:  �[31m�[1mFAIL: �[0m//rb/spec/integration/selenium/webdriver:bidi-edge-remote (see D:/_bazel/execroot/_main/bazel-out/x64_windows-fastbuild/testlogs/rb/spec/integration/selenium/webdriver/bidi-edge-remote/test_attempts/attempt_1.log)
    2191:  �[32m[3,112 / 3,113]�[0m 24 / 27 tests, �[31m�[1m24 failed�[0m;�[0m Testing //rb/spec/integration/selenium/webdriver:bidi-edge-remote; 7s local, disk-cache
    2192:  �[32m[3,112 / 3,113]�[0m 24 / 27 tests, �[31m�[1m24 failed�[0m;�[0m Testing //rb/spec/integration/selenium/webdriver:bidi-edge-remote; 14s local, disk-cache
    2193:  �[31m�[1mFAIL: �[0m//rb/spec/integration/selenium/webdriver:bidi-edge-remote (see D:/_bazel/execroot/_main/bazel-out/x64_windows-fastbuild/testlogs/rb/spec/integration/selenium/webdriver/bidi-edge-remote/test_attempts/attempt_2.log)
    2194:  �[32m[3,112 / 3,113]�[0m 24 / 27 tests, �[31m�[1m24 failed�[0m;�[0m Testing //rb/spec/integration/selenium/webdriver:bidi-edge-remote; 15s local, disk-cache
    2195:  �[32m[3,112 / 3,113]�[0m 24 / 27 tests, �[31m�[1m24 failed�[0m;�[0m Testing //rb/spec/integration/selenium/webdriver:bidi-edge-remote; 21s local, disk-cache
    2196:  �[31m�[1mFAIL: �[0m//rb/spec/integration/selenium/webdriver:bidi-edge-remote (see D:/_bazel/execroot/_main/bazel-out/x64_windows-fastbuild/testlogs/rb/spec/integration/selenium/webdriver/bidi-edge-remote/test.log)
    2197:  �[31m�[1mFAILED: �[0m//rb/spec/integration/selenium/webdriver:bidi-edge-remote (Summary)
    2198:  D:/_bazel/execroot/_main/bazel-out/x64_windows-fastbuild/testlogs/rb/spec/integration/selenium/webdriver/bidi-edge-remote/test.log
    2199:  D:/_bazel/execroot/_main/bazel-out/x64_windows-fastbuild/testlogs/rb/spec/integration/selenium/webdriver/bidi-edge-remote/test_attempts/attempt_1.log
    2200:  D:/_bazel/execroot/_main/bazel-out/x64_windows-fastbuild/testlogs/rb/spec/integration/selenium/webdriver/bidi-edge-remote/test_attempts/attempt_2.log
    2201:  �[32mINFO: �[0mFrom Testing //rb/spec/integration/selenium/webdriver:bidi-edge-remote:
    2202:  ==================== Test output for //rb/spec/integration/selenium/webdriver:bidi-edge-remote:
    2203:  2024-04-24 17:02:21 INFO Selenium Server Location: D:/_bazel/execroot/_main/bazel-out/x64_windows-fastbuild/bin/rb/spec/integration/selenium/webdriver/bidi-edge-remote.cmd.runfiles/_main/java/src/org/openqa/selenium/grid/selenium_server_deploy.jar
    2204:  An error occurred in a `before(:suite)` hook.
    2205:  Failure/Error: @pid = Process.spawn(*@command, options)
    2206:  Errno::EACCES:
    2207:  Permission denied - java
    2208:  # ./rb/lib/selenium/webdriver/common/child_process.rb:57:in `spawn'
    2209:  # ./rb/lib/selenium/webdriver/common/child_process.rb:57:in `start'
    2210:  # ./rb/lib/selenium/server.rb:204:in `start'
    2211:  # //?/D:/a/selenium/selenium/rb/spec/integration/selenium/webdriver/spec_helper.rb:40:in `block (2 levels) in <top (required)>'
    2212:  Finished in 0.04419 seconds (files took 0.59254 seconds to load)
    2213:  0 examples, 0 failures, 1 error occurred outside of examples
    2214:  ================================================================================
    2215:  ==================== Test output for //rb/spec/integration/selenium/webdriver:bidi-edge-remote:
    2216:  2024-04-24 17:02:28 INFO Selenium Server Location: D:/_bazel/execroot/_main/bazel-out/x64_windows-fastbuild/bin/rb/spec/integration/selenium/webdriver/bidi-edge-remote.cmd.runfiles/_main/java/src/org/openqa/selenium/grid/selenium_server_deploy.jar
    2217:  An error occurred in a `before(:suite)` hook.
    2218:  Failure/Error: @pid = Process.spawn(*@command, options)
    2219:  Errno::EACCES:
    2220:  Permission denied - java
    2221:  # ./rb/lib/selenium/webdriver/common/child_process.rb:57:in `spawn'
    2222:  # ./rb/lib/selenium/webdriver/common/child_process.rb:57:in `start'
    2223:  # ./rb/lib/selenium/server.rb:204:in `start'
    2224:  # //?/D:/a/selenium/selenium/rb/spec/integration/selenium/webdriver/spec_helper.rb:40:in `block (2 levels) in <top (required)>'
    2225:  Finished in 0.04503 seconds (files took 0.62856 seconds to load)
    2226:  0 examples, 0 failures, 1 error occurred outside of examples
    2227:  ================================================================================
    2228:  ==================== Test output for //rb/spec/integration/selenium/webdriver:bidi-edge-remote:
    2229:  2024-04-24 17:02:35 INFO Selenium Server Location: D:/_bazel/execroot/_main/bazel-out/x64_windows-fastbuild/bin/rb/spec/integration/selenium/webdriver/bidi-edge-remote.cmd.runfiles/_main/java/src/org/openqa/selenium/grid/selenium_server_deploy.jar
    2230:  An error occurred in a `before(:suite)` hook.
    2231:  Failure/Error: @pid = Process.spawn(*@command, options)
    2232:  Errno::EACCES:
    2233:  Permission denied - java
    2234:  # ./rb/lib/selenium/webdriver/common/child_process.rb:57:in `spawn'
    2235:  # ./rb/lib/selenium/webdriver/common/child_process.rb:57:in `start'
    2236:  # ./rb/lib/selenium/server.rb:204:in `start'
    2237:  # //?/D:/a/selenium/selenium/rb/spec/integration/selenium/webdriver/spec_helper.rb:40:in `block (2 levels) in <top (required)>'
    2238:  Finished in 0.04568 seconds (files took 0.59267 seconds to load)
    2239:  0 examples, 0 failures, 1 error occurred outside of examples
    2240:  ================================================================================
    2241:  �[32m[3,113 / 3,114]�[0m 25 / 27 tests, �[31m�[1m25 failed�[0m;�[0m Testing //rb/spec/integration/selenium/webdriver/bidi:browsing_context-edge-remote; 1s disk-cache
    2242:  �[32m[3,113 / 3,114]�[0m 25 / 27 tests, �[31m�[1m25 failed�[0m;�[0m [Sched] Testing //rb/spec/integration/selenium/webdriver/bidi:browsing_context-edge-remote
    2243:  �[32m[3,113 / 3,114]�[0m 25 / 27 tests, �[31m�[1m25 failed�[0m;�[0m Testing //rb/spec/integration/selenium/webdriver/bidi:browsing_context-edge-remote; 1s local, disk-cache
    2244:  �[32m[3,113 / 3,114]�[0m 25 / 27 tests, �[31m�[1m25 failed�[0m;�[0m Testing //rb/spec/integration/selenium/webdriver/bidi:browsing_context-edge-remote; 6s local, disk-cache
    2245:  �[31m�[1mFAIL: �[0m//rb/spec/integration/selenium/webdriver/bidi:browsing_context-edge-remote (see D:/_bazel/execroot/_main/bazel-out/x64_windows-fastbuild/testlogs/rb/spec/integration/selenium/webdriver/bidi/browsing_context-edge-remote/test_attempts/attempt_1.log)
    2246:  �[32m[3,113 / 3,114]�[0m 25 / 27 tests, �[31m�[1m25 failed�[0m;�[0m Testing //rb/spec/integration/selenium/webdriver/bidi:browsing_context-edge-remote; 8s local, disk-cache
    2247:  �[32m[3,113 / 3,114]�[0m 25 / 27 tests, �[31m�[1m25 failed�[0m;�[0m Testing //rb/spec/integration/selenium/webdriver/bidi:browsing_context-edge-remote; 14s local, disk-cache
    2248:  �[31m�[1mFAIL: �[0m//rb/spec/integration/selenium/webdriver/bidi:browsing_context-edge-remote (see D:/_bazel/execroot/_main/bazel-out/x64_windows-fastbuild/testlogs/rb/spec/integration/selenium/webdriver/bidi/browsing_context-edge-remote/test_attempts/attempt_2.log)
    2249:  �[32m[3,113 / 3,114]�[0m 25 / 27 tests, �[31m�[1m25 failed�[0m;�[0m Testing //rb/spec/integration/selenium/webdriver/bidi:browsing_context-edge-remote; 15s local, disk-cache
    2250:  �[32m[3,113 / 3,114]�[0m 25 / 27 tests, �[31m�[1m25 failed�[0m;�[0m Testing //rb/spec/integration/selenium/webdriver/bidi:browsing_context-edge-remote; 21s local, disk-cache
    2251:  �[31m�[1mFAIL: �[0m//rb/spec/integration/selenium/webdriver/bidi:browsing_context-edge-remote (see D:/_bazel/execroot/_main/bazel-out/x64_windows-fastbuild/testlogs/rb/spec/integration/selenium/webdriver/bidi/browsing_context-edge-remote/test.log)
    2252:  �[31m�[1mFAILED: �[0m//rb/spec/integration/selenium/webdriver/bidi:browsing_context-edge-remote (Summary)
    2253:  D:/_bazel/execroot/_main/bazel-out/x64_windows-fastbuild/testlogs/rb/spec/integration/selenium/webdriver/bidi/browsing_context-edge-remote/test.log
    2254:  D:/_bazel/execroot/_main/bazel-out/x64_windows-fastbuild/testlogs/rb/spec/integration/selenium/webdriver/bidi/browsing_context-edge-remote/test_attempts/attempt_1.log
    2255:  D:/_bazel/execroot/_main/bazel-out/x64_windows-fastbuild/testlogs/rb/spec/integration/selenium/webdriver/bidi/browsing_context-edge-remote/test_attempts/attempt_2.log
    2256:  ==================== Test output for //rb/spec/integration/selenium/webdriver/bidi:browsing_context-edge-remote:
    2257:  2024-04-24 17:02:52 INFO Selenium Server Location: D:/_bazel/execroot/_main/bazel-out/x64_windows-fastbuild/bin/rb/spec/integration/selenium/webdriver/bidi/browsing_context-edge-remote.cmd.runfiles/_main/java/src/org/openqa/selenium/grid/selenium_server_deploy.jar
    2258:  An error occurred in a `before(:suite)` hook.
    2259:  Failure/Error: @pid = Process.spawn(*@command, options)
    2260:  Errno::EACCES:
    2261:  Permission denied - java
    2262:  # ./rb/lib/selenium/webdriver/common/child_process.rb:57:in `spawn'
    2263:  # ./rb/lib/selenium/webdriver/common/child_process.rb:57:in `start'
    2264:  # ./rb/lib/selenium/server.rb:204:in `start'
    2265:  # //?/D:/a/selenium/selenium/rb/spec/integration/selenium/webdriver/spec_helper.rb:40:in `block (2 levels) in <top (required)>'
    2266:  Finished in 0.04425 seconds (files took 0.61239 seconds to load)
    2267:  0 examples, 0 failures, 1 error occurred outside of examples
    2268:  ================================================================================
    2269:  ==================== Test output for //rb/spec/integration/selenium/webdriver/bidi:browsing_context-edge-remote:
    2270:  2024-04-24 17:02:59 INFO Selenium Server Location: D:/_bazel/execroot/_main/bazel-out/x64_windows-fastbuild/bin/rb/spec/integration/selenium/webdriver/bidi/browsing_context-edge-remote.cmd.runfiles/_main/java/src/org/openqa/selenium/grid/selenium_server_deploy.jar
    2271:  An error occurred in a `before(:suite)` hook.
    2272:  Failure/Error: @pid = Process.spawn(*@command, options)
    2273:  Errno::EACCES:
    2274:  Permission denied - java
    2275:  # ./rb/lib/selenium/webdriver/common/child_process.rb:57:in `spawn'
    2276:  # ./rb/lib/selenium/webdriver/common/child_process.rb:57:in `start'
    2277:  # ./rb/lib/selenium/server.rb:204:in `start'
    2278:  # //?/D:/a/selenium/selenium/rb/spec/integration/selenium/webdriver/spec_helper.rb:40:in `block (2 levels) in <top (required)>'
    2279:  Finished in 0.04547 seconds (files took 0.60857 seconds to load)
    2280:  0 examples, 0 failures, 1 error occurred outside of examples
    2281:  ================================================================================
    2282:  ==================== Test output for //rb/spec/integration/selenium/webdriver/bidi:browsing_context-edge-remote:
    2283:  2024-04-24 17:03:07 INFO Selenium Server Location: D:/_bazel/execroot/_main/bazel-out/x64_windows-fastbuild/bin/rb/spec/integration/selenium/webdriver/bidi/browsing_context-edge-remote.cmd.runfiles/_main/java/src/org/openqa/selenium/grid/selenium_server_deploy.jar
    2284:  An error occurred in a `before(:suite)` hook.
    2285:  Failure/Error: @pid = Process.spawn(*@command, options)
    2286:  Errno::EACCES:
    2287:  Permission denied - java
    2288:  # ./rb/lib/selenium/webdriver/common/child_process.rb:57:in `spawn'
    2289:  # ./rb/lib/selenium/webdriver/common/child_process.rb:57:in `start'
    2290:  # ./rb/lib/selenium/server.rb:204:in `start'
    2291:  # //?/D:/a/selenium/selenium/rb/spec/integration/selenium/webdriver/spec_helper.rb:40:in `block (2 levels) in <top (required)>'
    2292:  Finished in 0.04951 seconds (files took 0.62049 seconds to load)
    2293:  0 examples, 0 failures, 1 error occurred outside of examples
    2294:  ================================================================================
    2295:  �[32mINFO: �[0mFrom Testing //rb/spec/integration/selenium/webdriver/bidi:browsing_context-edge-remote:
    2296:  �[32m[3,114 / 3,115]�[0m 26 / 27 tests, �[31m�[1m26 failed�[0m;�[0m Testing //rb/spec/integration/selenium/webdriver/bidi:log_inspector-edge-remote; 0s disk-cache
    2297:  �[32m[3,114 / 3,115]�[0m 26 / 27 tests, �[31m�[1m26 failed�[0m;�[0m [Sched] Testing //rb/spec/integration/selenium/webdriver/bidi:log_inspector-edge-remote
    2298:  �[32m[3,114 / 3,115]�[0m 26 / 27 tests, �[31m�[1m26 failed�[0m;�[0m Testing //rb/spec/integration/selenium/webdriver/bidi:log_inspector-edge-remote; 1s local, disk-cache
    2299:  �[32m[3,114 / 3,115]�[0m 26 / 27 tests, �[31m�[1m26 failed�[0m;�[0m Testing //rb/spec/integration/selenium/webdriver/bidi:log_inspector-edge-remote; 6s local, disk-cache
    2300:  �[31m�[1mFAIL: �[0m//rb/spec/integration/selenium/webdriver/bidi:log_inspector-edge-remote (see D:/_bazel/execroot/_main/bazel-out/x64_windows-fastbuild/testlogs/rb/spec/integration/selenium/webdriver/bidi/log_inspector-edge-remote/test_attempts/attempt_1.log)
    2301:  �[32m[3,114 / 3,115]�[0m 26 / 27 tests, �[31m�[1m26 failed�[0m;�[0m Testing //rb/spec/integration/selenium/webdriver/bidi:log_inspector-edge-remote; 8s local, disk-cache
    2302:  �[32m[3,114 / 3,115]�[0m 26 / 27 tests, �[31m�[1m26 failed�[0m;�[0m Testing //rb/spec/integration/selenium/webdriver/bidi:log_inspector-edge-remote; 14s local, disk-cache
    2303:  �[31m�[1mFAIL: �[0m//rb/spec/integration/selenium/webdriver/bidi:log_inspector-edge-remote (see D:/_bazel/execroot/_main/bazel-out/x64_windows-fastbuild/testlogs/rb/spec/integration/selenium/webdriver/bidi/log_inspector-edge-remote/test_attempts/attempt_2.log)
    2304:  �[32m[3,114 / 3,115]�[0m 26 / 27 tests, �[31m�[1m26 failed�[0m;�[0m Testing //rb/spec/integration/selenium/webdriver/bidi:log_inspector-edge-remote; 15s local, disk-cache
    2305:  �[32m[3,114 / 3,115]�[0m 26 / 27 tests, �[31m�[1m26 failed�[0m;�[0m Testing //rb/spec/integration/selenium/webdriver/bidi:log_inspector-edge-remote; 21s local, disk-cache
    2306:  �[31m�[1mFAIL: �[0m//rb/spec/integration/selenium/webdriver/bidi:log_inspector-edge-remote (see D:/_bazel/execroot/_main/bazel-out/x64_windows-fastbuild/testlogs/rb/spec/integration/selenium/webdriver/bidi/log_inspector-edge-remote/test.log)
    2307:  �[31m�[1mFAILED: �[0m//rb/spec/integration/selenium/webdriver/bidi:log_inspector-edge-remote (Summary)
    2308:  D:/_bazel/execroot/_main/bazel-out/x64_windows-fastbuild/testlogs/rb/spec/integration/selenium/webdriver/bidi/log_inspector-edge-remote/test.log
    2309:  D:/_bazel/execroot/_main/bazel-out/x64_windows-fastbuild/testlogs/rb/spec/integration/selenium/webdriver/bidi/log_inspector-edge-remote/test_attempts/attempt_1.log
    2310:  D:/_bazel/execroot/_main/bazel-out/x64_windows-fastbuild/testlogs/rb/spec/integration/selenium/webdriver/bidi/log_inspector-edge-remote/test_attempts/attempt_2.log
    2311:  �[32mINFO: �[0mFrom Testing //rb/spec/integration/selenium/webdriver/bidi:log_inspector-edge-remote:
    2312:  ==================== Test output for //rb/spec/integration/selenium/webdriver/bidi:log_inspector-edge-remote:
    2313:  2024-04-24 17:03:24 INFO Selenium Server Location: D:/_bazel/execroot/_main/bazel-out/x64_windows-fastbuild/bin/rb/spec/integration/selenium/webdriver/bidi/log_inspector-edge-remote.cmd.runfiles/_main/java/src/org/openqa/selenium/grid/selenium_server_deploy.jar
    2314:  An error occurred in a `before(:suite)` hook.
    2315:  Failure/Error: @pid = Process.spawn(*@command, options)
    2316:  Errno::EACCES:
    2317:  Permission denied - java
    2318:  # ./rb/lib/selenium/webdriver/common/child_process.rb:57:in `spawn'
    2319:  # ./rb/lib/selenium/webdriver/common/child_process.rb:57:in `start'
    2320:  # ./rb/lib/selenium/server.rb:204:in `start'
    2321:  # //?/D:/a/selenium/selenium/rb/spec/integration/selenium/webdriver/spec_helper.rb:40:in `block (2 levels) in <top (required)>'
    2322:  Finished in 0.0476 seconds (files took 0.62401 seconds to load)
    2323:  0 examples, 0 failures, 1 error occurred outside of examples
    2324:  ================================================================================
    2325:  ==================== Test output for //rb/spec/integration/selenium/webdriver/bidi:log_inspector-edge-remote:
    2326:  2024-04-24 17:03:31 INFO Selenium Server Location: D:/_bazel/execroot/_main/bazel-out/x64_windows-fastbuild/bin/rb/spec/integration/selenium/webdriver/bidi/log_inspector-edge-remote.cmd.runfiles/_main/java/src/org/openqa/selenium/grid/selenium_server_deploy.jar
    2327:  An error occurred in a `before(:suite)` hook.
    2328:  Failure/Error: @pid = Process.spawn(*@command, options)
    2329:  Errno::EACCES:
    2330:  Permission denied - java
    2331:  # ./rb/lib/selenium/webdriver/common/child_process.rb:57:in `spawn'
    2332:  # ./rb/lib/selenium/webdriver/common/child_process.rb:57:in `start'
    2333:  # ./rb/lib/selenium/server.rb:204:in `start'
    2334:  # //?/D:/a/selenium/selenium/rb/spec/integration/selenium/webdriver/spec_helper.rb:40:in `block (2 levels) in <top (required)>'
    2335:  Finished in 0.04795 seconds (files took 0.64493 seconds to load)
    2336:  0 examples, 0 failures, 1 error occurred outside of examples
    2337:  ================================================================================
    2338:  ==================== Test output for //rb/spec/integration/selenium/webdriver/bidi:log_inspector-edge-remote:
    2339:  2024-04-24 17:03:38 INFO Selenium Server Location: D:/_bazel/execroot/_main/bazel-out/x64_windows-fastbuild/bin/rb/spec/integration/selenium/webdriver/bidi/log_inspector-edge-remote.cmd.runfiles/_main/java/src/org/openqa/selenium/grid/selenium_server_deploy.jar
    2340:  An error occurred in a `before(:suite)` hook.
    2341:  Failure/Error: @pid = Process.spawn(*@command, options)
    2342:  Errno::EACCES:
    2343:  Permission denied - java
    2344:  # ./rb/lib/selenium/webdriver/common/child_process.rb:57:in `spawn'
    2345:  # ./rb/lib/selenium/webdriver/common/child_process.rb:57:in `start'
    2346:  # ./rb/lib/selenium/server.rb:204:in `start'
    2347:  # //?/D:/a/selenium/selenium/rb/spec/integration/selenium/webdriver/spec_helper.rb:40:in `block (2 levels) in <top (required)>'
    2348:  Finished in 0.04722 seconds (files took 0.61729 seconds to load)
    2349:  0 examples, 0 failures, 1 error occurred outside of examples
    2350:  ================================================================================
    2351:  �[32mINFO: �[0mFound 27 test targets...
    2352:  �[32mINFO: �[0mElapsed time: 801.419s, Critical Path: 171.11s
    2353:  �[32mINFO: �[0m2885 processes: 1661 disk cache hit, 1079 internal, 145 local.
    2354:  �[32mINFO: �[0mBuild completed, 27 tests FAILED, 2885 total actions
    2355:  //rb/spec/integration/selenium/webdriver:action_builder-edge-remote      �[0m�[31m�[1mFAILED�[0m in 3 out of 3 in 7.3s
    2356:  Stats over 3 runs: max = 7.3s, min = 6.7s, avg = 7.0s, dev = 0.2s
    2357:  D:/_bazel/execroot/_main/bazel-out/x64_windows-fastbuild/testlogs/rb/spec/integration/selenium/webdriver/action_builder-edge-remote/test.log
    2358:  D:/_bazel/execroot/_main/bazel-out/x64_windows-fastbuild/testlogs/rb/spec/integration/selenium/webdriver/action_builder-edge-remote/test_attempts/attempt_1.log
    2359:  D:/_bazel/execroot/_main/bazel-out/x64_windows-fastbuild/testlogs/rb/spec/integration/selenium/webdriver/action_builder-edge-remote/test_attempts/attempt_2.log
    2360:  //rb/spec/integration/selenium/webdriver:bidi-edge-remote                �[0m�[31m�[1mFAILED�[0m in 3 out of 3 in 6.7s
    2361:  Stats over 3 runs: max = 6.7s, min = 6.6s, avg = 6.7s, dev = 0.0s
    2362:  D:/_bazel/execroot/_main/bazel-out/x64_windows-fastbuild/testlogs/rb/spec/integration/selenium/webdriver/bidi-edge-remote/test.log
    2363:  D:/_bazel/execroot/_main/bazel-out/x64_windows-fastbuild/testlogs/rb/spec/integration/selenium/webdriver/bidi-edge-remote/test_attempts/attempt_1.log
    2364:  D:/_bazel/execroot/_main/bazel-out/x64_windows-fastbuild/testlogs/rb/spec/integration/selenium/webdriver/bidi-edge-remote/test_attempts/attempt_2.log
    2365:  //rb/spec/integration/selenium/webdriver:devtools-edge-remote            �[0m�[31m�[1mFAILED�[0m in 3 out of 3 in 6.7s
    2366:  Stats over 3 runs: max = 6.7s, min = 6.6s, avg = 6.7s, dev = 0.0s
    2367:  D:/_bazel/execroot/_main/bazel-out/x64_windows-fastbuild/testlogs/rb/spec/integration/selenium/webdriver/devtools-edge-remote/test.log
    2368:  D:/_bazel/execroot/_main/bazel-out/x64_windows-fastbuild/testlogs/rb/spec/integration/selenium/webdriver/devtools-edge-remote/test_attempts/attempt_1.log
    2369:  D:/_bazel/execroot/_main/bazel-out/x64_windows-fastbuild/testlogs/rb/spec/integration/selenium/webdriver/devtools-edge-remote/test_attempts/attempt_2.log
    2370:  //rb/spec/integration/selenium/webdriver:driver-edge-remote              �[0m�[31m�[1mFAILED�[0m in 3 out of 3 in 7.3s
    2371:  Stats over 3 runs: max = 7.3s, min = 6.7s, avg = 7.0s, dev = 0.3s
    2372:  D:/_bazel/execroot/_main/bazel-out/x64_windows-fastbuild/testlogs/rb/spec/integration/selenium/webdriver/driver-edge-remote/test.log
    2373:  D:/_bazel/execroot/_main/bazel-out/x64_windows-fastbuild/testlogs/rb/spec/integration/selenium/webdriver/driver-edge-remote/test_attempts/attempt_1.log
    2374:  D:/_bazel/execroot/_main/bazel-out/x64_windows-fastbuild/testlogs/rb/spec/integration/selenium/webdriver/driver-edge-remote/test_attempts/attempt_2.log
    2375:  //rb/spec/integration/selenium/webdriver:element-edge-remote             �[0m�[31m�[1mFAILED�[0m in 3 out of 3 in 7.3s
    2376:  Stats over 3 runs: max = 7.3s, min = 6.7s, avg = 7.0s, dev = 0.2s
    2377:  D:/_bazel/execroot/_main/bazel-out/x64_windows-fastbuild/testlogs/rb/spec/integration/selenium/webdriver/element-edge-remote/test.log
    2378:  D:/_bazel/execroot/_main/bazel-out/x64_windows-fastbuild/testlogs/rb/spec/integration/selenium/webdriver/element-edge-remote/test_attempts/attempt_1.log
    2379:  D:/_bazel/execroot/_main/bazel-out/x64_windows-fastbuild/testlogs/rb/spec/integration/selenium/webdriver/element-edge-remote/test_attempts/attempt_2.log
    2380:  //rb/spec/integration/selenium/webdriver:error-edge-remote               �[0m�[31m�[1mFAILED�[0m in 3 out of 3 in 7.0s
    2381:  Stats over 3 runs: max = 7.0s, min = 6.7s, avg = 6.8s, dev = 0.1s
    2382:  D:/_bazel/execroot/_main/bazel-out/x64_windows-fastbuild/testlogs/rb/spec/integration/selenium/webdriver/error-edge-remote/test.log
    2383:  D:/_bazel/execroot/_main/bazel-out/x64_windows-fastbuild/testlogs/rb/spec/integration/selenium/webdriver/error-edge-remote/test_attempts/attempt_1.log
    2384:  D:/_bazel/execroot/_main/bazel-out/x64_windows-fastbuild/testlogs/rb/spec/integration/selenium/webdriver/error-edge-remote/test_attempts/attempt_2.log
    2385:  //rb/spec/integration/selenium/webdriver:guard-edge-remote               �[0m�[31m�[1mFAILED�[0m in 3 out of 3 in 7.1s
    2386:  Stats over 3 runs: max = 7.1s, min = 6.8s, avg = 7.0s, dev = 0.1s
    2387:  D:/_bazel/execroot/_main/bazel-out/x64_windows-fastbuild/testlogs/rb/spec/integration/selenium/webdriver/guard-edge-remote/test.log
    2388:  D:/_bazel/execroot/_main/bazel-out/x64_windows-fastbuild/testlogs/rb/spec/integration/selenium/webdriver/guard-edge-remote/test_attempts/attempt_1.log
    2389:  D:/_bazel/execroot/_main/bazel-out/x64_windows-fastbuild/testlogs/rb/spec/integration/selenium/webdriver/guard-edge-remote/test_attempts/attempt_2.log
    2390:  //rb/spec/integration/selenium/webdriver:listener-edge-remote            �[0m�[31m�[1mFAILED�[0m in 3 out of 3 in 7.0s
    2391:  Stats over 3 runs: max = 7.0s, min = 6.8s, avg = 6.9s, dev = 0.1s
    2392:  D:/_bazel/execroot/_main/bazel-out/x64_windows-fastbuild/testlogs/rb/spec/integration/selenium/webdriver/listener-edge-remote/test.log
    2393:  D:/_bazel/execroot/_main/bazel-out/x64_windows-fastbuild/testlogs/rb/spec/integration/selenium/webdriver/listener-edge-remote/test_attempts/attempt_1.log
    2394:  D:/_bazel/execroot/_main/bazel-out/x64_windows-fastbuild/testlogs/rb/spec/integration/selenium/webdriver/listener-edge-remote/test_attempts/attempt_2.log
    2395:  //rb/spec/integration/selenium/webdriver:manager-edge-remote             �[0m�[31m�[1mFAILED�[0m in 3 out of 3 in 7.0s
    2396:  Stats over 3 runs: max = 7.0s, min = 6.8s, avg = 6.8s, dev = 0.1s
    2397:  D:/_bazel/execroot/_main/bazel-out/x64_windows-fastbuild/testlogs/rb/spec/integration/selenium/webdriver/manager-edge-remote/test.log
    2398:  D:/_bazel/execroot/_main/bazel-out/x64_windows-fastbuild/testlogs/rb/spec/integration/selenium/webdriver/manager-edge-remote/test_attempts/attempt_1.log
    2399:  D:/_bazel/execroot/_main/bazel-out/x64_windows-fastbuild/testlogs/rb/spec/integration/selenium/webdriver/manager-edge-remote/test_attempts/attempt_2.log
    2400:  //rb/spec/integration/selenium/webdriver:navigation-edge-remote          �[0m�[31m�[1mFAILED�[0m in 3 out of 3 in 7.3s
    2401:  Stats over 3 runs: max = 7.3s, min = 6.8s, avg = 6.9s, dev = 0.2s
    2402:  D:/_bazel/execroot/_main/bazel-out/x64_windows-fastbuild/testlogs/rb/spec/integration/selenium/webdriver/navigation-edge-remote/test.log
    2403:  D:/_bazel/execroot/_main/bazel-out/x64_windows-fastbuild/testlogs/rb/spec/integration/selenium/webdriver/navigation-edge-remote/test_attempts/attempt_1.log
    2404:  D:/_bazel/execroot/_main/bazel-out/x64_windows-fastbuild/testlogs/rb/spec/integration/selenium/webdriver/navigation-edge-remote/test_attempts/attempt_2.log
    2405:  //rb/spec/integration/selenium/webdriver:select-edge-remote              �[0m�[31m�[1mFAILED�[0m in 3 out of 3 in 6.9s
    2406:  Stats over 3 runs: max = 6.9s, min = 6.7s, avg = 6.8s, dev = 0.1s
    2407:  D:/_bazel/execroot/_main/bazel-out/x64_windows-fastbuild/testlogs/rb/spec/integration/selenium/webdriver/select-edge-remote/test.log
    2408:  D:/_bazel/execroot/_main/bazel-out/x64_windows-fastbuild/testlogs/rb/spec/integration/selenium/webdriver/select-edge-remote/test_attempts/attempt_1.log
    2409:  D:/_bazel/execroot/_main/bazel-out/x64_windows-fastbuild/testlogs/rb/spec/integration/selenium/webdriver/select-edge-remote/test_attempts/attempt_2.log
    2410:  //rb/spec/integration/selenium/webdriver:shadow_root-edge-remote         �[0m�[31m�[1mFAILED�[0m in 3 out of 3 in 7.3s
    2411:  Stats over 3 runs: max = 7.3s, min = 6.7s, avg = 7.0s, dev = 0.2s
    2412:  D:/_bazel/execroot/_main/bazel-out/x64_windows-fastbuild/testlogs/rb/spec/integration/selenium/webdriver/shadow_root-edge-remote/test.log
    2413:  D:/_bazel/execroot/_main/bazel-out/x64_windows-fastbuild/testlogs/rb/spec/integration/selenium/webdriver/shadow_root-edge-remote/test_attempts/attempt_1.log
    2414:  D:/_bazel/execroot/_main/bazel-out/x64_windows-fastbuild/testlogs/rb/spec/integration/selenium/webdriver/shadow_root-edge-remote/test_attempts/attempt_2.log
    2415:  //rb/spec/integration/selenium/webdriver:storage-edge-remote             �[0m�[31m�[1mFAILED�[0m in 3 out of 3 in 7.2s
    2416:  Stats over 3 runs: max = 7.2s, min = 6.8s, avg = 6.9s, dev = 0.2s
    2417:  D:/_bazel/execroot/_main/bazel-out/x64_windows-fastbuild/testlogs/rb/spec/integration/selenium/webdriver/storage-edge-remote/test.log
    2418:  D:/_bazel/execroot/_main/bazel-out/x64_windows-fastbuild/testlogs/rb/spec/integration/selenium/webdriver/storage-edge-remote/test_attempts/attempt_1.log
    2419:  D:/_bazel/execroot/_main/bazel-out/x64_windows-fastbuild/testlogs/rb/spec/integration/selenium/webdriver/storage-edge-remote/test_attempts/attempt_2.log
    2420:  //rb/spec/integration/selenium/webdriver:takes_screenshot-edge-remote    �[0m�[31m�[1mFAILED�[0m in 3 out of 3 in 7.4s
    2421:  Stats over 3 runs: max = 7.4s, min = 6.7s, avg = 7.0s, dev = 0.3s
    2422:  D:/_bazel/execroot/_main/bazel-out/x64_windows-fastbuild/testlogs/rb/spec/integration/selenium/webdriver/takes_screenshot-edge-remote/test.log
    2423:  D:/_bazel/execroot/_main/bazel-out/x64_windows-fastbuild/testlogs/rb/spec/integration/selenium/webdriver/takes_screenshot-edge-remote/test_attempts/attempt_1.log
    2424:  D:/_bazel/execroot/_main/bazel-out/x64_windows-fastbuild/testlogs/rb/spec/integration/selenium/webdriver/takes_screenshot-edge-remote/test_attempts/attempt_2.log
    2425:  //rb/spec/integration/selenium/webdriver:target_locator-edge-remote      �[0m�[31m�[1mFAILED�[0m in 3 out of 3 in 6.9s
    2426:  Stats over 3 runs: max = 6.9s, min = 6.7s, avg = 6.8s, dev = 0.1s
    2427:  D:/_bazel/execroot/_main/bazel-out/x64_windows-fastbuild/testlogs/rb/spec/integration/selenium/webdriver/target_locator-edge-remote/test.log
    2428:  D:/_bazel/execroot/_main/bazel-out/x64_windows-fastbuild/testlogs/rb/spec/integration/selenium/webdriver/target_locator-edge-remote/test_attempts/attempt_1.log
    2429:  D:/_bazel/execroot/_main/bazel-out/x64_windows-fastbuild/testlogs/rb/spec/integration/selenium/webdriver/target_locator-edge-remote/test_attempts/attempt_2.log
    2430:  //rb/spec/integration/selenium/webdriver:timeout-edge-remote             �[0m�[31m�[1mFAILED�[0m in 3 out of 3 in 7.2s
    2431:  Stats over 3 runs: max = 7.2s, min = 6.8s, avg = 7.0s, dev = 0.2s
    2432:  D:/_bazel/execroot/_main/bazel-out/x64_windows-fastbuild/testlogs/rb/spec/integration/selenium/webdriver/timeout-edge-remote/test.log
    2433:  D:/_bazel/execroot/_main/bazel-out/x64_windows-fastbuild/testlogs/rb/spec/integration/selenium/webdriver/timeout-edge-remote/test_attempts/attempt_1.log
    2434:  D:/_bazel/execroot/_main/bazel-out/x64_windows-fastbuild/testlogs/rb/spec/integration/selenium/webdriver/timeout-edge-remote/test_attempts/attempt_2.log
    2435:  //rb/spec/integration/selenium/webdriver:virtual_authenticator-edge-remote �[0m�[31m�[1mFAILED�[0m in 3 out of 3 in 7.3s
    2436:  Stats over 3 runs: max = 7.3s, min = 6.8s, avg = 7.1s, dev = 0.2s
    2437:  D:/_bazel/execroot/_main/bazel-out/x64_windows-fastbuild/testlogs/rb/spec/integration/selenium/webdriver/virtual_authenticator-edge-remote/test.log
    2438:  D:/_bazel/execroot/_main/bazel-out/x64_windows-fastbuild/testlogs/rb/spec/integration/selenium/webdriver/virtual_authenticator-edge-remote/test_attempts/attempt_1.log
    2439:  D:/_bazel/execroot/_main/bazel-out/x64_windows-fastbuild/testlogs/rb/spec/integration/selenium/webdriver/virtual_authenticator-edge-remote/test_attempts/attempt_2.log
    2440:  //rb/spec/integration/selenium/webdriver:window-edge-remote              �[0m�[31m�[1mFAILED�[0m in 3 out of 3 in 7.3s
    2441:  Stats over 3 runs: max = 7.3s, min = 6.8s, avg = 7.1s, dev = 0.2s
    2442:  D:/_bazel/execroot/_main/bazel-out/x64_windows-fastbuild/testlogs/rb/spec/integration/selenium/webdriver/window-edge-remote/test.log
    2443:  D:/_bazel/execroot/_main/bazel-out/x64_windows-fastbuild/testlogs/rb/spec/integration/selenium/webdriver/window-edge-remote/test_attempts/attempt_1.log
    2444:  D:/_bazel/execroot/_main/bazel-out/x64_windows-fastbuild/testlogs/rb/spec/integration/selenium/webdriver/window-edge-remote/test_attempts/attempt_2.log
    2445:  //rb/spec/integration/selenium/webdriver:zipper-edge-remote              �[0m�[31m�[1mFAILED�[0m in 3 out of 3 in 6.9s
    2446:  Stats over 3 runs: max = 6.9s, min = 6.8s, avg = 6.8s, dev = 0.0s
    2447:  D:/_bazel/execroot/_main/bazel-out/x64_windows-fastbuild/testlogs/rb/spec/integration/selenium/webdriver/zipper-edge-remote/test.log
    2448:  D:/_bazel/execroot/_main/bazel-out/x64_windows-fastbuild/testlogs/rb/spec/integration/selenium/webdriver/zipper-edge-remote/test_attempts/attempt_1.log
    2449:  D:/_bazel/execroot/_main/bazel-out/x64_windows-fastbuild/testlogs/rb/spec/integration/selenium/webdriver/zipper-edge-remote/test_attempts/attempt_2.log
    2450:  //rb/spec/integration/selenium/webdriver/bidi:browsing_context-edge-remote �[0m�[31m�[1mFAILED�[0m in 3 out of 3 in 6.8s
    2451:  Stats over 3 runs: max = 6.8s, min = 6.7s, avg = 6.7s, dev = 0.0s
    2452:  D:/_bazel/execroot/_main/bazel-out/x64_windows-fastbuild/testlogs/rb/spec/integration/selenium/webdriver/bidi/browsing_context-edge-remote/test.log
    2453:  D:/_bazel/execroot/_main/bazel-out/x64_windows-fastbuild/testlogs/rb/spec/integration/selenium/webdriver/bidi/browsing_context-edge-remote/test_attempts/attempt_1.log
    2454:  D:/_bazel/execroot/_main/bazel-out/x64_windows-fastbuild/testlogs/rb/spec/integration/selenium/webdriver/bidi/browsing_context-edge-remote/test_attempts/attempt_2.log
    2455:  //rb/spec/integration/selenium/webdriver/bidi:log_inspector-edge-remote  �[0m�[31m�[1mFAILED�[0m in 3 out of 3 in 6.8s
    2456:  Stats over 3 runs: max = 6.8s, min = 6.7s, avg = 6.7s, dev = 0.0s
    2457:  D:/_bazel/execroot/_main/bazel-out/x64_windows-fastbuild/testlogs/rb/spec/integration/selenium/webdriver/bidi/log_inspector-edge-remote/test.log
    2458:  D:/_bazel/execroot/_main/bazel-out/x64_windows-fastbuild/testlogs/rb/spec/integration/selenium/webdriver/bidi/log_inspector-edge-remote/test_attempts/attempt_1.log
    2459:  D:/_bazel/execroot/_main/bazel-out/x64_windows-fastbuild/testlogs/rb/spec/integration/selenium/webdriver/bidi/log_inspector-edge-remote/test_attempts/attempt_2.log
    2460:  //rb/spec/integration/selenium/webdriver/edge:driver-edge-remote         �[0m�[31m�[1mFAILED�[0m in 3 out of 3 in 6.8s
    2461:  Stats over 3 runs: max = 6.8s, min = 6.8s, avg = 6.8s, dev = 0.0s
    2462:  D:/_bazel/execroot/_main/bazel-out/x64_windows-fastbuild/testlogs/rb/spec/integration/selenium/webdriver/edge/driver-edge-remote/test.log
    2463:  D:/_bazel/execroot/_main/bazel-out/x64_windows-fastbuild/testlogs/rb/spec/integration/selenium/webdriver/edge/driver-edge-remote/test_attempts/attempt_1.log
    2464:  D:/_bazel/execroot/_main/bazel-out/x64_windows-fastbuild/testlogs/rb/spec/integration/selenium/webdriver/edge/driver-edge-remote/test_attempts/attempt_2.log
    2465:  //rb/spec/integration/selenium/webdriver/edge:options-edge-remote        �[0m�[31m�[1mFAILED�[0m in 3 out of 3 in 6.9s
    2466:  Stats over 3 runs: max = 6.9s, min = 6.7s, avg = 6.8s, dev = 0.1s
    2467:  D:/_bazel/execroot/_main/bazel-out/x64_windows-fastbuild/testlogs/rb/spec/integration/selenium/webdriver/edge/options-edge-remote/test.log
    2468:  D:/_bazel/execroot/_main/bazel-out/x64_windows-fastbuild/testlogs/rb/spec/integration/selenium/webdriver/edge/options-edge-remote/test_attempts/attempt_1.log
    2469:  D:/_bazel/execroot/_main/bazel-out/x64_windows-fastbuild/testlogs/rb/spec/integration/selenium/webdriver/edge/options-edge-remote/test_attempts/attempt_2.log
    2470:  //rb/spec/integration/selenium/webdriver/edge:profile-edge-remote        �[0m�[31m�[1mFAILED�[0m in 3 out of 3 in 6.9s
    2471:  Stats over 3 runs: max = 6.9s, min = 6.8s, avg = 6.8s, dev = 0.0s
    2472:  D:/_bazel/execroot/_main/bazel-out/x64_windows-fastbuild/testlogs/rb/spec/integration/selenium/webdriver/edge/profile-edge-remote/test.log
    2473:  D:/_bazel/execroot/_main/bazel-out/x64_windows-fastbuild/testlogs/rb/spec/integration/selenium/webdriver/edge/profile-edge-remote/test_attempts/attempt_1.log
    2474:  D:/_bazel/execroot/_main/bazel-out/x64_windows-fastbuild/testlogs/rb/spec/integration/selenium/webdriver/edge/profile-edge-remote/test_attempts/attempt_2.log
    2475:  //rb/spec/integration/selenium/webdriver/edge:service-edge-remote        �[0m�[31m�[1mFAILED�[0m in 3 out of 3 in 7.5s
    2476:  Stats over 3 runs: max = 7.5s, min = 6.8s, avg = 7.1s, dev = 0.3s
    2477:  D:/_bazel/execroot/_main/bazel-out/x64_windows-fastbuild/testlogs/rb/spec/integration/selenium/webdriver/edge/service-edge-remote/test.log
    2478:  D:/_bazel/execroot/_main/bazel-out/x64_windows-fastbuild/testlogs/rb/spec/integration/selenium/webdriver/edge/service-edge-remote/test_attempts/attempt_1.log
    2479:  D:/_bazel/execroot/_main/bazel-out/x64_windows-fastbuild/testlogs/rb/spec/integration/selenium/webdriver/edge/service-edge-remote/test_attempts/attempt_2.log
    2480:  //rb/spec/integration/selenium/webdriver/remote:driver-edge-remote       �[0m�[31m�[1mFAILED�[0m in 3 out of 3 in 7.1s
    2481:  Stats over 3 runs: max = 7.1s, min = 6.9s, avg = 7.0s, dev = 0.1s
    2482:  D:/_bazel/execroot/_main/bazel-out/x64_windows-fastbuild/testlogs/rb/spec/integration/selenium/webdriver/remote/driver-edge-remote/test.log
    2483:  D:/_bazel/execroot/_main/bazel-out/x64_windows-fastbuild/testlogs/rb/spec/integration/selenium/webdriver/remote/driver-edge-remote/test_attempts/attempt_1.log
    2484:  D:/_bazel/execroot/_main/bazel-out/x64_windows-fastbuild/testlogs/rb/spec/integration/selenium/webdriver/remote/driver-edge-remote/test_attempts/attempt_2.log
    2485:  //rb/spec/integration/selenium/webdriver/remote:element-edge-remote      �[0m�[31m�[1mFAILED�[0m in 3 out of 3 in 7.4s
    2486:  Stats over 3 runs: max = 7.4s, min = 6.9s, avg = 7.2s, dev = 0.2s
    2487:  D:/_bazel/execroot/_main/bazel-out/x64_windows-fastbuild/testlogs/rb/spec/integration/selenium/webdriver/remote/element-edge-remote/test.log
    2488:  D:/_bazel/execroot/_main/bazel-out/x64_windows-fastbuild/testlogs/rb/spec/integration/selenium/webdriver/remote/element-edge-remote/test_attempts/attempt_1.log
    2489:  D:/_bazel/execroot/_main/bazel-out/x64_windows-fastbuild/testlogs/rb/spec/integration/selenium/webdriver/remote/element-edge-remote/test_attempts/attempt_2.log
    2490:  Executed 27 out of 27 tests: �[0m�[31m�[1m27 fail locally�[0m.
    2491:  �[0m
    2492:  ##[error]Process completed with exit code 1.
    

    ✨ CI feedback usage guide:

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

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

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

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

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

    Configuration options

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

    See more information about the checks tool in the docs.

    @codecov-commenter
    Copy link

    Codecov Report

    All modified and coverable lines are covered by tests ✅

    ❗ No coverage uploaded for pull request base (release-4.20.0@0e24e21). Click here to learn what that means.

    ❗ Current head 514b428 differs from pull request most recent head 2ceda24. Consider uploading reports for the commit 2ceda24 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                @@
    ##             release-4.20.0   #13868   +/-   ##
    =================================================
      Coverage                  ?   58.72%           
    =================================================
      Files                     ?       86           
      Lines                     ?     5298           
      Branches                  ?      226           
    =================================================
      Hits                      ?     3111           
      Misses                    ?     1961           
      Partials                  ?      226           

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

    @diemol diemol marked this pull request as ready for review April 24, 2024 16:24
    @qodo-merge-pro qodo-merge-pro bot added P-enhancement PR with a new feature documentation labels Apr 24, 2024
    Copy link
    Contributor

    PR Description updated to latest commit (b2db57e)

    Copy link
    Contributor

    PR Review

    ⏱️ Estimated effort to review [1-5]

    3, because the PR involves multiple changes across different programming languages and components, including updates to dependencies, versioning, and support for new browser protocol versions. The changes are well-organized but require careful review to ensure compatibility and correctness across all bindings.

    🧪 Relevant tests

    No

    🔍 Possible issues

    Possible Bug: The PR removes support for an older CDP version (v121) and adds a new one (v124). This change could potentially break integrations or tests that rely on the older version.

    Dependency Update: The PR updates several dependencies. Each update should be verified to not introduce breaking changes or new bugs.

    🔒 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
    Contributor

    PR Code Suggestions

    CategorySuggestions                                                                                                                                                       
    Best practice
    Use a more specific exception type in method signature for better error handling.

    Consider using a more specific exception type than the generic Exception in the method
    signature for better error handling and to provide more context to the method's consumers.

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

     public Command<Void> detachFromTarget(
    -  Optional<SessionID> sessionId, Optional<TargetID> targetId) throws Exception {
    +  Optional<SessionID> sessionId, Optional<TargetID> targetId) throws SpecificExceptionType {
     
    Encapsulate object creation through factory methods.

    Replace the direct instantiation of SessionID and TargetID within the lambda expressions
    with a factory method to ensure any necessary initialization logic is encapsulated.

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

    -id -> new org.openqa.selenium.devtools.v124.target.model.SessionID(id.toString()),
    -id -> new org.openqa.selenium.devtools.v124.target.model.TargetID(id.toString())
    +id -> SessionID.create(id.toString()),
    +id -> TargetID.create(id.toString())
     
    Add a destructor to clean up event handlers and prevent memory leaks.

    Ensure that the adapter.DetachedFromTarget event handler is properly removed in a
    destructor or dispose method to prevent memory leaks.

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

     public V124Target(TargetAdapter adapter)
     {
         this.adapter = adapter;
         adapter.DetachedFromTarget += OnDetachedFromTarget;
     }
    +~V124Target()
    +{
    +    adapter.DetachedFromTarget -= OnDetachedFromTarget;
    +}
     
    Add null checks to constructor parameters to ensure stability.

    Consider checking if adapter is null before assigning event handlers in the constructor to
    avoid potential null reference exceptions.

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

     public V124Log(LogAdapter adapter)
     {
    -    this.adapter = adapter;
    +    this.adapter = adapter ?? throw new ArgumentNullException(nameof(adapter));
         this.adapter.EntryAdded += OnAdapterEntryAdded;
     }
     
    Improve error handling in the constructor to prevent issues with null references.

    Add error handling for the initialization of runtime and page to handle potential issues
    during object creation.

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

     public V124JavaScript(RuntimeAdapter runtime, PageAdapter page)
     {
    +    if (runtime == null || page == null)
    +    {
    +        throw new ArgumentException("RuntimeAdapter and PageAdapter cannot be null.");
    +    }
         this.runtime = runtime;
         this.page = page;
     }
     
    Add comments to clarify the reason behind the choice of specific software versions.

    When specifying dependencies or archives, it's a good practice to add a comment explaining
    why a particular version was chosen, especially for versions that are not the latest or
    have specific importance.

    common/repositories.bzl [75]

    +# Version 126.0b4 is used here due to compatibility with specific features needed in our project.
     url = "https://ftp.mozilla.org/pub/firefox/releases/126.0b4/mac/en-US/Firefox%20126.0b4.dmg"
     
    Enhancement
    Improve clarity and extensibility by not using Optional.empty() directly in method calls.

    Avoid using Optional.empty() directly in method calls for better clarity and to facilitate
    future enhancements that might require additional parameters.

    java/src/org/openqa/selenium/devtools/v124/v124Network.java [50-51]

    -userAgent.userAgent(), userAgent.acceptLanguage(), userAgent.platform(), Optional.empty()
    +userAgent.userAgent(), userAgent.acceptLanguage(), userAgent.platform(), Optional.ofNullable(getAdditionalParameter())
     
    Log exception details in the toJsException method for better debugging.

    Use a logger to log the exception details in the toJsException method to aid in debugging
    and maintainability.

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

     protected JavascriptException toJsException(ExceptionThrown event) {
       ExceptionDetails details = event.getExceptionDetails();
       Optional<StackTrace> maybeTrace = details.getStackTrace();
       Optional<org.openqa.selenium.devtools.v124.runtime.model.RemoteObject> maybeException =
           details.getException();
       String message =
           "Exception thrown: " + maybeException.map(RemoteObject::getDescription).orElse("Unknown");
    +  logger.error("Javascript exception: " + message, event);
       return new JavascriptException(message, maybeTrace.orElse(null));
     }
     
    Simplify the constructor by initializing fields at declaration.

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

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

    -public V124JavaScript(RuntimeAdapter runtime, PageAdapter page)
    -{
    -    this.runtime = runtime;
    -    this.page = page;
    -}
    +private RuntimeAdapter runtime = new RuntimeAdapter();
    +private PageAdapter page = new PageAdapter();
    +public V124JavaScript() { }
     
    Use property initializers to simplify object construction.

    Consider using property initializers for adapter to make the code cleaner and more
    concise.

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

    -public V124Target(TargetAdapter adapter)
    +private TargetAdapter adapter { get; set; } = new TargetAdapter();
    +public V124Target()
     {
    -    this.adapter = adapter;
         adapter.DetachedFromTarget += OnDetachedFromTarget;
     }
     
    Use format strings to construct URLs from parameters for better flexibility.

    To avoid hardcoding the platform and language in URLs, consider using format strings or
    similar mechanisms to construct the URLs from parameters. This enhances flexibility and
    maintainability.

    common/repositories.bzl [14]

    -url = "https://ftp.mozilla.org/pub/firefox/releases/125.0.2/linux-x86_64/en-US/firefox-125.0.2.tar.bz2"
    +platform = "linux-x86_64"
    +language = "en-US"
    +version = "125.0.2"
    +url = f"https://ftp.mozilla.org/pub/firefox/releases/{version}/{platform}/{language}/firefox-{version}.tar.bz2"
     
    Review the changes in the new versions of reline and rake for potential impacts.

    Check the release notes and changelogs for reline and rake to understand the changes in
    the new versions and assess any potential impacts on the project.

    MODULE.bazel [284-291]

    -"reline-0.5.3": "2c46747a1dfd03e100f0666d8a374cf2930c3e734298af9b39e5fe8d35b42035",
    -"rake-13.2.1": "46cb38dae65d7d74b6020a4ac9d48afed8eb8149c040eccf0523bec91907059d",
    +"reline-<version-checked-for-impact>": "<checksum>",
    +"rake-<version-checked-for-impact>": "<checksum>",
     
    Bug
    Add null check for devTools parameter to prevent NullPointerException.

    Consider checking the state of devTools object to ensure it's not null before using it in
    the constructor to prevent potential NullPointerException.

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

    +if (devTools == null) {
    +  throw new IllegalArgumentException("DevTools instance cannot be null.");
    +}
     super(devTools);
     
    Maintainability
    Use a base URL variable to simplify future updates and enhance code cleanliness.

    Consider using a variable for the base URL to make future updates easier and the code
    cleaner. This can help in managing URLs more efficiently, especially when the same base
    URL is reused across multiple entries.

    common/repositories.bzl [14]

    -url = "https://ftp.mozilla.org/pub/firefox/releases/125.0.2/linux-x86_64/en-US/firefox-125.0.2.tar.bz2"
    +BASE_URL = "https://ftp.mozilla.org/pub/firefox/releases/"
    +url = BASE_URL + "125.0.2/linux-x86_64/en-US/firefox-125.0.2.tar.bz2"
     
    Abstract repeated code into functions for reusability and clarity.

    It's beneficial to abstract repeated code into reusable functions or macros, especially
    when dealing with similar types of data, such as URLs and SHA values for different
    platforms.

    common/repositories.bzl [14-15]

    -url = "https://ftp.mozilla.org/pub/firefox/releases/125.0.2/linux-x86_64/en-US/firefox-125.0.2.tar.bz2"
    -sha256 = "ecd3d99be21bc2c3afb6f1a89fc587adb3dcd2a4ef22f95350d461f86251ae7b"
    +def define_browser_archive(name, version, platform, sha):
    +    return {
    +        "url": f"https://ftp.mozilla.org/pub/firefox/releases/{version}/{platform}/firefox-{version}.tar.bz2",
    +        "sha256": sha
    +    }
    +linux_firefox = define_browser_archive("linux_firefox", "125.0.2", "linux-x86_64", "ecd3d99be21bc2c3afb6f1a89fc587adb3dcd2a4ef22f95350d461f86251ae7b")
     
    Review and agree on the rubocop versions to prevent introducing disruptive linting rules.

    Review the necessity of updating rubocop and its related plugins to ensure they do not
    introduce new linting rules that could disrupt the current codebase without prior team
    agreement.

    MODULE.bazel [298-304]

    -"rubocop-1.63.3": "17a31f16658f2fbb20bc7bcb4a841a06f7368da4f3be8a50365ad61e658d5f44",
    -"rubocop-performance-1.21.0": "ec54fa8991c2d538af7bc958361d63bdb3df2e53032da393e9903ea5e4f74a9a",
    -"rubocop-rspec-2.29.1": "534ee81a3006e7379ec6203687ef7c06ca1d137b7d6d67c2777b680b1ce82e13",
    -"rubocop-rspec_rails-2.28.3": "9769f2077cca8af2269193ba0450e0317ae1827a132c19149fdbeecaaca32818",
    +"rubocop-<agreed-version>": "<checksum>",
    +"rubocop-performance-<agreed-version>": "<checksum>",
    +"rubocop-rspec-<agreed-version>": "<checksum>",
    +"rubocop-rspec_rails-<agreed-version>": "<checksum>",
     
    Security
    Add GPG signature verification for downloaded archives to enhance security.

    To ensure the integrity and security of the downloaded files, it's recommended to verify
    the downloaded archives not only by their SHA-256 but also by adding an additional layer
    of verification such as GPG signatures.

    common/repositories.bzl [15]

     sha256 = "ecd3d99be21bc2c3afb6f1a89fc587adb3dcd2a4ef22f95350d461f86251ae7b"
    +gpg_signature = "path/to/signature.asc"
     
    Verify the checksum of the new library version against a trusted source.

    Ensure that the checksum for the new version of the debug library is verified against a
    trusted source to prevent potential security risks from tampered packages.

    MODULE.bazel [254]

    -"debug-1.9.2": "48e026c0852c7a10c60263e2e527968308958e266231e36d64e3efcabec7e7fc",
    +"debug-1.9.2": "<verified-checksum-from-trusted-source>",
     
    Possible issue
    Ensure compatibility of new library versions with existing dependencies.

    Confirm that the new versions of the json library and its Java variant are compatible with
    other dependencies to avoid runtime issues due to incompatible library versions.

    MODULE.bazel [268-269]

    -"json-2.7.2": "1898b5cbc81cd36c0fd4d0b7ad2682c39fb07c5ff682fc6265f678f550d4982c",
    -"json-2.7.2-java": "138e3038b5361b3d06ee2e8aa2be00bed0d0de4ef5f1553fc5935e5b93aca7ee",
    +"json-2.7.2": "<version-compatible-with-other-dependencies>",
    +"json-2.7.2-java": "<version-compatible-with-other-dependencies>",
     
    Validate the new version of public_suffix for compatibility with project-specific URL handling.

    Validate the new version of public_suffix for compatibility with the domain name parsing
    rules used in the project, as updates might affect the handling of URLs.

    MODULE.bazel [279]

    -"public_suffix-5.0.5": "72c340218bb384610536919988705cc29e09749c0021fd7005f715c7e5dfc493",
    +"public_suffix-<validated-version>": "<checksum>",
     

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

    @diemol diemol merged commit e6cf109 into release-4.20.0 Apr 24, 2024
    @diemol diemol deleted the create-pull-request/patch branch April 24, 2024 18:04
    diemol added a commit that referenced this pull request Apr 24, 2024
    * update Rust version to 0.4.20
    
    * Rust Changelog
    
    * [build] Prepare for release of Selenium 4.20.0 (#13868)
    
    * Update pinned browser versions
    
    * Update supported versions for Chrome DevTools
    
    * Update selenium manager version
    
    * Update authors file
    
    * FIX CHANGELOGS BEFORE MERGING!
    
    Update versions and change logs to release Selenium 4.20.0
    
    * [create-pull-request] automated change
    
    * [rb] Making linter happy
    
    * [build] Making linter happy
    
    * [ci] Ensure we install proper Bundler version
    
    setup-ruby should install the same version as in Gemfile.lock, but since it's in a subdirectory - it cannot pick it up automatically. See https://github.com/ruby/setup-ruby/blob/master/action.yml#L18C3-L24
    
    * [rb] Update dependencies
    
    * Setting a branch when creating the PR
    
    * Updating changelogs
    
    * Running linter
    
    ---------
    
    Co-authored-by: Selenium CI Bot <selenium-ci@users.noreply.github.com>
    Co-authored-by: Diego Molina <diemol@users.noreply.github.com>
    Co-authored-by: Diego Molina <diemol@gmail.com>
    Co-authored-by: Alex Rodionov <p0deje@gmail.com>
    
    * Skipping failing test, it is already being executed in GitHub Actions
    
    ---------
    
    Co-authored-by: Selenium CI Bot <selenium-ci@users.noreply.github.com>
    Co-authored-by: Selenium CI Bot <diemol+selenium-ci@gmail.com>
    Co-authored-by: Alex Rodionov <p0deje@gmail.com>
    @titusfortner titusfortner added B-docs API Docs; see other repo for website documentation and removed documentation labels Mar 30, 2025
    Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
    Labels
    B-build Includes scripting, bazel and CI integrations B-docs API Docs; see other repo for website documentation P-enhancement PR with a new feature Review effort [1-5]: 3
    Projects
    None yet
    Development

    Successfully merging this pull request may close these issues.

    5 participants