Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

[rb] Use Bazel JDK when starting server #13771

Closed
wants to merge 3 commits into from
Closed

Conversation

p0deje
Copy link
Member

@p0deje p0deje commented Apr 3, 2024

User description

This ensures the server is not started with a system JDK which might be missing, outdated or simply inaccessible due to Bazel test sandboxing.


Type

enhancement


Description

  • Introduced a new method java_bin to dynamically select the Java binary based on the environment, specifically for Bazel tests.
  • Modified the server initialization command to use the Java binary determined by java_bin, enhancing compatibility with Bazel's sandboxed environment.

Changes walkthrough

Relevant files
Enhancement
server.rb
Use Bazel JDK for Selenium Server Initialization                 

rb/lib/selenium/server.rb

  • Modified server command to use java_bin method for determining Java
    binary path.
  • Added java_bin method to select Java binary from JAVA_HOME if
    BAZEL_TEST environment variable is set, otherwise defaults to 'java'.
  • +9/-1     

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

    @p0deje p0deje added C-rb C-build Build related issues (bazel and CI) labels Apr 3, 2024
    Copy link

    PR Description updated to latest commit (66adbbb)

    Copy link

    PR Review

    ⏱️ Estimated effort to review [1-5]

    2, because the changes are localized and straightforward, affecting only the server initialization logic to dynamically select the Java binary. The logic is simple and the impact is limited to the server startup process.

    🧪 Relevant tests

    No

    🔍 Possible issues

    Environment Variable Dependency: The new java_bin method relies on the BAZEL_TEST and JAVA_HOME environment variables. If these are not set correctly in the environment where the server is started, it could lead to issues finding the correct Java binary.

    Hardcoded Java Path: The method defaults to a hardcoded 'java' string if the conditions are not met. This assumes that 'java' is in the system's PATH, which might not always be the case.

    🔒 Security concerns

    No


    ✨ Review tool usage guide:

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

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

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

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

    Copy link

    PR Code Suggestions

    CategorySuggestions                                                                                                                                                       
    Best practice
    Use File.join for path construction to ensure cross-platform compatibility.

    Consider using File.join for constructing the path to the Java binary. This ensures the
    path is correctly constructed across different operating systems.

    rb/lib/selenium/server.rb [261]

    -"#{ENV['JAVA_HOME']}/bin/java"
    +"File.join(ENV['JAVA_HOME'], 'bin', 'java')"
     
    Log a warning or throw an exception when JAVA_HOME is not set.

    Consider logging a warning or throwing an exception when JAVA_HOME is not set in the
    environment, as this could lead to unexpected behavior.

    rb/lib/selenium/server.rb [263]

     else
    +  # Consider logging a warning or raising an exception
       'java'
     
    Enhancement
    Remove duplicate arguments to avoid potential issues.

    To avoid potential issues with duplicate arguments, consider removing duplicates from
    @additional_args before appending them to server_command.

    rb/lib/selenium/server.rb [244]

    -server_command = [java_bin] + properties + args + @additional_args
    +server_command = [java_bin] + properties + args + @additional_args.uniq
     
    Validate JAVA_HOME points to a valid directory.

    Ensure ENV['JAVA_HOME'] is not only present but also points to a valid directory before
    constructing the Java binary path.

    rb/lib/selenium/server.rb [260]

    -if ENV.key?('BAZEL_TEST') && ENV.key?('JAVA_HOME')
    +if ENV.key?('BAZEL_TEST') && ENV.key?('JAVA_HOME') && Dir.exist?(ENV['JAVA_HOME'])
     
    Maintainability
    Extract Java binary path determination logic into a separate method.

    To improve code readability and maintainability, consider extracting the logic for
    determining the Java binary path into a separate method.

    rb/lib/selenium/server.rb [260-263]

    -if ENV.key?('BAZEL_TEST') && ENV.key?('JAVA_HOME')
    -  "#{ENV['JAVA_HOME']}/bin/java"
    -else
    -  'java'
    +def determine_java_binary
    +  if ENV.key?('BAZEL_TEST') && ENV.key?('JAVA_HOME')
    +    "#{ENV['JAVA_HOME']}/bin/java"
    +  else
    +    'java'
    +  end
    +end
     

    ✨ Improve tool usage guide:

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

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

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

    Copy link

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

    CI Failure Feedback

    (Checks updated until commit ef437df)

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

    Failed stage: Run Bazel [❌]

    Failure summary:

    The action failed due to permission issues encountered during the execution of the test suite.
    Specifically, the error Errno::EACCES: Permission denied - java indicates that the process attempted
    to spawn a Java process but was denied permission. This occurred in a before(:suite) hook,
    suggesting that the setup phase of the test environment was unable to proceed due to restricted
    access to required resources. The repeated occurrence of this error across multiple test cases
    indicates a systemic issue with permissions or environment configuration, rather than an isolated
    test failure.

    Relevant error logs:
    1:  ##[group]Operating System
    2:  Microsoft Windows Server 2022
    ...
    
    653:  �[32mAnalyzing:�[0m 27 targets (656 packages loaded, 37449 targets configured)
    654:  �[32m[1 / 1]�[0m checking cached actions
    655:  �[32mAnalyzing:�[0m 27 targets (660 packages loaded, 38514 targets configured)
    656:  �[32m[1 / 1]�[0m checking cached actions
    657:  �[32mAnalyzing:�[0m 27 targets (660 packages loaded, 38537 targets configured)
    658:  �[32m[2 / 25]�[0m Writing repo mapping manifest for //rb/spec/integration/selenium/webdriver:devtools-edge-remote; 0s local ... (3 actions, 1 running)
    659:  �[32mINFO: �[0mAnalyzed 27 targets (660 packages loaded, 38537 targets configured).
    660:  �[32m[13 / 37]�[0m [Prepa] Creating source manifest for //rb/spec/integration/selenium/webdriver:driver-edge-remote ... (4 actions, 1 running)
    661:  �[32m[18 / 43]�[0m Creating source manifest for //rb/spec/integration/selenium/webdriver:error-edge-remote; 0s local ... (3 actions, 2 running)
    ...
    
    721:  �[32m[1,555 / 2,887]�[0m [Prepa] Copying directory npm__at_mui_material__5.15.7__1946909678/package ... (3 actions, 1 running)
    722:  �[35mWARNING: �[0mD:/a/selenium/selenium/BUILD.bazel:13:22: input 'package' to //:.aspect_rules_js/node_modules/chalk@2.4.2/pkg is a directory; dependency checking of directories is unsound
    723:  �[35mWARNING: �[0mD:/a/selenium/selenium/BUILD.bazel:13:22: input 'package' to //:.aspect_rules_js/node_modules/color-convert@1.9.3/pkg is a directory; dependency checking of directories is unsound
    724:  �[35mWARNING: �[0mD:/a/selenium/selenium/BUILD.bazel:13:22: input 'package' to //:.aspect_rules_js/node_modules/color-name@1.1.3/pkg is a directory; dependency checking of directories is unsound
    725:  �[35mWARNING: �[0mD:/a/selenium/selenium/BUILD.bazel:13:22: input 'package' to //:.aspect_rules_js/node_modules/convert-source-map@1.9.0/pkg is a directory; dependency checking of directories is unsound
    726:  �[35mWARNING: �[0mD:/a/selenium/selenium/BUILD.bazel:13:22: input 'package' to //:.aspect_rules_js/node_modules/cosmiconfig@6.0.0/pkg is a directory; dependency checking of directories is unsound
    727:  �[35mWARNING: �[0mD:/a/selenium/selenium/BUILD.bazel:13:22: input 'package' to //:.aspect_rules_js/node_modules/debug@4.3.4_supports-color_8.1.1/pkg is a directory; dependency checking of directories is unsound
    728:  �[35mWARNING: �[0mD:/a/selenium/selenium/BUILD.bazel:13:22: input 'package' to //:.aspect_rules_js/node_modules/electron-to-chromium@1.4.284/pkg is a directory; dependency checking of directories is unsound
    729:  �[35mWARNING: �[0mD:/a/selenium/selenium/BUILD.bazel:13:22: input 'package' to //:.aspect_rules_js/node_modules/error-ex@1.3.2/pkg is a directory; dependency checking of directories is unsound
    ...
    
    741:  �[35mWARNING: �[0mD:/a/selenium/selenium/BUILD.bazel:13:22: input 'package' to //:.aspect_rules_js/node_modules/has-flag@3.0.0/pkg is a directory; dependency checking of directories is unsound
    742:  �[35mWARNING: �[0mD:/a/selenium/selenium/BUILD.bazel:13:22: input 'package' to //:.aspect_rules_js/node_modules/has-flag@4.0.0/pkg is a directory; dependency checking of directories is unsound
    743:  �[35mWARNING: �[0mD:/a/selenium/selenium/BUILD.bazel:13:22: input 'package' to //:.aspect_rules_js/node_modules/@mui+icons-material@5.15.8_-554584225/pkg is a directory; dependency checking of directories is unsound
    744:  �[35mWARNING: �[0mD:/a/selenium/selenium/BUILD.bazel:13:22: input 'package' to //:.aspect_rules_js/node_modules/import-fresh@3.3.0/pkg is a directory; dependency checking of directories is unsound
    745:  �[35mWARNING: �[0mD:/a/selenium/selenium/BUILD.bazel:13:22: input 'package' to //:.aspect_rules_js/node_modules/is-arrayish@0.2.1/pkg is a directory; dependency checking of directories is unsound
    746:  �[35mWARNING: �[0mD:/a/selenium/selenium/BUILD.bazel:13:22: input 'package' to //:.aspect_rules_js/node_modules/@apollo+client@3.8.10_1356184083/pkg is a directory; dependency checking of directories is unsound
    747:  �[35mWARNING: �[0mD:/a/selenium/selenium/BUILD.bazel:13:22: input 'package' to //:.aspect_rules_js/node_modules/is-core-module@2.11.0/pkg is a directory; dependency checking of directories is unsound
    748:  �[35mWARNING: �[0mD:/a/selenium/selenium/BUILD.bazel:13:22: input 'package' to //:.aspect_rules_js/node_modules/jsesc@2.5.2/pkg is a directory; dependency checking of directories is unsound
    749:  �[35mWARNING: �[0mD:/a/selenium/selenium/BUILD.bazel:13:22: input 'package' to //:.aspect_rules_js/node_modules/json-parse-even-better-errors@2.3.1/pkg is a directory; dependency checking of directories is unsound
    ...
    
    947:  �[32m[2,750 / 2,887]�[0m Running bundle install (@bundle//:bundle); 51s local, disk-cache ... (4 actions running)
    948:  �[32m[2,752 / 2,887]�[0m Running bundle install (@bundle//:bundle); 53s local, disk-cache ... (4 actions running)
    949:  �[32m[2,755 / 2,887]�[0m Running bundle install (@bundle//:bundle); 54s local, disk-cache ... (3 actions running)
    950:  �[32m[2,756 / 2,887]�[0m Running bundle install (@bundle//:bundle); 56s local, disk-cache ... (2 actions running)
    951:  �[32m[2,757 / 2,887]�[0m Running bundle install (@bundle//:bundle); 58s local, disk-cache ... (2 actions, 1 running)
    952:  �[32m[2,758 / 2,887]�[0m Running bundle install (@bundle//:bundle); 60s local, disk-cache ... (3 actions running)
    953:  �[32m[2,759 / 2,887]�[0m Running bundle install (@bundle//:bundle); 63s local, disk-cache ... (3 actions, 2 running)
    954:  �[32mINFO: �[0mFrom Building java/src/org/openqa/selenium/remote/libapi-class.jar (66 source files):
    955:  java\src\org\openqa\selenium\remote\ErrorHandler.java:46: warning: [removal] ErrorCodes in org.openqa.selenium.remote has been deprecated and marked for removal
    956:  private final ErrorCodes errorCodes;
    957:  ^
    958:  java\src\org\openqa\selenium\remote\ErrorHandler.java:60: warning: [removal] ErrorCodes in org.openqa.selenium.remote has been deprecated and marked for removal
    959:  this.errorCodes = new ErrorCodes();
    960:  ^
    961:  java\src\org\openqa\selenium\remote\ErrorHandler.java:68: warning: [removal] ErrorCodes in org.openqa.selenium.remote has been deprecated and marked for removal
    962:  public ErrorHandler(ErrorCodes codes, boolean includeServerErrors) {
    963:  ^
    964:  java\src\org\openqa\selenium\remote\Response.java:97: warning: [removal] ErrorCodes in org.openqa.selenium.remote has been deprecated and marked for removal
    965:  ErrorCodes errorCodes = new ErrorCodes();
    966:  ^
    967:  java\src\org\openqa\selenium\remote\Response.java:97: warning: [removal] ErrorCodes in org.openqa.selenium.remote has been deprecated and marked for removal
    968:  ErrorCodes errorCodes = new ErrorCodes();
    969:  ^
    970:  java\src\org\openqa\selenium\remote\ProtocolHandshake.java:181: warning: [removal] ErrorCodes in org.openqa.selenium.remote has been deprecated and marked for removal
    971:  response.setStatus(ErrorCodes.SUCCESS);
    972:  ^
    973:  java\src\org\openqa\selenium\remote\ProtocolHandshake.java:182: warning: [removal] ErrorCodes in org.openqa.selenium.remote has been deprecated and marked for removal
    974:  response.setState(ErrorCodes.SUCCESS_STRING);
    975:  ^
    976:  java\src\org\openqa\selenium\remote\W3CHandshakeResponse.java:53: warning: [removal] ErrorCodes in org.openqa.selenium.remote has been deprecated and marked for removal
    977:  new ErrorCodes().toStatus((String) rawError, Optional.of(tuple.getStatusCode())));
    978:  ^
    979:  java\src\org\openqa\selenium\remote\W3CHandshakeResponse.java:56: warning: [removal] ErrorCodes in org.openqa.selenium.remote has been deprecated and marked for removal
    980:  new ErrorCodes().getExceptionType((String) rawError);
    981:  ^
    982:  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
    983:  private final ErrorCodes errorCodes = new ErrorCodes();
    984:  ^
    985:  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
    986:  private final ErrorCodes errorCodes = new ErrorCodes();
    987:  ^
    988:  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
    989:  int status = response.getStatus() == ErrorCodes.SUCCESS ? HTTP_OK : HTTP_INTERNAL_ERROR;
    990:  ^
    991:  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
    992:  response.setStatus(ErrorCodes.UNKNOWN_COMMAND);
    993:  ^
    994:  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
    995:  response.setStatus(ErrorCodes.UNHANDLED_ERROR);
    996:  ^
    997:  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
    998:  response.setStatus(ErrorCodes.SUCCESS);
    999:  ^
    1000:  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
    1001:  response.setState(errorCodes.toState(ErrorCodes.SUCCESS));
    1002:  ^
    1003:  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
    1004:  response.setState(errorCodes.toState(ErrorCodes.SUCCESS));
    1005:  ^
    1006:  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
    1007:  private final ErrorCodes errorCodes = new ErrorCodes();
    1008:  ^
    1009:  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
    1010:  private final ErrorCodes errorCodes = new ErrorCodes();
    1011:  ^
    1012:  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
    1013:  response.setStatus(ErrorCodes.UNKNOWN_COMMAND);
    1014:  ^
    1015:  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
    1016:  response.setStatus(ErrorCodes.UNHANDLED_ERROR);
    1017:  ^
    1018:  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
    1019:  response.setStatus(ErrorCodes.SUCCESS);
    ...
    
    1212:  �[32m[2,887 / 2,910]�[0m Testing //rb/spec/integration/selenium/webdriver:target_locator-edge-remote; 47s local, disk-cache ... (4 actions running)
    1213:  �[31m�[1mFAIL: �[0m//rb/spec/integration/selenium/webdriver:listener-edge-remote (see D:/_bazel/execroot/selenium/bazel-out/x64_windows-fastbuild/testlogs/rb/spec/integration/selenium/webdriver/listener-edge-remote/test_attempts/attempt_2.log)
    1214:  �[32m[2,887 / 2,910]�[0m Testing //rb/spec/integration/selenium/webdriver:target_locator-edge-remote; 49s local, disk-cache ... (4 actions running)
    1215:  �[32m[2,887 / 2,910]�[0m Testing //rb/spec/integration/selenium/webdriver:target_locator-edge-remote; 54s local, disk-cache ... (4 actions running)
    1216:  �[31m�[1mFAIL: �[0m//rb/spec/integration/selenium/webdriver:takes_screenshot-edge-remote (see D:/_bazel/execroot/selenium/bazel-out/x64_windows-fastbuild/testlogs/rb/spec/integration/selenium/webdriver/takes_screenshot-edge-remote/test_attempts/attempt_2.log)
    1217:  �[32m[2,887 / 2,910]�[0m Testing //rb/spec/integration/selenium/webdriver:target_locator-edge-remote; 56s local, disk-cache ... (4 actions running)
    1218:  �[32m[2,887 / 2,910]�[0m Testing //rb/spec/integration/selenium/webdriver:target_locator-edge-remote; 61s local, disk-cache ... (4 actions running)
    1219:  �[31m�[1mFAIL: �[0m//rb/spec/integration/selenium/webdriver:target_locator-edge-remote (see D:/_bazel/execroot/selenium/bazel-out/x64_windows-fastbuild/testlogs/rb/spec/integration/selenium/webdriver/target_locator-edge-remote/test.log)
    1220:  �[31m�[1mFAILED: �[0m//rb/spec/integration/selenium/webdriver:target_locator-edge-remote (Summary)
    ...
    
    1285:  "RUNFILE_PATH"=>"bundle/vendor/bundle",
    1286:  "RUN_UNDER_RUNFILES"=>"1",
    1287:  "SE_AVOID_STATS"=>"true",
    1288:  "SYSTEMDRIVE"=>"C:",
    1289:  "SYSTEMROOT"=>"C:\\Windows",
    1290:  "TEMP"=>"C:\\Users\\RUNNER~1\\AppData\\Local\\Temp",
    1291:  "TEST_BINARY"=>
    1292:  "rb/spec/integration/selenium/webdriver/target_locator-edge-remote.cmd",
    1293:  "TEST_INFRASTRUCTURE_FAILURE_FILE"=>
    1294:  "D:/_bazel/execroot/selenium/bazel-out/x64_windows-fastbuild/testlogs/rb/spec/integration/selenium/webdriver/target_locator-edge-remote/test.infrastructure_failure",
    ...
    
    1315:  "TEST_WORKSPACE"=>"selenium",
    1316:  "TMP"=>"C:\\Users\\RUNNER~1\\AppData\\Local\\Temp",
    1317:  "TZ"=>"UTC",
    1318:  "USER"=>"runneradmin",
    1319:  "WD_REMOTE_BROWSER"=>"edge",
    1320:  "WD_SPEC_DRIVER"=>"remote",
    1321:  "XML_OUTPUT_FILE"=>
    1322:  "D:/_bazel/execroot/selenium/bazel-out/x64_windows-fastbuild/testlogs/rb/spec/integration/selenium/webdriver/target_locator-edge-remote/test.xml"}
    1323:  An error occurred in a `before(:suite)` hook.
    1324:  Failure/Error: @pid = Process.spawn(*@command, options)
    1325:  Errno::EACCES:
    1326:  Permission denied - java
    1327:  # ./rb/lib/selenium/webdriver/common/child_process.rb:57:in `spawn'
    1328:  # ./rb/lib/selenium/webdriver/common/child_process.rb:57:in `start'
    1329:  # ./rb/lib/selenium/server.rb:204:in `start'
    1330:  # //?/D:/a/selenium/selenium/rb/spec/integration/selenium/webdriver/spec_helper.rb:40:in `block (2 levels) in <top (required)>'
    1331:  Finished in 0.05674 seconds (files took 0.61476 seconds to load)
    1332:  0 examples, 0 failures, 1 error occurred outside of examples
    ...
    
    1394:  "RUNFILE_PATH"=>"bundle/vendor/bundle",
    1395:  "RUN_UNDER_RUNFILES"=>"1",
    1396:  "SE_AVOID_STATS"=>"true",
    1397:  "SYSTEMDRIVE"=>"C:",
    1398:  "SYSTEMROOT"=>"C:\\Windows",
    1399:  "TEMP"=>"C:\\Users\\RUNNER~1\\AppData\\Local\\Temp",
    1400:  "TEST_BINARY"=>
    1401:  "rb/spec/integration/selenium/webdriver/target_locator-edge-remote.cmd",
    1402:  "TEST_INFRASTRUCTURE_FAILURE_FILE"=>
    1403:  "D:/_bazel/execroot/selenium/bazel-out/x64_windows-fastbuild/testlogs/rb/spec/integration/selenium/webdriver/target_locator-edge-remote/test.infrastructure_failure",
    ...
    
    1424:  "TEST_WORKSPACE"=>"selenium",
    1425:  "TMP"=>"C:\\Users\\RUNNER~1\\AppData\\Local\\Temp",
    1426:  "TZ"=>"UTC",
    1427:  "USER"=>"runneradmin",
    1428:  "WD_REMOTE_BROWSER"=>"edge",
    1429:  "WD_SPEC_DRIVER"=>"remote",
    1430:  "XML_OUTPUT_FILE"=>
    1431:  "D:/_bazel/execroot/selenium/bazel-out/x64_windows-fastbuild/testlogs/rb/spec/integration/selenium/webdriver/target_locator-edge-remote/test.xml"}
    1432:  An error occurred in a `before(:suite)` hook.
    1433:  Failure/Error: @pid = Process.spawn(*@command, options)
    1434:  Errno::EACCES:
    1435:  Permission denied - java
    1436:  # ./rb/lib/selenium/webdriver/common/child_process.rb:57:in `spawn'
    1437:  # ./rb/lib/selenium/webdriver/common/child_process.rb:57:in `start'
    1438:  # ./rb/lib/selenium/server.rb:204:in `start'
    1439:  # //?/D:/a/selenium/selenium/rb/spec/integration/selenium/webdriver/spec_helper.rb:40:in `block (2 levels) in <top (required)>'
    1440:  Finished in 0.05654 seconds (files took 0.64603 seconds to load)
    1441:  0 examples, 0 failures, 1 error occurred outside of examples
    ...
    
    1503:  "RUNFILE_PATH"=>"bundle/vendor/bundle",
    1504:  "RUN_UNDER_RUNFILES"=>"1",
    1505:  "SE_AVOID_STATS"=>"true",
    1506:  "SYSTEMDRIVE"=>"C:",
    1507:  "SYSTEMROOT"=>"C:\\Windows",
    1508:  "TEMP"=>"C:\\Users\\RUNNER~1\\AppData\\Local\\Temp",
    1509:  "TEST_BINARY"=>
    1510:  "rb/spec/integration/selenium/webdriver/target_locator-edge-remote.cmd",
    1511:  "TEST_INFRASTRUCTURE_FAILURE_FILE"=>
    1512:  "D:/_bazel/execroot/selenium/bazel-out/x64_windows-fastbuild/testlogs/rb/spec/integration/selenium/webdriver/target_locator-edge-remote/test.infrastructure_failure",
    ...
    
    1533:  "TEST_WORKSPACE"=>"selenium",
    1534:  "TMP"=>"C:\\Users\\RUNNER~1\\AppData\\Local\\Temp",
    1535:  "TZ"=>"UTC",
    1536:  "USER"=>"runneradmin",
    1537:  "WD_REMOTE_BROWSER"=>"edge",
    1538:  "WD_SPEC_DRIVER"=>"remote",
    1539:  "XML_OUTPUT_FILE"=>
    1540:  "D:/_bazel/execroot/selenium/bazel-out/x64_windows-fastbuild/testlogs/rb/spec/integration/selenium/webdriver/target_locator-edge-remote/test.xml"}
    1541:  An error occurred in a `before(:suite)` hook.
    1542:  Failure/Error: @pid = Process.spawn(*@command, options)
    1543:  Errno::EACCES:
    1544:  Permission denied - java
    1545:  # ./rb/lib/selenium/webdriver/common/child_process.rb:57:in `spawn'
    1546:  # ./rb/lib/selenium/webdriver/common/child_process.rb:57:in `start'
    1547:  # ./rb/lib/selenium/server.rb:204:in `start'
    1548:  # //?/D:/a/selenium/selenium/rb/spec/integration/selenium/webdriver/spec_helper.rb:40:in `block (2 levels) in <top (required)>'
    1549:  Finished in 0.05588 seconds (files took 0.61634 seconds to load)
    1550:  0 examples, 0 failures, 1 error occurred outside of examples
    1551:  ================================================================================
    1552:  �[32m[2,888 / 2,910]�[0m 1 / 27 tests, �[31m�[1m1 failed�[0m;�[0m Testing //rb/spec/integration/selenium/webdriver:element-edge-remote; 56s local, disk-cache ... (4 actions, 3 running)
    1553:  �[32m[2,888 / 2,910]�[0m 1 / 27 tests, �[31m�[1m1 failed�[0m;�[0m Testing //rb/spec/integration/selenium/webdriver:element-edge-remote; 61s local, disk-cache ... (4 actions, 3 running)
    1554:  �[31m�[1mFAIL: �[0m//rb/spec/integration/selenium/webdriver:element-edge-remote (see D:/_bazel/execroot/selenium/bazel-out/x64_windows-fastbuild/testlogs/rb/spec/integration/selenium/webdriver/element-edge-remote/test.log)
    1555:  ==================== Test output for //rb/spec/integration/selenium/webdriver:element-edge-remote:
    1556:  2024-04-03 18:51:37 INFO Selenium Server Location: D:/_bazel/execroot/selenium/bazel-out/x64_windows-fastbuild/bin/rb/spec/integration/selenium/webdriver/element-edge-remote.cmd.runfiles/selenium/java/src/org/openqa/selenium/grid/selenium_server_deploy.jar
    1557:  �[31m�[1mFAILED: �[0m//rb/spec/integration/selenium/webdriver:element-edge-remote (Summary)
    ...
    
    1620:  "RUNFILE_PATH"=>"bundle/vendor/bundle",
    1621:  "RUN_UNDER_RUNFILES"=>"1",
    1622:  "SE_AVOID_STATS"=>"true",
    1623:  "SYSTEMDRIVE"=>"C:",
    1624:  "SYSTEMROOT"=>"C:\\Windows",
    1625:  "TEMP"=>"C:\\Users\\RUNNER~1\\AppData\\Local\\Temp",
    1626:  "TEST_BINARY"=>
    1627:  "rb/spec/integration/selenium/webdriver/element-edge-remote.cmd",
    1628:  "TEST_INFRASTRUCTURE_FAILURE_FILE"=>
    1629:  "D:/_bazel/execroot/selenium/bazel-out/x64_windows-fastbuild/testlogs/rb/spec/integration/selenium/webdriver/element-edge-remote/test.infrastructure_failure",
    ...
    
    1649:  "TEST_WORKSPACE"=>"selenium",
    1650:  "TMP"=>"C:\\Users\\RUNNER~1\\AppData\\Local\\Temp",
    1651:  "TZ"=>"UTC",
    1652:  "USER"=>"runneradmin",
    1653:  "WD_REMOTE_BROWSER"=>"edge",
    1654:  "WD_SPEC_DRIVER"=>"remote",
    1655:  "XML_OUTPUT_FILE"=>
    1656:  "D:/_bazel/execroot/selenium/bazel-out/x64_windows-fastbuild/testlogs/rb/spec/integration/selenium/webdriver/element-edge-remote/test.xml"}
    1657:  An error occurred in a `before(:suite)` hook.
    1658:  Failure/Error: @pid = Process.spawn(*@command, options)
    1659:  Errno::EACCES:
    1660:  Permission denied - java
    1661:  # ./rb/lib/selenium/webdriver/common/child_process.rb:57:in `spawn'
    1662:  # ./rb/lib/selenium/webdriver/common/child_process.rb:57:in `start'
    1663:  # ./rb/lib/selenium/server.rb:204:in `start'
    1664:  # //?/D:/a/selenium/selenium/rb/spec/integration/selenium/webdriver/spec_helper.rb:40:in `block (2 levels) in <top (required)>'
    1665:  Finished in 0.05817 seconds (files took 0.6526 seconds to load)
    1666:  0 examples, 0 failures, 1 error occurred outside of examples
    ...
    
    1728:  "RUNFILE_PATH"=>"bundle/vendor/bundle",
    1729:  "RUN_UNDER_RUNFILES"=>"1",
    1730:  "SE_AVOID_STATS"=>"true",
    1731:  "SYSTEMDRIVE"=>"C:",
    1732:  "SYSTEMROOT"=>"C:\\Windows",
    1733:  "TEMP"=>"C:\\Users\\RUNNER~1\\AppData\\Local\\Temp",
    1734:  "TEST_BINARY"=>
    1735:  "rb/spec/integration/selenium/webdriver/element-edge-remote.cmd",
    1736:  "TEST_INFRASTRUCTURE_FAILURE_FILE"=>
    1737:  "D:/_bazel/execroot/selenium/bazel-out/x64_windows-fastbuild/testlogs/rb/spec/integration/selenium/webdriver/element-edge-remote/test.infrastructure_failure",
    ...
    
    1757:  "TEST_WORKSPACE"=>"selenium",
    1758:  "TMP"=>"C:\\Users\\RUNNER~1\\AppData\\Local\\Temp",
    1759:  "TZ"=>"UTC",
    1760:  "USER"=>"runneradmin",
    1761:  "WD_REMOTE_BROWSER"=>"edge",
    1762:  "WD_SPEC_DRIVER"=>"remote",
    1763:  "XML_OUTPUT_FILE"=>
    1764:  "D:/_bazel/execroot/selenium/bazel-out/x64_windows-fastbuild/testlogs/rb/spec/integration/selenium/webdriver/element-edge-remote/test.xml"}
    1765:  An error occurred in a `before(:suite)` hook.
    1766:  Failure/Error: @pid = Process.spawn(*@command, options)
    1767:  Errno::EACCES:
    1768:  Permission denied - java
    1769:  # ./rb/lib/selenium/webdriver/common/child_process.rb:57:in `spawn'
    1770:  # ./rb/lib/selenium/webdriver/common/child_process.rb:57:in `start'
    1771:  # ./rb/lib/selenium/server.rb:204:in `start'
    1772:  # //?/D:/a/selenium/selenium/rb/spec/integration/selenium/webdriver/spec_helper.rb:40:in `block (2 levels) in <top (required)>'
    1773:  Finished in 0.05521 seconds (files took 0.61271 seconds to load)
    1774:  0 examples, 0 failures, 1 error occurred outside of examples
    ...
    
    1836:  "RUNFILE_PATH"=>"bundle/vendor/bundle",
    1837:  "RUN_UNDER_RUNFILES"=>"1",
    1838:  "SE_AVOID_STATS"=>"true",
    1839:  "SYSTEMDRIVE"=>"C:",
    1840:  "SYSTEMROOT"=>"C:\\Windows",
    1841:  "TEMP"=>"C:\\Users\\RUNNER~1\\AppData\\Local\\Temp",
    1842:  "TEST_BINARY"=>
    1843:  "rb/spec/integration/selenium/webdriver/element-edge-remote.cmd",
    1844:  "TEST_INFRASTRUCTURE_FAILURE_FILE"=>
    1845:  "D:/_bazel/execroot/selenium/bazel-out/x64_windows-fastbuild/testlogs/rb/spec/integration/selenium/webdriver/element-edge-remote/test.infrastructure_failure",
    ...
    
    1865:  "TEST_WORKSPACE"=>"selenium",
    1866:  "TMP"=>"C:\\Users\\RUNNER~1\\AppData\\Local\\Temp",
    1867:  "TZ"=>"UTC",
    1868:  "USER"=>"runneradmin",
    1869:  "WD_REMOTE_BROWSER"=>"edge",
    1870:  "WD_SPEC_DRIVER"=>"remote",
    1871:  "XML_OUTPUT_FILE"=>
    1872:  "D:/_bazel/execroot/selenium/bazel-out/x64_windows-fastbuild/testlogs/rb/spec/integration/selenium/webdriver/element-edge-remote/test.xml"}
    1873:  An error occurred in a `before(:suite)` hook.
    1874:  Failure/Error: @pid = Process.spawn(*@command, options)
    1875:  Errno::EACCES:
    1876:  Permission denied - java
    1877:  # ./rb/lib/selenium/webdriver/common/child_process.rb:57:in `spawn'
    1878:  # ./rb/lib/selenium/webdriver/common/child_process.rb:57:in `start'
    1879:  # ./rb/lib/selenium/server.rb:204:in `start'
    1880:  # //?/D:/a/selenium/selenium/rb/spec/integration/selenium/webdriver/spec_helper.rb:40:in `block (2 levels) in <top (required)>'
    1881:  Finished in 0.06496 seconds (files took 0.65327 seconds to load)
    1882:  0 examples, 0 failures, 1 error occurred outside of examples
    1883:  ================================================================================
    1884:  �[32m[2,889 / 2,910]�[0m 2 / 27 tests, �[31m�[1m2 failed�[0m;�[0m Testing //rb/spec/integration/selenium/webdriver:listener-edge-remote; 56s local, disk-cache ... (4 actions, 2 running)
    1885:  �[32m[2,889 / 2,910]�[0m 2 / 27 tests, �[31m�[1m2 failed�[0m;�[0m Testing //rb/spec/integration/selenium/webdriver:listener-edge-remote; 58s local, disk-cache ... (4 actions, 2 running)
    1886:  �[32m[2,889 / 2,910]�[0m 2 / 27 tests, �[31m�[1m2 failed�[0m;�[0m Testing //rb/spec/integration/selenium/webdriver:listener-edge-remote; 61s local, disk-cache ... (4 actions, 2 running)
    1887:  �[31m�[1mFAIL: �[0m//rb/spec/integration/selenium/webdriver:listener-edge-remote (see D:/_bazel/execroot/selenium/bazel-out/x64_windows-fastbuild/testlogs/rb/spec/integration/selenium/webdriver/listener-edge-remote/test.log)
    1888:  �[31m�[1mFAILED: �[0m//rb/spec/integration/selenium/webdriver:listener-edge-remote (Summary)
    ...
    
    1953:  "RUNFILE_PATH"=>"bundle/vendor/bundle",
    1954:  "RUN_UNDER_RUNFILES"=>"1",
    1955:  "SE_AVOID_STATS"=>"true",
    1956:  "SYSTEMDRIVE"=>"C:",
    1957:  "SYSTEMROOT"=>"C:\\Windows",
    1958:  "TEMP"=>"C:\\Users\\RUNNER~1\\AppData\\Local\\Temp",
    1959:  "TEST_BINARY"=>
    1960:  "rb/spec/integration/selenium/webdriver/listener-edge-remote.cmd",
    1961:  "TEST_INFRASTRUCTURE_FAILURE_FILE"=>
    1962:  "D:/_bazel/execroot/selenium/bazel-out/x64_windows-fastbuild/testlogs/rb/spec/integration/selenium/webdriver/listener-edge-remote/test.infrastructure_failure",
    ...
    
    1983:  "TEST_WORKSPACE"=>"selenium",
    1984:  "TMP"=>"C:\\Users\\RUNNER~1\\AppData\\Local\\Temp",
    1985:  "TZ"=>"UTC",
    1986:  "USER"=>"runneradmin",
    1987:  "WD_REMOTE_BROWSER"=>"edge",
    1988:  "WD_SPEC_DRIVER"=>"remote",
    1989:  "XML_OUTPUT_FILE"=>
    1990:  "D:/_bazel/execroot/selenium/bazel-out/x64_windows-fastbuild/testlogs/rb/spec/integration/selenium/webdriver/listener-edge-remote/test.xml"}
    1991:  An error occurred in a `before(:suite)` hook.
    1992:  Failure/Error: @pid = Process.spawn(*@command, options)
    1993:  Errno::EACCES:
    1994:  Permission denied - java
    1995:  # ./rb/lib/selenium/webdriver/common/child_process.rb:57:in `spawn'
    1996:  # ./rb/lib/selenium/webdriver/common/child_process.rb:57:in `start'
    1997:  # ./rb/lib/selenium/server.rb:204:in `start'
    1998:  # //?/D:/a/selenium/selenium/rb/spec/integration/selenium/webdriver/spec_helper.rb:40:in `block (2 levels) in <top (required)>'
    1999:  Finished in 0.0551 seconds (files took 0.59111 seconds to load)
    2000:  0 examples, 0 failures, 1 error occurred outside of examples
    ...
    
    2062:  "RUNFILE_PATH"=>"bundle/vendor/bundle",
    2063:  "RUN_UNDER_RUNFILES"=>"1",
    2064:  "SE_AVOID_STATS"=>"true",
    2065:  "SYSTEMDRIVE"=>"C:",
    2066:  "SYSTEMROOT"=>"C:\\Windows",
    2067:  "TEMP"=>"C:\\Users\\RUNNER~1\\AppData\\Local\\Temp",
    2068:  "TEST_BINARY"=>
    2069:  "rb/spec/integration/selenium/webdriver/listener-edge-remote.cmd",
    2070:  "TEST_INFRASTRUCTURE_FAILURE_FILE"=>
    2071:  "D:/_bazel/execroot/selenium/bazel-out/x64_windows-fastbuild/testlogs/rb/spec/integration/selenium/webdriver/listener-edge-remote/test.infrastructure_failure",
    ...
    
    2092:  "TEST_WORKSPACE"=>"selenium",
    2093:  "TMP"=>"C:\\Users\\RUNNER~1\\AppData\\Local\\Temp",
    2094:  "TZ"=>"UTC",
    2095:  "USER"=>"runneradmin",
    2096:  "WD_REMOTE_BROWSER"=>"edge",
    2097:  "WD_SPEC_DRIVER"=>"remote",
    2098:  "XML_OUTPUT_FILE"=>
    2099:  "D:/_bazel/execroot/selenium/bazel-out/x64_windows-fastbuild/testlogs/rb/spec/integration/selenium/webdriver/listener-edge-remote/test.xml"}
    2100:  An error occurred in a `before(:suite)` hook.
    2101:  Failure/Error: @pid = Process.spawn(*@command, options)
    2102:  Errno::EACCES:
    2103:  Permission denied - java
    2104:  # ./rb/lib/selenium/webdriver/common/child_process.rb:57:in `spawn'
    2105:  # ./rb/lib/selenium/webdriver/common/child_process.rb:57:in `start'
    2106:  # ./rb/lib/selenium/server.rb:204:in `start'
    2107:  # //?/D:/a/selenium/selenium/rb/spec/integration/selenium/webdriver/spec_helper.rb:40:in `block (2 levels) in <top (required)>'
    2108:  Finished in 0.05414 seconds (files took 0.59614 seconds to load)
    2109:  0 examples, 0 failures, 1 error occurred outside of examples
    ...
    
    2171:  "RUNFILE_PATH"=>"bundle/vendor/bundle",
    2172:  "RUN_UNDER_RUNFILES"=>"1",
    2173:  "SE_AVOID_STATS"=>"true",
    2174:  "SYSTEMDRIVE"=>"C:",
    2175:  "SYSTEMROOT"=>"C:\\Windows",
    2176:  "TEMP"=>"C:\\Users\\RUNNER~1\\AppData\\Local\\Temp",
    2177:  "TEST_BINARY"=>
    2178:  "rb/spec/integration/selenium/webdriver/listener-edge-remote.cmd",
    2179:  "TEST_INFRASTRUCTURE_FAILURE_FILE"=>
    2180:  "D:/_bazel/execroot/selenium/bazel-out/x64_windows-fastbuild/testlogs/rb/spec/integration/selenium/webdriver/listener-edge-remote/test.infrastructure_failure",
    ...
    
    2201:  "TEST_WORKSPACE"=>"selenium",
    2202:  "TMP"=>"C:\\Users\\RUNNER~1\\AppData\\Local\\Temp",
    2203:  "TZ"=>"UTC",
    2204:  "USER"=>"runneradmin",
    2205:  "WD_REMOTE_BROWSER"=>"edge",
    2206:  "WD_SPEC_DRIVER"=>"remote",
    2207:  "XML_OUTPUT_FILE"=>
    2208:  "D:/_bazel/execroot/selenium/bazel-out/x64_windows-fastbuild/testlogs/rb/spec/integration/selenium/webdriver/listener-edge-remote/test.xml"}
    2209:  An error occurred in a `before(:suite)` hook.
    2210:  Failure/Error: @pid = Process.spawn(*@command, options)
    2211:  Errno::EACCES:
    2212:  Permission denied - java
    2213:  # ./rb/lib/selenium/webdriver/common/child_process.rb:57:in `spawn'
    2214:  # ./rb/lib/selenium/webdriver/common/child_process.rb:57:in `start'
    2215:  # ./rb/lib/selenium/server.rb:204:in `start'
    2216:  # //?/D:/a/selenium/selenium/rb/spec/integration/selenium/webdriver/spec_helper.rb:40:in `block (2 levels) in <top (required)>'
    2217:  Finished in 0.08168 seconds (files took 0.77625 seconds to load)
    2218:  0 examples, 0 failures, 1 error occurred outside of examples
    2219:  ================================================================================
    2220:  �[32m[2,890 / 2,910]�[0m 3 / 27 tests, �[31m�[1m3 failed�[0m;�[0m Testing //rb/spec/integration/selenium/webdriver:takes_screenshot-edge-remote; 56s local, disk-cache ... (4 actions, 1 running)
    2221:  �[32m[2,890 / 2,910]�[0m 3 / 27 tests, �[31m�[1m3 failed�[0m;�[0m Testing //rb/spec/integration/selenium/webdriver:takes_screenshot-edge-remote; 60s local, disk-cache ... (4 actions, 1 running)
    2222:  �[32m[2,890 / 2,910]�[0m 3 / 27 tests, �[31m�[1m3 failed�[0m;�[0m Testing //rb/spec/integration/selenium/webdriver:takes_screenshot-edge-remote; 62s local, disk-cache ... (4 actions, 2 running)
    2223:  �[31m�[1mFAIL: �[0m//rb/spec/integration/selenium/webdriver:takes_screenshot-edge-remote (see D:/_bazel/execroot/selenium/bazel-out/x64_windows-fastbuild/testlogs/rb/spec/integration/selenium/webdriver/takes_screenshot-edge-remote/test.log)
    2224:  ==================== Test output for //rb/spec/integration/selenium/webdriver:takes_screenshot-edge-remote:
    2225:  �[31m�[1mFAILED: �[0m//rb/spec/integration/selenium/webdriver:takes_screenshot-edge-remote (Summary)
    ...
    
    2289:  "RUNFILE_PATH"=>"bundle/vendor/bundle",
    2290:  "RUN_UNDER_RUNFILES"=>"1",
    2291:  "SE_AVOID_STATS"=>"true",
    2292:  "SYSTEMDRIVE"=>"C:",
    2293:  "SYSTEMROOT"=>"C:\\Windows",
    2294:  "TEMP"=>"C:\\Users\\RUNNER~1\\AppData\\Local\\Temp",
    2295:  "TEST_BINARY"=>
    2296:  "rb/spec/integration/selenium/webdriver/takes_screenshot-edge-remote.cmd",
    2297:  "TEST_INFRASTRUCTURE_FAILURE_FILE"=>
    2298:  "D:/_bazel/execroot/selenium/bazel-out/x64_windows-fastbuild/testlogs/rb/spec/integration/selenium/webdriver/takes_screenshot-edge-remote/test.infrastructure_failure",
    ...
    
    2319:  "TEST_WORKSPACE"=>"selenium",
    2320:  "TMP"=>"C:\\Users\\RUNNER~1\\AppData\\Local\\Temp",
    2321:  "TZ"=>"UTC",
    2322:  "USER"=>"runneradmin",
    2323:  "WD_REMOTE_BROWSER"=>"edge",
    2324:  "WD_SPEC_DRIVER"=>"remote",
    2325:  "XML_OUTPUT_FILE"=>
    2326:  "D:/_bazel/execroot/selenium/bazel-out/x64_windows-fastbuild/testlogs/rb/spec/integration/selenium/webdriver/takes_screenshot-edge-remote/test.xml"}
    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.05525 seconds (files took 0.58734 seconds to load)
    2336:  0 examples, 0 failures, 1 error occurred outside of examples
    ...
    
    2398:  "RUNFILE_PATH"=>"bundle/vendor/bundle",
    2399:  "RUN_UNDER_RUNFILES"=>"1",
    2400:  "SE_AVOID_STATS"=>"true",
    2401:  "SYSTEMDRIVE"=>"C:",
    2402:  "SYSTEMROOT"=>"C:\\Windows",
    2403:  "TEMP"=>"C:\\Users\\RUNNER~1\\AppData\\Local\\Temp",
    2404:  "TEST_BINARY"=>
    2405:  "rb/spec/integration/selenium/webdriver/takes_screenshot-edge-remote.cmd",
    2406:  "TEST_INFRASTRUCTURE_FAILURE_FILE"=>
    2407:  "D:/_bazel/execroot/selenium/bazel-out/x64_windows-fastbuild/testlogs/rb/spec/integration/selenium/webdriver/takes_screenshot-edge-remote/test.infrastructure_failure",
    ...
    
    2428:  "TEST_WORKSPACE"=>"selenium",
    2429:  "TMP"=>"C:\\Users\\RUNNER~1\\AppData\\Local\\Temp",
    2430:  "TZ"=>"UTC",
    2431:  "USER"=>"runneradmin",
    2432:  "WD_REMOTE_BROWSER"=>"edge",
    2433:  "WD_SPEC_DRIVER"=>"remote",
    2434:  "XML_OUTPUT_FILE"=>
    2435:  "D:/_bazel/execroot/selenium/bazel-out/x64_windows-fastbuild/testlogs/rb/spec/integration/selenium/webdriver/takes_screenshot-edge-remote/test.xml"}
    2436:  An error occurred in a `before(:suite)` hook.
    2437:  Failure/Error: @pid = Process.spawn(*@command, options)
    2438:  Errno::EACCES:
    2439:  Permission denied - java
    2440:  # ./rb/lib/selenium/webdriver/common/child_process.rb:57:in `spawn'
    2441:  # ./rb/lib/selenium/webdriver/common/child_process.rb:57:in `start'
    2442:  # ./rb/lib/selenium/server.rb:204:in `start'
    2443:  # //?/D:/a/selenium/selenium/rb/spec/integration/selenium/webdriver/spec_helper.rb:40:in `block (2 levels) in <top (required)>'
    2444:  Finished in 0.05502 seconds (files took 0.7142 seconds to load)
    2445:  0 examples, 0 failures, 1 error occurred outside of examples
    ...
    
    2507:  "RUNFILE_PATH"=>"bundle/vendor/bundle",
    2508:  "RUN_UNDER_RUNFILES"=>"1",
    2509:  "SE_AVOID_STATS"=>"true",
    2510:  "SYSTEMDRIVE"=>"C:",
    2511:  "SYSTEMROOT"=>"C:\\Windows",
    2512:  "TEMP"=>"C:\\Users\\RUNNER~1\\AppData\\Local\\Temp",
    2513:  "TEST_BINARY"=>
    2514:  "rb/spec/integration/selenium/webdriver/takes_screenshot-edge-remote.cmd",
    2515:  "TEST_INFRASTRUCTURE_FAILURE_FILE"=>
    2516:  "D:/_bazel/execroot/selenium/bazel-out/x64_windows-fastbuild/testlogs/rb/spec/integration/selenium/webdriver/takes_screenshot-edge-remote/test.infrastructure_failure",
    ...
    
    2537:  "TEST_WORKSPACE"=>"selenium",
    2538:  "TMP"=>"C:\\Users\\RUNNER~1\\AppData\\Local\\Temp",
    2539:  "TZ"=>"UTC",
    2540:  "USER"=>"runneradmin",
    2541:  "WD_REMOTE_BROWSER"=>"edge",
    2542:  "WD_SPEC_DRIVER"=>"remote",
    2543:  "XML_OUTPUT_FILE"=>
    2544:  "D:/_bazel/execroot/selenium/bazel-out/x64_windows-fastbuild/testlogs/rb/spec/integration/selenium/webdriver/takes_screenshot-edge-remote/test.xml"}
    2545:  An error occurred in a `before(:suite)` hook.
    2546:  Failure/Error: @pid = Process.spawn(*@command, options)
    2547:  Errno::EACCES:
    2548:  Permission denied - java
    2549:  # ./rb/lib/selenium/webdriver/common/child_process.rb:57:in `spawn'
    2550:  # ./rb/lib/selenium/webdriver/common/child_process.rb:57:in `start'
    2551:  # ./rb/lib/selenium/server.rb:204:in `start'
    2552:  # //?/D:/a/selenium/selenium/rb/spec/integration/selenium/webdriver/spec_helper.rb:40:in `block (2 levels) in <top (required)>'
    2553:  Finished in 0.07874 seconds (files took 0.77196 seconds to load)
    2554:  0 examples, 0 failures, 1 error occurred outside of examples
    2555:  ================================================================================
    2556:  �[32m[2,891 / 2,910]�[0m 4 / 27 tests, �[31m�[1m4 failed�[0m;�[0m Testing //rb/spec/integration/selenium/webdriver:virtual_authenticator-edge-remote; 7s disk-cache ... (4 actions, 1 running)
    2557:  �[32m[2,891 / 2,910]�[0m 4 / 27 tests, �[31m�[1m4 failed�[0m;�[0m [Sched] Testing //rb/spec/integration/selenium/webdriver/edge:driver-edge-remote; 8s ... (4 actions, 1 running)
    2558:  �[31m�[1mFAIL: �[0m//rb/spec/integration/selenium/webdriver:timeout-edge-remote (see D:/_bazel/execroot/selenium/bazel-out/x64_windows-fastbuild/testlogs/rb/spec/integration/selenium/webdriver/timeout-edge-remote/test_attempts/attempt_1.log)
    2559:  �[32m[2,891 / 2,910]�[0m 4 / 27 tests, �[31m�[1m4 failed�[0m;�[0m Testing //rb/spec/integration/selenium/webdriver:timeout-edge-remote; 8s local, disk-cache ... (4 actions, 2 running)
    2560:  �[32m[2,891 / 2,910]�[0m 4 / 27 tests, �[31m�[1m4 failed�[0m;�[0m Testing //rb/spec/integration/selenium/webdriver:timeout-edge-remote; 9s local, disk-cache ... (4 actions, 2 running)
    2561:  �[32m[2,891 / 2,910]�[0m 4 / 27 tests, �[31m�[1m4 failed�[0m;�[0m Testing //rb/spec/integration/selenium/webdriver:timeout-edge-remote; 11s local, disk-cache ... (4 actions, 2 running)
    2562:  �[32m[2,891 / 2,910]�[0m 4 / 27 tests, �[31m�[1m4 failed�[0m;�[0m Testing //rb/spec/integration/selenium/webdriver:timeout-edge-remote; 12s local, disk-cache ... (4 actions, 2 running)
    2563:  �[32m[2,891 / 2,910]�[0m 4 / 27 tests, �[31m�[1m4 failed�[0m;�[0m Testing //rb/spec/integration/selenium/webdriver:timeout-edge-remote; 14s local, disk-cache ... (4 actions, 3 running)
    2564:  �[31m�[1mFAIL: �[0m//rb/spec/integration/selenium/webdriver/edge:driver-edge-remote (see D:/_bazel/execroot/selenium/bazel-out/x64_windows-fastbuild/testlogs/rb/spec/integration/selenium/webdriver/edge/driver-edge-remote/test_attempts/attempt_1.log)
    2565:  �[32m[2,891 / 2,910]�[0m 4 / 27 tests, �[31m�[1m4 failed�[0m;�[0m Testing //rb/spec/integration/selenium/webdriver:timeout-edge-remote; 16s local, disk-cache ... (4 actions, 3 running)
    2566:  �[32m[2,891 / 2,910]�[0m 4 / 27 tests, �[31m�[1m4 failed�[0m;�[0m Testing //rb/spec/integration/selenium/webdriver:timeout-edge-remote; 21s local, disk-cache ... (4 actions, 3 running)
    2567:  �[31m�[1mFAIL: �[0m//rb/spec/integration/selenium/webdriver:virtual_authenticator-edge-remote (see D:/_bazel/execroot/selenium/bazel-out/x64_windows-fastbuild/testlogs/rb/spec/integration/selenium/webdriver/virtual_authenticator-edge-remote/test_attempts/attempt_1.log)
    2568:  �[32m[2,891 / 2,910]�[0m 4 / 27 tests, �[31m�[1m4 failed�[0m;�[0m Testing //rb/spec/integration/selenium/webdriver:timeout-edge-remote; 23s local, disk-cache ... (4 actions, 3 running)
    2569:  �[32m[2,891 / 2,910]�[0m 4 / 27 tests, �[31m�[1m4 failed�[0m;�[0m Testing //rb/spec/integration/selenium/webdriver:timeout-edge-remote; 28s local, disk-cache ... (4 actions running)
    2570:  �[31m�[1mFAIL: �[0m//rb/spec/integration/selenium/webdriver:timeout-edge-remote (see D:/_bazel/execroot/selenium/bazel-out/x64_windows-fastbuild/testlogs/rb/spec/integration/selenium/webdriver/timeout-edge-remote/test_attempts/attempt_2.log)
    2571:  �[32m[2,891 / 2,910]�[0m 4 / 27 tests, �[31m�[1m4 failed�[0m;�[0m Testing //rb/spec/integration/selenium/webdriver:timeout-edge-remote; 29s local, disk-cache ... (4 actions running)
    2572:  �[32m[2,891 / 2,910]�[0m 4 / 27 tests, �[31m�[1m4 failed�[0m;�[0m Testing //rb/spec/integration/selenium/webdriver:timeout-edge-remote; 34s local, disk-cache ... (4 actions running)
    2573:  �[31m�[1mFAIL: �[0m//rb/spec/integration/selenium/webdriver/edge:profile-edge-remote (see D:/_bazel/execroot/selenium/bazel-out/x64_windows-fastbuild/testlogs/rb/spec/integration/selenium/webdriver/edge/profile-edge-remote/test_attempts/attempt_1.log)
    2574:  �[32m[2,891 / 2,910]�[0m 4 / 27 tests, �[31m�[1m4 failed�[0m;�[0m Testing //rb/spec/integration/selenium/webdriver:timeout-edge-remote; 36s local, disk-cache ... (4 actions running)
    2575:  �[32m[2,891 / 2,910]�[0m 4 / 27 tests, �[31m�[1m4 failed�[0m;�[0m Testing //rb/spec/integration/selenium/webdriver:timeout-edge-remote; 41s local, disk-cache ... (4 actions running)
    2576:  �[31m�[1mFAIL: �[0m//rb/spec/integration/selenium/webdriver/edge:driver-edge-remote (see D:/_bazel/execroot/selenium/bazel-out/x64_windows-fastbuild/testlogs/rb/spec/integration/selenium/webdriver/edge/driver-edge-remote/test_attempts/attempt_2.log)
    2577:  �[32m[2,891 / 2,910]�[0m 4 / 27 tests, �[31m�[1m4 failed�[0m;�[0m Testing //rb/spec/integration/selenium/webdriver:timeout-edge-remote; 42s local, disk-cache ... (4 actions running)
    2578:  �[32m[2,891 / 2,910]�[0m 4 / 27 tests, �[31m�[1m4 failed�[0m;�[0m Testing //rb/spec/integration/selenium/webdriver:timeout-edge-remote; 43s local, disk-cache ... (4 actions running)
    2579:  �[32m[2,891 / 2,910]�[0m 4 / 27 tests, �[31m�[1m4 failed�[0m;�[0m Testing //rb/spec/integration/selenium/webdriver:timeout-edge-remote; 48s local, disk-cache ... (4 actions running)
    2580:  �[31m�[1mFAIL: �[0m//rb/spec/integration/selenium/webdriver:virtual_authenticator-edge-remote (see D:/_bazel/execroot/selenium/bazel-out/x64_windows-fastbuild/testlogs/rb/spec/integration/selenium/webdriver/virtual_authenticator-edge-remote/test_attempts/attempt_2.log)
    2581:  �[32m[2,891 / 2,910]�[0m 4 / 27 tests, �[31m�[1m4 failed�[0m;�[0m Testing //rb/spec/integration/selenium/webdriver:timeout-edge-remote; 50s local, disk-cache ... (4 actions running)
    2582:  �[32m[2,891 / 2,910]�[0m 4 / 27 tests, �[31m�[1m4 failed�[0m;�[0m Testing //rb/spec/integration/selenium/webdriver:timeout-edge-remote; 55s local, disk-cache ... (4 actions running)
    2583:  �[31m�[1mFAIL: �[0m//rb/spec/integration/selenium/webdriver:timeout-edge-remote (see D:/_bazel/execroot/selenium/bazel-out/x64_windows-fastbuild/testlogs/rb/spec/integration/selenium/webdriver/timeout-edge-remote/test.log)
    2584:  ==================== Test output for //rb/spec/integration/selenium/webdriver:timeout-edge-remote:
    2585:  2024-04-03 18:52:54 INFO Selenium Server Location: D:/_bazel/execroot/selenium/bazel-out/x64_windows-fastbuild/bin/rb/spec/integration/selenium/webdriver/timeout-edge-remote.cmd.runfiles/selenium/java/src/org/openqa/selenium/grid/selenium_server_deploy.jar
    2586:  {"ABS_PATH"=>
    2587:  �[31m�[1mFAILED: �[0m//rb/spec/integration/selenium/webdriver:timeout-edge-remote (Summary)
    ...
    
    2649:  "RUNFILE_PATH"=>"bundle/vendor/bundle",
    2650:  "RUN_UNDER_RUNFILES"=>"1",
    2651:  "SE_AVOID_STATS"=>"true",
    2652:  "SYSTEMDRIVE"=>"C:",
    2653:  "SYSTEMROOT"=>"C:\\Windows",
    2654:  "TEMP"=>"C:\\Users\\RUNNER~1\\AppData\\Local\\Temp",
    2655:  "TEST_BINARY"=>
    2656:  "rb/spec/integration/selenium/webdriver/timeout-edge-remote.cmd",
    2657:  "TEST_INFRASTRUCTURE_FAILURE_FILE"=>
    2658:  "D:/_bazel/execroot/selenium/bazel-out/x64_windows-fastbuild/testlogs/rb/spec/integration/selenium/webdriver/timeout-edge-remote/test.infrastructure_failure",
    ...
    
    2678:  "TEST_WORKSPACE"=>"selenium",
    2679:  "TMP"=>"C:\\Users\\RUNNER~1\\AppData\\Local\\Temp",
    2680:  "TZ"=>"UTC",
    2681:  "USER"=>"runneradmin",
    2682:  "WD_REMOTE_BROWSER"=>"edge",
    2683:  "WD_SPEC_DRIVER"=>"remote",
    2684:  "XML_OUTPUT_FILE"=>
    2685:  "D:/_bazel/execroot/selenium/bazel-out/x64_windows-fastbuild/testlogs/rb/spec/integration/selenium/webdriver/timeout-edge-remote/test.xml"}
    2686:  An error occurred in a `before(:suite)` hook.
    2687:  Failure/Error: @pid = Process.spawn(*@command, options)
    2688:  Errno::EACCES:
    2689:  Permission denied - java
    2690:  # ./rb/lib/selenium/webdriver/common/child_process.rb:57:in `spawn'
    2691:  # ./rb/lib/selenium/webdriver/common/child_process.rb:57:in `start'
    2692:  # ./rb/lib/selenium/server.rb:204:in `start'
    2693:  # //?/D:/a/selenium/selenium/rb/spec/integration/selenium/webdriver/spec_helper.rb:40:in `block (2 levels) in <top (required)>'
    2694:  Finished in 0.08591 seconds (files took 0.88496 seconds to load)
    2695:  0 examples, 0 failures, 1 error occurred outside of examples
    ...
    
    2757:  "RUNFILE_PATH"=>"bundle/vendor/bundle",
    2758:  "RUN_UNDER_RUNFILES"=>"1",
    2759:  "SE_AVOID_STATS"=>"true",
    2760:  "SYSTEMDRIVE"=>"C:",
    2761:  "SYSTEMROOT"=>"C:\\Windows",
    2762:  "TEMP"=>"C:\\Users\\RUNNER~1\\AppData\\Local\\Temp",
    2763:  "TEST_BINARY"=>
    2764:  "rb/spec/integration/selenium/webdriver/timeout-edge-remote.cmd",
    2765:  "TEST_INFRASTRUCTURE_FAILURE_FILE"=>
    2766:  "D:/_bazel/execroot/selenium/bazel-out/x64_windows-fastbuild/testlogs/rb/spec/integration/selenium/webdriver/timeout-edge-remote/test.infrastructure_failure",
    ...
    
    2786:  "TEST_WORKSPACE"=>"selenium",
    2787:  "TMP"=>"C:\\Users\\RUNNER~1\\AppData\\Local\\Temp",
    2788:  "TZ"=>"UTC",
    2789:  "USER"=>"runneradmin",
    2790:  "WD_REMOTE_BROWSER"=>"edge",
    2791:  "WD_SPEC_DRIVER"=>"remote",
    2792:  "XML_OUTPUT_FILE"=>
    2793:  "D:/_bazel/execroot/selenium/bazel-out/x64_windows-fastbuild/testlogs/rb/spec/integration/selenium/webdriver/timeout-edge-remote/test.xml"}
    2794:  An error occurred in a `before(:suite)` hook.
    2795:  Failure/Error: @pid = Process.spawn(*@command, options)
    2796:  Errno::EACCES:
    2797:  Permission denied - java
    2798:  # ./rb/lib/selenium/webdriver/common/child_process.rb:57:in `spawn'
    2799:  # ./rb/lib/selenium/webdriver/common/child_process.rb:57:in `start'
    2800:  # ./rb/lib/selenium/server.rb:204:in `start'
    2801:  # //?/D:/a/selenium/selenium/rb/spec/integration/selenium/webdriver/spec_helper.rb:40:in `block (2 levels) in <top (required)>'
    2802:  Finished in 0.0563 seconds (files took 0.58438 seconds to load)
    2803:  0 examples, 0 failures, 1 error occurred outside of examples
    ...
    
    2865:  "RUNFILE_PATH"=>"bundle/vendor/bundle",
    2866:  "RUN_UNDER_RUNFILES"=>"1",
    2867:  "SE_AVOID_STATS"=>"true",
    2868:  "SYSTEMDRIVE"=>"C:",
    2869:  "SYSTEMROOT"=>"C:\\Windows",
    2870:  "TEMP"=>"C:\\Users\\RUNNER~1\\AppData\\Local\\Temp",
    2871:  "TEST_BINARY"=>
    2872:  "rb/spec/integration/selenium/webdriver/timeout-edge-remote.cmd",
    2873:  "TEST_INFRASTRUCTURE_FAILURE_FILE"=>
    2874:  "D:/_bazel/execroot/selenium/bazel-out/x64_windows-fastbuild/testlogs/rb/spec/integration/selenium/webdriver/timeout-edge-remote/test.infrastructure_failure",
    ...
    
    2894:  "TEST_WORKSPACE"=>"selenium",
    2895:  "TMP"=>"C:\\Users\\RUNNER~1\\AppData\\Local\\Temp",
    2896:  "TZ"=>"UTC",
    2897:  "USER"=>"runneradmin",
    2898:  "WD_REMOTE_BROWSER"=>"edge",
    2899:  "WD_SPEC_DRIVER"=>"remote",
    2900:  "XML_OUTPUT_FILE"=>
    2901:  "D:/_bazel/execroot/selenium/bazel-out/x64_windows-fastbuild/testlogs/rb/spec/integration/selenium/webdriver/timeout-edge-remote/test.xml"}
    2902:  An error occurred in a `before(:suite)` hook.
    2903:  Failure/Error: @pid = Process.spawn(*@command, options)
    2904:  Errno::EACCES:
    2905:  Permission denied - java
    2906:  # ./rb/lib/selenium/webdriver/common/child_process.rb:57:in `spawn'
    2907:  # ./rb/lib/selenium/webdriver/common/child_process.rb:57:in `start'
    2908:  # ./rb/lib/selenium/server.rb:204:in `start'
    2909:  # //?/D:/a/selenium/selenium/rb/spec/integration/selenium/webdriver/spec_helper.rb:40:in `block (2 levels) in <top (required)>'
    2910:  Finished in 0.06948 seconds (files took 0.6428 seconds to load)
    2911:  0 examples, 0 failures, 1 error occurred outside of examples
    2912:  ================================================================================
    2913:  �[32m[2,892 / 2,910]�[0m 5 / 27 tests, �[31m�[1m5 failed�[0m;�[0m Testing //rb/spec/integration/selenium/webdriver/edge:driver-edge-remote; 50s local, disk-cache ... (4 actions, 3 running)
    2914:  �[32m[2,892 / 2,910]�[0m 5 / 27 tests, �[31m�[1m5 failed�[0m;�[0m Testing //rb/spec/integration/selenium/webdriver/edge:driver-edge-remote; 55s local, disk-cache ... (4 actions, 3 running)
    2915:  �[31m�[1mFAIL: �[0m//rb/spec/integration/selenium/webdriver/edge:profile-edge-remote (see D:/_bazel/execroot/selenium/bazel-out/x64_windows-fastbuild/testlogs/rb/spec/integration/selenium/webdriver/edge/profile-edge-remote/test_attempts/attempt_2.log)
    2916:  �[32m[2,892 / 2,910]�[0m 5 / 27 tests, �[31m�[1m5 failed�[0m;�[0m Testing //rb/spec/integration/selenium/webdriver/edge:driver-edge-remote; 57s local, disk-cache ... (4 actions, 3 running)
    2917:  �[32m[2,892 / 2,910]�[0m 5 / 27 tests, �[31m�[1m5 failed�[0m;�[0m Testing //rb/spec/integration/selenium/webdriver/edge:driver-edge-remote; 58s local, disk-cache ... (4 actions, 3 running)
    2918:  �[32m[2,892 / 2,910]�[0m 5 / 27 tests, �[31m�[1m5 failed�[0m;�[0m Testing //rb/spec/integration/selenium/webdriver/edge:driver-edge-remote; 60s local, disk-cache ... (4 actions, 3 running)
    2919:  �[32m[2,892 / 2,910]�[0m 5 / 27 tests, �[31m�[1m5 failed�[0m;�[0m Testing //rb/spec/integration/selenium/webdriver/edge:driver-edge-remote; 62s local, disk-cache ... (4 actions, 3 running)
    2920:  �[31m�[1mFAIL: �[0m//rb/spec/integration/selenium/webdriver/edge:driver-edge-remote (see D:/_bazel/execroot/selenium/bazel-out/x64_windows-fastbuild/testlogs/rb/spec/integration/selenium/webdriver/edge/driver-edge-remote/test.log)
    2921:  �[31m�[1mFAILED: �[0m//rb/spec/integration/selenium/webdriver/edge:driver-edge-remote (Summary)
    ...
    
    2986:  "RUNFILE_PATH"=>"bundle/vendor/bundle",
    2987:  "RUN_UNDER_RUNFILES"=>"1",
    2988:  "SE_AVOID_STATS"=>"true",
    2989:  "SYSTEMDRIVE"=>"C:",
    2990:  "SYSTEMROOT"=>"C:\\Windows",
    2991:  "TEMP"=>"C:\\Users\\RUNNER~1\\AppData\\Local\\Temp",
    2992:  "TEST_BINARY"=>
    2993:  "rb/spec/integration/selenium/webdriver/edge/driver-edge-remote.cmd",
    2994:  "TEST_INFRASTRUCTURE_FAILURE_FILE"=>
    2995:  "D:/_bazel/execroot/selenium/bazel-out/x64_windows-fastbuild/testlogs/rb/spec/integration/selenium/webdriver/edge/driver-edge-remote/test.infrastructure_failure",
    ...
    
    3016:  "TEST_WORKSPACE"=>"selenium",
    3017:  "TMP"=>"C:\\Users\\RUNNER~1\\AppData\\Local\\Temp",
    3018:  "TZ"=>"UTC",
    3019:  "USER"=>"runneradmin",
    3020:  "WD_REMOTE_BROWSER"=>"edge",
    3021:  "WD_SPEC_DRIVER"=>"remote",
    3022:  "XML_OUTPUT_FILE"=>
    3023:  "D:/_bazel/execroot/selenium/bazel-out/x64_windows-fastbuild/testlogs/rb/spec/integration/selenium/webdriver/edge/driver-edge-remote/test.xml"}
    3024:  An error occurred in a `before(:suite)` hook.
    3025:  Failure/Error: @pid = Process.spawn(*@command, options)
    3026:  Errno::EACCES:
    3027:  Permission denied - java
    3028:  # ./rb/lib/selenium/webdriver/common/child_process.rb:57:in `spawn'
    3029:  # ./rb/lib/selenium/webdriver/common/child_process.rb:57:in `start'
    3030:  # ./rb/lib/selenium/server.rb:204:in `start'
    3031:  # //?/D:/a/selenium/selenium/rb/spec/integration/selenium/webdriver/spec_helper.rb:40:in `block (2 levels) in <top (required)>'
    3032:  Finished in 0.07855 seconds (files took 0.79441 seconds to load)
    3033:  0 examples, 0 failures, 1 error occurred outside of examples
    ...
    
    3095:  "RUNFILE_PATH"=>"bundle/vendor/bundle",
    3096:  "RUN_UNDER_RUNFILES"=>"1",
    3097:  "SE_AVOID_STATS"=>"true",
    3098:  "SYSTEMDRIVE"=>"C:",
    3099:  "SYSTEMROOT"=>"C:\\Windows",
    3100:  "TEMP"=>"C:\\Users\\RUNNER~1\\AppData\\Local\\Temp",
    3101:  "TEST_BINARY"=>
    3102:  "rb/spec/integration/selenium/webdriver/edge/driver-edge-remote.cmd",
    3103:  "TEST_INFRASTRUCTURE_FAILURE_FILE"=>
    3104:  "D:/_bazel/execroot/selenium/bazel-out/x64_windows-fastbuild/testlogs/rb/spec/integration/selenium/webdriver/edge/driver-edge-remote/test.infrastructure_failure",
    ...
    
    3125:  "TEST_WORKSPACE"=>"selenium",
    3126:  "TMP"=>"C:\\Users\\RUNNER~1\\AppData\\Local\\Temp",
    3127:  "TZ"=>"UTC",
    3128:  "USER"=>"runneradmin",
    3129:  "WD_REMOTE_BROWSER"=>"edge",
    3130:  "WD_SPEC_DRIVER"=>"remote",
    3131:  "XML_OUTPUT_FILE"=>
    3132:  "D:/_bazel/execroot/selenium/bazel-out/x64_windows-fastbuild/testlogs/rb/spec/integration/selenium/webdriver/edge/driver-edge-remote/test.xml"}
    3133:  An error occurred in a `before(:suite)` hook.
    3134:  Failure/Error: @pid = Process.spawn(*@command, options)
    3135:  Errno::EACCES:
    3136:  Permission denied - java
    3137:  # ./rb/lib/selenium/webdriver/common/child_process.rb:57:in `spawn'
    3138:  # ./rb/lib/selenium/webdriver/common/child_process.rb:57:in `start'
    3139:  # ./rb/lib/selenium/server.rb:204:in `start'
    3140:  # //?/D:/a/selenium/selenium/rb/spec/integration/selenium/webdriver/spec_helper.rb:40:in `block (2 levels) in <top (required)>'
    3141:  Finished in 0.05608 seconds (files took 0.65065 seconds to load)
    3142:  0 examples, 0 failures, 1 error occurred outside of examples
    ...
    
    3204:  "RUNFILE_PATH"=>"bundle/vendor/bundle",
    3205:  "RUN_UNDER_RUNFILES"=>"1",
    3206:  "SE_AVOID_STATS"=>"true",
    3207:  "SYSTEMDRIVE"=>"C:",
    3208:  "SYSTEMROOT"=>"C:\\Windows",
    3209:  "TEMP"=>"C:\\Users\\RUNNER~1\\AppData\\Local\\Temp",
    3210:  "TEST_BINARY"=>
    3211:  "rb/spec/integration/selenium/webdriver/edge/driver-edge-remote.cmd",
    3212:  "TEST_INFRASTRUCTURE_FAILURE_FILE"=>
    3213:  "D:/_bazel/execroot/selenium/bazel-out/x64_windows-fastbuild/testlogs/rb/spec/integration/selenium/webdriver/edge/driver-edge-remote/test.infrastructure_failure",
    ...
    
    3234:  "TEST_WORKSPACE"=>"selenium",
    3235:  "TMP"=>"C:\\Users\\RUNNER~1\\AppData\\Local\\Temp",
    3236:  "TZ"=>"UTC",
    3237:  "USER"=>"runneradmin",
    3238:  "WD_REMOTE_BROWSER"=>"edge",
    3239:  "WD_SPEC_DRIVER"=>"remote",
    3240:  "XML_OUTPUT_FILE"=>
    3241:  "D:/_bazel/execroot/selenium/bazel-out/x64_windows-fastbuild/testlogs/rb/spec/integration/selenium/webdriver/edge/driver-edge-remote/test.xml"}
    3242:  An error occurred in a `before(:suite)` hook.
    3243:  Failure/Error: @pid = Process.spawn(*@command, options)
    3244:  Errno::EACCES:
    3245:  Permission denied - java
    3246:  # ./rb/lib/selenium/webdriver/common/child_process.rb:57:in `spawn'
    3247:  # ./rb/lib/selenium/webdriver/common/child_process.rb:57:in `start'
    3248:  # ./rb/lib/selenium/server.rb:204:in `start'
    3249:  # //?/D:/a/selenium/selenium/rb/spec/integration/selenium/webdriver/spec_helper.rb:40:in `block (2 levels) in <top (required)>'
    3250:  Finished in 0.05892 seconds (files took 0.67462 seconds to load)
    3251:  0 examples, 0 failures, 1 error occurred outside of examples
    3252:  ================================================================================
    3253:  �[32m[2,893 / 2,910]�[0m 6 / 27 tests, �[31m�[1m6 failed�[0m;�[0m Testing //rb/spec/integration/selenium/webdriver:virtual_authenticator-edge-remote; 56s local, disk-cache ... (4 actions, 2 running)
    3254:  �[32m[2,893 / 2,910]�[0m 6 / 27 tests, �[31m�[1m6 failed�[0m;�[0m Testing //rb/spec/integration/selenium/webdriver:virtual_authenticator-edge-remote; 61s local, disk-cache ... (4 actions, 2 running)
    3255:  �[31m�[1mFAIL: �[0m//rb/spec/integration/selenium/webdriver:virtual_authenticator-edge-remote (see D:/_bazel/execroot/selenium/bazel-out/x64_windows-fastbuild/testlogs/rb/spec/integration/selenium/webdriver/virtual_authenticator-edge-remote/test.log)
    3256:  �[31m�[1mFAILED: �[0m//rb/spec/integration/selenium/webdriver:virtual_authenticator-edge-remote (Summary)
    ...
    
    3318:  "RUNFILE_PATH"=>"bundle/vendor/bundle",
    3319:  "RUN_UNDER_RUNFILES"=>"1",
    3320:  "SE_AVOID_STATS"=>"true",
    3321:  "SYSTEMDRIVE"=>"C:",
    3322:  "SYSTEMROOT"=>"C:\\Windows",
    3323:  "TEMP"=>"C:\\Users\\RUNNER~1\\AppData\\Local\\Temp",
    3324:  "TEST_BINARY"=>
    3325:  "rb/spec/integration/selenium/webdriver/virtual_authenticator-edge-remote.cmd",
    3326:  "TEST_INFRASTRUCTURE_FAILURE_FILE"=>
    3327:  "D:/_bazel/execroot/selenium/bazel-out/x64_windows-fastbuild/testlogs/rb/spec/integration/selenium/webdriver/virtual_authenticator-edge-remote/test.infrastructure_failure",
    ...
    
    3348:  "TEST_WORKSPACE"=>"selenium",
    3349:  "TMP"=>"C:\\Users\\RUNNER~1\\AppData\\Local\\Temp",
    3350:  "TZ"=>"UTC",
    3351:  "USER"=>"runneradmin",
    3352:  "WD_REMOTE_BROWSER"=>"edge",
    3353:  "WD_SPEC_DRIVER"=>"remote",
    3354:  "XML_OUTPUT_FILE"=>
    3355:  "D:/_bazel/execroot/selenium/bazel-out/x64_windows-fastbuild/testlogs/rb/spec/integration/selenium/webdriver/virtual_authenticator-edge-remote/test.xml"}
    3356:  An error occurred in a `before(:suite)` hook.
    3357:  Failure/Error: @pid = Process.spawn(*@command, options)
    3358:  Errno::EACCES:
    3359:  Permission denied - java
    3360:  # ./rb/lib/selenium/webdriver/common/child_process.rb:57:in `spawn'
    3361:  # ./rb/lib/selenium/webdriver/common/child_process.rb:57:in `start'
    3362:  # ./rb/lib/selenium/server.rb:204:in `start'
    3363:  # //?/D:/a/selenium/selenium/rb/spec/integration/selenium/webdriver/spec_helper.rb:40:in `block (2 levels) in <top (required)>'
    3364:  Finished in 0.05642 seconds (files took 0.60086 seconds to load)
    3365:  0 examples, 0 failures, 1 error occurred outside of examples
    ...
    
    3430:  "RUNFILE_PATH"=>"bundle/vendor/bundle",
    3431:  "RUN_UNDER_RUNFILES"=>"1",
    3432:  "SE_AVOID_STATS"=>"true",
    3433:  "SYSTEMDRIVE"=>"C:",
    3434:  "SYSTEMROOT"=>"C:\\Windows",
    3435:  "TEMP"=>"C:\\Users\\RUNNER~1\\AppData\\Local\\Temp",
    3436:  "TEST_BINARY"=>
    3437:  "rb/spec/integration/selenium/webdriver/virtual_authenticator-edge-remote.cmd",
    3438:  "TEST_INFRASTRUCTURE_FAILURE_FILE"=>
    3439:  "D:/_bazel/execroot/selenium/bazel-out/x64_windows-fastbuild/testlogs/rb/spec/integration/selenium/webdriver/virtual_authenticator-edge-remote/test.infrastructure_failure",
    ...
    
    3460:  "TEST_WORKSPACE"=>"selenium",
    3461:  "TMP"=>"C:\\Users\\RUNNER~1\\AppData\\Local\\Temp",
    3462:  "TZ"=>"UTC",
    3463:  "USER"=>"runneradmin",
    3464:  "WD_REMOTE_BROWSER"=>"edge",
    3465:  "WD_SPEC_DRIVER"=>"remote",
    3466:  "XML_OUTPUT_FILE"=>
    3467:  "D:/_bazel/execroot/selenium/bazel-out/x64_windows-fastbuild/testlogs/rb/spec/integration/selenium/webdriver/virtual_authenticator-edge-remote/test.xml"}
    3468:  An error occurred in a `before(:suite)` hook.
    3469:  Failure/Error: @pid = Process.spawn(*@command, options)
    3470:  Errno::EACCES:
    3471:  Permission denied - java
    3472:  # ./rb/lib/selenium/webdriver/common/child_process.rb:57:in `spawn'
    3473:  # ./rb/lib/selenium/webdriver/common/child_process.rb:57:in `start'
    3474:  # ./rb/lib/selenium/server.rb:204:in `start'
    3475:  # //?/D:/a/selenium/selenium/rb/spec/integration/selenium/webdriver/spec_helper.rb:40:in `block (2 levels) in <top (required)>'
    3476:  Finished in 0.05507 seconds (files took 0.5911 seconds to load)
    3477:  0 examples, 0 failures, 1 error occurred outside of examples
    ...
    
    3539:  "RUNFILE_PATH"=>"bundle/vendor/bundle",
    3540:  "RUN_UNDER_RUNFILES"=>"1",
    3541:  "SE_AVOID_STATS"=>"true",
    3542:  "SYSTEMDRIVE"=>"C:",
    3543:  "SYSTEMROOT"=>"C:\\Windows",
    3544:  "TEMP"=>"C:\\Users\\RUNNER~1\\AppData\\Local\\Temp",
    3545:  "TEST_BINARY"=>
    3546:  "rb/spec/integration/selenium/webdriver/virtual_authenticator-edge-remote.cmd",
    3547:  "TEST_INFRASTRUCTURE_FAILURE_FILE"=>
    3548:  "D:/_bazel/execroot/selenium/bazel-out/x64_windows-fastbuild/testlogs/rb/spec/integration/selenium/webdriver/virtual_authenticator-edge-remote/test.infrastructure_failure",
    ...
    
    3569:  "TEST_WORKSPACE"=>"selenium",
    3570:  "TMP"=>"C:\\Users\\RUNNER~1\\AppData\\Local\\Temp",
    3571:  "TZ"=>"UTC",
    3572:  "USER"=>"runneradmin",
    3573:  "WD_REMOTE_BROWSER"=>"edge",
    3574:  "WD_SPEC_DRIVER"=>"remote",
    3575:  "XML_OUTPUT_FILE"=>
    3576:  "D:/_bazel/execroot/selenium/bazel-out/x64_windows-fastbuild/testlogs/rb/spec/integration/selenium/webdriver/virtual_authenticator-edge-remote/test.xml"}
    3577:  An error occurred in a `before(:suite)` hook.
    3578:  Failure/Error: @pid = Process.spawn(*@command, options)
    3579:  Errno::EACCES:
    3580:  Permission denied - java
    3581:  # ./rb/lib/selenium/webdriver/common/child_process.rb:57:in `spawn'
    3582:  # ./rb/lib/selenium/webdriver/common/child_process.rb:57:in `start'
    3583:  # ./rb/lib/selenium/server.rb:204:in `start'
    3584:  # //?/D:/a/selenium/selenium/rb/spec/integration/selenium/webdriver/spec_helper.rb:40:in `block (2 levels) in <top (required)>'
    3585:  Finished in 0.05791 seconds (files took 0.65142 seconds to load)
    3586:  0 examples, 0 failures, 1 error occurred outside of examples
    3587:  ================================================================================
    3588:  �[32m[2,894 / 2,910]�[0m 7 / 27 tests, �[31m�[1m7 failed�[0m;�[0m Testing //rb/spec/integration/selenium/webdriver/edge:profile-edge-remote; 50s local, disk-cache ... (4 actions, 1 running)
    3589:  �[32m[2,894 / 2,910]�[0m 7 / 27 tests, �[31m�[1m7 failed�[0m;�[0m Testing //rb/spec/integration/selenium/webdriver/edge:profile-edge-remote; 52s local, disk-cache ... (4 actions, 1 running)
    3590:  �[32m[2,894 / 2,910]�[0m 7 / 27 tests, �[31m�[1m7 failed�[0m;�[0m Testing //rb/spec/integration/selenium/webdriver/edge:profile-edge-remote; 55s local, disk-cache ... (4 actions, 2 running)
    3591:  �[31m�[1mFAIL: �[0m//rb/spec/integration/selenium/webdriver/edge:profile-edge-remote (see D:/_bazel/execroot/selenium/bazel-out/x64_windows-fastbuild/testlogs/rb/spec/integration/selenium/webdriver/edge/profile-edge-remote/test.log)
    3592:  ==================== Test output for //rb/spec/integration/selenium/webdriver/edge:profile-edge-remote:
    3593:  2024-04-03 18:53:22 INFO Selenium Server Location: D:/_bazel/execroot/selenium/bazel-out/x64_windows-fastbuild/bin/rb/spec/integration/selenium/webdriver/edge/profile-edge-remote.cmd.runfiles/selenium/java/src/org/openqa/selenium/grid/selenium_server_deploy.jar
    3594:  �[31m�[1mFAILED: �[0m//rb/spec/integration/selenium/webdriver/edge:profile-edge-remote (Summary)
    ...
    
    3657:  "RUNFILE_PATH"=>"bundle/vendor/bundle",
    3658:  "RUN_UNDER_RUNFILES"=>"1",
    3659:  "SE_AVOID_STATS"=>"true",
    3660:  "SYSTEMDRIVE"=>"C:",
    3661:  "SYSTEMROOT"=>"C:\\Windows",
    3662:  "TEMP"=>"C:\\Users\\RUNNER~1\\AppData\\Local\\Temp",
    3663:  "TEST_BINARY"=>
    3664:  "rb/spec/integration/selenium/webdriver/edge/profile-edge-remote.cmd",
    3665:  "TEST_INFRASTRUCTURE_FAILURE_FILE"=>
    3666:  "D:/_bazel/execroot/selenium/bazel-out/x64_windows-fastbuild/testlogs/rb/spec/integration/selenium/webdriver/edge/profile-edge-remote/test.infrastructure_failure",
    ...
    
    3687:  "TEST_WORKSPACE"=>"selenium",
    3688:  "TMP"=>"C:\\Users\\RUNNER~1\\AppData\\Local\\Temp",
    3689:  "TZ"=>"UTC",
    3690:  "USER"=>"runneradmin",
    3691:  "WD_REMOTE_BROWSER"=>"edge",
    3692:  "WD_SPEC_DRIVER"=>"remote",
    3693:  "XML_OUTPUT_FILE"=>
    3694:  "D:/_bazel/execroot/selenium/bazel-out/x64_windows-fastbuild/testlogs/rb/spec/integration/selenium/webdriver/edge/profile-edge-remote/test.xml"}
    3695:  An error occurred in a `before(:suite)` hook.
    3696:  Failure/Error: @pid = Process.spawn(*@command, options)
    3697:  Errno::EACCES:
    3698:  Permission denied - java
    3699:  # ./rb/lib/selenium/webdriver/common/child_process.rb:57:in `spawn'
    3700:  # ./rb/lib/selenium/webdriver/common/child_process.rb:57:in `start'
    3701:  # ./rb/lib/selenium/server.rb:204:in `start'
    3702:  # //?/D:/a/selenium/selenium/rb/spec/integration/selenium/webdriver/spec_helper.rb:40:in `block (2 levels) in <top (required)>'
    3703:  Finished in 0.05727 seconds (files took 0.6486 seconds to load)
    3704:  0 examples, 0 failures, 1 error occurred outside of examples
    ...
    
    3766:  "RUNFILE_PATH"=>"bundle/vendor/bundle",
    3767:  "RUN_UNDER_RUNFILES"=>"1",
    3768:  "SE_AVOID_STATS"=>"true",
    3769:  "SYSTEMDRIVE"=>"C:",
    3770:  "SYSTEMROOT"=>"C:\\Windows",
    3771:  "TEMP"=>"C:\\Users\\RUNNER~1\\AppData\\Local\\Temp",
    3772:  "TEST_BINARY"=>
    3773:  "rb/spec/integration/selenium/webdriver/edge/profile-edge-remote.cmd",
    3774:  "TEST_INFRASTRUCTURE_FAILURE_FILE"=>
    3775:  "D:/_bazel/execroot/selenium/bazel-out/x64_windows-fastbuild/testlogs/rb/spec/integration/selenium/webdriver/edge/profile-edge-remote/test.infrastructure_failure",
    ...
    
    3796:  "TEST_WORKSPACE"=>"selenium",
    3797:  "TMP"=>"C:\\Users\\RUNNER~1\\AppData\\Local\\Temp",
    3798:  "TZ"=>"UTC",
    3799:  "USER"=>"runneradmin",
    3800:  "WD_REMOTE_BROWSER"=>"edge",
    3801:  "WD_SPEC_DRIVER"=>"remote",
    3802:  "XML_OUTPUT_FILE"=>
    3803:  "D:/_bazel/execroot/selenium/bazel-out/x64_windows-fastbuild/testlogs/rb/spec/integration/selenium/webdriver/edge/profile-edge-remote/test.xml"}
    3804:  An error occurred in a `before(:suite)` hook.
    3805:  Failure/Error: @pid = Process.spawn(*@command, options)
    3806:  Errno::EACCES:
    3807:  Permission denied - java
    3808:  # ./rb/lib/selenium/webdriver/common/child_process.rb:57:in `spawn'
    3809:  # ./rb/lib/selenium/webdriver/common/child_process.rb:57:in `start'
    3810:  # ./rb/lib/selenium/server.rb:204:in `start'
    3811:  # //?/D:/a/selenium/selenium/rb/spec/integration/selenium/webdriver/spec_helper.rb:40:in `block (2 levels) in <top (required)>'
    3812:  Finished in 0.05806 seconds (files took 0.72082 seconds to load)
    3813:  0 examples, 0 failures, 1 error occurred outside of examples
    ...
    
    3875:  "RUNFILE_PATH"=>"bundle/vendor/bundle",
    3876:  "RUN_UNDER_RUNFILES"=>"1",
    3877:  "SE_AVOID_STATS"=>"true",
    3878:  "SYSTEMDRIVE"=>"C:",
    3879:  "SYSTEMROOT"=>"C:\\Windows",
    3880:  "TEMP"=>"C:\\Users\\RUNNER~1\\AppData\\Local\\Temp",
    3881:  "TEST_BINARY"=>
    3882:  "rb/spec/integration/selenium/webdriver/edge/profile-edge-remote.cmd",
    3883:  "TEST_INFRASTRUCTURE_FAILURE_FILE"=>
    3884:  "D:/_bazel/execroot/selenium/bazel-out/x64_windows-fastbuild/testlogs/rb/spec/integration/selenium/webdriver/edge/profile-edge-remote/test.infrastructure_failure",
    ...
    
    3905:  "TEST_WORKSPACE"=>"selenium",
    3906:  "TMP"=>"C:\\Users\\RUNNER~1\\AppData\\Local\\Temp",
    3907:  "TZ"=>"UTC",
    3908:  "USER"=>"runneradmin",
    3909:  "WD_REMOTE_BROWSER"=>"edge",
    3910:  "WD_SPEC_DRIVER"=>"remote",
    3911:  "XML_OUTPUT_FILE"=>
    3912:  "D:/_bazel/execroot/selenium/bazel-out/x64_windows-fastbuild/testlogs/rb/spec/integration/selenium/webdriver/edge/profile-edge-remote/test.xml"}
    3913:  An error occurred in a `before(:suite)` hook.
    3914:  Failure/Error: @pid = Process.spawn(*@command, options)
    3915:  Errno::EACCES:
    3916:  Permission denied - java
    3917:  # ./rb/lib/selenium/webdriver/common/child_process.rb:57:in `spawn'
    3918:  # ./rb/lib/selenium/webdriver/common/child_process.rb:57:in `start'
    3919:  # ./rb/lib/selenium/server.rb:204:in `start'
    3920:  # //?/D:/a/selenium/selenium/rb/spec/integration/selenium/webdriver/spec_helper.rb:40:in `block (2 levels) in <top (required)>'
    3921:  Finished in 0.08178 seconds (files took 0.88176 seconds to load)
    3922:  0 examples, 0 failures, 1 error occurred outside of examples
    3923:  ================================================================================
    3924:  �[32m[2,895 / 2,910]�[0m 8 / 27 tests, �[31m�[1m8 failed�[0m;�[0m Testing //rb/spec/integration/selenium/webdriver/edge:service-edge-remote; 8s disk-cache ... (4 actions, 1 running)
    3925:  �[32m[2,895 / 2,910]�[0m 8 / 27 tests, �[31m�[1m8 failed�[0m;�[0m [Sched] Testing //rb/spec/integration/selenium/webdriver/edge:options-edge-remote; 8s ... (4 actions, 1 running)
    3926:  �[32m[2,895 / 2,910]�[0m 8 / 27 tests, �[31m�[1m8 failed�[0m;�[0m Testing //rb/spec/integration/selenium/webdriver:select-edge-remote; 7s local, disk-cache ... (4 actions, 2 running)
    3927:  �[31m�[1mFAIL: �[0m//rb/spec/integration/selenium/webdriver:select-edge-remote (see D:/_bazel/execroot/selenium/bazel-out/x64_windows-fastbuild/testlogs/rb/spec/integration/selenium/webdriver/select-edge-remote/test_attempts/attempt_1.log)
    3928:  �[32m[2,895 / 2,910]�[0m 8 / 27 tests, �[31m�[1m8 failed�[0m;�[0m Testing //rb/spec/integration/selenium/webdriver:select-edge-remote; 8s local, disk-cache ... (4 actions, 2 running)
    3929:  �[32m[2,895 / 2,910]�[0m 8 / 27 tests, �[31m�[1m8 failed�[0m;�[0m Testing //rb/spec/integration/selenium/webdriver:select-edge-remote; 11s local, disk-cache ... (4 actions, 2 running)
    3930:  �[32m[2,895 / 2,910]�[0m 8 / 27 tests, �[31m�[1m8 failed�[0m;�[0m Testing //rb/spec/integration/selenium/webdriver:select-edge-remote; 13s local, disk-cache ... (4 actions, 2 running)
    3931:  �[31m�[1mFAIL: �[0m//rb/spec/integration/selenium/webdriver/edge:options-edge-remote (see D:/_bazel/execroot/selenium/bazel-out/x64_windows-fastbuild/testlogs/rb/spec/integration/selenium/webdriver/edge/options-edge-remote/test_attempts/attempt_1.log)
    3932:  �[32m[2,895 / 2,910]�[0m 8 / 27 tests, �[31m�[1m8 failed�[0m;�[0m Testing //rb/spec/integration/selenium/webdriver:select-edge-remote; 14s local, disk-cache ... (4 actions, 3 running)
    3933:  �[32m[2,895 / 2,910]�[0m 8 / 27 tests, �[31m�[1m8 failed�[0m;�[0m Testing //rb/spec/integration/selenium/webdriver:select-edge-remote; 15s local, disk-cache ... (4 actions, 3 running)
    3934:  �[32m[2,895 / 2,910]�[0m 8 / 27 tests, �[31m�[1m8 failed�[0m;�[0m Testing //rb/spec/integration/selenium/webdriver:select-edge-remote; 21s local, disk-cache ... (4 actions, 3 running)
    3935:  �[31m�[1mFAIL: �[0m//rb/spec/integration/selenium/webdriver/edge:service-edge-remote (see D:/_bazel/execroot/selenium/bazel-out/x64_windows-fastbuild/testlogs/rb/spec/integration/selenium/webdriver/edge/service-edge-remote/test_attempts/attempt_1.log)
    3936:  �[32m[2,895 / 2,910]�[0m 8 / 27 tests, �[31m�[1m8 failed�[0m;�[0m Testing //rb/spec/integration/selenium/webdriver:select-edge-remote; 22s local, disk-cache ... (4 actions, 3 running)
    3937:  �[32m[2,895 / 2,910]�[0m 8 / 27 tests, �[31m�[1m8 failed�[0m;�[0m Testing //rb/spec/integration/selenium/webdriver:select-edge-remote; 28s local, disk-cache ... (4 actions running)
    3938:  �[31m�[1mFAIL: �[0m//rb/spec/integration/selenium/webdriver:select-edge-remote (see D:/_bazel/execroot/selenium/bazel-out/x64_windows-fastbuild/testlogs/rb/spec/integration/selenium/webdriver/select-edge-remote/test_attempts/attempt_2.log)
    3939:  �[32m[2,895 / 2,910]�[0m 8 / 27 tests, �[31m�[1m8 failed�[0m;�[0m Testing //rb/spec/integration/selenium/webdriver:select-edge-remote; 29s local, disk-cache ... (4 actions running)
    3940:  �[32m[2,895 / 2,910]�[0m 8 / 27 tests, �[31m�[1m8 failed�[0m;�[0m Testing //rb/spec/integration/selenium/webdriver:select-edge-remote; 34s local, disk-cache ... (4 actions running)
    3941:  �[31m�[1mFAIL: �[0m//rb/spec/integration/selenium/webdriver:action_builder-edge-remote (see D:/_bazel/execroot/selenium/bazel-out/x64_windows-fastbuild/testlogs/rb/spec/integration/selenium/webdriver/action_builder-edge-remote/test_attempts/attempt_1.log)
    3942:  �[32m[2,895 / 2,910]�[0m 8 / 27 tests, �[31m�[1m8 failed�[0m;�[0m Testing //rb/spec/integration/selenium/webdriver:select-edge-remote; 36s local, disk-cache ... (4 actions running)
    3943:  �[32m[2,895 / 2,910]�[0m 8 / 27 tests, �[31m�[1m8 failed�[0m;�[0m Testing //rb/spec/integration/selenium/webdriver:select-edge-remote; 41s local, disk-cache ... (4 actions running)
    3944:  �[31m�[1mFAIL: �[0m//rb/spec/integration/selenium/webdriver/edge:options-edge-remote (see D:/_bazel/execroot/selenium/bazel-out/x64_windows-fastbuild/testlogs/rb/spec/integration/selenium/webdriver/edge/options-edge-remote/test_attempts/attempt_2.log)
    3945:  �[32m[2,895 / 2,910]�[0m 8 / 27 tests, �[31m�[1m8 failed�[0m;�[0m Testing //rb/spec/integration/selenium/webdriver:select-edge-remote; 42s local, disk-cache ... (4 actions running)
    3946:  �[32m[2,895 / 2,910]�[0m 8 / 27 tests, �[31m�[1m8 failed�[0m;�[0m Testing //rb/spec/integration/selenium/webdriver:select-edge-remote; 48s local, disk-cache ... (4 actions running)
    3947:  �[31m�[1mFAIL: �[0m//rb/spec/integration/selenium/webdriver/edge:service-edge-remote (see D:/_bazel/execroot/selenium/bazel-out/x64_windows-fastbuild/testlogs/rb/spec/integration/selenium/webdriver/edge/service-edge-remote/test_attempts/attempt_2.log)
    3948:  �[32m[2,895 / 2,910]�[0m 8 / 27 tests, �[31m�[1m8 failed�[0m;�[0m Testing //rb/spec/integration/selenium/webdriver:select-edge-remote; 49s local, disk-cache ... (4 actions running)
    3949:  �[32m[2,895 / 2,910]�[0m 8 / 27 tests, �[31m�[1m8 failed�[0m;�[0m Testing //rb/spec/integration/selenium/webdriver:select-edge-remote; 55s local, disk-cache ... (4 actions running)
    3950:  �[31m�[1mFAIL: �[0m//rb/spec/integration/selenium/webdriver:select-edge-remote (see D:/_bazel/execroot/selenium/bazel-out/x64_windows-fastbuild/testlogs/rb/spec/integration/selenium/webdriver/select-edge-remote/test.log)
    3951:  �[31m�[1mFAILED: �[0m//rb/spec/integration/selenium/webdriver:select-edge-remote (Summary)
    ...
    
    4016:  "RUNFILE_PATH"=>"bundle/vendor/bundle",
    4017:  "RUN_UNDER_RUNFILES"=>"1",
    4018:  "SE_AVOID_STATS"=>"true",
    4019:  "SYSTEMDRIVE"=>"C:",
    4020:  "SYSTEMROOT"=>"C:\\Windows",
    4021:  "TEMP"=>"C:\\Users\\RUNNER~1\\AppData\\Local\\Temp",
    4022:  "TEST_BINARY"=>
    4023:  "rb/spec/integration/selenium/webdriver/select-edge-remote.cmd",
    4024:  "TEST_INFRASTRUCTURE_FAILURE_FILE"=>
    4025:  "D:/_bazel/execroot/selenium/bazel-out/x64_windows-fastbuild/testlogs/rb/spec/integration/selenium/webdriver/select-edge-remote/test.infrastructure_failure",
    ...
    
    4045:  "TEST_WORKSPACE"=>"selenium",
    4046:  "TMP"=>"C:\\Users\\RUNNER~1\\AppData\\Local\\Temp",
    4047:  "TZ"=>"UTC",
    4048:  "USER"=>"runneradmin",
    4049:  "WD_REMOTE_BROWSER"=>"edge",
    4050:  "WD_SPEC_DRIVER"=>"remote",
    4051:  "XML_OUTPUT_FILE"=>
    4052:  "D:/_bazel/execroot/selenium/bazel-out/x64_windows-fastbuild/testlogs/rb/spec/integration/selenium/webdriver/select-edge-remote/test.xml"}
    4053:  An error occurred in a `before(:suite)` hook.
    4054:  Failure/Error: @pid = Process.spawn(*@command, options)
    4055:  Errno::EACCES:
    4056:  Permission denied - java
    4057:  # ./rb/lib/selenium/webdriver/common/child_process.rb:57:in `spawn'
    4058:  # ./rb/lib/selenium/webdriver/common/child_process.rb:57:in `start'
    4059:  # ./rb/lib/selenium/server.rb:204:in `start'
    4060:  # //?/D:/a/selenium/selenium/rb/spec/integration/selenium/webdriver/spec_helper.rb:40:in `block (2 levels) in <top (required)>'
    4061:  Finished in 0.12659 seconds (files took 0.83137 seconds to load)
    4062:  0 examples, 0 failures, 1 error occurred outside of examples
    ...
    
    4124:  "RUNFILE_PATH"=>"bundle/vendor/bundle",
    4125:  "RUN_UNDER_RUNFILES"=>"1",
    4126:  "SE_AVOID_STATS"=>"true",
    4127:  "SYSTEMDRIVE"=>"C:",
    4128:  "SYSTEMROOT"=>"C:\\Windows",
    4129:  "TEMP"=>"C:\\Users\\RUNNER~1\\AppData\\Local\\Temp",
    4130:  "TEST_BINARY"=>
    4131:  "rb/spec/integration/selenium/webdriver/select-edge-remote.cmd",
    4132:  "TEST_INFRASTRUCTURE_FAILURE_FILE"=>
    4133:  "D:/_bazel/execroot/selenium/bazel-out/x64_windows-fastbuild/testlogs/rb/spec/integration/selenium/webdriver/select-edge-remote/test.infrastructure_failure",
    ...
    
    4153:  "TEST_WORKSPACE"=>"selenium",
    4154:  "TMP"=>"C:\\Users\\RUNNER~1\\AppData\\Local\\Temp",
    4155:  "TZ"=>"UTC",
    4156:  "USER"=>"runneradmin",
    4157:  "WD_REMOTE_BROWSER"=>"edge",
    4158:  "WD_SPEC_DRIVER"=>"remote",
    4159:  "XML_OUTPUT_FILE"=>
    4160:  "D:/_bazel/execroot/selenium/bazel-out/x64_windows-fastbuild/testlogs/rb/spec/integration/selenium/webdriver/select-edge-remote/test.xml"}
    4161:  An error occurred in a `before(:suite)` hook.
    4162:  Failure/Error: @pid = Process.spawn(*@command, options)
    4163:  Errno::EACCES:
    4164:  Permission denied - java
    4165:  # ./rb/lib/selenium/webdriver/common/child_process.rb:57:in `spawn'
    4166:  # ./rb/lib/selenium/webdriver/common/child_process.rb:57:in `start'
    4167:  # ./rb/lib/selenium/server.rb:204:in `start'
    4168:  # //?/D:/a/selenium/selenium/rb/spec/integration/selenium/webdriver/spec_helper.rb:40:in `block (2 levels) in <top (required)>'
    4169:  Finished in 0.05486 seconds (files took 0.59534 seconds to load)
    4170:  0 examples, 0 failures, 1 error occurred outside of examples
    ...
    
    4232:  "RUNFILE_PATH"=>"bundle/vendor/bundle",
    4233:  "RUN_UNDER_RUNFILES"=>"1",
    4234:  "SE_AVOID_STATS"=>"true",
    4235:  "SYSTEMDRIVE"=>"C:",
    4236:  "SYSTEMROOT"=>"C:\\Windows",
    4237:  "TEMP"=>"C:\\Users\\RUNNER~1\\AppData\\Local\\Temp",
    4238:  "TEST_BINARY"=>
    4239:  "rb/spec/integration/selenium/webdriver/select-edge-remote.cmd",
    4240:  "TEST_INFRASTRUCTURE_FAILURE_FILE"=>
    4241:  "D:/_bazel/execroot/selenium/bazel-out/x64_windows-fastbuild/testlogs/rb/spec/integration/selenium/webdriver/select-edge-remote/test.infrastructure_failure",
    ...
    
    4261:  "TEST_WORKSPACE"=>"selenium",
    4262:  "TMP"=>"C:\\Users\\RUNNER~1\\AppData\\Local\\Temp",
    4263:  "TZ"=>"UTC",
    4264:  "USER"=>"runneradmin",
    4265:  "WD_REMOTE_BROWSER"=>"edge",
    4266:  "WD_SPEC_DRIVER"=>"remote",
    4267:  "XML_OUTPUT_FILE"=>
    4268:  "D:/_bazel/execroot/selenium/bazel-out/x64_windows-fastbuild/testlogs/rb/spec/integration/selenium/webdriver/select-edge-remote/test.xml"}
    4269:  An error occurred in a `before(:suite)` hook.
    4270:  Failure/Error: @pid = Process.spawn(*@command, options)
    4271:  Errno::EACCES:
    4272:  Permission denied - java
    4273:  # ./rb/lib/selenium/webdriver/common/child_process.rb:57:in `spawn'
    4274:  # ./rb/lib/selenium/webdriver/common/child_process.rb:57:in `start'
    4275:  # ./rb/lib/selenium/server.rb:204:in `start'
    4276:  # //?/D:/a/selenium/selenium/rb/spec/integration/selenium/webdriver/spec_helper.rb:40:in `block (2 levels) in <top (required)>'
    4277:  Finished in 0.0588 seconds (files took 0.62917 seconds to load)
    4278:  0 examples, 0 failures, 1 error occurred outside of examples
    4279:  ================================================================================
    4280:  �[32m[2,896 / 2,910]�[0m 9 / 27 tests, �[31m�[1m9 failed�[0m;�[0m Testing //rb/spec/integration/selenium/webdriver/edge:options-edge-remote; 49s local, disk-cache ... (4 actions, 3 running)
    4281:  �[32m[2,896 / 2,910]�[0m 9 / 27 tests, �[31m�[1m9 failed�[0m;�[0m Testing //rb/spec/integration/selenium/webdriver/edge:options-edge-remote; 54s local, disk-cache ... (4 actions, 3 running)
    4282:  �[31m�[1mFAIL: �[0m//rb/spec/integration/selenium/webdriver:action_builder-edge-remote (see D:/_bazel/execroot/selenium/bazel-out/x64_windows-fastbuild/testlogs/rb/spec/integration/selenium/webdriver/action_builder-edge-remote/test_attempts/attempt_2.log)
    4283:  �[32m[2,896 / 2,910]�[0m 9 / 27 tests, �[31m�[1m9 failed�[0m;�[0m Testing //rb/spec/integration/selenium/webdriver/edge:options-edge-remote; 56s local, disk-cache ... (4 actions, 3 running)
    4284:  �[32m[2,896 / 2,910]�[0m 9 / 27 tests, �[31m�[1m9 failed�[0m;�[0m Testing //rb/spec/integration/selenium/webdriver/edge:options-edge-remote; 58s local, disk-cache ... (4 actions, 3 running)
    4285:  �[32m[2,896 / 2,910]�[0m 9 / 27 tests, �[31m�[1m9 failed�[0m;�[0m Testing //rb/spec/integration/selenium/webdriver/edge:options-edge-remote; 59s local, disk-cache ... (4 actions, 3 running)
    4286:  �[32m[2,896 / 2,910]�[0m 9 / 27 tests, �[31m�[1m9 failed�[0m;�[0m Testing //rb/spec/integration/selenium/webdriver/edge:options-edge-remote; 61s local, disk-cache ... (4 actions, 3 running)
    4287:  �[31m�[1mFAIL: �[0m//rb/spec/integration/selenium/webdriver/edge:options-edge-remote (see D:/_bazel/execroot/selenium/bazel-out/x64_windows-fastbuild/testlogs/rb/spec/integration/selenium/webdriver/edge/options-edge-remote/test.log)
    4288:  ==================== Test output for //rb/spec/integration/selenium/webdriver/edge:options-edge-remote:
    4289:  �[31m�[1mFAILED: �[0m//rb/spec/integration/selenium/webdriver/edge:options-edge-remote (Summary)
    ...
    
    4353:  "RUNFILE_PATH"=>"bundle/vendor/bundle",
    4354:  "RUN_UNDER_RUNFILES"=>"1",
    4355:  "SE_AVOID_STATS"=>"true",
    4356:  "SYSTEMDRIVE"=>"C:",
    4357:  "SYSTEMROOT"=>"C:\\Windows",
    4358:  "TEMP"=>"C:\\Users\\RUNNER~1\\AppData\\Local\\Temp",
    4359:  "TEST_BINARY"=>
    4360:  "rb/spec/integration/selenium/webdriver/edge/options-edge-remote.cmd",
    4361:  "TEST_INFRASTRUCTURE_FAILURE_FILE"=>
    4362:  "D:/_bazel/execroot/selenium/bazel-out/x64_windows-fastbuild/testlogs/rb/spec/integration/selenium/webdriver/edge/options-edge-remote/test.infrastructure_failure",
    ...
    
    4383:  "TEST_WORKSPACE"=>"selenium",
    4384:  "TMP"=>"C:\\Users\\RUNNER~1\\AppData\\Local\\Temp",
    4385:  "TZ"=>"UTC",
    4386:  "USER"=>"runneradmin",
    4387:  "WD_REMOTE_BROWSER"=>"edge",
    4388:  "WD_SPEC_DRIVER"=>"remote",
    4389:  "XML_OUTPUT_FILE"=>
    4390:  "D:/_bazel/execroot/selenium/bazel-out/x64_windows-fastbuild/testlogs/rb/spec/integration/selenium/webdriver/edge/options-edge-remote/test.xml"}
    4391:  An error occurred in a `before(:suite)` hook.
    4392:  Failure/Error: @pid = Process.spawn(*@command, options)
    4393:  Errno::EACCES:
    4394:  Permission denied - java
    4395:  # ./rb/lib/selenium/webdriver/common/child_process.rb:57:in `spawn'
    4396:  # ./rb/lib/selenium/webdriver/common/child_process.rb:57:in `start'
    4397:  # ./rb/lib/selenium/server.rb:204:in `start'
    4398:  # //?/D:/a/selenium/selenium/rb/spec/integration/selenium/webdriver/spec_helper.rb:40:in `block (2 levels) in <top (required)>'
    4399:  Finished in 0.07742 seconds (files took 0.82409 seconds to load)
    4400:  0 examples, 0 failures, 1 error occurred outside of examples
    ...
    
    4462:  "RUNFILE_PATH"=>"bundle/vendor/bundle",
    4463:  "RUN_UNDER_RUNFILES"=>"1",
    4464:  "SE_AVOID_STATS"=>"true",
    4465:  "SYSTEMDRIVE"=>"C:",
    4466:  "SYSTEMROOT"=>"C:\\Windows",
    4467:  "TEMP"=>"C:\\Users\\RUNNER~1\\AppData\\Local\\Temp",
    4468:  "TEST_BINARY"=>
    4469:  "rb/spec/integration/selenium/webdriver/edge/options-edge-remote.cmd",
    4470:  "TEST_INFRASTRUCTURE_FAILURE_FILE"=>
    4471:  "D:/_bazel/execroot/selenium/bazel-out/x64_windows-fastbuild/testlogs/rb/spec/integration/selenium/webdriver/edge/options-edge-remote/test.infrastructure_failure",
    ...
    
    4492:  "TEST_WORKSPACE"=>"selenium",
    4493:  "TMP"=>"C:\\Users\\RUNNER~1\\AppData\\Local\\Temp",
    4494:  "TZ"=>"UTC",
    4495:  "USER"=>"runneradmin",
    4496:  "WD_REMOTE_BROWSER"=>"edge",
    4497:  "WD_SPEC_DRIVER"=>"remote",
    4498:  "XML_OUTPUT_FILE"=>
    4499:  "D:/_bazel/execroot/selenium/bazel-out/x64_windows-fastbuild/testlogs/rb/spec/integration/selenium/webdriver/edge/options-edge-remote/test.xml"}
    4500:  An error occurred in a `before(:suite)` hook.
    4501:  Failure/Error: @pid = Process.spawn(*@command, options)
    4502:  Errno::EACCES:
    4503:  Permission denied - java
    4504:  # ./rb/lib/selenium/webdriver/common/child_process.rb:57:in `spawn'
    4505:  # ./rb/lib/selenium/webdriver/common/child_process.rb:57:in `start'
    4506:  # ./rb/lib/selenium/server.rb:204:in `start'
    4507:  # //?/D:/a/selenium/selenium/rb/spec/integration/selenium/webdriver/spec_helper.rb:40:in `block (2 levels) in <top (required)>'
    4508:  Finished in 0.05529 seconds (files took 0.64202 seconds to load)
    4509:  0 examples, 0 failures, 1 error occurred outside of examples
    ...
    
    4571:  "RUNFILE_PATH"=>"bundle/vendor/bundle",
    4572:  "RUN_UNDER_RUNFILES"=>"1",
    4573:  "SE_AVOID_STATS"=>"true",
    4574:  "SYSTEMDRIVE"=>"C:",
    4575:  "SYSTEMROOT"=>"C:\\Windows",
    4576:  "TEMP"=>"C:\\Users\\RUNNER~1\\AppData\\Local\\Temp",
    4577:  "TEST_BINARY"=>
    4578:  "rb/spec/integration/selenium/webdriver/edge/options-edge-remote.cmd",
    4579:  "TEST_INFRASTRUCTURE_FAILURE_FILE"=>
    4580:  "D:/_bazel/execroot/selenium/bazel-out/x64_windows-fastbuild/testlogs/rb/spec/integration/selenium/webdriver/edge/options-edge-remote/test.infrastructure_failure",
    ...
    
    4601:  "TEST_WORKSPACE"=>"selenium",
    4602:  "TMP"=>"C:\\Users\\RUNNER~1\\AppData\\Local\\Temp",
    4603:  "TZ"=>"UTC",
    4604:  "USER"=>"runneradmin",
    4605:  "WD_REMOTE_BROWSER"=>"edge",
    4606:  "WD_SPEC_DRIVER"=>"remote",
    4607:  "XML_OUTPUT_FILE"=>
    4608:  "D:/_bazel/execroot/selenium/bazel-out/x64_windows-fastbuild/testlogs/rb/spec/integration/selenium/webdriver/edge/options-edge-remote/test.xml"}
    4609:  An error occurred in a `before(:suite)` hook.
    4610:  Failure/Error: @pid = Process.spawn(*@command, options)
    4611:  Errno::EACCES:
    4612:  Permission denied - java
    4613:  # ./rb/lib/selenium/webdriver/common/child_process.rb:57:in `spawn'
    4614:  # ./rb/lib/selenium/webdriver/common/child_process.rb:57:in `start'
    4615:  # ./rb/lib/selenium/server.rb:204:in `start'
    4616:  # //?/D:/a/selenium/selenium/rb/spec/integration/selenium/webdriver/spec_helper.rb:40:in `block (2 levels) in <top (required)>'
    4617:  Finished in 0.06088 seconds (files took 0.68112 seconds to load)
    4618:  0 examples, 0 failures, 1 error occurred outside of examples
    4619:  ================================================================================
    4620:  �[32m[2,897 / 2,910]�[0m 10 / 27 tests, �[31m�[1m10 failed�[0m;�[0m Testing //rb/spec/integration/selenium/webdriver/edge:service-edge-remote; 56s local, disk-cache ... (4 actions, 2 running)
    4621:  �[32m[2,897 / 2,910]�[0m 10 / 27 tests, �[31m�[1m10 failed�[0m;�[0m Testing //rb/spec/integration/selenium/webdriver/edge:service-edge-remote; 61s local, disk-cache ... (4 actions, 2 running)
    4622:  �[31m�[1mFAIL: �[0m//rb/spec/integration/selenium/webdriver/edge:service-edge-remote (see D:/_bazel/execroot/selenium/bazel-out/x64_windows-fastbuild/testlogs/rb/spec/integration/selenium/webdriver/edge/service-edge-remote/test.log)
    4623:  ==================== Test output for //rb/spec/integration/selenium/webdriver/edge:service-edge-remote:
    4624:  2024-04-03 18:54:32 INFO Selenium Server Location: D:/_bazel/execroot/selenium/bazel-out/x64_windows-fastbuild/bin/rb/spec/integration/selenium/webdriver/edge/service-edge-remote.cmd.runfiles/selenium/java/src/org/openqa/selenium/grid/selenium_server_deploy.jar
    4625:  �[31m�[1mFAILED: �[0m//rb/spec/integration/selenium/webdriver/edge:service-edge-remote (Summary)
    ...
    
    4688:  "RUNFILE_PATH"=>"bundle/vendor/bundle",
    4689:  "RUN_UNDER_RUNFILES"=>"1",
    4690:  "SE_AVOID_STATS"=>"true",
    4691:  "SYSTEMDRIVE"=>"C:",
    4692:  "SYSTEMROOT"=>"C:\\Windows",
    4693:  "TEMP"=>"C:\\Users\\RUNNER~1\\AppData\\Local\\Temp",
    4694:  "TEST_BINARY"=>
    4695:  "rb/spec/integration/selenium/webdriver/edge/service-edge-remote.cmd",
    4696:  "TEST_INFRASTRUCTURE_FAILURE_FILE"=>
    4697:  "D:/_bazel/execroot/selenium/bazel-out/x64_windows-fastbuild/testlogs/rb/spec/integration/selenium/webdriver/edge/service-edge-remote/test.infrastructure_failure",
    ...
    
    4718:  "TEST_WORKSPACE"=>"selenium",
    4719:  "TMP"=>"C:\\Users\\RUNNER~1\\AppData\\Local\\Temp",
    4720:  "TZ"=>"UTC",
    4721:  "USER"=>"runneradmin",
    4722:  "WD_REMOTE_BROWSER"=>"edge",
    4723:  "WD_SPEC_DRIVER"=>"remote",
    4724:  "XML_OUTPUT_FILE"=>
    4725:  "D:/_bazel/execroot/selenium/bazel-out/x64_windows-fastbuild/testlogs/rb/spec/integration/selenium/webdriver/edge/service-edge-remote/test.xml"}
    4726:  An error occurred in a `before(:suite)` hook.
    4727:  Failure/Error: @pid = Process.spawn(*@command, options)
    4728:  Errno::EACCES:
    4729:  Permission denied - java
    4730:  # ./rb/lib/selenium/webdriver/common/child_process.rb:57:in `spawn'
    4731:  # ./rb/lib/selenium/webdriver/common/child_process.rb:57:in `start'
    4732:  # ./rb/lib/selenium/server.rb:204:in `start'
    4733:  # //?/D:/a/selenium/selenium/rb/spec/integration/selenium/webdriver/spec_helper.rb:40:in `block (2 levels) in <top (required)>'
    4734:  Finished in 0.054 seconds (files took 0.60407 seconds to load)
    4735:  0 examples, 0 failures, 1 error occurred outside of examples
    ...
    
    4797:  "RUNFILE_PATH"=>"bundle/vendor/bundle",
    4798:  "RUN_UNDER_RUNFILES"=>"1",
    4799:  "SE_AVOID_STATS"=>"true",
    4800:  "SYSTEMDRIVE"=>"C:",
    4801:  "SYSTEMROOT"=>"C:\\Windows",
    4802:  "TEMP"=>"C:\\Users\\RUNNER~1\\AppData\\Local\\Temp",
    4803:  "TEST_BINARY"=>
    4804:  "rb/spec/integration/selenium/webdriver/edge/service-edge-remote.cmd",
    4805:  "TEST_INFRASTRUCTURE_FAILURE_FILE"=>
    4806:  "D:/_bazel/execroot/selenium/bazel-out/x64_windows-fastbuild/testlogs/rb/spec/integration/selenium/webdriver/edge/service-edge-remote/test.infrastructure_failure",
    ...
    
    4827:  "TEST_WORKSPACE"=>"selenium",
    4828:  "TMP"=>"C:\\Users\\RUNNER~1\\AppData\\Local\\Temp",
    4829:  "TZ"=>"UTC",
    4830:  "USER"=>"runneradmin",
    4831:  "WD_REMOTE_BROWSER"=>"edge",
    4832:  "WD_SPEC_DRIVER"=>"remote",
    4833:  "XML_OUTPUT_FILE"=>
    4834:  "D:/_bazel/execroot/selenium/bazel-out/x64_windows-fastbuild/testlogs/rb/spec/integration/selenium/webdriver/edge/service-edge-remote/test.xml"}
    4835:  An error occurred in a `before(:suite)` hook.
    4836:  Failure/Error: @pid = Process.spawn(*@command, options)
    4837:  Errno::EACCES:
    4838:  Permission denied - java
    4839:  # ./rb/lib/selenium/webdriver/common/child_process.rb:57:in `spawn'
    4840:  # ./rb/lib/selenium/webdriver/common/child_process.rb:57:in `start'
    4841:  # ./rb/lib/selenium/server.rb:204:in `start'
    4842:  # //?/D:/a/selenium/selenium/rb/spec/integration/selenium/webdriver/spec_helper.rb:40:in `block (2 levels) in <top (required)>'
    4843:  Finished in 0.05522 seconds (files took 0.63421 seconds to load)
    4844:  0 examples, 0 failures, 1 error occurred outside of examples
    ...
    
    4906:  "RUNFILE_PATH"=>"bundle/vendor/bundle",
    4907:  "RUN_UNDER_RUNFILES"=>"1",
    4908:  "SE_AVOID_STATS"=>"true",
    4909:  "SYSTEMDRIVE"=>"C:",
    4910:  "SYSTEMROOT"=>"C:\\Windows",
    4911:  "TEMP"=>"C:\\Users\\RUNNER~1\\AppData\\Local\\Temp",
    4912:  "TEST_BINARY"=>
    4913:  "rb/spec/integration/selenium/webdriver/edge/service-edge-remote.cmd",
    4914:  "TEST_INFRASTRUCTURE_FAILURE_FILE"=>
    4915:  "D:/_bazel/execroot/selenium/bazel-out/x64_windows-fastbuild/testlogs/rb/spec/integration/selenium/webdriver/edge/service-edge-remote/test.infrastructure_failure",
    ...
    
    4936:  "TEST_WORKSPACE"=>"selenium",
    4937:  "TMP"=>"C:\\Users\\RUNNER~1\\AppData\\Local\\Temp",
    4938:  "TZ"=>"UTC",
    4939:  "USER"=>"runneradmin",
    4940:  "WD_REMOTE_BROWSER"=>"edge",
    4941:  "WD_SPEC_DRIVER"=>"remote",
    4942:  "XML_OUTPUT_FILE"=>
    4943:  "D:/_bazel/execroot/selenium/bazel-out/x64_windows-fastbuild/testlogs/rb/spec/integration/selenium/webdriver/edge/service-edge-remote/test.xml"}
    4944:  An error occurred in a `before(:suite)` hook.
    4945:  Failure/Error: @pid = Process.spawn(*@command, options)
    4946:  Errno::EACCES:
    4947:  Permission denied - java
    4948:  # ./rb/lib/selenium/webdriver/common/child_process.rb:57:in `spawn'
    4949:  # ./rb/lib/selenium/webdriver/common/child_process.rb:57:in `start'
    4950:  # ./rb/lib/selenium/server.rb:204:in `start'
    4951:  # //?/D:/a/selenium/selenium/rb/spec/integration/selenium/webdriver/spec_helper.rb:40:in `block (2 levels) in <top (required)>'
    4952:  Finished in 0.05992 seconds (files took 0.6629 seconds to load)
    4953:  0 examples, 0 failures, 1 error occurred outside of examples
    4954:  ================================================================================
    4955:  �[32m[2,898 / 2,910]�[0m 11 / 27 tests, �[31m�[1m11 failed�[0m;�[0m Testing //rb/spec/integration/selenium/webdriver:action_builder-edge-remote; 49s local, disk-cache ... (4 actions, 1 running)
    4956:  �[32m[2,898 / 2,910]�[0m 11 / 27 tests, �[31m�[1m11 failed�[0m;�[0m Testing //rb/spec/integration/selenium/webdriver:action_builder-edge-remote; 52s local, disk-cache ... (4 actions, 1 running)
    4957:  �[32m[2,898 / 2,910]�[0m 11 / 27 tests, �[31m�[1m11 failed�[0m;�[0m Testing //rb/spec/integration/selenium/webdriver:action_builder-edge-remote; 55s local, disk-cache ... (4 actions, 2 running)
    4958:  �[31m�[1mFAIL: �[0m//rb/spec/integration/selenium/webdriver:action_builder-edge-remote (see D:/_bazel/execroot/selenium/bazel-out/x64_windows-fastbuild/testlogs/rb/spec/integration/selenium/webdriver/action_builder-edge-remote/test.log)
    4959:  ==================== Test output for //rb/spec/integration/selenium/webdriver:action_builder-edge-remote:
    4960:  2024-04-03 18:54:45 INFO Selenium Server Location: D:/_bazel/execroot/selenium/bazel-out/x64_windows-fastbuild/bin/rb/spec/integration/selenium/webdriver/action_builder-edge-remote.cmd.runfiles/selenium/java/src/org/openqa/selenium/grid/selenium_server_deploy.jar
    4961:  �[31m�[1mFAILED: �[0m//rb/spec/integration/selenium/webdriver:action_builder-edge-remote (Summary)
    ...
    
    5024:  "RUNFILE_PATH"=>"bundle/vendor/bundle",
    5025:  "RUN_UNDER_RUNFILES"=>"1",
    5026:  "SE_AVOID_STATS"=>"true",
    5027:  "SYSTEMDRIVE"=>"C:",
    5028:  "SYSTEMROOT"=>"C:\\Windows",
    5029:  "TEMP"=>"C:\\Users\\RUNNER~1\\AppData\\Local\\Temp",
    5030:  "TEST_BINARY"=>
    5031:  "rb/spec/integration/selenium/webdriver/action_builder-edge-remote.cmd",
    5032:  "TEST_INFRASTRUCTURE_FAILURE_FILE"=>
    5033:  "D:/_bazel/execroot/selenium/bazel-out/x64_windows-fastbuild/testlogs/rb/spec/integration/selenium/webdriver/action_builder-edge-remote/test.infrastructure_failure",
    ...
    
    5054:  "TEST_WORKSPACE"=>"selenium",
    5055:  "TMP"=>"C:\\Users\\RUNNER~1\\AppData\\Local\\Temp",
    5056:  "TZ"=>"UTC",
    5057:  "USER"=>"runneradmin",
    5058:  "WD_REMOTE_BROWSER"=>"edge",
    5059:  "WD_SPEC_DRIVER"=>"remote",
    5060:  "XML_OUTPUT_FILE"=>
    5061:  "D:/_bazel/execroot/selenium/bazel-out/x64_windows-fastbuild/testlogs/rb/spec/integration/selenium/webdriver/action_builder-edge-remote/test.xml"}
    5062:  An error occurred in a `before(:suite)` hook.
    5063:  Failure/Error: @pid = Process.spawn(*@command, options)
    5064:  Errno::EACCES:
    5065:  Permission denied - java
    5066:  # ./rb/lib/selenium/webdriver/common/child_process.rb:57:in `spawn'
    5067:  # ./rb/lib/selenium/webdriver/common/child_process.rb:57:in `start'
    5068:  # ./rb/lib/selenium/server.rb:204:in `start'
    5069:  # //?/D:/a/selenium/selenium/rb/spec/integration/selenium/webdriver/spec_helper.rb:40:in `block (2 levels) in <top (required)>'
    5070:  Finished in 0.05586 seconds (files took 0.58716 seconds to load)
    5071:  0 examples, 0 failures, 1 error occurred outside of examples
    ...
    
    5133:  "RUNFILE_PATH"=>"bundle/vendor/bundle",
    5134:  "RUN_UNDER_RUNFILES"=>"1",
    5135:  "SE_AVOID_STATS"=>"true",
    5136:  "SYSTEMDRIVE"=>"C:",
    5137:  "SYSTEMROOT"=>"C:\\Windows",
    5138:  "TEMP"=>"C:\\Users\\RUNNER~1\\AppData\\Local\\Temp",
    5139:  "TEST_BINARY"=>
    5140:  "rb/spec/integration/selenium/webdriver/action_builder-edge-remote.cmd",
    5141:  "TEST_INFRASTRUCTURE_FAILURE_FILE"=>
    5142:  "D:/_bazel/execroot/selenium/bazel-out/x64_windows-fastbuild/testlogs/rb/spec/integration/selenium/webdriver/action_builder-edge-remote/test.infrastructure_failure",
    ...
    
    5163:  "TEST_WORKSPACE"=>"selenium",
    5164:  "TMP"=>"C:\\Users\\RUNNER~1\\AppData\\Local\\Temp",
    5165:  "TZ"=>"UTC",
    5166:  "USER"=>"runneradmin",
    5167:  "WD_REMOTE_BROWSER"=>"edge",
    5168:  "WD_SPEC_DRIVER"=>"remote",
    5169:  "XML_OUTPUT_FILE"=>
    5170:  "D:/_bazel/execroot/selenium/bazel-out/x64_windows-fastbuild/testlogs/rb/spec/integration/selenium/webdriver/action_builder-edge-remote/test.xml"}
    5171:  An error occurred in a `before(:suite)` hook.
    5172:  Failure/Error: @pid = Process.spawn(*@command, options)
    5173:  Errno::EACCES:
    5174:  Permission denied - java
    5175:  # ./rb/lib/selenium/webdriver/common/child_process.rb:57:in `spawn'
    5176:  # ./rb/lib/selenium/webdriver/common/child_process.rb:57:in `start'
    5177:  # ./rb/lib/selenium/server.rb:204:in `start'
    5178:  # //?/D:/a/selenium/selenium/rb/spec/integration/selenium/webdriver/spec_helper.rb:40:in `block (2 levels) in <top (required)>'
    5179:  Finished in 0.0627 seconds (files took 0.61032 seconds to load)
    5180:  0 examples, 0 failures, 1 error occurred outside of examples
    ...
    
    5242:  "RUNFILE_PATH"=>"bundle/vendor/bundle",
    5243:  "RUN_UNDER_RUNFILES"=>"1",
    5244:  "SE_AVOID_STATS"=>"true",
    5245:  "SYSTEMDRIVE"=>"C:",
    5246:  "SYSTEMROOT"=>"C:\\Windows",
    5247:  "TEMP"=>"C:\\Users\\RUNNER~1\\AppData\\Local\\Temp",
    5248:  "TEST_BINARY"=>
    5249:  "rb/spec/integration/selenium/webdriver/action_builder-edge-remote.cmd",
    5250:  "TEST_INFRASTRUCTURE_FAILURE_FILE"=>
    5251:  "D:/_bazel/execroot/selenium/bazel-out/x64_windows-fastbuild/testlogs/rb/spec/integration/selenium/webdriver/action_builder-edge-remote/test.infrastructure_failure",
    ...
    
    5272:  "TEST_WORKSPACE"=>"selenium",
    5273:  "TMP"=>"C:\\Users\\RUNNER~1\\AppData\\Local\\Temp",
    5274:  "TZ"=>"UTC",
    5275:  "USER"=>"runneradmin",
    5276:  "WD_REMOTE_BROWSER"=>"edge",
    5277:  "WD_SPEC_DRIVER"=>"remote",
    5278:  "XML_OUTPUT_FILE"=>
    5279:  "D:/_bazel/execroot/selenium/bazel-out/x64_windows-fastbuild/testlogs/rb/spec/integration/selenium/webdriver/action_builder-edge-remote/test.xml"}
    5280:  An error occurred in a `before(:suite)` hook.
    5281:  Failure/Error: @pid = Process.spawn(*@command, options)
    5282:  Errno::EACCES:
    5283:  Permission denied - java
    5284:  # ./rb/lib/selenium/webdriver/common/child_process.rb:57:in `spawn'
    5285:  # ./rb/lib/selenium/webdriver/common/child_process.rb:57:in `start'
    5286:  # ./rb/lib/selenium/server.rb:204:in `start'
    5287:  # //?/D:/a/selenium/selenium/rb/spec/integration/selenium/webdriver/spec_helper.rb:40:in `block (2 levels) in <top (required)>'
    5288:  Finished in 0.0816 seconds (files took 0.8226 seconds to load)
    5289:  0 examples, 0 failures, 1 error occurred outside of examples
    5290:  ================================================================================
    5291:  �[32m[2,899 / 2,910]�[0m 12 / 27 tests, �[31m�[1m12 failed�[0m;�[0m Testing //rb/spec/integration/selenium/webdriver:driver-edge-remote; 8s disk-cache ... (4 actions, 1 running)
    5292:  �[32m[2,899 / 2,910]�[0m 12 / 27 tests, �[31m�[1m12 failed�[0m;�[0m [Sched] Testing //rb/spec/integration/selenium/webdriver:navigation-edge-remote; 8s ... (4 actions, 1 running)
    5293:  �[32m[2,899 / 2,910]�[0m 12 / 27 tests, �[31m�[1m12 failed�[0m;�[0m Testing //rb/spec/integration/selenium/webdriver/remote:driver-edge-remote; 7s local, disk-cache ... (4 actions, 2 running)
    5294:  �[31m�[1mFAIL: �[0m//rb/spec/integration/selenium/webdriver/remote:driver-edge-remote (see D:/_bazel/execroot/selenium/bazel-out/x64_windows-fastbuild/testlogs/rb/spec/integration/selenium/webdriver/remote/driver-edge-remote/test_attempts/attempt_1.log)
    5295:  �[32m[2,899 / 2,910]�[0m 12 / 27 tests, �[31m�[1m12 failed�[0m;�[0m Testing //rb/spec/integration/selenium/webdriver/remote:driver-edge-remote; 8s local, disk-cache ... (4 actions, 2 running)
    5296:  �[32m[2,899 / 2,910]�[0m 12 / 27 tests, �[31m�[1m12 failed�[0m;�[0m Testing //rb/spec/integration/selenium/webdriver/remote:driver-edge-remote; 11s local, disk-cache ... (4 actions, 2 running)
    5297:  �[32m[2,899 / 2,910]�[0m 12 / 27 tests, �[31m�[1m12 failed�[0m;�[0m Testing //rb/spec/integration/selenium/webdriver/remote:driver-edge-remote; 12s local, disk-cache ... (4 actions, 2 running)
    5298:  �[32m[2,899 / 2,910]�[0m 12 / 27 tests, �[31m�[1m12 failed�[0m;�[0m Testing //rb/spec/integration/selenium/webdriver/remote:driver-edge-remote; 14s local, disk-cache ... (4 actions, 3 running)
    5299:  �[31m�[1mFAIL: �[0m//rb/spec/integration/selenium/webdriver:navigation-edge-remote (see D:/_bazel/execroot/selenium/bazel-out/x64_windows-fastbuild/testlogs/rb/spec/integration/selenium/webdriver/navigation-edge-remote/test_attempts/attempt_1.log)
    5300:  �[32m[2,899 / 2,910]�[0m 12 / 27 tests, �[31m�[1m12 failed�[0m;�[0m Testing //rb/spec/integration/selenium/webdriver/remote:driver-edge-remote; 15s local, disk-cache ... (4 actions, 3 running)
    5301:  �[32m[2,899 / 2,910]�[0m 12 / 27 tests, �[31m�[1m12 failed�[0m;�[0m Testing //rb/spec/integration/selenium/webdriver/remote:driver-edge-remote; 21s local, disk-cache ... (4 actions, 3 running)
    5302:  �[31m�[1mFAIL: �[0m//rb/spec/integration/selenium/webdriver:driver-edge-remote (see D:/_bazel/execroot/selenium/bazel-out/x64_windows-fastbuild/testlogs/rb/spec/integration/selenium/webdriver/driver-edge-remote/test_attempts/attempt_1.log)
    5303:  �[32m[2,899 / 2,910]�[0m 12 / 27 tests, �[31m�[1m12 failed�[0m;�[0m Testing //rb/spec/integration/selenium/webdriver/remote:driver-edge-remote; 22s local, disk-cache ... (4 actions, 3 running)
    5304:  �[32m[2,899 / 2,910]�[0m 12 / 27 tests, �[31m�[1m12 failed�[0m;�[0m Testing //rb/spec/integration/selenium/webdriver/remote:driver-edge-remote; 28s local, disk-cache ... (4 actions running)
    5305:  �[31m�[1mFAIL: �[0m//rb/spec/integration/selenium/webdriver/remote:driver-edge-remote (see D:/_bazel/execroot/selenium/bazel-out/x64_windows-fastbuild/testlogs/rb/spec/integration/selenium/webdriver/remote/driver-edge-remote/test_attempts/attempt_2.log)
    5306:  �[32m[2,899 / 2,910]�[0m 12 / 27 tests, �[31m�[1m12 failed�[0m;�[0m Testing //rb/spec/integration/selenium/webdriver/remote:driver-edge-remote; 29s local, disk-cache ... (4 actions running)
    5307:  �[32m[2,899 / 2,910]�[0m 12 / 27 tests, �[31m�[1m12 failed�[0m;�[0m Testing //rb/spec/integration/selenium/webdriver/remote:driver-edge-remote; 35s local, disk-cache ... (4 actions running)
    5308:  �[31m�[1mFAIL: �[0m//rb/spec/integration/selenium/webdriver:error-edge-remote (see D:/_bazel/execroot/selenium/bazel-out/x64_windows-fastbuild/testlogs/rb/spec/integration/selenium/webdriver/error-edge-remote/test_attempts/attempt_1.log)
    5309:  �[32m[2,899 / 2,910]�[0m 12 / 27 tests, �[31m�[1m12 failed�[0m;�[0m Testing //rb/spec/integration/selenium/webdriver/remote:driver-edge-remote; 36s local, disk-cache ... (4 actions running)
    5310:  �[32m[2,899 / 2,910]�[0m 12 / 27 tests, �[31m�[1m12 failed�[0m;�[0m Testing //rb/spec/integration/selenium/webdriver/remote:driver-edge-remote; 41s local, disk-cache ... (4 actions running)
    5311:  �[31m�[1mFAIL: �[0m//rb/spec/integration/selenium/webdriver:navigation-edge-remote (see D:/_bazel/execroot/selenium/bazel-out/x64_windows-fastbuild/testlogs/rb/spec/integration/selenium/webdriver/navigation-edge-remote/test_attempts/attempt_2.log)
    5312:  �[32m[2,899 / 2,910]�[0m 12 / 27 tests, �[31m�[1m12 failed�[0m;�[0m Testing //rb/spec/integration/selenium/webdriver/remote:driver-edge-remote; 42s local, disk-cache ... (4 actions running)
    5313:  �[32m[2,899 / 2,910]�[0m 12 / 27 tests, �[31m�[1m12 failed�[0m;�[0m Testing //rb/spec/integration/selenium/webdriver/remote:driver-edge-remote; 48s local, disk-cache ... (4 actions running)
    5314:  �[31m�[1mFAIL: �[0m//rb/spec/integration/selenium/webdriver:driver-edge-remote (see D:/_bazel/execroot/selenium/bazel-out/x64_windows-fastbuild/testlogs/rb/spec/integration/selenium/webdriver/driver-edge-remote/test_attempts/attempt_2.log)
    5315:  �[32m[2,899 / 2,910]�[0m 12 / 27 tests, �[31m�[1m12 failed�[0m;�[0m Testing //rb/spec/integration/selenium/webdriver/remote:driver-edge-remote; 49s local, disk-cache ... (4 actions running)
    5316:  �[32m[2,899 / 2,910]�[0m 12 / 27 tests, �[31m�[1m12 failed�[0m;�[0m Testing //rb/spec/integration/selenium/webdriver/remote:driver-edge-remote; 55s local, disk-cache ... (4 actions running)
    5317:  �[31m�[1mFAIL: �[0m//rb/spec/integration/selenium/webdriver/remote:driver-edge-remote (see D:/_bazel/execroot/selenium/bazel-out/x64_windows-fastbuild/testlogs/rb/spec/integration/selenium/webdriver/remote/driver-edge-remote/test.log)
    5318:  ==================== Test output for //rb/spec/integration/selenium/webdriver/remote:driver-edge-remote:
    5319:  2024-04-03 18:55:41 INFO Selenium Server Location: D:/_bazel/execroot/selenium/bazel-out/x64_windows-fastbuild/bin/rb/spec/integration/selenium/webdriver/remote/driver-edge-remote.cmd.runfiles/selenium/java/src/org/openqa/selenium/grid/selenium_server_deploy.jar
    5320:  �[31m�[1mFAILED: �[0m//rb/spec/integration/selenium/webdriver/remote:driver-edge-remote (Summary)
    ...
    
    5383:  "RUNFILE_PATH"=>"bundle/vendor/bundle",
    5384:  "RUN_UNDER_RUNFILES"=>"1",
    5385:  "SE_AVOID_STATS"=>"true",
    5386:  "SYSTEMDRIVE"=>"C:",
    5387:  "SYSTEMROOT"=>"C:\\Windows",
    5388:  "TEMP"=>"C:\\Users\\RUNNER~1\\AppData\\Local\\Temp",
    5389:  "TEST_BINARY"=>
    5390:  "rb/spec/integration/selenium/webdriver/remote/driver-edge-remote.cmd",
    5391:  "TEST_INFRASTRUCTURE_FAILURE_FILE"=>
    5392:  "D:/_bazel/execroot/selenium/bazel-out/x64_windows-fastbuild/testlogs/rb/spec/integration/selenium/webdriver/remote/driver-edge-remote/test.infrastructure_failure",
    ...
    
    5413:  "TEST_WORKSPACE"=>"selenium",
    5414:  "TMP"=>"C:\\Users\\RUNNER~1\\AppData\\Local\\Temp",
    5415:  "TZ"=>"UTC",
    5416:  "USER"=>"runneradmin",
    5417:  "WD_REMOTE_BROWSER"=>"edge",
    5418:  "WD_SPEC_DRIVER"=>"remote",
    5419:  "XML_OUTPUT_FILE"=>
    5420:  "D:/_bazel/execroot/selenium/bazel-out/x64_windows-fastbuild/testlogs/rb/spec/integration/selenium/webdriver/remote/driver-edge-remote/test.xml"}
    5421:  An error occurred in a `before(:suite)` hook.
    5422:  Failure/Error: @pid = Process.spawn(*@command, options)
    5423:  Errno::EACCES:
    5424:  Permission denied - java
    5425:  # ./rb/lib/selenium/webdriver/common/child_process.rb:57:in `spawn'
    5426:  # ./rb/lib/selenium/webdriver/common/child_process.rb:57:in `start'
    5427:  # ./rb/lib/selenium/server.rb:204:in `start'
    5428:  # //?/D:/a/selenium/selenium/rb/spec/integration/selenium/webdriver/spec_helper.rb:40:in `block (2 levels) in <top (required)>'
    5429:  Finished in 0.0705 seconds (files took 0.87061 seconds to load)
    5430:  0 examples, 0 failures, 1 error occurred outside of examples
    ...
    
    5492:  "RUNFILE_PATH"=>"bundle/vendor/bundle",
    5493:  "RUN_UNDER_RUNFILES"=>"1",
    5494:  "SE_AVOID_STATS"=>"true",
    5495:  "SYSTEMDRIVE"=>"C:",
    5496:  "SYSTEMROOT"=>"C:\\Windows",
    5497:  "TEMP"=>"C:\\Users\\RUNNER~1\\AppData\\Local\\Temp",
    5498:  "TEST_BINARY"=>
    5499:  "rb/spec/integration/selenium/webdriver/remote/driver-edge-remote.cmd",
    5500:  "TEST_INFRASTRUCTURE_FAILURE_FILE"=>
    5501:  "D:/_bazel/execroot/selenium/bazel-out/x64_windows-fastbuild/testlogs/rb/spec/integration/selenium/webdriver/remote/driver-edge-remote/test.infrastructure_failure",
    ...
    
    5522:  "TEST_WORKSPACE"=>"selenium",
    5523:  "TMP"=>"C:\\Users\\RUNNER~1\\AppData\\Local\\Temp",
    5524:  "TZ"=>"UTC",
    5525:  "USER"=>"runneradmin",
    5526:  "WD_REMOTE_BROWSER"=>"edge",
    5527:  "WD_SPEC_DRIVER"=>"remote",
    5528:  "XML_OUTPUT_FILE"=>
    5529:  "D:/_bazel/execroot/selenium/bazel-out/x64_windows-fastbuild/testlogs/rb/spec/integration/selenium/webdriver/remote/driver-edge-remote/test.xml"}
    5530:  An error occurred in a `before(:suite)` hook.
    5531:  Failure/Error: @pid = Process.spawn(*@command, options)
    5532:  Errno::EACCES:
    5533:  Permission denied - java
    5534:  # ./rb/lib/selenium/webdriver/common/child_process.rb:57:in `spawn'
    5535:  # ./rb/lib/selenium/webdriver/common/child_process.rb:57:in `start'
    5536:  # ./rb/lib/selenium/server.rb:204:in `start'
    5537:  # //?/D:/a/selenium/selenium/rb/spec/integration/selenium/webdriver/spec_helper.rb:40:in `block (2 levels) in <top (required)>'
    5538:  Finished in 0.05726 seconds (files took 0.6456 seconds to load)
    5539:  0 examples, 0 failures, 1 error occurred outside of examples
    ...
    
    5601:  "RUNFILE_PATH"=>"bundle/vendor/bundle",
    5602:  "RUN_UNDER_RUNFILES"=>"1",
    5603:  "SE_AVOID_STATS"=>"true",
    5604:  "SYSTEMDRIVE"=>"C:",
    5605:  "SYSTEMROOT"=>"C:\\Windows",
    5606:  "TEMP"=>"C:\\Users\\RUNNER~1\\AppData\\Local\\Temp",
    5607:  "TEST_BINARY"=>
    5608:  "rb/spec/integration/selenium/webdriver/remote/driver-edge-remote.cmd",
    5609:  "TEST_INFRASTRUCTURE_FAILURE_FILE"=>
    5610:  "D:/_bazel/execroot/selenium/bazel-out/x64_windows-fastbuild/testlogs/rb/spec/integration/selenium/webdriver/remote/driver-edge-remote/test.infrastructure_failure",
    ...
    
    5631:  "TEST_WORKSPACE"=>"selenium",
    5632:  "TMP"=>"C:\\Users\\RUNNER~1\\AppData\\Local\\Temp",
    5633:  "TZ"=>"UTC",
    5634:  "USER"=>"runneradmin",
    5635:  "WD_REMOTE_BROWSER"=>"edge",
    5636:  "WD_SPEC_DRIVER"=>"remote",
    5637:  "XML_OUTPUT_FILE"=>
    5638:  "D:/_bazel/execroot/selenium/bazel-out/x64_windows-fastbuild/testlogs/rb/spec/integration/selenium/webdriver/remote/driver-edge-remote/test.xml"}
    5639:  An error occurred in a `before(:suite)` hook.
    5640:  Failure/Error: @pid = Process.spawn(*@command, options)
    5641:  Errno::EACCES:
    5642:  Permission denied - java
    5643:  # ./rb/lib/selenium/webdriver/common/child_process.rb:57:in `spawn'
    5644:  # ./rb/lib/selenium/webdriver/common/child_process.rb:57:in `start'
    5645:  # ./rb/lib/selenium/server.rb:204:in `start'
    5646:  # //?/D:/a/selenium/selenium/rb/spec/integration/selenium/webdriver/spec_helper.rb:40:in `block (2 levels) in <top (required)>'
    5647:  Finished in 0.05563 seconds (files took 0.63952 seconds to load)
    5648:  0 examples, 0 failures, 1 error occurred outside of examples
    5649:  ================================================================================
    5650:  �[32m[2,900 / 2,910]�[0m 13 / 27 tests, �[31m�[1m13 failed�[0m;�[0m Testing //rb/spec/integration/selenium/webdriver:navigation-edge-remote; 49s local, disk-cache ... (4 actions, 3 running)
    5651:  �[32m[2,900 / 2,910]�[0m 13 / 27 tests, �[31m�[1m13 failed�[0m;�[0m Testing //rb/spec/integration/selenium/webdriver:navigation-edge-remote; 54s local, disk-cache ... (4 actions, 3 running)
    5652:  �[31m�[1mFAIL: �[0m//rb/spec/integration/selenium/webdriver:error-edge-remote (see D:/_bazel/execroot/selenium/bazel-out/x64_windows-fastbuild/testlogs/rb/spec/integration/selenium/webdriver/error-edge-remote/test_attempts/attempt_2.log)
    5653:  �[32m[2,900 / 2,910]�[0m 13 / 27 tests, �[31m�[1m13 failed�[0m;�[0m Testing //rb/spec/integration/selenium/webdriver:navigation-edge-remote; 55s local, disk-cache ... (4 actions, 3 running)
    5654:  �[32m[2,900 / 2,910]�[0m 13 / 27 tests, �[31m�[1m13 failed�[0m;�[0m Testing //rb/spec/integration/selenium/webdriver:navigation-edge-remote; 57s local, disk-cache ... (4 actions, 3 running)
    5655:  �[32m[2,900 / 2,910]�[0m 13 / 27 tests, �[31m�[1m13 failed�[0m;�[0m Testing //rb/spec/integration/selenium/webdriver:navigation-edge-remote; 59s local, disk-cache ... (4 actions, 3 running)
    5656:  �[32m[2,900 / 2,910]�[0m 13 / 27 tests, �[31m�[1m13 failed�[0m;�[0m Testing //rb/spec/integration/selenium/webdriver:navigation-edge-remote; 60s local, disk-cache ... (4 actions, 3 running)
    5657:  �[32m[2,900 / 2,910]�[0m 13 / 27 tests, �[31m�[1m13 failed�[0m;�[0m Testing //rb/spec/integration/selenium/webdriver:navigation-edge-remote; 62s local, disk-cache ... (4 actions, 3 running)
    5658:  �[31m�[1mFAIL: �[0m//rb/spec/integration/selenium/webdriver:navigation-edge-remote (see D:/_bazel/execroot/selenium/bazel-out/x64_windows-fastbuild/testlogs/rb/spec/integration/selenium/webdriver/navigation-edge-remote/test.log)
    5659:  �[31m�[1mFAILED: �[0m//rb/spec/integration/selenium/webdriver:navigation-edge-remote (Summary)
    ...
    
    5724:  "RUNFILE_PATH"=>"bundle/vendor/bundle",
    5725:  "RUN_UNDER_RUNFILES"=>"1",
    5726:  "SE_AVOID_STATS"=>"true",
    5727:  "SYSTEMDRIVE"=>"C:",
    5728:  "SYSTEMROOT"=>"C:\\Windows",
    5729:  "TEMP"=>"C:\\Users\\RUNNER~1\\AppData\\Local\\Temp",
    5730:  "TEST_BINARY"=>
    5731:  "rb/spec/integration/selenium/webdriver/navigation-edge-remote.cmd",
    5732:  "TEST_INFRASTRUCTURE_FAILURE_FILE"=>
    5733:  "D:/_bazel/execroot/selenium/bazel-out/x64_windows-fastbuild/testlogs/rb/spec/integration/selenium/webdriver/navigation-edge-remote/test.infrastructure_failure",
    ...
    
    5754:  "TEST_WORKSPACE"=>"selenium",
    5755:  "TMP"=>"C:\\Users\\RUNNER~1\\AppData\\Local\\Temp",
    5756:  "TZ"=>"UTC",
    5757:  "USER"=>"runneradmin",
    5758:  "WD_REMOTE_BROWSER"=>"edge",
    5759:  "WD_SPEC_DRIVER"=>"remote",
    5760:  "XML_OUTPUT_FILE"=>
    5761:  "D:/_bazel/execroot/selenium/bazel-out/x64_windows-fastbuild/testlogs/rb/spec/integration/selenium/webdriver/navigation-edge-remote/test.xml"}
    5762:  An error occurred in a `before(:suite)` hook.
    5763:  Failure/Error: @pid = Process.spawn(*@command, options)
    5764:  Errno::EACCES:
    5765:  Permission denied - java
    5766:  # ./rb/lib/selenium/webdriver/common/child_process.rb:57:in `spawn'
    5767:  # ./rb/lib/selenium/webdriver/common/child_process.rb:57:in `start'
    5768:  # ./rb/lib/selenium/server.rb:204:in `start'
    5769:  # //?/D:/a/selenium/selenium/rb/spec/integration/selenium/webdriver/spec_helper.rb:40:in `block (2 levels) in <top (required)>'
    5770:  Finished in 0.05868 seconds (files took 0.62388 seconds to load)
    5771:  0 examples, 0 failures, 1 error occurred outside of examples
    ...
    
    5833:  "RUNFILE_PATH"=>"bundle/vendor/bundle",
    5834:  "RUN_UNDER_RUNFILES"=>"1",
    5835:  "SE_AVOID_STATS"=>"true",
    5836:  "SYSTEMDRIVE"=>"C:",
    5837:  "SYSTEMROOT"=>"C:\\Windows",
    5838:  "TEMP"=>"C:\\Users\\RUNNER~1\\AppData\\Local\\Temp",
    5839:  "TEST_BINARY"=>
    5840:  "rb/spec/integration/selenium/webdriver/navigation-edge-remote.cmd",
    5841:  "TEST_INFRASTRUCTURE_FAILURE_FILE"=>
    5842:  "D:/_bazel/execroot/selenium/bazel-out/x64_windows-fastbuild/testlogs/rb/spec/integration/selenium/webdriver/navigation-edge-remote/test.infrastructure_failure",
    ...
    
    5863:  "TEST_WORKSPACE"=>"selenium",
    5864:  "TMP"=>"C:\\Users\\RUNNER~1\\AppData\\Local\\Temp",
    5865:  "TZ"=>"UTC",
    5866:  "USER"=>"runneradmin",
    5867:  "WD_REMOTE_BROWSER"=>"edge",
    5868:  "WD_SPEC_DRIVER"=>"remote",
    5869:  "XML_OUTPUT_FILE"=>
    5870:  "D:/_bazel/execroot/selenium/bazel-out/x64_windows-fastbuild/testlogs/rb/spec/integration/selenium/webdriver/navigation-edge-remote/test.xml"}
    5871:  An error occurred in a `before(:suite)` hook.
    5872:  Failure/Error: @pid = Process.spawn(*@command, options)
    5873:  Errno::EACCES:
    5874:  Permission denied - java
    5875:  # ./rb/lib/selenium/webdriver/common/child_process.rb:57:in `spawn'
    5876:  # ./rb/lib/selenium/webdriver/common/child_process.rb:57:in `start'
    5877:  # ./rb/lib/selenium/server.rb:204:in `start'
    5878:  # //?/D:/a/selenium/selenium/rb/spec/integration/selenium/webdriver/spec_helper.rb:40:in `block (2 levels) in <top (required)>'
    5879:  Finished in 0.05614 seconds (files took 0.58696 seconds to load)
    5880:  0 examples, 0 failures, 1 error occurred outside of examples
    ...
    
    5942:  "RUNFILE_PATH"=>"bundle/vendor/bundle",
    5943:  "RUN_UNDER_RUNFILES"=>"1",
    5944:  "SE_AVOID_STATS"=>"true",
    5945:  "SYSTEMDRIVE"=>"C:",
    5946:  "SYSTEMROOT"=>"C:\\Windows",
    5947:  "TEMP"=>"C:\\Users\\RUNNER~1\\AppData\\Local\\Temp",
    5948:  "TEST_BINARY"=>
    5949:  "rb/spec/integration/selenium/webdriver/navigation-edge-remote.cmd",
    5950:  "TEST_INFRASTRUCTURE_FAILURE_FILE"=>
    5951:  "D:/_bazel/execroot/selenium/bazel-out/x64_windows-fastbuild/testlogs/rb/spec/integration/selenium/webdriver/navigation-edge-remote/test.infrastructure_failure",
    ...
    
    5972:  "TEST_WORKSPACE"=>"selenium",
    5973:  "TMP"=>"C:\\Users\\RUNNER~1\\AppData\\Local\\Temp",
    5974:  "TZ"=>"UTC",
    5975:  "USER"=>"runneradmin",
    5976:  "WD_REMOTE_BROWSER"=>"edge",
    5977:  "WD_SPEC_DRIVER"=>"remote",
    5978:  "XML_OUTPUT_FILE"=>
    5979:  "D:/_bazel/execroot/selenium/bazel-out/x64_windows-fastbuild/testlogs/rb/spec/integration/selenium/webdriver/navigation-edge-remote/test.xml"}
    5980:  An error occurred in a `before(:suite)` hook.
    5981:  Failure/Error: @pid = Process.spawn(*@command, options)
    5982:  Errno::EACCES:
    5983:  Permission denied - java
    5984:  # ./rb/lib/selenium/webdriver/common/child_process.rb:57:in `spawn'
    5985:  # ./rb/lib/selenium/webdriver/common/child_process.rb:57:in `start'
    5986:  # ./rb/lib/selenium/server.rb:204:in `start'
    5987:  # //?/D:/a/selenium/selenium/rb/spec/integration/selenium/webdriver/spec_helper.rb:40:in `block (2 levels) in <top (required)>'
    5988:  Finished in 0.11607 seconds (files took 0.74012 seconds to load)
    5989:  0 examples, 0 failures, 1 error occurred outside of examples
    5990:  ================================================================================
    5991:  �[32m[2,901 / 2,910]�[0m 14 / 27 tests, �[31m�[1m14 failed�[0m;�[0m Testing //rb/spec/integration/selenium/webdriver:driver-edge-remote; 57s local, disk-cache ... (4 actions, 2 running)
    5992:  �[32m[2,901 / 2,910]�[0m 14 / 27 tests, �[31m�[1m14 failed�[0m;�[0m Testing //rb/spec/integration/selenium/webdriver:driver-edge-remote; 62s local, disk-cache ... (4 actions, 2 running)
    5993:  �[31m�[1mFAIL: �[0m//rb/spec/integration/selenium/webdriver:driver-edge-remote (see D:/_bazel/execroot/selenium/bazel-out/x64_windows-fastbuild/testlogs/rb/spec/integration/selenium/webdriver/driver-edge-remote/test.log)
    5994:  ==================== Test output for //rb/spec/integration/selenium/webdriver:driver-edge-remote:
    5995:  2024-04-03 18:55:55 INFO Selenium Server Location: D:/_bazel/execroot/selenium/bazel-out/x64_windows-fastbuild/bin/rb/spec/integration/selenium/webdriver/driver-edge-remote.cmd.runfiles/selenium/java/src/org/openqa/selenium/grid/selenium_server_deploy.jar
    5996:  �[31m�[1mFAILED: �[0m//rb/spec/integration/selenium/webdriver:driver-edge-remote (Summary)
    ...
    
    6059:  "RUNFILE_PATH"=>"bundle/vendor/bundle",
    6060:  "RUN_UNDER_RUNFILES"=>"1",
    6061:  "SE_AVOID_STATS"=>"true",
    6062:  "SYSTEMDRIVE"=>"C:",
    6063:  "SYSTEMROOT"=>"C:\\Windows",
    6064:  "TEMP"=>"C:\\Users\\RUNNER~1\\AppData\\Local\\Temp",
    6065:  "TEST_BINARY"=>
    6066:  "rb/spec/integration/selenium/webdriver/driver-edge-remote.cmd",
    6067:  "TEST_INFRASTRUCTURE_FAILURE_FILE"=>
    6068:  "D:/_bazel/execroot/selenium/bazel-out/x64_windows-fastbuild/testlogs/rb/spec/integration/selenium/webdriver/driver-edge-remote/test.infrastructure_failure",
    ...
    
    6088:  "TEST_WORKSPACE"=>"selenium",
    6089:  "TMP"=>"C:\\Users\\RUNNER~1\\AppData\\Local\\Temp",
    6090:  "TZ"=>"UTC",
    6091:  "USER"=>"runneradmin",
    6092:  "WD_REMOTE_BROWSER"=>"edge",
    6093:  "WD_SPEC_DRIVER"=>"remote",
    6094:  "XML_OUTPUT_FILE"=>
    6095:  "D:/_bazel/execroot/selenium/bazel-out/x64_windows-fastbuild/testlogs/rb/spec/integration/selenium/webdriver/driver-edge-remote/test.xml"}
    6096:  An error occurred in a `before(:suite)` hook.
    6097:  Failure/Error: @pid = Process.spawn(*@command, options)
    6098:  Errno::EACCES:
    6099:  Permission denied - java
    6100:  # ./rb/lib/selenium/webdriver/common/child_process.rb:57:in `spawn'
    6101:  # ./rb/lib/selenium/webdriver/common/child_process.rb:57:in `start'
    6102:  # ./rb/lib/selenium/server.rb:204:in `start'
    6103:  # //?/D:/a/selenium/selenium/rb/spec/integration/selenium/webdriver/spec_helper.rb:40:in `block (2 levels) in <top (required)>'
    6104:  Finished in 0.05453 seconds (files took 0.61714 seconds to load)
    6105:  0 examples, 0 failures, 1 error occurred outside of examples
    ...
    
    6167:  "RUNFILE_PATH"=>"bundle/vendor/bundle",
    6168:  "RUN_UNDER_RUNFILES"=>"1",
    6169:  "SE_AVOID_STATS"=>"true",
    6170:  "SYSTEMDRIVE"=>"C:",
    6171:  "SYSTEMROOT"=>"C:\\Windows",
    6172:  "TEMP"=>"C:\\Users\\RUNNER~1\\AppData\\Local\\Temp",
    6173:  "TEST_BINARY"=>
    6174:  "rb/spec/integration/selenium/webdriver/driver-edge-remote.cmd",
    6175:  "TEST_INFRASTRUCTURE_FAILURE_FILE"=>
    6176:  "D:/_bazel/execroot/selenium/bazel-out/x64_windows-fastbuild/testlogs/rb/spec/integration/selenium/webdriver/driver-edge-remote/test.infrastructure_failure",
    ...
    
    6196:  "TEST_WORKSPACE"=>"selenium",
    6197:  "TMP"=>"C:\\Users\\RUNNER~1\\AppData\\Local\\Temp",
    6198:  "TZ"=>"UTC",
    6199:  "USER"=>"runneradmin",
    6200:  "WD_REMOTE_BROWSER"=>"edge",
    6201:  "WD_SPEC_DRIVER"=>"remote",
    6202:  "XML_OUTPUT_FILE"=>
    6203:  "D:/_bazel/execroot/selenium/bazel-out/x64_windows-fastbuild/testlogs/rb/spec/integration/selenium/webdriver/driver-edge-remote/test.xml"}
    6204:  An error occurred in a `before(:suite)` hook.
    6205:  Failure/Error: @pid = Process.spawn(*@command, options)
    6206:  Errno::EACCES:
    6207:  Permission denied - java
    6208:  # ./rb/lib/selenium/webdriver/common/child_process.rb:57:in `spawn'
    6209:  # ./rb/lib/selenium/webdriver/common/child_process.rb:57:in `start'
    6210:  # ./rb/lib/selenium/server.rb:204:in `start'
    6211:  # //?/D:/a/selenium/selenium/rb/spec/integration/selenium/webdriver/spec_helper.rb:40:in `block (2 levels) in <top (required)>'
    6212:  Finished in 0.05615 seconds (files took 0.63119 seconds to load)
    6213:  0 examples, 0 failures, 1 error occurred outside of examples
    ...
    
    6275:  "RUNFILE_PATH"=>"bundle/vendor/bundle",
    6276:  "RUN_UNDER_RUNFILES"=>"1",
    6277:  "SE_AVOID_STATS"=>"true",
    6278:  "SYSTEMDRIVE"=>"C:",
    6279:  "SYSTEMROOT"=>"C:\\Windows",
    6280:  "TEMP"=>"C:\\Users\\RUNNER~1\\AppData\\Local\\Temp",
    6281:  "TEST_BINARY"=>
    6282:  "rb/spec/integration/selenium/webdriver/driver-edge-remote.cmd",
    6283:  "TEST_INFRASTRUCTURE_FAILURE_FILE"=>
    6284:  "D:/_bazel/execroot/selenium/bazel-out/x64_windows-fastbuild/testlogs/rb/spec/integration/selenium/webdriver/driver-edge-remote/test.infrastructure_failure",
    ...
    
    6304:  "TEST_WORKSPACE"=>"selenium",
    6305:  "TMP"=>"C:\\Users\\RUNNER~1\\AppData\\Local\\Temp",
    6306:  "TZ"=>"UTC",
    6307:  "USER"=>"runneradmin",
    6308:  "WD_REMOTE_BROWSER"=>"edge",
    6309:  "WD_SPEC_DRIVER"=>"remote",
    6310:  "XML_OUTPUT_FILE"=>
    6311:  "D:/_bazel/execroot/selenium/bazel-out/x64_windows-fastbuild/testlogs/rb/spec/integration/selenium/webdriver/driver-edge-remote/test.xml"}
    6312:  An error occurred in a `before(:suite)` hook.
    6313:  Failure/Error: @pid = Process.spawn(*@command, options)
    6314:  Errno::EACCES:
    6315:  Permission denied - java
    6316:  # ./rb/lib/selenium/webdriver/common/child_process.rb:57:in `spawn'
    6317:  # ./rb/lib/selenium/webdriver/common/child_process.rb:57:in `start'
    6318:  # ./rb/lib/selenium/server.rb:204:in `start'
    6319:  # //?/D:/a/selenium/selenium/rb/spec/integration/selenium/webdriver/spec_helper.rb:40:in `block (2 levels) in <top (required)>'
    6320:  Finished in 0.05683 seconds (files took 0.69391 seconds to load)
    6321:  0 examples, 0 failures, 1 error occurred outside of examples
    6322:  ================================================================================
    6323:  �[32m[2,902 / 2,910]�[0m 15 / 27 tests, �[31m�[1m15 failed�[0m;�[0m Testing //rb/spec/integration/selenium/webdriver:error-edge-remote; 50s local, disk-cache ... (4 actions, 1 running)
    6324:  �[32m[2,902 / 2,910]�[0m 15 / 27 tests, �[31m�[1m15 failed�[0m;�[0m Testing //rb/spec/integration/selenium/webdriver:error-edge-remote; 53s local, disk-cache ... (4 actions, 1 running)
    6325:  �[32m[2,902 / 2,910]�[0m 15 / 27 tests, �[31m�[1m15 failed�[0m;�[0m Testing //rb/spec/integration/selenium/webdriver:error-edge-remote; 55s local, disk-cache ... (4 actions, 2 running)
    6326:  �[31m�[1mFAIL: �[0m//rb/spec/integration/selenium/webdriver:error-edge-remote (see D:/_bazel/execroot/selenium/bazel-out/x64_windows-fastbuild/testlogs/rb/spec/integration/selenium/webdriver/error-edge-remote/test.log)
    6327:  ==================== Test output for //rb/spec/integration/selenium/webdriver:error-edge-remote:
    6328:  �[31m�[1mFAILED: �[0m//rb/spec/integration/selenium/webdriver:error-edge-remote (Summary)
    6329:  2024-04-03 18:56:09 INFO Selenium Server Location: D:/_bazel/execroot/selenium/bazel-out/x64_windows-fastbuild/bin/rb/spec/integration/selenium/webdriver/error-edge-remote.cmd.runfiles/selenium/java/src/org/openqa/selenium/grid/selenium_server_deploy.jar
    6330:  D:/_bazel/execroot/selenium/bazel-out/x64_windows-fastbuild/testlogs/rb/spec/integration/selenium/webdriver/error-edge-remote/test.log
    6331:  D:/_bazel/execroot/selenium/bazel-out/x64_windows-fastbuild/testlogs/rb/spec/integration/selenium/webdriver/error-edge-remote/test_attempts/attempt_1.log
    6332:  {"ABS_PATH"=>
    6333:  D:/_bazel/execroot/selenium/bazel-out/x64_windows-fastbuild/testlogs/rb/spec/integration/selenium/webdriver/error-edge-remote/test_attempts/attempt_2.log
    6334:  "D:/_bazel/execroot/selenium/bazel-out/x64_windows-fastbuild/bin/external/bundle/vendor/bundle",
    6335:  �[32mINFO: �[0mFrom Testing //rb/spec/integration/selenium/webdriver:error-edge-remote:
    ...
    
    6359:  "EXPERIMENTAL_SPLIT_XML_GENERATION"=>"1",
    6360:  "GEM_HOME"=>
    6361:  "D:/_bazel/execroot/selenium/bazel-out/x64_windows-fastbuild/bin/external/bundle/vendor/bundle/ruby/3.0.0",
    6362:  "GEM_PATH"=>"",
    6363:  "GITHUB_ACTIONS"=>"true",
    6364:  "GTEST_TMP_DIR"=>
    6365:  "D:/_bazel/execroot/selenium/_tmp/ea2f106f227ef93e0aef159690b82c6f",
    6366:  "GUNIT_OUTPUT"=>
    6367:  "xml:D:/_bazel/execroot/selenium/bazel-out/x64_windows-fastbuild/testlogs/rb/spec/integration/selenium/webdriver/error-edge-remote/test.xml",
    6368:  "HOME"=>"D:/_bazel/execroot/selenium/_tmp/ea2f106f227ef93e0aef159690b82c6f",
    6369:  "JAVA_RUNFILES"=>
    6370:  "D:/_bazel/execroot/selenium/bazel-out/x64_windows-fastbuild/bin/rb/spec/integration/selenium/webdriver/error-edge-remote.cmd.runfiles",
    6371:  "JRUBY_OPTS"=>"--dev",
    6372:  "LOCALAPPDATA"=>"C:\\Users\\runneradmin\\AppData\\Local",
    6373:  "MF"=>
    6374:  "D:\\_bazel\\execroot\\selenium\\bazel-out\\x64_windows-fastbuild\\bin\\rb\\spec\\integration\\selenium\\webdriver\\error-edge-remote.cmd.runfiles_manifest",
    6375:  "PATH"=>
    6376:  "D:/_bazel/execroot/selenium/bazel-out/x64_windows-fastbuild/bin/external/bundle/vendor/bundle/ruby/3.0.0/bin;D:\\_bazel\\external\\ruby\\dist\\bin;.;C:\\Program Files\\Git\\bin;C:\\Program Files\\Git\\usr\\bin;C:\\Windows;C:\\Windows\\System32;C:\\Windows\\System32\\WindowsPowerShell\\v1.0",
    6377:  "PATHEXT"=>".COM;.EXE;.BAT;.CMD;.VBS;.JS;.WS;.MSC",
    6378:  "PROGRAMFILES"=>"C:\\Program Files",
    6379:  "PROGRAMFILES(X86)"=>"C:\\Program Files (x86)",
    6380:  "PROMPT"=>"$P$G",
    6381:  "PYTHON_RUNFILES"=>
    6382:  "D:/_bazel/execroot/selenium/bazel-out/x64_windows-fastbuild/bin/rb/spec/integration/selenium/webdriver/error-edge-remote.cmd.runfiles",
    6383:  "RUBY"=>"D:/_bazel/external/ruby/dist/bin/ruby.exe",
    6384:  "RUBYLIB"=>"",
    6385:  "RUBYOPT"=>
    6386:  "-rD:/_bazel/external/ruby/dist/lib/ruby/3.0.0/bundler/setup -Irb/lib -w",
    6387:  "RUNFILES_DIR"=>
    6388:  "D:/_bazel/execroot/selenium/bazel-out/x64_windows-fastbuild/bin/rb/spec/integration/selenium/webdriver/error-edge-remote.cmd.runfiles",
    6389:  "RUNFILES_MANIFEST_FILE"=>
    6390:  "D:/_bazel/execroot/selenium/bazel-out/x64_windows-fastbuild/bin/rb/spec/integration/selenium/webdriver/error-edge-remote.cmd.runfiles_manifest",
    6391:  "RUNFILES_MANIFEST_ONLY"=>"1",
    6392:  "RUNFILE_PATH"=>"bundle/vendor/bundle",
    6393:  "RUN_UNDER_RUNFILES"=>"1",
    6394:  "SE_AVOID_STATS"=>"true",
    6395:  "SYSTEMDRIVE"=>"C:",
    6396:  "SYSTEMROOT"=>"C:\\Windows",
    6397:  "TEMP"=>"C:\\Users\\RUNNER~1\\AppData\\Local\\Temp",
    6398:  "TEST_BINARY"=>"rb/spec/integration/selenium/webdriver/error-edge-remote.cmd",
    6399:  "TEST_INFRASTRUCTURE_FAILURE_FILE"=>
    6400:  "D:/_bazel/execroot/selenium/bazel-out/x64_windows-fastbuild/testlogs/rb/spec/integration/selenium/webdriver/error-edge-remote/test.infrastructure_failure",
    6401:  "TEST_LOGSPLITTER_OUTPUT_FILE"=>
    6402:  "D:/_bazel/execroot/selenium/bazel-out/x64_windows-fastbuild/testlogs/rb/spec/integration/selenium/webdriver/error-edge-remote/test.raw_splitlogs/test.splitlogs",
    6403:  "TEST_PREMATURE_EXIT_FILE"=>
    6404:  "D:/_bazel/execroot/selenium/bazel-out/x64_windows-fastbuild/testlogs/rb/spec/integration/selenium/webdriver/error-edge-remote/test.exited_prematurely",
    6405:  "TEST_SIZE"=>"large",
    6406:  "TEST_SRCDIR"=>
    6407:  "D:/_bazel/execroot/selenium/bazel-out/x64_windows-fastbuild/bin/rb/spec/integration/selenium/webdriver/error-edge-remote.cmd.runfiles",
    6408:  "TEST_TARGET"=>"//rb/spec/integration/selenium/webdriver:error-edge-remote",
    6409:  "TEST_TIMEOUT"=>"1800",
    6410:  "TEST_TMPDIR"=>
    6411:  "D:/_bazel/execroot/selenium/_tmp/ea2f106f227ef93e0aef159690b82c6f",
    6412:  "TEST_UNDECLARED_OUTPUTS_ANNOTATIONS_DIR"=>
    6413:  "D:/_bazel/execroot/selenium/bazel-out/x64_windows-fastbuild/testlogs/rb/spec/integration/selenium/webdriver/error-edge-remote/test.outputs_manifest",
    6414:  "TEST_UNDECLARED_OUTPUTS_DIR"=>
    6415:  "D:/_bazel/execroot/selenium/bazel-out/x64_windows-fastbuild/testlogs/rb/spec/integration/selenium/webdriver/error-edge-remote/test.outputs",
    6416:  "TEST_UNUSED_RUNFILES_LOG_FILE"=>
    6417:  "D:/_bazel/execroot/selenium/bazel-out/x64_windows-fastbuild/testlogs/rb/spec/integration/selenium/webdriver/error-edge-remote/test.unused_runfiles_log",
    6418:  "TEST_WARNINGS_OUTPUT_FILE"=>
    6419:  "D:/_bazel/execroot/selenium/bazel-out/x64_windows-fastbuild/testlogs/rb/spec/integration/selenium/webdriver/error-edge-remote/test.warnings",
    6420:  "TEST_WORKSPACE"=>"selenium",
    6421:  "TMP"=>"C:\\Users\\RUNNER~1\\AppData\\Local\\Temp",
    6422:  "TZ"=>"UTC",
    6423:  "USER"=>"runneradmin",
    6424:  "WD_REMOTE_BROWSER"=>"edge",
    6425:  "WD_SPEC_DRIVER"=>"remote",
    6426:  "XML_OUTPUT_FILE"=>
    6427:  "D:/_bazel/execroot/selenium/bazel-out/x64_windows-fastbuild/testlogs/rb/spec/integration/selenium/webdriver/error-edge-remote/test.xml"}
    6428:  An error occurred in a `before(:suite)` hook.
    6429:  Failure/Error: @pid = Process.spawn(*@command, options)
    6430:  Errno::EACCES:
    6431:  Permission denied - java
    6432:  # ./rb/lib/selenium/webdriver/common/child_process.rb:57:in `spawn'
    6433:  # ./rb/lib/selenium/webdriver/common/child_process.rb:57:in `start'
    6434:  # ./rb/lib/selenium/server.rb:204:in `start'
    6435:  # //?/D:/a/selenium/selenium/rb/spec/integration/selenium/webdriver/spec_helper.rb:40:in `block (2 levels) in <top (required)>'
    6436:  Finished in 0.05372 seconds (files took 0.57923 seconds to load)
    6437:  0 examples, 0 failures, 1 error occurred outside of examples
    6438:  ================================================================================
    6439:  ==================== Test output for //rb/spec/integration/selenium/webdriver:error-edge-remote:
    6440:  2024-04-03 18:56:36 INFO Selenium Server Location: D:/_bazel/execroot/selenium/bazel-out/x64_windows-fastbuild/bin/rb/spec/integration/selenium/webdriver/error-edge-remote.cmd.runfiles/selenium/java/src/org/openqa/selenium/grid/selenium_server_deploy.jar
    ...
    
    6466:  "EXPERIMENTAL_SPLIT_XML_GENERATION"=>"1",
    6467:  "GEM_HOME"=>
    6468:  "D:/_bazel/execroot/selenium/bazel-out/x64_windows-fastbuild/bin/external/bundle/vendor/bundle/ruby/3.0.0",
    6469:  "GEM_PATH"=>"",
    6470:  "GITHUB_ACTIONS"=>"true",
    6471:  "GTEST_TMP_DIR"=>
    6472:  "D:/_bazel/execroot/selenium/_tmp/ea2f106f227ef93e0aef159690b82c6f",
    6473:  "GUNIT_OUTPUT"=>
    6474:  "xml:D:/_bazel/execroot/selenium/bazel-out/x64_windows-fastbuild/testlogs/rb/spec/integration/selenium/webdriver/error-edge-remote/test.xml",
    6475:  "HOME"=>"D:/_bazel/execroot/selenium/_tmp/ea2f106f227ef93e0aef159690b82c6f",
    6476:  "JAVA_RUNFILES"=>
    6477:  "D:/_bazel/execroot/selenium/bazel-out/x64_windows-fastbuild/bin/rb/spec/integration/selenium/webdriver/error-edge-remote.cmd.runfiles",
    6478:  "JRUBY_OPTS"=>"--dev",
    6479:  "LOCALAPPDATA"=>"C:\\Users\\runneradmin\\AppData\\Local",
    6480:  "MF"=>
    6481:  "D:\\_bazel\\execroot\\selenium\\bazel-out\\x64_windows-fastbuild\\bin\\rb\\spec\\integration\\selenium\\webdriver\\error-edge-remote.cmd.runfiles_manifest",
    6482:  "PATH"=>
    6483:  "D:/_bazel/execroot/selenium/bazel-out/x64_windows-fastbuild/bin/external/bundle/vendor/bundle/ruby/3.0.0/bin;D:\\_bazel\\external\\ruby\\dist\\bin;.;C:\\Program Files\\Git\\bin;C:\\Program Files\\Git\\usr\\bin;C:\\Windows;C:\\Windows\\System32;C:\\Windows\\System32\\WindowsPowerShell\\v1.0",
    6484:  "PATHEXT"=>".COM;.EXE;.BAT;.CMD;.VBS;.JS;.WS;.MSC",
    6485:  "PROGRAMFILES"=>"C:\\Program Files",
    6486:  "PROGRAMFILES(X86)"=>"C:\\Program Files (x86)",
    6487:  "PROMPT"=>"$P$G",
    6488:  "PYTHON_RUNFILES"=>
    6489:  "D:/_bazel/execroot/selenium/bazel-out/x64_windows-fastbuild/bin/rb/spec/integration/selenium/webdriver/error-edge-remote.cmd.runfiles",
    6490:  "RUBY"=>"D:/_bazel/external/ruby/dist/bin/ruby.exe",
    6491:  "RUBYLIB"=>"",
    6492:  "RUBYOPT"=>
    6493:  "-rD:/_bazel/external/ruby/dist/lib/ruby/3.0.0/bundler/setup -Irb/lib -w",
    6494:  "RUNFILES_DIR"=>
    6495:  "D:/_bazel/execroot/selenium/bazel-out/x64_windows-fastbuild/bin/rb/spec/integration/selenium/webdriver/error-edge-remote.cmd.runfiles",
    6496:  "RUNFILES_MANIFEST_FILE"=>
    6497:  "D:/_bazel/execroot/selenium/bazel-out/x64_windows-fastbuild/bin/rb/spec/integration/selenium/webdriver/error-edge-remote.cmd.runfiles_manifest",
    6498:  "RUNFILES_MANIFEST_ONLY"=>"1",
    6499:  "RUNFILE_PATH"=>"bundle/vendor/bundle",
    6500:  "RUN_UNDER_RUNFILES"=>"1",
    6501:  "SE_AVOID_STATS"=>"true",
    6502:  "SYSTEMDRIVE"=>"C:",
    6503:  "SYSTEMROOT"=>"C:\\Windows",
    6504:  "TEMP"=>"C:\\Users\\RUNNER~1\\AppData\\Local\\Temp",
    6505:  "TEST_BINARY"=>"rb/spec/integration/selenium/webdriver/error-edge-remote.cmd",
    6506:  "TEST_INFRASTRUCTURE_FAILURE_FILE"=>
    6507:  "D:/_bazel/execroot/selenium/bazel-out/x64_windows-fastbuild/testlogs/rb/spec/integration/selenium/webdriver/error-edge-remote/test.infrastructure_failure",
    6508:  "TEST_LOGSPLITTER_OUTPUT_FILE"=>
    6509:  "D:/_bazel/execroot/selenium/bazel-out/x64_windows-fastbuild/testlogs/rb/spec/integration/selenium/webdriver/error-edge-remote/test.raw_splitlogs/test.splitlogs",
    6510:  "TEST_PREMATURE_EXIT_FILE"=>
    6511:  "D:/_bazel/execroot/selenium/bazel-out/x64_windows-fastbuild/testlogs/rb/spec/integration/selenium/webdriver/error-edge-remote/test.exited_prematurely",
    6512:  "TEST_SIZE"=>"large",
    6513:  "TEST_SRCDIR"=>
    6514:  "D:/_bazel/execroot/selenium/bazel-out/x64_windows-fastbuild/bin/rb/spec/integration/selenium/webdriver/error-edge-remote.cmd.runfiles",
    6515:  "TEST_TARGET"=>"//rb/spec/integration/selenium/webdriver:error-edge-remote",
    6516:  "TEST_TIMEOUT"=>"1800",
    6517:  "TEST_TMPDIR"=>
    6518:  "D:/_bazel/execroot/selenium/_tmp/ea2f106f227ef93e0aef159690b82c6f",
    6519:  "TEST_UNDECLARED_OUTPUTS_ANNOTATIONS_DIR"=>
    6520:  "D:/_bazel/execroot/selenium/bazel-out/x64_windows-fastbuild/testlogs/rb/spec/integration/selenium/webdriver/error-edge-remote/test.outputs_manifest",
    6521:  "TEST_UNDECLARED_OUTPUTS_DIR"=>
    6522:  "D:/_bazel/execroot/selenium/bazel-out/x64_windows-fastbuild/testlogs/rb/spec/integration/selenium/webdriver/error-edge-remote/test.outputs",
    6523:  "TEST_UNUSED_RUNFILES_LOG_FILE"=>
    6524:  "D:/_bazel/execroot/selenium/bazel-out/x64_windows-fastbuild/testlogs/rb/spec/integration/selenium/webdriver/error-edge-remote/test.unused_runfiles_log",
    6525:  "TEST_WARNINGS_OUTPUT_FILE"=>
    6526:  "D:/_bazel/execroot/selenium/bazel-out/x64_windows-fastbuild/testlogs/rb/spec/integration/selenium/webdriver/error-edge-remote/test.warnings",
    6527:  "TEST_WORKSPACE"=>"selenium",
    6528:  "TMP"=>"C:\\Users\\RUNNER~1\\AppData\\Local\\Temp",
    6529:  "TZ"=>"UTC",
    6530:  "USER"=>"runneradmin",
    6531:  "WD_REMOTE_BROWSER"=>"edge",
    6532:  "WD_SPEC_DRIVER"=>"remote",
    6533:  "XML_OUTPUT_FILE"=>
    6534:  "D:/_bazel/execroot/selenium/bazel-out/x64_windows-fastbuild/testlogs/rb/spec/integration/selenium/webdriver/error-edge-remote/test.xml"}
    6535:  An error occurred in a `before(:suite)` hook.
    6536:  Failure/Error: @pid = Process.spawn(*@command, options)
    6537:  Errno::EACCES:
    6538:  Permission denied - java
    6539:  # ./rb/lib/selenium/webdriver/common/child_process.rb:57:in `spawn'
    6540:  # ./rb/lib/selenium/webdriver/common/child_process.rb:57:in `start'
    6541:  # ./rb/lib/selenium/server.rb:204:in `start'
    6542:  # //?/D:/a/selenium/selenium/rb/spec/integration/selenium/webdriver/spec_helper.rb:40:in `block (2 levels) in <top (required)>'
    6543:  Finished in 0.05835 seconds (files took 0.70094 seconds to load)
    6544:  0 examples, 0 failures, 1 error occurred outside of examples
    6545:  ================================================================================
    6546:  ==================== Test output for //rb/spec/integration/selenium/webdriver:error-edge-remote:
    6547:  2024-04-03 18:56:58 INFO Selenium Server Location: D:/_bazel/execroot/selenium/bazel-out/x64_windows-fastbuild/bin/rb/spec/integration/selenium/webdriver/error-edge-remote.cmd.runfiles/selenium/java/src/org/openqa/selenium/grid/selenium_server_deploy.jar
    ...
    
    6573:  "EXPERIMENTAL_SPLIT_XML_GENERATION"=>"1",
    6574:  "GEM_HOME"=>
    6575:  "D:/_bazel/execroot/selenium/bazel-out/x64_windows-fastbuild/bin/external/bundle/vendor/bundle/ruby/3.0.0",
    6576:  "GEM_PATH"=>"",
    6577:  "GITHUB_ACTIONS"=>"true",
    6578:  "GTEST_TMP_DIR"=>
    6579:  "D:/_bazel/execroot/selenium/_tmp/ea2f106f227ef93e0aef159690b82c6f",
    6580:  "GUNIT_OUTPUT"=>
    6581:  "xml:D:/_bazel/execroot/selenium/bazel-out/x64_windows-fastbuild/testlogs/rb/spec/integration/selenium/webdriver/error-edge-remote/test.xml",
    6582:  "HOME"=>"D:/_bazel/execroot/selenium/_tmp/ea2f106f227ef93e0aef159690b82c6f",
    6583:  "JAVA_RUNFILES"=>
    6584:  "D:/_bazel/execroot/selenium/bazel-out/x64_windows-fastbuild/bin/rb/spec/integration/selenium/webdriver/error-edge-remote.cmd.runfiles",
    6585:  "JRUBY_OPTS"=>"--dev",
    6586:  "LOCALAPPDATA"=>"C:\\Users\\runneradmin\\AppData\\Local",
    6587:  "MF"=>
    6588:  "D:\\_bazel\\execroot\\selenium\\bazel-out\\x64_windows-fastbuild\\bin\\rb\\spec\\integration\\selenium\\webdriver\\error-edge-remote.cmd.runfiles_manifest",
    6589:  "PATH"=>
    6590:  "D:/_bazel/execroot/selenium/bazel-out/x64_windows-fastbuild/bin/external/bundle/vendor/bundle/ruby/3.0.0/bin;D:\\_bazel\\external\\ruby\\dist\\bin;.;C:\\Program Files\\Git\\bin;C:\\Program Files\\Git\\usr\\bin;C:\\Windows;C:\\Windows\\System32;C:\\Windows\\System32\\WindowsPowerShell\\v1.0",
    6591:  "PATHEXT"=>".COM;.EXE;.BAT;.CMD;.VBS;.JS;.WS;.MSC",
    6592:  "PROGRAMFILES"=>"C:\\Program Files",
    6593:  "PROGRAMFILES(X86)"=>"C:\\Program Files (x86)",
    6594:  "PROMPT"=>"$P$G",
    6595:  "PYTHON_RUNFILES"=>
    6596:  "D:/_bazel/execroot/selenium/bazel-out/x64_windows-fastbuild/bin/rb/spec/integration/selenium/webdriver/error-edge-remote.cmd.runfiles",
    6597:  "RUBY"=>"D:/_bazel/external/ruby/dist/bin/ruby.exe",
    6598:  "RUBYLIB"=>"",
    6599:  "RUBYOPT"=>
    6600:  "-rD:/_bazel/external/ruby/dist/lib/ruby/3.0.0/bundler/setup -Irb/lib -w",
    6601:  "RUNFILES_DIR"=>
    6602:  "D:/_bazel/execroot/selenium/bazel-out/x64_windows-fastbuild/bin/rb/spec/integration/selenium/webdriver/error-edge-remote.cmd.runfiles",
    6603:  "RUNFILES_MANIFEST_FILE"=>
    6604:  "D:/_bazel/execroot/selenium/bazel-out/x64_windows-fastbuild/bin/rb/spec/integration/selenium/webdriver/error-edge-remote.cmd.runfiles_manifest",
    6605:  "RUNFILES_MANIFEST_ONLY"=>"1",
    6606:  "RUNFILE_PATH"=>"bundle/vendor/bundle",
    6607:  "RUN_UNDER_RUNFILES"=>"1",
    6608:  "SE_AVOID_STATS"=>"true",
    6609:  "SYSTEMDRIVE"=>"C:",
    6610:  "SYSTEMROOT"=>"C:\\Windows",
    6611:  "TEMP"=>"C:\\Users\\RUNNER~1\\AppData\\Local\\Temp",
    6612:  "TEST_BINARY"=>"rb/spec/integration/selenium/webdriver/error-edge-remote.cmd",
    6613:  "TEST_INFRASTRUCTURE_FAILURE_FILE"=>
    6614:  "D:/_bazel/execroot/selenium/bazel-out/x64_windows-fastbuild/testlogs/rb/spec/integration/selenium/webdriver/error-edge-remote/test.infrastructure_failure",
    6615:  "TEST_LOGSPLITTER_OUTPUT_FILE"=>
    6616:  "D:/_bazel/execroot/selenium/bazel-out/x64_windows-fastbuild/testlogs/rb/spec/integration/selenium/webdriver/error-edge-remote/test.raw_splitlogs/test.splitlogs",
    6617:  "TEST_PREMATURE_EXIT_FILE"=>
    6618:  "D:/_bazel/execroot/selenium/bazel-out/x64_windows-fastbuild/testlogs/rb/spec/integration/selenium/webdriver/error-edge-remote/test.exited_prematurely",
    6619:  "TEST_SIZE"=>"large",
    6620:  "TEST_SRCDIR"=>
    6621:  "D:/_bazel/execroot/selenium/bazel-out/x64_windows-fastbuild/bin/rb/spec/integration/selenium/webdriver/error-edge-remote.cmd.runfiles",
    6622:  "TEST_TARGET"=>"//rb/spec/integration/selenium/webdriver:error-edge-remote",
    6623:  "TEST_TIMEOUT"=>"1800",
    6624:  "TEST_TMPDIR"=>
    6625:  "D:/_bazel/execroot/selenium/_tmp/ea2f106f227ef93e0aef159690b82c6f",
    6626:  "TEST_UNDECLARED_OUTPUTS_ANNOTATIONS_DIR"=>
    6627:  "D:/_bazel/execroot/selenium/bazel-out/x64_windows-fastbuild/testlogs/rb/spec/integration/selenium/webdriver/error-edge-remote/test.outputs_manifest",
    6628:  "TEST_UNDECLARED_OUTPUTS_DIR"=>
    6629:  "D:/_bazel/execroot/selenium/bazel-out/x64_windows-fastbuild/testlogs/rb/spec/integration/selenium/webdriver/error-edge-remote/test.outputs",
    6630:  "TEST_UNUSED_RUNFILES_LOG_FILE"=>
    6631:  "D:/_bazel/execroot/selenium/bazel-out/x64_windows-fastbuild/testlogs/rb/spec/integration/selenium/webdriver/error-edge-remote/test.unused_runfiles_log",
    6632:  "TEST_WARNINGS_OUTPUT_FILE"=>
    6633:  "D:/_bazel/execroot/selenium/bazel-out/x64_windows-fastbuild/testlogs/rb/spec/integration/selenium/webdriver/error-edge-remote/test.warnings",
    6634:  "TEST_WORKSPACE"=>"selenium",
    6635:  "TMP"=>"C:\\Users\\RUNNER~1\\AppData\\Local\\Temp",
    6636:  "TZ"=>"UTC",
    6637:  "USER"=>"runneradmin",
    6638:  "WD_REMOTE_BROWSER"=>"edge",
    6639:  "WD_SPEC_DRIVER"=>"remote",
    6640:  "XML_OUTPUT_FILE"=>
    6641:  "D:/_bazel/execroot/selenium/bazel-out/x64_windows-fastbuild/testlogs/rb/spec/integration/selenium/webdriver/error-edge-remote/test.xml"}
    6642:  An error occurred in a `before(:suite)` hook.
    6643:  Failure/Error: @pid = Process.spawn(*@command, options)
    6644:  Errno::EACCES:
    6645:  Permission denied - java
    6646:  # ./rb/lib/selenium/webdriver/common/child_process.rb:57:in `spawn'
    6647:  # ./rb/lib/selenium/webdriver/common/child_process.rb:57:in `start'
    6648:  # ./rb/lib/selenium/server.rb:204:in `start'
    6649:  # //?/D:/a/selenium/selenium/rb/spec/integration/selenium/webdriver/spec_helper.rb:40:in `block (2 levels) in <top (required)>'
    6650:  Finished in 0.14457 seconds (files took 0.81575 seconds to load)
    6651:  0 examples, 0 failures, 1 error occurred outside of examples
    6652:  ================================================================================
    6653:  �[32m[2,903 / 2,910]�[0m 16 / 27 tests, �[31m�[1m16 failed�[0m;�[0m Testing //rb/spec/integration/selenium/webdriver:storage-edge-remote; 8s disk-cache ... (4 actions, 1 running)
    6654:  �[32m[2,903 / 2,910]�[0m 16 / 27 tests, �[31m�[1m16 failed�[0m;�[0m [Sched] Testing //rb/spec/integration/selenium/webdriver/remote:element-edge-remote; 8s ... (4 actions, 1 running)
    6655:  �[32m[2,903 / 2,910]�[0m 16 / 27 tests, �[31m�[1m16 failed�[0m;�[0m Testing //rb/spec/integration/selenium/webdriver:window-edge-remote; 7s local, disk-cache ... (4 actions, 2 running)
    6656:  �[31m�[1mFAIL: �[0m//rb/spec/integration/selenium/webdriver:window-edge-remote (see D:/_bazel/execroot/selenium/bazel-out/x64_windows-fastbuild/testlogs/rb/spec/integration/selenium/webdriver/window-edge-remote/test_attempts/attempt_1.log)
    6657:  �[32m[2,903 / 2,910]�[0m 16 / 27 tests, �[31m�[1m16 failed�[0m;�[0m Testing //rb/spec/integration/selenium/webdriver:window-edge-remote; 8s local, disk-cache ... (4 actions, 2 running)
    6658:  �[32m[2,903 / 2,910]�[0m 16 / 27 tests, �[31m�[1m16 failed�[0m;�[0m Testing //rb/spec/integration/selenium/webdriver:window-edge-remote; 11s local, disk-cache ... (4 actions, 2 running)
    6659:  �[32m[2,903 / 2,910]�[0m 16 / 27 tests, �[31m�[1m16 failed�[0m;�[0m Testing //rb/spec/integration/selenium/webdriver:window-edge-remote; 13s local, disk-cache ... (4 actions, 2 running)
    6660:  �[32m[2,903 / 2,910]�[0m 16 / 27 tests, �[31m�[1m16 failed�[0m;�[0m Testing //rb/spec/integration/selenium/webdriver:window-edge-remote; 14s local, disk-cache ... (4 actions, 3 running)
    6661:  �[31m�[1mFAIL: �[0m//rb/spec/integration/selenium/webdriver/remote:element-edge-remote (see D:/_bazel/execroot/selenium/bazel-out/x64_windows-fastbuild/testlogs/rb/spec/integration/selenium/webdriver/remote/element-edge-remote/test_attempts/attempt_1.log)
    6662:  �[32m[2,903 / 2,910]�[0m 16 / 27 tests, �[31m�[1m16 failed�[0m;�[0m Testing //rb/spec/integration/selenium/webdriver:window-edge-remote; 15s local, disk-cache ... (4 actions, 3 running)
    6663:  �[32m[2,903 / 2,910]�[0m 16 / 27 tests, �[31m�[1m16 failed�[0m;�[0m Testing //rb/spec/integration/selenium/webdriver:window-edge-remote; 21s local, disk-cache ... (4 actions, 3 running)
    6664:  �[31m�[1mFAIL: �[0m//rb/spec/integration/selenium/webdriver:storage-edge-remote (see D:/_bazel/execroot/selenium/bazel-out/x64_windows-fastbuild/testlogs/rb/spec/integration/selenium/webdriver/storage-edge-remote/test_attempts/attempt_1.log)
    6665:  �[32m[2,903 / 2,910]�[0m 16 / 27 tests, �[31m�[1m16 failed�[0m;�[0m Testing //rb/spec/integration/selenium/webdriver:window-edge-remote; 22s local, disk-cache ... (4 actions, 3 running)
    6666:  �[32m[2,903 / 2,910]�[0m 16 / 27 tests, �[31m�[1m16 failed�[0m;�[0m Testing //rb/spec/integration/selenium/webdriver:window-edge-remote; 28s local, disk-cache ... (4 actions running)
    6667:  �[31m�[1mFAIL: �[0m//rb/spec/integration/selenium/webdriver:window-edge-remote (see D:/_bazel/execroot/selenium/bazel-out/x64_windows-fastbuild/testlogs/rb/spec/integration/selenium/webdriver/window-edge-remote/test_attempts/attempt_2.log)
    6668:  �[32m[2,903 / 2,910]�[0m 16 / 27 tests, �[31m�[1m16 failed�[0m;�[0m Testing //rb/spec/integration/selenium/webdriver:window-edge-remote; 29s local, disk-cache ... (4 actions running)
    6669:  �[32m[2,903 / 2,910]�[0m 16 / 27 tests, �[31m�[1m16 failed�[0m;�[0m Testing //rb/spec/integration/selenium/webdriver:window-edge-remote; 35s local, disk-cache ... (4 actions running)
    6670:  �[31m�[1mFAIL: �[0m//rb/spec/integration/selenium/webdriver:shadow_root-edge-remote (see D:/_bazel/execroot/selenium/bazel-out/x64_windows-fastbuild/testlogs/rb/spec/integration/selenium/webdriver/shadow_root-edge-remote/test_attempts/attempt_1.log)
    6671:  �[32m[2,903 / 2,910]�[0m 16 / 27 tests, �[31m�[1m16 failed�[0m;�[0m Testing //rb/spec/integration/selenium/webdriver:window-edge-remote; 36s local, disk-cache ... (4 actions running)
    6672:  �[32m[2,903 / 2,910]�[0m 16 / 27 tests, �[31m�[1m16 failed�[0m;�[0m Testing //rb/spec/integration/selenium/webdriver:window-edge-remote; 41s local, disk-cache ... (4 actions running)
    6673:  �[31m�[1mFAIL: �[0m//rb/spec/integration/selenium/webdriver/remote:element-edge-remote (see D:/_bazel/execroot/selenium/bazel-out/x64_windows-fastbuild/testlogs/rb/spec/integration/selenium/webdriver/remote/element-edge-remote/test_attempts/attempt_2.log)
    6674:  �[32m[2,903 / 2,910]�[0m 16 / 27 tests, �[31m�[1m16 failed�[0m;�[0m Testing //rb/spec/integration/selenium/webdriver:window-edge-remote; 43s local, disk-cache ... (4 actions running)
    6675:  �[32m[2,903 / 2,910]�[0m 16 / 27 tests, �[31m�[1m16 failed�[0m;�[0m Testing //rb/spec/integration/selenium/webdriver:window-edge-remote; 48s local, disk-cache ... (4 actions running)
    6676:  �[31m�[1mFAIL: �[0m//rb/spec/integration/selenium/webdriver:storage-edge-remote (see D:/_bazel/execroot/selenium/bazel-out/x64_windows-fastbuild/testlogs/rb/spec/integration/selenium/webdriver/storage-edge-remote/test_attempts/attempt_2.log)
    6677:  �[32m[2,903 / 2,910]�[0m 16 / 27 tests, �[31m�[1m16 failed�[0m;�[0m Testing //rb/spec/integration/selenium/webdriver:window-edge-remote; 49s local, disk-cache ... (4 actions running)
    6678:  �[32m[2,903 / 2,910]�[0m 16 / 27 tests, �[31m�[1m16 failed�[0m;�[0m Testing //rb/spec/integration/selenium/webdriver:window-edge-remote; 55s local, disk-cache ... (4 actions running)
    6679:  �[31m�[1mFAIL: �[0m//rb/spec/integration/selenium/webdriver:window-edge-remote (see D:/_bazel/execroot/selenium/bazel-out/x64_windows-fastbuild/testlogs/rb/spec/integration/selenium/webdriver/window-edge-remote/test.log)
    6680:  �[31m�[1mFAILED: �[0m//rb/spec/integration/selenium/webdriver:window-edge-remote (Summary)
    ...
    
    6745:  "RUNFILE_PATH"=>"bundle/vendor/bundle",
    6746:  "RUN_UNDER_RUNFILES"=>"1",
    6747:  "SE_AVOID_STATS"=>"true",
    6748:  "SYSTEMDRIVE"=>"C:",
    6749:  "SYSTEMROOT"=>"C:\\Windows",
    6750:  "TEMP"=>"C:\\Users\\RUNNER~1\\AppData\\Local\\Temp",
    6751:  "TEST_BINARY"=>
    6752:  "rb/spec/integration/selenium/webdriver/window-edge-remote.cmd",
    6753:  "TEST_INFRASTRUCTURE_FAILURE_FILE"=>
    6754:  "D:/_bazel/execroot/selenium/bazel-out/x64_windows-fastbuild/testlogs/rb/spec/integration/selenium/webdriver/window-edge-remote/test.infrastructure_failure",
    ...
    
    6774:  "TEST_WORKSPACE"=>"selenium",
    6775:  "TMP"=>"C:\\Users\\RUNNER~1\\AppData\\Local\\Temp",
    6776:  "TZ"=>"UTC",
    6777:  "USER"=>"runneradmin",
    6778:  "WD_REMOTE_BROWSER"=>"edge",
    6779:  "WD_SPEC_DRIVER"=>"remote",
    6780:  "XML_OUTPUT_FILE"=>
    6781:  "D:/_bazel/execroot/selenium/bazel-out/x64_windows-fastbuild/testlogs/rb/spec/integration/selenium/webdriver/window-edge-remote/test.xml"}
    6782:  An error occurred in a `before(:suite)` hook.
    6783:  Failure/Error: @pid = Process.spawn(*@command, options)
    6784:  Errno::EACCES:
    6785:  Permission denied - java
    6786:  # ./rb/lib/selenium/webdriver/common/child_process.rb:57:in `spawn'
    6787:  # ./rb/lib/selenium/webdriver/common/child_process.rb:57:in `start'
    6788:  # ./rb/lib/selenium/server.rb:204:in `start'
    6789:  # //?/D:/a/selenium/selenium/rb/spec/integration/selenium/webdriver/spec_helper.rb:40:in `block (2 levels) in <top (required)>'
    6790:  Finished in 0.08382 seconds (files took 0.94117 seconds to load)
    6791:  0 examples, 0 failures, 1 error occurred outside of examples
    ...
    
    6853:  "RUNFILE_PATH"=>"bundle/vendor/bundle",
    6854:  "RUN_UNDER_RUNFILES"=>"1",
    6855:  "SE_AVOID_STATS"=>"true",
    6856:  "SYSTEMDRIVE"=>"C:",
    6857:  "SYSTEMROOT"=>"C:\\Windows",
    6858:  "TEMP"=>"C:\\Users\\RUNNER~1\\AppData\\Local\\Temp",
    6859:  "TEST_BINARY"=>
    6860:  "rb/spec/integration/selenium/webdriver/window-edge-remote.cmd",
    6861:  "TEST_INFRASTRUCTURE_FAILURE_FILE"=>
    6862:  "D:/_bazel/execroot/selenium/bazel-out/x64_windows-fastbuild/testlogs/rb/spec/integration/selenium/webdriver/window-edge-remote/test.infrastructure_failure",
    ...
    
    6882:  "TEST_WORKSPACE"=>"selenium",
    6883:  "TMP"=>"C:\\Users\\RUNNER~1\\AppData\\Local\\Temp",
    6884:  "TZ"=>"UTC",
    6885:  "USER"=>"runneradmin",
    6886:  "WD_REMOTE_BROWSER"=>"edge",
    6887:  "WD_SPEC_DRIVER"=>"remote",
    6888:  "XML_OUTPUT_FILE"=>
    6889:  "D:/_bazel/execroot/selenium/bazel-out/x64_windows-fastbuild/testlogs/rb/spec/integration/selenium/webdriver/window-edge-remote/test.xml"}
    6890:  An error occurred in a `before(:suite)` hook.
    6891:  Failure/Error: @pid = Process.spawn(*@command, options)
    6892:  Errno::EACCES:
    6893:  Permission denied - java
    6894:  # ./rb/lib/selenium/webdriver/common/child_process.rb:57:in `spawn'
    6895:  # ./rb/lib/selenium/webdriver/common/child_process.rb:57:in `start'
    6896:  # ./rb/lib/selenium/server.rb:204:in `start'
    6897:  # //?/D:/a/selenium/selenium/rb/spec/integration/selenium/webdriver/spec_helper.rb:40:in `block (2 levels) in <top (required)>'
    6898:  Finished in 0.06569 seconds (files took 0.70575 seconds to load)
    6899:  0 examples, 0 failures, 1 error occurred outside of examples
    ...
    
    6961:  "RUNFILE_PATH"=>"bundle/vendor/bundle",
    6962:  "RUN_UNDER_RUNFILES"=>"1",
    6963:  "SE_AVOID_STATS"=>"true",
    6964:  "SYSTEMDRIVE"=>"C:",
    6965:  "SYSTEMROOT"=>"C:\\Windows",
    6966:  "TEMP"=>"C:\\Users\\RUNNER~1\\AppData\\Local\\Temp",
    6967:  "TEST_BINARY"=>
    6968:  "rb/spec/integration/selenium/webdriver/window-edge-remote.cmd",
    6969:  "TEST_INFRASTRUCTURE_FAILURE_FILE"=>
    6970:  "D:/_bazel/execroot/selenium/bazel-out/x64_windows-fastbuild/testlogs/rb/spec/integration/selenium/webdriver/window-edge-remote/test.infrastructure_failure",
    ...
    
    6990:  "TEST_WORKSPACE"=>"selenium",
    6991:  "TMP"=>"C:\\Users\\RUNNER~1\\AppData\\Local\\Temp",
    6992:  "TZ"=>"UTC",
    6993:  "USER"=>"runneradmin",
    6994:  "WD_REMOTE_BROWSER"=>"edge",
    6995:  "WD_SPEC_DRIVER"=>"remote",
    6996:  "XML_OUTPUT_FILE"=>
    6997:  "D:/_bazel/execroot/selenium/bazel-out/x64_windows-fastbuild/testlogs/rb/spec/integration/selenium/webdriver/window-edge-remote/test.xml"}
    6998:  An error occurred in a `before(:suite)` hook.
    6999:  Failure/Error: @pid = Process.spawn(*@command, options)
    7000:  Errno::EACCES:
    7001:  Permission denied - java
    7002:  # ./rb/lib/selenium/webdriver/common/child_process.rb:57:in `spawn'
    7003:  # ./rb/lib/selenium/webdriver/common/child_process.rb:57:in `start'
    7004:  # ./rb/lib/selenium/server.rb:204:in `start'
    7005:  # //?/D:/a/selenium/selenium/rb/spec/integration/selenium/webdriver/spec_helper.rb:40:in `block (2 levels) in <top (required)>'
    7006:  Finished in 0.05585 seconds (files took 0.62429 seconds to load)
    7007:  0 examples, 0 failures, 1 error occurred outside of examples
    7008:  ================================================================================
    7009:  �[32m[2,904 / 2,910]�[0m 17 / 27 tests, �[31m�[1m17 failed�[0m;�[0m Testing //rb/spec/integration/selenium/webdriver/remote:element-edge-remote; 49s local, disk-cache ... (4 actions, 3 running)
    7010:  �[32m[2,904 / 2,910]�[0m 17 / 27 tests, �[31m�[1m17 failed�[0m;�[0m Testing //rb/spec/integration/selenium/webdriver/remote:element-edge-remote; 54s local, disk-cache ... (4 actions, 3 running)
    7011:  �[31m�[1mFAIL: �[0m//rb/spec/integration/selenium/webdriver:shadow_root-edge-remote (see D:/_bazel/execroot/selenium/bazel-out/x64_windows-fastbuild/testlogs/rb/spec/integration/selenium/webdriver/shadow_root-edge-remote/test_attempts/attempt_2.log)
    7012:  �[32m[2,904 / 2,910]�[0m 17 / 27 tests, �[31m�[1m17 failed�[0m;�[0m Testing //rb/spec/integration/selenium/webdriver/remote:element-edge-remote; 56s local, disk-cache ... (4 actions, 3 running)
    7013:  �[32m[2,904 / 2,910]�[0m 17 / 27 tests, �[31m�[1m17 failed�[0m;�[0m Testing //rb/spec/integration/selenium/webdriver/remote:element-edge-remote; 58s local, disk-cache ... (4 actions, 3 running)
    7014:  �[32m[2,904 / 2,910]�[0m 17 / 27 tests, �[31m�[1m17 failed�[0m;�[0m Testing //rb/spec/integration/selenium/webdriver/remote:element-edge-remote; 60s local, disk-cache ... (4 actions, 3 running)
    7015:  �[32m[2,904 / 2,910]�[0m 17 / 27 tests, �[31m�[1m17 failed�[0m;�[0m Testing //rb/spec/integration/selenium/webdriver/remote:element-edge-remote; 61s local, disk-cache ... (4 actions, 3 running)
    7016:  �[31m�[1mFAIL: �[0m//rb/spec/integration/selenium/webdriver/remote:element-edge-remote (see D:/_bazel/execroot/selenium/bazel-out/x64_windows-fastbuild/testlogs/rb/spec/integration/selenium/webdriver/remote/element-edge-remote/test.log)
    7017:  �[31m�[1mFAILED: �[0m//rb/spec/integration/selenium/webdriver/remote:element-edge-remote (Summary)
    ...
    
    7082:  "RUNFILE_PATH"=>"bundle/vendor/bundle",
    7083:  "RUN_UNDER_RUNFILES"=>"1",
    7084:  "SE_AVOID_STATS"=>"true",
    7085:  "SYSTEMDRIVE"=>"C:",
    7086:  "SYSTEMROOT"=>"C:\\Windows",
    7087:  "TEMP"=>"C:\\Users\\RUNNER~1\\AppData\\Local\\Temp",
    7088:  "TEST_BINARY"=>
    7089:  "rb/spec/integration/selenium/webdriver/remote/element-edge-remote.cmd",
    7090:  "TEST_INFRASTRUCTURE_FAILURE_FILE"=>
    7091:  "D:/_bazel/execroot/selenium/bazel-out/x64_windows-fastbuild/testlogs/rb/spec/integration/selenium/webdriver/remote/element-edge-remote/test.infrastructure_failure",
    ...
    
    7112:  "TEST_WORKSPACE"=>"selenium",
    7113:  "TMP"=>"C:\\Users\\RUNNER~1\\AppData\\Local\\Temp",
    7114:  "TZ"=>"UTC",
    7115:  "USER"=>"runneradmin",
    7116:  "WD_REMOTE_BROWSER"=>"edge",
    7117:  "WD_SPEC_DRIVER"=>"remote",
    7118:  "XML_OUTPUT_FILE"=>
    7119:  "D:/_bazel/execroot/selenium/bazel-out/x64_windows-fastbuild/testlogs/rb/spec/integration/selenium/webdriver/remote/element-edge-remote/test.xml"}
    7120:  An error occurred in a `before(:suite)` hook.
    7121:  Failure/Error: @pid = Process.spawn(*@command, options)
    7122:  Errno::EACCES:
    7123:  Permission denied - java
    7124:  # ./rb/lib/selenium/webdriver/common/child_process.rb:57:in `spawn'
    7125:  # ./rb/lib/selenium/webdriver/common/child_process.rb:57:in `start'
    7126:  # ./rb/lib/selenium/server.rb:204:in `start'
    7127:  # //?/D:/a/selenium/selenium/rb/spec/integration/selenium/webdriver/spec_helper.rb:40:in `block (2 levels) in <top (required)>'
    7128:  Finished in 0.06194 seconds (files took 0.63721 seconds to load)
    7129:  0 examples, 0 failures, 1 error occurred outside of examples
    ...
    
    7191:  "RUNFILE_PATH"=>"bundle/vendor/bundle",
    7192:  "RUN_UNDER_RUNFILES"=>"1",
    7193:  "SE_AVOID_STATS"=>"true",
    7194:  "SYSTEMDRIVE"=>"C:",
    7195:  "SYSTEMROOT"=>"C:\\Windows",
    7196:  "TEMP"=>"C:\\Users\\RUNNER~1\\AppData\\Local\\Temp",
    7197:  "TEST_BINARY"=>
    7198:  "rb/spec/integration/selenium/webdriver/remote/element-edge-remote.cmd",
    7199:  "TEST_INFRASTRUCTURE_FAILURE_FILE"=>
    7200:  "D:/_bazel/execroot/selenium/bazel-out/x64_windows-fastbuild/testlogs/rb/spec/integration/selenium/webdriver/remote/element-edge-remote/test.infrastructure_failure",
    ...
    
    7221:  "TEST_WORKSPACE"=>"selenium",
    7222:  "TMP"=>"C:\\Users\\RUNNER~1\\AppData\\Local\\Temp",
    7223:  "TZ"=>"UTC",
    7224:  "USER"=>"runneradmin",
    7225:  "WD_REMOTE_BROWSER"=>"edge",
    7226:  "WD_SPEC_DRIVER"=>"remote",
    7227:  "XML_OUTPUT_FILE"=>
    7228:  "D:/_bazel/execroot/selenium/bazel-out/x64_windows-fastbuild/testlogs/rb/spec/integration/selenium/webdriver/remote/element-edge-remote/test.xml"}
    7229:  An error occurred in a `before(:suite)` hook.
    7230:  Failure/Error: @pid = Process.spawn(*@command, options)
    7231:  Errno::EACCES:
    7232:  Permission denied - java
    7233:  # ./rb/lib/selenium/webdriver/common/child_process.rb:57:in `spawn'
    7234:  # ./rb/lib/selenium/webdriver/common/child_process.rb:57:in `start'
    7235:  # ./rb/lib/selenium/server.rb:204:in `start'
    7236:  # //?/D:/a/selenium/selenium/rb/spec/integration/selenium/webdriver/spec_helper.rb:40:in `block (2 levels) in <top (required)>'
    7237:  Finished in 0.05398 seconds (files took 0.59134 seconds to load)
    7238:  0 examples, 0 failures, 1 error occurred outside of examples
    ...
    
    7300:  "RUNFILE_PATH"=>"bundle/vendor/bundle",
    7301:  "RUN_UNDER_RUNFILES"=>"1",
    7302:  "SE_AVOID_STATS"=>"true",
    7303:  "SYSTEMDRIVE"=>"C:",
    7304:  "SYSTEMROOT"=>"C:\\Windows",
    7305:  "TEMP"=>"C:\\Users\\RUNNER~1\\AppData\\Local\\Temp",
    7306:  "TEST_BINARY"=>
    7307:  "rb/spec/integration/selenium/webdriver/remote/element-edge-remote.cmd",
    7308:  "TEST_INFRASTRUCTURE_FAILURE_FILE"=>
    7309:  "D:/_bazel/execroot/selenium/bazel-out/x64_windows-fastbuild/testlogs/rb/spec/integration/selenium/webdriver/remote/element-edge-remote/test.infrastructure_failure",
    ...
    
    7330:  "TEST_WORKSPACE"=>"selenium",
    7331:  "TMP"=>"C:\\Users\\RUNNER~1\\AppData\\Local\\Temp",
    7332:  "TZ"=>"UTC",
    7333:  "USER"=>"runneradmin",
    7334:  "WD_REMOTE_BROWSER"=>"edge",
    7335:  "WD_SPEC_DRIVER"=>"remote",
    7336:  "XML_OUTPUT_FILE"=>
    7337:  "D:/_bazel/execroot/selenium/bazel-out/x64_windows-fastbuild/testlogs/rb/spec/integration/selenium/webdriver/remote/element-edge-remote/test.xml"}
    7338:  An error occurred in a `before(:suite)` hook.
    7339:  Failure/Error: @pid = Process.spawn(*@command, options)
    7340:  Errno::EACCES:
    7341:  Permission denied - java
    7342:  # ./rb/lib/selenium/webdriver/common/child_process.rb:57:in `spawn'
    7343:  # ./rb/lib/selenium/webdriver/common/child_process.rb:57:in `start'
    7344:  # ./rb/lib/selenium/server.rb:204:in `start'
    7345:  # //?/D:/a/selenium/selenium/rb/spec/integration/selenium/webdriver/spec_helper.rb:40:in `block (2 levels) in <top (required)>'
    7346:  Finished in 0.06365 seconds (files took 0.66917 seconds to load)
    7347:  0 examples, 0 failures, 1 error occurred outside of examples
    7348:  ================================================================================
    7349:  �[32m[2,905 / 2,910]�[0m 18 / 27 tests, �[31m�[1m18 failed�[0m;�[0m Testing //rb/spec/integration/selenium/webdriver:storage-edge-remote; 56s local, disk-cache ... (4 actions, 2 running)
    7350:  �[32m[2,905 / 2,910]�[0m 18 / 27 tests, �[31m�[1m18 failed�[0m;�[0m Testing //rb/spec/integration/selenium/webdriver:storage-edge-remote; 61s local, disk-cache ... (4 actions, 2 running)
    7351:  �[31m�[1mFAIL: �[0m//rb/spec/integration/selenium/webdriver:storage-edge-remote (see D:/_bazel/execroot/selenium/bazel-out/x64_windows-fastbuild/testlogs/rb/spec/integration/selenium/webdriver/storage-edge-remote/test.log)
    7352:  �[31m�[1mFAILED: �[0m//rb/spec/integration/selenium/webdriver:storage-edge-remote (Summary)
    ...
    
    7417:  "RUNFILE_PATH"=>"bundle/vendor/bundle",
    7418:  "RUN_UNDER_RUNFILES"=>"1",
    7419:  "SE_AVOID_STATS"=>"true",
    7420:  "SYSTEMDRIVE"=>"C:",
    7421:  "SYSTEMROOT"=>"C:\\Windows",
    7422:  "TEMP"=>"C:\\Users\\RUNNER~1\\AppData\\Local\\Temp",
    7423:  "TEST_BINARY"=>
    7424:  "rb/spec/integration/selenium/webdriver/storage-edge-remote.cmd",
    7425:  "TEST_INFRASTRUCTURE_FAILURE_FILE"=>
    7426:  "D:/_bazel/execroot/selenium/bazel-out/x64_windows-fastbuild/testlogs/rb/spec/integration/selenium/webdriver/storage-edge-remote/test.infrastructure_failure",
    ...
    
    7446:  "TEST_WORKSPACE"=>"selenium",
    7447:  "TMP"=>"C:\\Users\\RUNNER~1\\AppData\\Local\\Temp",
    7448:  "TZ"=>"UTC",
    7449:  "USER"=>"runneradmin",
    7450:  "WD_REMOTE_BROWSER"=>"edge",
    7451:  "WD_SPEC_DRIVER"=>"remote",
    7452:  "XML_OUTPUT_FILE"=>
    7453:  "D:/_bazel/execroot/selenium/bazel-out/x64_windows-fastbuild/testlogs/rb/spec/integration/selenium/webdriver/storage-edge-remote/test.xml"}
    7454:  An error occurred in a `before(:suite)` hook.
    7455:  Failure/Error: @pid = Process.spawn(*@command, options)
    7456:  Errno::EACCES:
    7457:  Permission denied - java
    7458:  # ./rb/lib/selenium/webdriver/common/child_process.rb:57:in `spawn'
    7459:  # ./rb/lib/selenium/webdriver/common/child_process.rb:57:in `start'
    7460:  # ./rb/lib/selenium/server.rb:204:in `start'
    7461:  # //?/D:/a/selenium/selenium/rb/spec/integration/selenium/webdriver/spec_helper.rb:40:in `block (2 levels) in <top (required)>'
    7462:  Finished in 0.05789 seconds (files took 0.60161 seconds to load)
    7463:  0 examples, 0 failures, 1 error occurred outside of examples
    ...
    
    7525:  "RUNFILE_PATH"=>"bundle/vendor/bundle",
    7526:  "RUN_UNDER_RUNFILES"=>"1",
    7527:  "SE_AVOID_STATS"=>"true",
    7528:  "SYSTEMDRIVE"=>"C:",
    7529:  "SYSTEMROOT"=>"C:\\Windows",
    7530:  "TEMP"=>"C:\\Users\\RUNNER~1\\AppData\\Local\\Temp",
    7531:  "TEST_BINARY"=>
    7532:  "rb/spec/integration/selenium/webdriver/storage-edge-remote.cmd",
    7533:  "TEST_INFRASTRUCTURE_FAILURE_FILE"=>
    7534:  "D:/_bazel/execroot/selenium/bazel-out/x64_windows-fastbuild/testlogs/rb/spec/integration/selenium/webdriver/storage-edge-remote/test.infrastructure_failure",
    ...
    
    7554:  "TEST_WORKSPACE"=>"selenium",
    7555:  "TMP"=>"C:\\Users\\RUNNER~1\\AppData\\Local\\Temp",
    7556:  "TZ"=>"UTC",
    7557:  "USER"=>"runneradmin",
    7558:  "WD_REMOTE_BROWSER"=>"edge",
    7559:  "WD_SPEC_DRIVER"=>"remote",
    7560:  "XML_OUTPUT_FILE"=>
    7561:  "D:/_bazel/execroot/selenium/bazel-out/x64_windows-fastbuild/testlogs/rb/spec/integration/selenium/webdriver/storage-edge-remote/test.xml"}
    7562:  An error occurred in a `before(:suite)` hook.
    7563:  Failure/Error: @pid = Process.spawn(*@command, options)
    7564:  Errno::EACCES:
    7565:  Permission denied - java
    7566:  # ./rb/lib/selenium/webdriver/common/child_process.rb:57:in `spawn'
    7567:  # ./rb/lib/selenium/webdriver/common/child_process.rb:57:in `start'
    7568:  # ./rb/lib/selenium/server.rb:204:in `start'
    7569:  # //?/D:/a/selenium/selenium/rb/spec/integration/selenium/webdriver/spec_helper.rb:40:in `block (2 levels) in <top (required)>'
    7570:  Finished in 0.05561 seconds (files took 0.61173 seconds to load)
    7571:  0 examples, 0 failures, 1 error occurred outside of examples
    ...
    
    7633:  "RUNFILE_PATH"=>"bundle/vendor/bundle",
    7634:  "RUN_UNDER_RUNFILES"=>"1",
    7635:  "SE_AVOID_STATS"=>"true",
    7636:  "SYSTEMDRIVE"=>"C:",
    7637:  "SYSTEMROOT"=>"C:\\Windows",
    7638:  "TEMP"=>"C:\\Users\\RUNNER~1\\AppData\\Local\\Temp",
    7639:  "TEST_BINARY"=>
    7640:  "rb/spec/integration/selenium/webdriver/storage-edge-remote.cmd",
    7641:  "TEST_INFRASTRUCTURE_FAILURE_FILE"=>
    7642:  "D:/_bazel/execroot/selenium/bazel-out/x64_windows-fastbuild/testlogs/rb/spec/integration/selenium/webdriver/storage-edge-remote/test.infrastructure_failure",
    ...
    
    7662:  "TEST_WORKSPACE"=>"selenium",
    7663:  "TMP"=>"C:\\Users\\RUNNER~1\\AppData\\Local\\Temp",
    7664:  "TZ"=>"UTC",
    7665:  "USER"=>"runneradmin",
    7666:  "WD_REMOTE_BROWSER"=>"edge",
    7667:  "WD_SPEC_DRIVER"=>"remote",
    7668:  "XML_OUTPUT_FILE"=>
    7669:  "D:/_bazel/execroot/selenium/bazel-out/x64_windows-fastbuild/testlogs/rb/spec/integration/selenium/webdriver/storage-edge-remote/test.xml"}
    7670:  An error occurred in a `before(:suite)` hook.
    7671:  Failure/Error: @pid = Process.spawn(*@command, options)
    7672:  Errno::EACCES:
    7673:  Permission denied - java
    7674:  # ./rb/lib/selenium/webdriver/common/child_process.rb:57:in `spawn'
    7675:  # ./rb/lib/selenium/webdriver/common/child_process.rb:57:in `start'
    7676:  # ./rb/lib/selenium/server.rb:204:in `start'
    7677:  # //?/D:/a/selenium/selenium/rb/spec/integration/selenium/webdriver/spec_helper.rb:40:in `block (2 levels) in <top (required)>'
    7678:  Finished in 0.059 seconds (files took 0.69221 seconds to load)
    7679:  0 examples, 0 failures, 1 error occurred outside of examples
    7680:  ================================================================================
    7681:  �[32m[2,906 / 2,910]�[0m 19 / 27 tests, �[31m�[1m19 failed�[0m;�[0m Testing //rb/spec/integration/selenium/webdriver:shadow_root-edge-remote; 49s local, disk-cache ... (4 actions, 1 running)
    7682:  �[32m[2,906 / 2,910]�[0m 19 / 27 tests, �[31m�[1m19 failed�[0m;�[0m Testing //rb/spec/integration/selenium/webdriver:shadow_root-edge-remote; 52s local, disk-cache ... (4 actions, 1 running)
    7683:  �[32m[2,906 / 2,910]�[0m 19 / 27 tests, �[31m�[1m19 failed�[0m;�[0m Testing //rb/spec/integration/selenium/webdriver:shadow_root-edge-remote; 55s local, disk-cache ... (4 actions, 2 running)
    7684:  �[31m�[1mFAIL: �[0m//rb/spec/integration/selenium/webdriver:shadow_root-edge-remote (see D:/_bazel/execroot/selenium/bazel-out/x64_windows-fastbuild/testlogs/rb/spec/integration/selenium/webdriver/shadow_root-edge-remote/test.log)
    7685:  ==================== Test output for //rb/spec/integration/selenium/webdriver:shadow_root-edge-remote:
    7686:  2024-04-03 18:57:33 INFO Selenium Server Location: D:/_bazel/execroot/selenium/bazel-out/x64_windows-fastbuild/bin/rb/spec/integration/selenium/webdriver/shadow_root-edge-remote.cmd.runfiles/selenium/java/src/org/openqa/selenium/grid/selenium_server_deploy.jar
    7687:  �[31m�[1mFAILED: �[0m//rb/spec/integration/selenium/webdriver:shadow_root-edge-remote (Summary)
    ...
    
    7750:  "RUNFILE_PATH"=>"bundle/vendor/bundle",
    7751:  "RUN_UNDER_RUNFILES"=>"1",
    7752:  "SE_AVOID_STATS"=>"true",
    7753:  "SYSTEMDRIVE"=>"C:",
    7754:  "SYSTEMROOT"=>"C:\\Windows",
    7755:  "TEMP"=>"C:\\Users\\RUNNER~1\\AppData\\Local\\Temp",
    7756:  "TEST_BINARY"=>
    7757:  "rb/spec/integration/selenium/webdriver/shadow_root-edge-remote.cmd",
    7758:  "TEST_INFRASTRUCTURE_FAILURE_FILE"=>
    7759:  "D:/_bazel/execroot/selenium/bazel-out/x64_windows-fastbuild/testlogs/rb/spec/integration/selenium/webdriver/shadow_root-edge-remote/test.infrastructure_failure",
    ...
    
    7780:  "TEST_WORKSPACE"=>"selenium",
    7781:  "TMP"=>"C:\\Users\\RUNNER~1\\AppData\\Local\\Temp",
    7782:  "TZ"=>"UTC",
    7783:  "USER"=>"runneradmin",
    7784:  "WD_REMOTE_BROWSER"=>"edge",
    7785:  "WD_SPEC_DRIVER"=>"remote",
    7786:  "XML_OUTPUT_FILE"=>
    7787:  "D:/_bazel/execroot/selenium/bazel-out/x64_windows-fastbuild/testlogs/rb/spec/integration/selenium/webdriver/shadow_root-edge-remote/test.xml"}
    7788:  An error occurred in a `before(:suite)` hook.
    7789:  Failure/Error: @pid = Process.spawn(*@command, options)
    7790:  Errno::EACCES:
    7791:  Permission denied - java
    7792:  # ./rb/lib/selenium/webdriver/common/child_process.rb:57:in `spawn'
    7793:  # ./rb/lib/selenium/webdriver/common/child_process.rb:57:in `start'
    7794:  # ./rb/lib/selenium/server.rb:204:in `start'
    7795:  # //?/D:/a/selenium/selenium/rb/spec/integration/selenium/webdriver/spec_helper.rb:40:in `block (2 levels) in <top (required)>'
    7796:  Finished in 0.05331 seconds (files took 0.5816 seconds to load)
    7797:  0 examples, 0 failures, 1 error occurred outside of examples
    ...
    
    7859:  "RUNFILE_PATH"=>"bundle/vendor/bundle",
    7860:  "RUN_UNDER_RUNFILES"=>"1",
    7861:  "SE_AVOID_STATS"=>"true",
    7862:  "SYSTEMDRIVE"=>"C:",
    7863:  "SYSTEMROOT"=>"C:\\Windows",
    7864:  "TEMP"=>"C:\\Users\\RUNNER~1\\AppData\\Local\\Temp",
    7865:  "TEST_BINARY"=>
    7866:  "rb/spec/integration/selenium/webdriver/shadow_root-edge-remote.cmd",
    7867:  "TEST_INFRASTRUCTURE_FAILURE_FILE"=>
    7868:  "D:/_bazel/execroot/selenium/bazel-out/x64_windows-fastbuild/testlogs/rb/spec/integration/selenium/webdriver/shadow_root-edge-remote/test.infrastructure_failure",
    ...
    
    7889:  "TEST_WORKSPACE"=>"selenium",
    7890:  "TMP"=>"C:\\Users\\RUNNER~1\\AppData\\Local\\Temp",
    7891:  "TZ"=>"UTC",
    7892:  "USER"=>"runneradmin",
    7893:  "WD_REMOTE_BROWSER"=>"edge",
    7894:  "WD_SPEC_DRIVER"=>"remote",
    7895:  "XML_OUTPUT_FILE"=>
    7896:  "D:/_bazel/execroot/selenium/bazel-out/x64_windows-fastbuild/testlogs/rb/spec/integration/selenium/webdriver/shadow_root-edge-remote/test.xml"}
    7897:  An error occurred in a `before(:suite)` hook.
    7898:  Failure/Error: @pid = Process.spawn(*@command, options)
    7899:  Errno::EACCES:
    7900:  Permission denied - java
    7901:  # ./rb/lib/selenium/webdriver/common/child_process.rb:57:in `spawn'
    7902:  # ./rb/lib/selenium/webdriver/common/child_process.rb:57:in `start'
    7903:  # ./rb/lib/selenium/server.rb:204:in `start'
    7904:  # //?/D:/a/selenium/selenium/rb/spec/integration/selenium/webdriver/spec_helper.rb:40:in `block (2 levels) in <top (required)>'
    7905:  Finished in 0.06373 seconds (files took 0.62255 seconds to load)
    7906:  0 examples, 0 failures, 1 error occurred outside of examples
    ...
    
    7968:  "RUNFILE_PATH"=>"bundle/vendor/bundle",
    7969:  "RUN_UNDER_RUNFILES"=>"1",
    7970:  "SE_AVOID_STATS"=>"true",
    7971:  "SYSTEMDRIVE"=>"C:",
    7972:  "SYSTEMROOT"=>"C:\\Windows",
    7973:  "TEMP"=>"C:\\Users\\RUNNER~1\\AppData\\Local\\Temp",
    7974:  "TEST_BINARY"=>
    7975:  "rb/spec/integration/selenium/webdriver/shadow_root-edge-remote.cmd",
    7976:  "TEST_INFRASTRUCTURE_FAILURE_FILE"=>
    7977:  "D:/_bazel/execroot/selenium/bazel-out/x64_windows-fastbuild/testlogs/rb/spec/integration/selenium/webdriver/shadow_root-edge-remote/test.infrastructure_failure",
    ...
    
    7998:  "TEST_WORKSPACE"=>"selenium",
    7999:  "TMP"=>"C:\\Users\\RUNNER~1\\AppData\\Local\\Temp",
    8000:  "TZ"=>"UTC",
    8001:  "USER"=>"runneradmin",
    8002:  "WD_REMOTE_BROWSER"=>"edge",
    8003:  "WD_SPEC_DRIVER"=>"remote",
    8004:  "XML_OUTPUT_FILE"=>
    8005:  "D:/_bazel/execroot/selenium/bazel-out/x64_windows-fastbuild/testlogs/rb/spec/integration/selenium/webdriver/shadow_root-edge-remote/test.xml"}
    8006:  An error occurred in a `before(:suite)` hook.
    8007:  Failure/Error: @pid = Process.spawn(*@command, options)
    8008:  Errno::EACCES:
    8009:  Permission denied - java
    8010:  # ./rb/lib/selenium/webdriver/common/child_process.rb:57:in `spawn'
    8011:  # ./rb/lib/selenium/webdriver/common/child_process.rb:57:in `start'
    8012:  # ./rb/lib/selenium/server.rb:204:in `start'
    8013:  # //?/D:/a/selenium/selenium/rb/spec/integration/selenium/webdriver/spec_helper.rb:40:in `block (2 levels) in <top (required)>'
    8014:  Finished in 0.06377 seconds (files took 0.91009 seconds to load)
    8015:  0 examples, 0 failures, 1 error occurred outside of examples
    8016:  ================================================================================
    8017:  �[32m[2,907 / 2,910]�[0m 20 / 27 tests, �[31m�[1m20 failed�[0m;�[0m Testing //rb/spec/integration/selenium/webdriver:manager-edge-remote; 7s disk-cache ... (3 actions, 1 running)
    8018:  �[32m[2,907 / 2,910]�[0m 20 / 27 tests, �[31m�[1m20 failed�[0m;�[0m [Sched] Testing //rb/spec/integration/selenium/webdriver:zipper-edge-remote; 7s ... (3 actions, 1 running)
    8019:  �[32m[2,907 / 2,910]�[0m 20 / 27 tests, �[31m�[1m20 failed�[0m;�[0m Testing //rb/spec/integration/selenium/webdriver:guard-edge-remote; 6s local, disk-cache ... (3 actions, 2 running)
    8020:  �[31m�[1mFAIL: �[0m//rb/spec/integration/selenium/webdriver:guard-edge-remote (see D:/_bazel/execroot/selenium/bazel-out/x64_windows-fastbuild/testlogs/rb/spec/integration/selenium/webdriver/guard-edge-remote/test_attempts/attempt_1.log)
    8021:  �[32m[2,907 / 2,910]�[0m 20 / 27 tests, �[31m�[1m20 failed�[0m;�[0m Testing //rb/spec/integration/selenium/webdriver:guard-edge-remote; 8s local, disk-cache ... (3 actions, 2 running)
    8022:  �[32m[2,907 / 2,910]�[0m 20 / 27 tests, �[31m�[1m20 failed�[0m;�[0m Testing //rb/spec/integration/selenium/webdriver:guard-edge-remote; 12s local, disk-cache ... (3 actions, 2 running)
    8023:  �[32m[2,907 / 2,910]�[0m 20 / 27 tests, �[31m�[1m20 failed�[0m;�[0m Testing //rb/spec/integration/selenium/webdriver:guard-edge-remote; 13s local, disk-cache ... (3 actions running)
    8024:  �[31m�[1mFAIL: �[0m//rb/spec/integration/selenium/webdriver:zipper-edge-remote (see D:/_bazel/execroot/selenium/bazel-out/x64_windows-fastbuild/testlogs/rb/spec/integration/selenium/webdriver/zipper-edge-remote/test_attempts/attempt_1.log)
    8025:  �[32m[2,907 / 2,910]�[0m 20 / 27 tests, �[31m�[1m20 failed�[0m;�[0m Testing //rb/spec/integration/selenium/webdriver:guard-edge-remote; 15s local, disk-cache ... (3 actions running)
    8026:  �[32m[2,907 / 2,910]�[0m 20 / 27 tests, �[31m�[1m20 failed�[0m;�[0m Testing //rb/spec/integration/selenium/webdriver:guard-edge-remote; 20s local, disk-cache ... (3 actions running)
    8027:  �[31m�[1mFAIL: �[0m//rb/spec/integration/selenium/webdriver:manager-edge-remote (see D:/_bazel/execroot/selenium/bazel-out/x64_windows-fastbuild/testlogs/rb/spec/integration/selenium/webdriver/manager-edge-remote/test_attempts/attempt_1.log)
    8028:  �[32m[2,907 / 2,910]�[0m 20 / 27 tests, �[31m�[1m20 failed�[0m;�[0m Testing //rb/spec/integration/selenium/webdriver:guard-edge-remote; 22s local, disk-cache ... (3 actions running)
    8029:  �[32m[2,907 / 2,910]�[0m 20 / 27 tests, �[31m�[1m20 failed�[0m;�[0m Testing //rb/spec/integration/selenium/webdriver:guard-edge-remote; 27s local, disk-cache ... (3 actions running)
    8030:  �[31m�[1mFAIL: �[0m//rb/spec/integration/selenium/webdriver:guard-edge-remote (see D:/_bazel/execroot/selenium/bazel-out/x64_windows-fastbuild/testlogs/rb/spec/integration/selenium/webdriver/guard-edge-remote/test_attempts/attempt_2.log)
    8031:  �[32m[2,907 / 2,910]�[0m 20 / 27 tests, �[31m�[1m20 failed�[0m;�[0m Testing //rb/spec/integration/selenium/webdriver:guard-edge-remote; 28s local, disk-cache ... (3 actions running)
    8032:  �[32m[2,907 / 2,910]�[0m 20 / 27 tests, �[31m�[1m20 failed�[0m;�[0m Testing //rb/spec/integration/selenium/webdriver:guard-edge-remote; 33s local, disk-cache ... (3 actions running)
    8033:  �[31m�[1mFAIL: �[0m//rb/spec/integration/selenium/webdriver:zipper-edge-remote (see D:/_bazel/execroot/selenium/bazel-out/x64_windows-fastbuild/testlogs/rb/spec/integration/selenium/webdriver/zipper-edge-remote/test_attempts/attempt_2.log)
    8034:  �[32m[2,907 / 2,910]�[0m 20 / 27 tests, �[31m�[1m20 failed�[0m;�[0m Testing //rb/spec/integration/selenium/webdriver:guard-edge-remote; 35s local, disk-cache ... (3 actions running)
    8035:  �[32m[2,907 / 2,910]�[0m 20 / 27 tests, �[31m�[1m20 failed�[0m;�[0m Testing //rb/spec/integration/selenium/webdriver:guard-edge-remote; 40s local, disk-cache ... (3 actions running)
    8036:  �[31m�[1mFAIL: �[0m//rb/spec/integration/selenium/webdriver:manager-edge-remote (see D:/_bazel/execroot/selenium/bazel-out/x64_windows-fastbuild/testlogs/rb/spec/integration/selenium/webdriver/manager-edge-remote/test_attempts/attempt_2.log)
    8037:  �[32m[2,907 / 2,910]�[0m 20 / 27 tests, �[31m�[1m20 failed�[0m;�[0m Testing //rb/spec/integration/selenium/webdriver:guard-edge-remote; 42s local, disk-cache ... (3 actions running)
    8038:  �[32m[2,907 / 2,910]�[0m 20 / 27 tests, �[31m�[1m20 failed�[0m;�[0m Testing //rb/spec/integration/selenium/webdriver:guard-edge-remote; 47s local, disk-cache ... (3 actions running)
    8039:  �[31m�[1mFAIL: �[0m//rb/spec/integration/selenium/webdriver:guard-edge-remote (see D:/_bazel/execroot/selenium/bazel-out/x64_windows-fastbuild/testlogs/rb/spec/integration/selenium/webdriver/guard-edge-remote/test.log)
    8040:  �[31m�[1mFAILED: �[0m//rb/spec/integration/selenium/webdriver:guard-edge-remote (Summary)
    ...
    
    8104:  "RUNFILES_MANIFEST_ONLY"=>"1",
    8105:  "RUNFILE_PATH"=>"bundle/vendor/bundle",
    8106:  "RUN_UNDER_RUNFILES"=>"1",
    8107:  "SE_AVOID_STATS"=>"true",
    8108:  "SYSTEMDRIVE"=>"C:",
    8109:  "SYSTEMROOT"=>"C:\\Windows",
    8110:  "TEMP"=>"C:\\Users\\RUNNER~1\\AppData\\Local\\Temp",
    8111:  "TEST_BINARY"=>"rb/spec/integration/selenium/webdriver/guard-edge-remote.cmd",
    8112:  "TEST_INFRASTRUCTURE_FAILURE_FILE"=>
    8113:  "D:/_bazel/execroot/selenium/bazel-out/x64_windows-fastbuild/testlogs/rb/spec/integration/selenium/webdriver/guard-edge-remote/test.infrastructure_failure",
    ...
    
    8133:  "TEST_WORKSPACE"=>"selenium",
    8134:  "TMP"=>"C:\\Users\\RUNNER~1\\AppData\\Local\\Temp",
    8135:  "TZ"=>"UTC",
    8136:  "USER"=>"runneradmin",
    8137:  "WD_REMOTE_BROWSER"=>"edge",
    8138:  "WD_SPEC_DRIVER"=>"remote",
    8139:  "XML_OUTPUT_FILE"=>
    8140:  "D:/_bazel/execroot/selenium/bazel-out/x64_windows-fastbuild/testlogs/rb/spec/integration/selenium/webdriver/guard-edge-remote/test.xml"}
    8141:  An error occurred in a `before(:suite)` hook.
    8142:  Failure/Error: @pid = Process.spawn(*@command, options)
    8143:  Errno::EACCES:
    8144:  Permission denied - java
    8145:  # ./rb/lib/selenium/webdriver/common/child_process.rb:57:in `spawn'
    8146:  # ./rb/lib/selenium/webdriver/common/child_process.rb:57:in `start'
    8147:  # ./rb/lib/selenium/server.rb:204:in `start'
    8148:  # //?/D:/a/selenium/selenium/rb/spec/integration/selenium/webdriver/spec_helper.rb:40:in `block (2 levels) in <top (required)>'
    8149:  Finished in 0.06016 seconds (files took 0.65825 seconds to load)
    8150:  0 examples, 0 failures, 1 error occurred outside of examples
    ...
    
    8211:  "RUNFILES_MANIFEST_ONLY"=>"1",
    8212:  "RUNFILE_PATH"=>"bundle/vendor/bundle",
    8213:  "RUN_UNDER_RUNFILES"=>"1",
    8214:  "SE_AVOID_STATS"=>"true",
    8215:  "SYSTEMDRIVE"=>"C:",
    8216:  "SYSTEMROOT"=>"C:\\Windows",
    8217:  "TEMP"=>"C:\\Users\\RUNNER~1\\AppData\\Local\\Temp",
    8218:  "TEST_BINARY"=>"rb/spec/integration/selenium/webdriver/guard-edge-remote.cmd",
    8219:  "TEST_INFRASTRUCTURE_FAILURE_FILE"=>
    8220:  "D:/_bazel/execroot/selenium/bazel-out/x64_windows-fastbuild/testlogs/rb/spec/integration/selenium/webdriver/guard-edge-remote/test.infrastructure_failure",
    ...
    
    8240:  "TEST_WORKSPACE"=>"selenium",
    8241:  "TMP"=>"C:\\Users\\RUNNER~1\\AppData\\Local\\Temp",
    8242:  "TZ"=>"UTC",
    8243:  "USER"=>"runneradmin",
    8244:  "WD_REMOTE_BROWSER"=>"edge",
    8245:  "WD_SPEC_DRIVER"=>"remote",
    8246:  "XML_OUTPUT_FILE"=>
    8247:  "D:/_bazel/execroot/selenium/bazel-out/x64_windows-fastbuild/testlogs/rb/spec/integration/selenium/webdriver/guard-edge-remote/test.xml"}
    8248:  An error occurred in a `before(:suite)` hook.
    8249:  Failure/Error: @pid = Process.spawn(*@command, options)
    8250:  Errno::EACCES:
    8251:  Permission denied - java
    8252:  # ./rb/lib/selenium/webdriver/common/child_process.rb:57:in `spawn'
    8253:  # ./rb/lib/selenium/webdriver/common/child_process.rb:57:in `start'
    8254:  # ./rb/lib/selenium/server.rb:204:in `start'
    8255:  # //?/D:/a/selenium/selenium/rb/spec/integration/selenium/webdriver/spec_helper.rb:40:in `block (2 levels) in <top (required)>'
    8256:  Finished in 0.05453 seconds (files took 0.58775 seconds to load)
    8257:  0 examples, 0 failures, 1 error occurred outside of examples
    ...
    
    8318:  "RUNFILES_MANIFEST_ONLY"=>"1",
    8319:  "RUNFILE_PATH"=>"bundle/vendor/bundle",
    8320:  "RUN_UNDER_RUNFILES"=>"1",
    8321:  "SE_AVOID_STATS"=>"true",
    8322:  "SYSTEMDRIVE"=>"C:",
    8323:  "SYSTEMROOT"=>"C:\\Windows",
    8324:  "TEMP"=>"C:\\Users\\RUNNER~1\\AppData\\Local\\Temp",
    8325:  "TEST_BINARY"=>"rb/spec/integration/selenium/webdriver/guard-edge-remote.cmd",
    8326:  "TEST_INFRASTRUCTURE_FAILURE_FILE"=>
    8327:  "D:/_bazel/execroot/selenium/bazel-out/x64_windows-fastbuild/testlogs/rb/spec/integration/selenium/webdriver/guard-edge-remote/test.infrastructure_failure",
    ...
    
    8347:  "TEST_WORKSPACE"=>"selenium",
    8348:  "TMP"=>"C:\\Users\\RUNNER~1\\AppData\\Local\\Temp",
    8349:  "TZ"=>"UTC",
    8350:  "USER"=>"runneradmin",
    8351:  "WD_REMOTE_BROWSER"=>"edge",
    8352:  "WD_SPEC_DRIVER"=>"remote",
    8353:  "XML_OUTPUT_FILE"=>
    8354:  "D:/_bazel/execroot/selenium/bazel-out/x64_windows-fastbuild/testlogs/rb/spec/integration/selenium/webdriver/guard-edge-remote/test.xml"}
    8355:  An error occurred in a `before(:suite)` hook.
    8356:  Failure/Error: @pid = Process.spawn(*@command, options)
    8357:  Errno::EACCES:
    8358:  Permission denied - java
    8359:  # ./rb/lib/selenium/webdriver/common/child_process.rb:57:in `spawn'
    8360:  # ./rb/lib/selenium/webdriver/common/child_process.rb:57:in `start'
    8361:  # ./rb/lib/selenium/server.rb:204:in `start'
    8362:  # //?/D:/a/selenium/selenium/rb/spec/integration/selenium/webdriver/spec_helper.rb:40:in `block (2 levels) in <top (required)>'
    8363:  Finished in 0.05436 seconds (files took 0.58594 seconds to load)
    8364:  0 examples, 0 failures, 1 error occurred outside of examples
    8365:  ================================================================================
    8366:  �[32m[2,908 / 2,910]�[0m 21 / 27 tests, �[31m�[1m21 failed�[0m;�[0m Testing //rb/spec/integration/selenium/webdriver:zipper-edge-remote; 42s local, disk-cache ... (2 actions running)
    8367:  �[32m[2,908 / 2,910]�[0m 21 / 27 tests, �[31m�[1m21 failed�[0m;�[0m Testing //rb/spec/integration/selenium/webdriver:zipper-edge-remote; 47s local, disk-cache ... (2 actions running)
    8368:  �[31m�[1mFAIL: �[0m//rb/spec/integration/selenium/webdriver:zipper-edge-remote (see D:/_bazel/execroot/selenium/bazel-out/x64_windows-fastbuild/testlogs/rb/spec/integration/selenium/webdriver/zipper-edge-remote/test.log)
    8369:  �[31m�[1mFAILED: �[0m//rb/spec/integration/selenium/webdriver:zipper-edge-remote (Summary)
    ...
    
    8434:  "RUNFILE_PATH"=>"bundle/vendor/bundle",
    8435:  "RUN_UNDER_RUNFILES"=>"1",
    8436:  "SE_AVOID_STATS"=>"true",
    8437:  "SYSTEMDRIVE"=>"C:",
    8438:  "SYSTEMROOT"=>"C:\\Windows",
    8439:  "TEMP"=>"C:\\Users\\RUNNER~1\\AppData\\Local\\Temp",
    8440:  "TEST_BINARY"=>
    8441:  "rb/spec/integration/selenium/webdriver/zipper-edge-remote.cmd",
    8442:  "TEST_INFRASTRUCTURE_FAILURE_FILE"=>
    8443:  "D:/_bazel/execroot/selenium/bazel-out/x64_windows-fastbuild/testlogs/rb/spec/integration/selenium/webdriver/zipper-edge-remote/test.infrastructure_failure",
    ...
    
    8463:  "TEST_WORKSPACE"=>"selenium",
    8464:  "TMP"=>"C:\\Users\\RUNNER~1\\AppData\\Local\\Temp",
    8465:  "TZ"=>"UTC",
    8466:  "USER"=>"runneradmin",
    8467:  "WD_REMOTE_BROWSER"=>"edge",
    8468:  "WD_SPEC_DRIVER"=>"remote",
    8469:  "XML_OUTPUT_FILE"=>
    8470:  "D:/_bazel/execroot/selenium/bazel-out/x64_windows-fastbuild/testlogs/rb/spec/integration/selenium/webdriver/zipper-edge-remote/test.xml"}
    8471:  An error occurred in a `before(:suite)` hook.
    8472:  Failure/Error: @pid = Process.spawn(*@command, options)
    8473:  Errno::EACCES:
    8474:  Permission denied - java
    8475:  # ./rb/lib/selenium/webdriver/common/child_process.rb:57:in `spawn'
    8476:  # ./rb/lib/selenium/webdriver/common/child_process.rb:57:in `start'
    8477:  # ./rb/lib/selenium/server.rb:204:in `start'
    8478:  # //?/D:/a/selenium/selenium/rb/spec/integration/selenium/webdriver/spec_helper.rb:40:in `block (2 levels) in <top (required)>'
    8479:  Finished in 0.055 seconds (files took 0.60025 seconds to load)
    8480:  0 examples, 0 failures, 1 error occurred outside of examples
    ...
    
    8542:  "RUNFILE_PATH"=>"bundle/vendor/bundle",
    8543:  "RUN_UNDER_RUNFILES"=>"1",
    8544:  "SE_AVOID_STATS"=>"true",
    8545:  "SYSTEMDRIVE"=>"C:",
    8546:  "SYSTEMROOT"=>"C:\\Windows",
    8547:  "TEMP"=>"C:\\Users\\RUNNER~1\\AppData\\Local\\Temp",
    8548:  "TEST_BINARY"=>
    8549:  "rb/spec/integration/selenium/webdriver/zipper-edge-remote.cmd",
    8550:  "TEST_INFRASTRUCTURE_FAILURE_FILE"=>
    8551:  "D:/_bazel/execroot/selenium/bazel-out/x64_windows-fastbuild/testlogs/rb/spec/integration/selenium/webdriver/zipper-edge-remote/test.infrastructure_failure",
    ...
    
    8571:  "TEST_WORKSPACE"=>"selenium",
    8572:  "TMP"=>"C:\\Users\\RUNNER~1\\AppData\\Local\\Temp",
    8573:  "TZ"=>"UTC",
    8574:  "USER"=>"runneradmin",
    8575:  "WD_REMOTE_BROWSER"=>"edge",
    8576:  "WD_SPEC_DRIVER"=>"remote",
    8577:  "XML_OUTPUT_FILE"=>
    8578:  "D:/_bazel/execroot/selenium/bazel-out/x64_windows-fastbuild/testlogs/rb/spec/integration/selenium/webdriver/zipper-edge-remote/test.xml"}
    8579:  An error occurred in a `before(:suite)` hook.
    8580:  Failure/Error: @pid = Process.spawn(*@command, options)
    8581:  Errno::EACCES:
    8582:  Permission denied - java
    8583:  # ./rb/lib/selenium/webdriver/common/child_process.rb:57:in `spawn'
    8584:  # ./rb/lib/selenium/webdriver/common/child_process.rb:57:in `start'
    8585:  # ./rb/lib/selenium/server.rb:204:in `start'
    8586:  # //?/D:/a/selenium/selenium/rb/spec/integration/selenium/webdriver/spec_helper.rb:40:in `block (2 levels) in <top (required)>'
    8587:  Finished in 0.0546 seconds (files took 0.60695 seconds to load)
    8588:  0 examples, 0 failures, 1 error occurred outside of examples
    ...
    
    8650:  "RUNFILE_PATH"=>"bundle/vendor/bundle",
    8651:  "RUN_UNDER_RUNFILES"=>"1",
    8652:  "SE_AVOID_STATS"=>"true",
    8653:  "SYSTEMDRIVE"=>"C:",
    8654:  "SYSTEMROOT"=>"C:\\Windows",
    8655:  "TEMP"=>"C:\\Users\\RUNNER~1\\AppData\\Local\\Temp",
    8656:  "TEST_BINARY"=>
    8657:  "rb/spec/integration/selenium/webdriver/zipper-edge-remote.cmd",
    8658:  "TEST_INFRASTRUCTURE_FAILURE_FILE"=>
    8659:  "D:/_bazel/execroot/selenium/bazel-out/x64_windows-fastbuild/testlogs/rb/spec/integration/selenium/webdriver/zipper-edge-remote/test.infrastructure_failure",
    ...
    
    8679:  "TEST_WORKSPACE"=>"selenium",
    8680:  "TMP"=>"C:\\Users\\RUNNER~1\\AppData\\Local\\Temp",
    8681:  "TZ"=>"UTC",
    8682:  "USER"=>"runneradmin",
    8683:  "WD_REMOTE_BROWSER"=>"edge",
    8684:  "WD_SPEC_DRIVER"=>"remote",
    8685:  "XML_OUTPUT_FILE"=>
    8686:  "D:/_bazel/execroot/selenium/bazel-out/x64_windows-fastbuild/testlogs/rb/spec/integration/selenium/webdriver/zipper-edge-remote/test.xml"}
    8687:  An error occurred in a `before(:suite)` hook.
    8688:  Failure/Error: @pid = Process.spawn(*@command, options)
    8689:  Errno::EACCES:
    8690:  Permission denied - java
    8691:  # ./rb/lib/selenium/webdriver/common/child_process.rb:57:in `spawn'
    8692:  # ./rb/lib/selenium/webdriver/common/child_process.rb:57:in `start'
    8693:  # ./rb/lib/selenium/server.rb:204:in `start'
    8694:  # //?/D:/a/selenium/selenium/rb/spec/integration/selenium/webdriver/spec_helper.rb:40:in `block (2 levels) in <top (required)>'
    8695:  Finished in 0.05762 seconds (files took 0.58726 seconds to load)
    8696:  0 examples, 0 failures, 1 error occurred outside of examples
    8697:  ================================================================================
    8698:  �[32m[2,909 / 2,910]�[0m 22 / 27 tests, �[31m�[1m22 failed�[0m;�[0m Testing //rb/spec/integration/selenium/webdriver:manager-edge-remote; 41s local, disk-cache
    8699:  �[32m[2,909 / 2,910]�[0m 22 / 27 tests, �[31m�[1m22 failed�[0m;�[0m Testing //rb/spec/integration/selenium/webdriver:manager-edge-remote; 47s local, disk-cache
    8700:  �[31m�[1mFAIL: �[0m//rb/spec/integration/selenium/webdriver:manager-edge-remote (see D:/_bazel/execroot/selenium/bazel-out/x64_windows-fastbuild/testlogs/rb/spec/integration/selenium/webdriver/manager-edge-remote/test.log)
    8701:  �[31m�[1mFAILED: �[0m//rb/spec/integration/selenium/webdriver:manager-edge-remote (Summary)
    ...
    
    8766:  "RUNFILE_PATH"=>"bundle/vendor/bundle",
    8767:  "RUN_UNDER_RUNFILES"=>"1",
    8768:  "SE_AVOID_STATS"=>"true",
    8769:  "SYSTEMDRIVE"=>"C:",
    8770:  "SYSTEMROOT"=>"C:\\Windows",
    8771:  "TEMP"=>"C:\\Users\\RUNNER~1\\AppData\\Local\\Temp",
    8772:  "TEST_BINARY"=>
    8773:  "rb/spec/integration/selenium/webdriver/manager-edge-remote.cmd",
    8774:  "TEST_INFRASTRUCTURE_FAILURE_FILE"=>
    8775:  "D:/_bazel/execroot/selenium/bazel-out/x64_windows-fastbuild/testlogs/rb/spec/integration/selenium/webdriver/manager-edge-remote/test.infrastructure_failure",
    ...
    
    8795:  "TEST_WORKSPACE"=>"selenium",
    8796:  "TMP"=>"C:\\Users\\RUNNER~1\\AppData\\Local\\Temp",
    8797:  "TZ"=>"UTC",
    8798:  "USER"=>"runneradmin",
    8799:  "WD_REMOTE_BROWSER"=>"edge",
    8800:  "WD_SPEC_DRIVER"=>"remote",
    8801:  "XML_OUTPUT_FILE"=>
    8802:  "D:/_bazel/execroot/selenium/bazel-out/x64_windows-fastbuild/testlogs/rb/spec/integration/selenium/webdriver/manager-edge-remote/test.xml"}
    8803:  An error occurred in a `before(:suite)` hook.
    8804:  Failure/Error: @pid = Process.spawn(*@command, options)
    8805:  Errno::EACCES:
    8806:  Permission denied - java
    8807:  # ./rb/lib/selenium/webdriver/common/child_process.rb:57:in `spawn'
    8808:  # ./rb/lib/selenium/webdriver/common/child_process.rb:57:in `start'
    8809:  # ./rb/lib/selenium/server.rb:204:in `start'
    8810:  # //?/D:/a/selenium/selenium/rb/spec/integration/selenium/webdriver/spec_helper.rb:40:in `block (2 levels) in <top (required)>'
    8811:  Finished in 0.05449 seconds (files took 0.58617 seconds to load)
    8812:  0 examples, 0 failures, 1 error occurred outside of examples
    ...
    
    8874:  "RUNFILE_PATH"=>"bundle/vendor/bundle",
    8875:  "RUN_UNDER_RUNFILES"=>"1",
    8876:  "SE_AVOID_STATS"=>"true",
    8877:  "SYSTEMDRIVE"=>"C:",
    8878:  "SYSTEMROOT"=>"C:\\Windows",
    8879:  "TEMP"=>"C:\\Users\\RUNNER~1\\AppData\\Local\\Temp",
    8880:  "TEST_BINARY"=>
    8881:  "rb/spec/integration/selenium/webdriver/manager-edge-remote.cmd",
    8882:  "TEST_INFRASTRUCTURE_FAILURE_FILE"=>
    8883:  "D:/_bazel/execroot/selenium/bazel-out/x64_windows-fastbuild/testlogs/rb/spec/integration/selenium/webdriver/manager-edge-remote/test.infrastructure_failure",
    ...
    
    8903:  "TEST_WORKSPACE"=>"selenium",
    8904:  "TMP"=>"C:\\Users\\RUNNER~1\\AppData\\Local\\Temp",
    8905:  "TZ"=>"UTC",
    8906:  "USER"=>"runneradmin",
    8907:  "WD_REMOTE_BROWSER"=>"edge",
    8908:  "WD_SPEC_DRIVER"=>"remote",
    8909:  "XML_OUTPUT_FILE"=>
    8910:  "D:/_bazel/execroot/selenium/bazel-out/x64_windows-fastbuild/testlogs/rb/spec/integration/selenium/webdriver/manager-edge-remote/test.xml"}
    8911:  An error occurred in a `before(:suite)` hook.
    8912:  Failure/Error: @pid = Process.spawn(*@command, options)
    8913:  Errno::EACCES:
    8914:  Permission denied - java
    8915:  # ./rb/lib/selenium/webdriver/common/child_process.rb:57:in `spawn'
    8916:  # ./rb/lib/selenium/webdriver/common/child_process.rb:57:in `start'
    8917:  # ./rb/lib/selenium/server.rb:204:in `start'
    8918:  # //?/D:/a/selenium/selenium/rb/spec/integration/selenium/webdriver/spec_helper.rb:40:in `block (2 levels) in <top (required)>'
    8919:  Finished in 0.05648 seconds (files took 0.6298 seconds to load)
    8920:  0 examples, 0 failures, 1 error occurred outside of examples
    ...
    
    8982:  "RUNFILE_PATH"=>"bundle/vendor/bundle",
    8983:  "RUN_UNDER_RUNFILES"=>"1",
    8984:  "SE_AVOID_STATS"=>"true",
    8985:  "SYSTEMDRIVE"=>"C:",
    8986:  "SYSTEMROOT"=>"C:\\Windows",
    8987:  "TEMP"=>"C:\\Users\\RUNNER~1\\AppData\\Local\\Temp",
    8988:  "TEST_BINARY"=>
    8989:  "rb/spec/integration/selenium/webdriver/manager-edge-remote.cmd",
    8990:  "TEST_INFRASTRUCTURE_FAILURE_FILE"=>
    8991:  "D:/_bazel/execroot/selenium/bazel-out/x64_windows-fastbuild/testlogs/rb/spec/integration/selenium/webdriver/manager-edge-remote/test.infrastructure_failure",
    ...
    
    9011:  "TEST_WORKSPACE"=>"selenium",
    9012:  "TMP"=>"C:\\Users\\RUNNER~1\\AppData\\Local\\Temp",
    9013:  "TZ"=>"UTC",
    9014:  "USER"=>"runneradmin",
    9015:  "WD_REMOTE_BROWSER"=>"edge",
    9016:  "WD_SPEC_DRIVER"=>"remote",
    9017:  "XML_OUTPUT_FILE"=>
    9018:  "D:/_bazel/execroot/selenium/bazel-out/x64_windows-fastbuild/testlogs/rb/spec/integration/selenium/webdriver/manager-edge-remote/test.xml"}
    9019:  An error occurred in a `before(:suite)` hook.
    9020:  Failure/Error: @pid = Process.spawn(*@command, options)
    9021:  Errno::EACCES:
    9022:  Permission denied - java
    9023:  # ./rb/lib/selenium/webdriver/common/child_process.rb:57:in `spawn'
    9024:  # ./rb/lib/selenium/webdriver/common/child_process.rb:57:in `start'
    9025:  # ./rb/lib/selenium/server.rb:204:in `start'
    9026:  # //?/D:/a/selenium/selenium/rb/spec/integration/selenium/webdriver/spec_helper.rb:40:in `block (2 levels) in <top (required)>'
    9027:  Finished in 0.0569 seconds (files took 0.63423 seconds to load)
    9028:  0 examples, 0 failures, 1 error occurred outside of examples
    9029:  ================================================================================
    9030:  �[32m[2,910 / 2,911]�[0m 23 / 27 tests, �[31m�[1m23 failed�[0m;�[0m Testing //rb/spec/integration/selenium/webdriver:devtools-edge-remote; 0s disk-cache
    9031:  �[32m[2,910 / 2,911]�[0m 23 / 27 tests, �[31m�[1m23 failed�[0m;�[0m [Sched] Testing //rb/spec/integration/selenium/webdriver:devtools-edge-remote
    9032:  �[32m[2,910 / 2,911]�[0m 23 / 27 tests, �[31m�[1m23 failed�[0m;�[0m Testing //rb/spec/integration/selenium/webdriver:devtools-edge-remote; 1s local, disk-cache
    9033:  �[32m[2,910 / 2,911]�[0m 23 / 27 tests, �[31m�[1m23 failed�[0m;�[0m Testing //rb/spec/integration/selenium/webdriver:devtools-edge-remote; 6s local, disk-cache
    9034:  �[31m�[1mFAIL: �[0m//rb/spec/integration/selenium/webdriver:devtools-edge-remote (see D:/_bazel/execroot/selenium/bazel-out/x64_windows-fastbuild/testlogs/rb/spec/integration/selenium/webdriver/devtools-edge-remote/test_attempts/attempt_1.log)
    9035:  �[32m[2,910 / 2,911]�[0m 23 / 27 tests, �[31m�[1m23 failed�[0m;�[0m Testing //rb/spec/integration/selenium/webdriver:devtools-edge-remote; 8s local, disk-cache
    9036:  �[32m[2,910 / 2,911]�[0m 23 / 27 tests, �[31m�[1m23 failed�[0m;�[0m Testing //rb/spec/integration/selenium/webdriver:devtools-edge-remote; 14s local, disk-cache
    9037:  �[31m�[1mFAIL: �[0m//rb/spec/integration/selenium/webdriver:devtools-edge-remote (see D:/_bazel/execroot/selenium/bazel-out/x64_windows-fastbuild/testlogs/rb/spec/integration/selenium/webdriver/devtools-edge-remote/test_attempts/attempt_2.log)
    9038:  �[32m[2,910 / 2,911]�[0m 23 / 27 tests, �[31m�[1m23 failed�[0m;�[0m Testing //rb/spec/integration/selenium/webdriver:devtools-edge-remote; 15s local, disk-cache
    9039:  �[32m[2,910 / 2,911]�[0m 23 / 27 tests, �[31m�[1m23 failed�[0m;�[0m Testing //rb/spec/integration/selenium/webdriver:devtools-edge-remote; 21s local, disk-cache
    9040:  �[31m�[1mFAIL: �[0m//rb/spec/integration/selenium/webdriver:devtools-edge-remote (see D:/_bazel/execroot/selenium/bazel-out/x64_windows-fastbuild/testlogs/rb/spec/integration/selenium/webdriver/devtools-edge-remote/test.log)
    9041:  �[31m�[1mFAILED: �[0m//rb/spec/integration/selenium/webdriver:devtools-edge-remote (Summary)
    ...
    
    9106:  "RUNFILE_PATH"=>"bundle/vendor/bundle",
    9107:  "RUN_UNDER_RUNFILES"=>"1",
    9108:  "SE_AVOID_STATS"=>"true",
    9109:  "SYSTEMDRIVE"=>"C:",
    9110:  "SYSTEMROOT"=>"C:\\Windows",
    9111:  "TEMP"=>"C:\\Users\\RUNNER~1\\AppData\\Local\\Temp",
    9112:  "TEST_BINARY"=>
    9113:  "rb/spec/integration/selenium/webdriver/devtools-edge-remote.cmd",
    9114:  "TEST_INFRASTRUCTURE_FAILURE_FILE"=>
    9115:  "D:/_bazel/execroot/selenium/bazel-out/x64_windows-fastbuild/testlogs/rb/spec/integration/selenium/webdriver/devtools-edge-remote/test.infrastructure_failure",
    ...
    
    9136:  "TEST_WORKSPACE"=>"selenium",
    9137:  "TMP"=>"C:\\Users\\RUNNER~1\\AppData\\Local\\Temp",
    9138:  "TZ"=>"UTC",
    9139:  "USER"=>"runneradmin",
    9140:  "WD_REMOTE_BROWSER"=>"edge",
    9141:  "WD_SPEC_DRIVER"=>"remote",
    9142:  "XML_OUTPUT_FILE"=>
    9143:  "D:/_bazel/execroot/selenium/bazel-out/x64_windows-fastbuild/testlogs/rb/spec/integration/selenium/webdriver/devtools-edge-remote/test.xml"}
    9144:  An error occurred in a `before(:suite)` hook.
    9145:  Failure/Error: @pid = Process.spawn(*@command, options)
    9146:  Errno::EACCES:
    9147:  Permission denied - java
    9148:  # ./rb/lib/selenium/webdriver/common/child_process.rb:57:in `spawn'
    9149:  # ./rb/lib/selenium/webdriver/common/child_process.rb:57:in `start'
    9150:  # ./rb/lib/selenium/server.rb:204:in `start'
    9151:  # //?/D:/a/selenium/selenium/rb/spec/integration/selenium/webdriver/spec_helper.rb:40:in `block (2 levels) in <top (required)>'
    9152:  Finished in 0.05425 seconds (files took 0.58888 seconds to load)
    9153:  0 examples, 0 failures, 1 error occurred outside of examples
    ...
    
    9215:  "RUNFILE_PATH"=>"bundle/vendor/bundle",
    9216:  "RUN_UNDER_RUNFILES"=>"1",
    9217:  "SE_AVOID_STATS"=>"true",
    9218:  "SYSTEMDRIVE"=>"C:",
    9219:  "SYSTEMROOT"=>"C:\\Windows",
    9220:  "TEMP"=>"C:\\Users\\RUNNER~1\\AppData\\Local\\Temp",
    9221:  "TEST_BINARY"=>
    9222:  "rb/spec/integration/selenium/webdriver/devtools-edge-remote.cmd",
    9223:  "TEST_INFRASTRUCTURE_FAILURE_FILE"=>
    9224:  "D:/_bazel/execroot/selenium/bazel-out/x64_windows-fastbuild/testlogs/rb/spec/integration/selenium/webdriver/devtools-edge-remote/test.infrastructure_failure",
    ...
    
    9245:  "TEST_WORKSPACE"=>"selenium",
    9246:  "TMP"=>"C:\\Users\\RUNNER~1\\AppData\\Local\\Temp",
    9247:  "TZ"=>"UTC",
    9248:  "USER"=>"runneradmin",
    9249:  "WD_REMOTE_BROWSER"=>"edge",
    9250:  "WD_SPEC_DRIVER"=>"remote",
    9251:  "XML_OUTPUT_FILE"=>
    9252:  "D:/_bazel/execroot/selenium/bazel-out/x64_windows-fastbuild/testlogs/rb/spec/integration/selenium/webdriver/devtools-edge-remote/test.xml"}
    9253:  An error occurred in a `before(:suite)` hook.
    9254:  Failure/Error: @pid = Process.spawn(*@command, options)
    9255:  Errno::EACCES:
    9256:  Permission denied - java
    9257:  # ./rb/lib/selenium/webdriver/common/child_process.rb:57:in `spawn'
    9258:  # ./rb/lib/selenium/webdriver/common/child_process.rb:57:in `start'
    9259:  # ./rb/lib/selenium/server.rb:204:in `start'
    9260:  # //?/D:/a/selenium/selenium/rb/spec/integration/selenium/webdriver/spec_helper.rb:40:in `block (2 levels) in <top (required)>'
    9261:  Finished in 0.05553 seconds (files took 0.61735 seconds to load)
    9262:  0 examples, 0 failures, 1 error occurred outside of examples
    ...
    
    9324:  "RUNFILE_PATH"=>"bundle/vendor/bundle",
    9325:  "RUN_UNDER_RUNFILES"=>"1",
    9326:  "SE_AVOID_STATS"=>"true",
    9327:  "SYSTEMDRIVE"=>"C:",
    9328:  "SYSTEMROOT"=>"C:\\Windows",
    9329:  "TEMP"=>"C:\\Users\\RUNNER~1\\AppData\\Local\\Temp",
    9330:  "TEST_BINARY"=>
    9331:  "rb/spec/integration/selenium/webdriver/devtools-edge-remote.cmd",
    9332:  "TEST_INFRASTRUCTURE_FAILURE_FILE"=>
    9333:  "D:/_bazel/execroot/selenium/bazel-out/x64_windows-fastbuild/testlogs/rb/spec/integration/selenium/webdriver/devtools-edge-remote/test.infrastructure_failure",
    ...
    
    9354:  "TEST_WORKSPACE"=>"selenium",
    9355:  "TMP"=>"C:\\Users\\RUNNER~1\\AppData\\Local\\Temp",
    9356:  "TZ"=>"UTC",
    9357:  "USER"=>"runneradmin",
    9358:  "WD_REMOTE_BROWSER"=>"edge",
    9359:  "WD_SPEC_DRIVER"=>"remote",
    9360:  "XML_OUTPUT_FILE"=>
    9361:  "D:/_bazel/execroot/selenium/bazel-out/x64_windows-fastbuild/testlogs/rb/spec/integration/selenium/webdriver/devtools-edge-remote/test.xml"}
    9362:  An error occurred in a `before(:suite)` hook.
    9363:  Failure/Error: @pid = Process.spawn(*@command, options)
    9364:  Errno::EACCES:
    9365:  Permission denied - java
    9366:  # ./rb/lib/selenium/webdriver/common/child_process.rb:57:in `spawn'
    9367:  # ./rb/lib/selenium/webdriver/common/child_process.rb:57:in `start'
    9368:  # ./rb/lib/selenium/server.rb:204:in `start'
    9369:  # //?/D:/a/selenium/selenium/rb/spec/integration/selenium/webdriver/spec_helper.rb:40:in `block (2 levels) in <top (required)>'
    9370:  Finished in 0.05411 seconds (files took 0.60787 seconds to load)
    9371:  0 examples, 0 failures, 1 error occurred outside of examples
    9372:  ================================================================================
    9373:  �[32m[2,911 / 2,912]�[0m 24 / 27 tests, �[31m�[1m24 failed�[0m;�[0m Testing //rb/spec/integration/selenium/webdriver/bidi:log_inspector-edge-remote; 1s disk-cache
    9374:  �[32m[2,911 / 2,912]�[0m 24 / 27 tests, �[31m�[1m24 failed�[0m;�[0m [Sched] Testing //rb/spec/integration/selenium/webdriver/bidi:log_inspector-edge-remote
    9375:  �[32m[2,911 / 2,912]�[0m 24 / 27 tests, �[31m�[1m24 failed�[0m;�[0m Testing //rb/spec/integration/selenium/webdriver/bidi:log_inspector-edge-remote; 1s local, disk-cache
    9376:  �[32m[2,911 / 2,912]�[0m 24 / 27 tests, �[31m�[1m24 failed�[0m;�[0m Testing //rb/spec/integration/selenium/webdriver/bidi:log_inspector-edge-remote; 6s local, disk-cache
    9377:  �[31m�[1mFAIL: �[0m//rb/spec/integration/selenium/webdriver/bidi:log_inspector-edge-remote (see D:/_bazel/execroot/selenium/bazel-out/x64_windows-fastbuild/testlogs/rb/spec/integration/selenium/webdriver/bidi/log_inspector-edge-remote/test_attempts/attempt_1.log)
    9378:  �[32m[2,911 / 2,912]�[0m 24 / 27 tests, �[31m�[1m24 failed�[0m;�[0m Testing //rb/spec/integration/selenium/webdriver/bidi:log_inspector-edge-remote; 8s local, disk-cache
    9379:  �[32m[2,911 / 2,912]�[0m 24 / 27 tests, �[31m�[1m24 failed�[0m;�[0m Testing //rb/spec/integration/selenium/webdriver/bidi:log_inspector-edge-remote; 13s local, disk-cache
    9380:  �[31m�[1mFAIL: �[0m//rb/spec/integration/selenium/webdriver/bidi:log_inspector-edge-remote (see D:/_bazel/execroot/selenium/bazel-out/x64_windows-fastbuild/testlogs/rb/spec/integration/selenium/webdriver/bidi/log_inspector-edge-remote/test_attempts/attempt_2.log)
    9381:  �[32m[2,911 / 2,912]�[0m 24 / 27 tests, �[31m�[1m24 failed�[0m;�[0m Testing //rb/spec/integration/selenium/webdriver/bidi:log_inspector-edge-remote; 15s local, disk-cache
    9382:  �[32m[2,911 / 2,912]�[0m 24 / 27 tests, �[31m�[1m24 failed�[0m;�[0m Testing //rb/spec/integration/selenium/webdriver/bidi:log_inspector-edge-remote; 21s local, disk-cache
    9383:  �[31m�[1mFAIL: �[0m//rb/spec/integration/selenium/webdriver/bidi:log_inspector-edge-remote (see D:/_bazel/execroot/selenium/bazel-out/x64_windows-fastbuild/testlogs/rb/spec/integration/selenium/webdriver/bidi/log_inspector-edge-remote/test.log)
    9384:  �[31m�[1mFAILED: �[0m//rb/spec/integration/selenium/webdriver/bidi:log_inspector-edge-remote (Summary)
    ...
    
    9449:  "RUNFILE_PATH"=>"bundle/vendor/bundle",
    9450:  "RUN_UNDER_RUNFILES"=>"1",
    9451:  "SE_AVOID_STATS"=>"true",
    9452:  "SYSTEMDRIVE"=>"C:",
    9453:  "SYSTEMROOT"=>"C:\\Windows",
    9454:  "TEMP"=>"C:\\Users\\RUNNER~1\\AppData\\Local\\Temp",
    9455:  "TEST_BINARY"=>
    9456:  "rb/spec/integration/selenium/webdriver/bidi/log_inspector-edge-remote.cmd",
    9457:  "TEST_INFRASTRUCTURE_FAILURE_FILE"=>
    9458:  "D:/_bazel/execroot/selenium/bazel-out/x64_windows-fastbuild/testlogs/rb/spec/integration/selenium/webdriver/bidi/log_inspector-edge-remote/test.infrastructure_failure",
    ...
    
    9479:  "TEST_WORKSPACE"=>"selenium",
    9480:  "TMP"=>"C:\\Users\\RUNNER~1\\AppData\\Local\\Temp",
    9481:  "TZ"=>"UTC",
    9482:  "USER"=>"runneradmin",
    9483:  "WD_REMOTE_BROWSER"=>"edge",
    9484:  "WD_SPEC_DRIVER"=>"remote",
    9485:  "XML_OUTPUT_FILE"=>
    9486:  "D:/_bazel/execroot/selenium/bazel-out/x64_windows-fastbuild/testlogs/rb/spec/integration/selenium/webdriver/bidi/log_inspector-edge-remote/test.xml"}
    9487:  An error occurred in a `before(:suite)` hook.
    9488:  Failure/Error: @pid = Process.spawn(*@command, options)
    9489:  Errno::EACCES:
    9490:  Permission denied - java
    9491:  # ./rb/lib/selenium/webdriver/common/child_process.rb:57:in `spawn'
    9492:  # ./rb/lib/selenium/webdriver/common/child_process.rb:57:in `start'
    9493:  # ./rb/lib/selenium/server.rb:204:in `start'
    9494:  # //?/D:/a/selenium/selenium/rb/spec/integration/selenium/webdriver/spec_helper.rb:40:in `block (2 levels) in <top (required)>'
    9495:  Finished in 0.05548 seconds (files took 0.60949 seconds to load)
    9496:  0 examples, 0 failures, 1 error occurred outside of examples
    ...
    
    9558:  "RUNFILE_PATH"=>"bundle/vendor/bundle",
    9559:  "RUN_UNDER_RUNFILES"=>"1",
    9560:  "SE_AVOID_STATS"=>"true",
    9561:  "SYSTEMDRIVE"=>"C:",
    9562:  "SYSTEMROOT"=>"C:\\Windows",
    9563:  "TEMP"=>"C:\\Users\\RUNNER~1\\AppData\\Local\\Temp",
    9564:  "TEST_BINARY"=>
    9565:  "rb/spec/integration/selenium/webdriver/bidi/log_inspector-edge-remote.cmd",
    9566:  "TEST_INFRASTRUCTURE_FAILURE_FILE"=>
    9567:  "D:/_bazel/execroot/selenium/bazel-out/x64_windows-fastbuild/testlogs/rb/spec/integration/selenium/webdriver/bidi/log_inspector-edge-remote/test.infrastructure_failure",
    ...
    
    9588:  "TEST_WORKSPACE"=>"selenium",
    9589:  "TMP"=>"C:\\Users\\RUNNER~1\\AppData\\Local\\Temp",
    9590:  "TZ"=>"UTC",
    9591:  "USER"=>"runneradmin",
    9592:  "WD_REMOTE_BROWSER"=>"edge",
    9593:  "WD_SPEC_DRIVER"=>"remote",
    9594:  "XML_OUTPUT_FILE"=>
    9595:  "D:/_bazel/execroot/selenium/bazel-out/x64_windows-fastbuild/testlogs/rb/spec/integration/selenium/webdriver/bidi/log_inspector-edge-remote/test.xml"}
    9596:  An error occurred in a `before(:suite)` hook.
    9597:  Failure/Error: @pid = Process.spawn(*@command, options)
    9598:  Errno::EACCES:
    9599:  Permission denied - java
    9600:  # ./rb/lib/selenium/webdriver/common/child_process.rb:57:in `spawn'
    9601:  # ./rb/lib/selenium/webdriver/common/child_process.rb:57:in `start'
    9602:  # ./rb/lib/selenium/server.rb:204:in `start'
    9603:  # //?/D:/a/selenium/selenium/rb/spec/integration/selenium/webdriver/spec_helper.rb:40:in `block (2 levels) in <top (required)>'
    9604:  Finished in 0.05861 seconds (files took 0.61918 seconds to load)
    9605:  0 examples, 0 failures, 1 error occurred outside of examples
    ...
    
    9667:  "RUNFILE_PATH"=>"bundle/vendor/bundle",
    9668:  "RUN_UNDER_RUNFILES"=>"1",
    9669:  "SE_AVOID_STATS"=>"true",
    9670:  "SYSTEMDRIVE"=>"C:",
    9671:  "SYSTEMROOT"=>"C:\\Windows",
    9672:  "TEMP"=>"C:\\Users\\RUNNER~1\\AppData\\Local\\Temp",
    9673:  "TEST_BINARY"=>
    9674:  "rb/spec/integration/selenium/webdriver/bidi/log_inspector-edge-remote.cmd",
    9675:  "TEST_INFRASTRUCTURE_FAILURE_FILE"=>
    9676:  "D:/_bazel/execroot/selenium/bazel-out/x64_windows-fastbuild/testlogs/rb/spec/integration/selenium/webdriver/bidi/log_inspector-edge-remote/test.infrastructure_failure",
    ...
    
    9697:  "TEST_WORKSPACE"=>"selenium",
    9698:  "TMP"=>"C:\\Users\\RUNNER~1\\AppData\\Local\\Temp",
    9699:  "TZ"=>"UTC",
    9700:  "USER"=>"runneradmin",
    9701:  "WD_REMOTE_BROWSER"=>"edge",
    9702:  "WD_SPEC_DRIVER"=>"remote",
    9703:  "XML_OUTPUT_FILE"=>
    9704:  "D:/_bazel/execroot/selenium/bazel-out/x64_windows-fastbuild/testlogs/rb/spec/integration/selenium/webdriver/bidi/log_inspector-edge-remote/test.xml"}
    9705:  An error occurred in a `before(:suite)` hook.
    9706:  Failure/Error: @pid = Process.spawn(*@command, options)
    9707:  Errno::EACCES:
    9708:  Permission denied - java
    9709:  # ./rb/lib/selenium/webdriver/common/child_process.rb:57:in `spawn'
    9710:  # ./rb/lib/selenium/webdriver/common/child_process.rb:57:in `start'
    9711:  # ./rb/lib/selenium/server.rb:204:in `start'
    9712:  # //?/D:/a/selenium/selenium/rb/spec/integration/selenium/webdriver/spec_helper.rb:40:in `block (2 levels) in <top (required)>'
    9713:  Finished in 0.05466 seconds (files took 0.59693 seconds to load)
    9714:  0 examples, 0 failures, 1 error occurred outside of examples
    9715:  ================================================================================
    9716:  �[32m[2,912 / 2,913]�[0m 25 / 27 tests, �[31m�[1m25 failed�[0m;�[0m Testing //rb/spec/integration/selenium/webdriver/bidi:browsing_context-edge-remote; 0s disk-cache
    9717:  �[32m[2,912 / 2,913]�[0m 25 / 27 tests, �[31m�[1m25 failed�[0m;�[0m [Sched] Testing //rb/spec/integration/selenium/webdriver/bidi:browsing_context-edge-remote
    9718:  �[32m[2,912 / 2,913]�[0m 25 / 27 tests, �[31m�[1m25 failed�[0m;�[0m Testing //rb/spec/integration/selenium/webdriver/bidi:browsing_context-edge-remote; 1s local, disk-cache
    9719:  �[32m[2,912 / 2,913]�[0m 25 / 27 tests, �[31m�[1m25 failed�[0m;�[0m Testing //rb/spec/integration/selenium/webdriver/bidi:browsing_context-edge-remote; 6s local, disk-cache
    9720:  �[31m�[1mFAIL: �[0m//rb/spec/integration/selenium/webdriver/bidi:browsing_context-edge-remote (see D:/_bazel/execroot/selenium/bazel-out/x64_windows-fastbuild/testlogs/rb/spec/integration/selenium/webdriver/bidi/browsing_context-edge-remote/test_attempts/attempt_1.log)
    9721:  �[32m[2,912 / 2,913]�[0m 25 / 27 tests, �[31m�[1m25 failed�[0m;�[0m Testing //rb/spec/integration/selenium/webdriver/bidi:browsing_context-edge-remote; 8s local, disk-cache
    9722:  �[32m[2,912 / 2,913]�[0m 25 / 27 tests, �[31m�[1m25 failed�[0m;�[0m Testing //rb/spec/integration/selenium/webdriver/bidi:browsing_context-edge-remote; 13s local, disk-cache
    9723:  �[31m�[1mFAIL: �[0m//rb/spec/integration/selenium/webdriver/bidi:browsing_context-edge-remote (see D:/_bazel/execroot/selenium/bazel-out/x64_windows-fastbuild/testlogs/rb/spec/integration/selenium/webdriver/bidi/browsing_context-edge-remote/test_attempts/attempt_2.log)
    9724:  �[32m[2,912 / 2,913]�[0m 25 / 27 tests, �[31m�[1m25 failed�[0m;�[0m Testing //rb/spec/integration/selenium/webdriver/bidi:browsing_context-edge-remote; 15s local, disk-cache
    9725:  �[32m[2,912 / 2,913]�[0m 25 / 27 tests, �[31m�[1m25 failed�[0m;�[0m Testing //rb/spec/integration/selenium/webdriver/bidi:browsing_context-edge-remote; 21s local, disk-cache
    9726:  �[31m�[1mFAIL: �[0m//rb/spec/integration/selenium/webdriver/bidi:browsing_context-edge-remote (see D:/_bazel/execroot/selenium/bazel-out/x64_windows-fastbuild/testlogs/rb/spec/integration/selenium/webdriver/bidi/browsing_context-edge-remote/test.log)
    9727:  �[31m�[1mFAILED: �[0m//rb/spec/integration/selenium/webdriver/bidi:browsing_context-edge-remote (Summary)
    ...
    
    9792:  "RUNFILE_PATH"=>"bundle/vendor/bundle",
    9793:  "RUN_UNDER_RUNFILES"=>"1",
    9794:  "SE_AVOID_STATS"=>"true",
    9795:  "SYSTEMDRIVE"=>"C:",
    9796:  "SYSTEMROOT"=>"C:\\Windows",
    9797:  "TEMP"=>"C:\\Users\\RUNNER~1\\AppData\\Local\\Temp",
    9798:  "TEST_BINARY"=>
    9799:  "rb/spec/integration/selenium/webdriver/bidi/browsing_context-edge-remote.cmd",
    9800:  "TEST_INFRASTRUCTURE_FAILURE_FILE"=>
    9801:  "D:/_bazel/execroot/selenium/bazel-out/x64_windows-fastbuild/testlogs/rb/spec/integration/selenium/webdriver/bidi/browsing_context-edge-remote/test.infrastructure_failure",
    ...
    
    9822:  "TEST_WORKSPACE"=>"selenium",
    9823:  "TMP"=>"C:\\Users\\RUNNER~1\\AppData\\Local\\Temp",
    9824:  "TZ"=>"UTC",
    9825:  "USER"=>"runneradmin",
    9826:  "WD_REMOTE_BROWSER"=>"edge",
    9827:  "WD_SPEC_DRIVER"=>"remote",
    9828:  "XML_OUTPUT_FILE"=>
    9829:  "D:/_bazel/execroot/selenium/bazel-out/x64_windows-fastbuild/testlogs/rb/spec/integration/selenium/webdriver/bidi/browsing_context-edge-remote/test.xml"}
    9830:  An error occurred in a `before(:suite)` hook.
    9831:  Failure/Error: @pid = Process.spawn(*@command, options)
    9832:  Errno::EACCES:
    9833:  Permission denied - java
    9834:  # ./rb/lib/selenium/webdriver/common/child_process.rb:57:in `spawn'
    9835:  # ./rb/lib/selenium/webdriver/common/child_process.rb:57:in `start'
    9836:  # ./rb/lib/selenium/server.rb:204:in `start'
    9837:  # //?/D:/a/selenium/selenium/rb/spec/integration/selenium/webdriver/spec_helper.rb:40:in `block (2 levels) in <top (required)>'
    9838:  Finished in 0.05627 seconds (files took 0.59999 seconds to load)
    9839:  0 examples, 0 failures, 1 error occurred outside of examples
    ...
    
    9901:  "RUNFILE_PATH"=>"bundle/vendor/bundle",
    9902:  "RUN_UNDER_RUNFILES"=>"1",
    9903:  "SE_AVOID_STATS"=>"true",
    9904:  "SYSTEMDRIVE"=>"C:",
    9905:  "SYSTEMROOT"=>"C:\\Windows",
    9906:  "TEMP"=>"C:\\Users\\RUNNER~1\\AppData\\Local\\Temp",
    9907:  "TEST_BINARY"=>
    9908:  "rb/spec/integration/selenium/webdriver/bidi/browsing_context-edge-remote.cmd",
    9909:  "TEST_INFRASTRUCTURE_FAILURE_FILE"=>
    9910:  "D:/_bazel/execroot/selenium/bazel-out/x64_windows-fastbuild/testlogs/rb/spec/integration/selenium/webdriver/bidi/browsing_context-edge-remote/test.infrastructure_failure",
    ...
    
    9931:  "TEST_WORKSPACE"=>"selenium",
    9932:  "TMP"=>"C:\\Users\\RUNNER~1\\AppData\\Local\\Temp",
    9933:  "TZ"=>"UTC",
    9934:  "USER"=>"runneradmin",
    9935:  "WD_REMOTE_BROWSER"=>"edge",
    9936:  "WD_SPEC_DRIVER"=>"remote",
    9937:  "XML_OUTPUT_FILE"=>
    9938:  "D:/_bazel/execroot/selenium/bazel-out/x64_windows-fastbuild/testlogs/rb/spec/integration/selenium/webdriver/bidi/browsing_context-edge-remote/test.xml"}
    9939:  An error occurred in a `before(:suite)` hook.
    9940:  Failure/Error: @pid = Process.spawn(*@command, options)
    9941:  Errno::EACCES:
    9942:  Permission denied - java
    9943:  # ./rb/lib/selenium/webdriver/common/child_process.rb:57:in `spawn'
    9944:  # ./rb/lib/selenium/webdriver/common/child_process.rb:57:in `start'
    9945:  # ./rb/lib/selenium/server.rb:204:in `start'
    9946:  # //?/D:/a/selenium/selenium/rb/spec/integration/selenium/webdriver/spec_helper.rb:40:in `block (2 levels) in <top (required)>'
    9947:  Finished in 0.0552 seconds (files took 0.60022 seconds to load)
    9948:  0 examples, 0 failures, 1 error occurred outside of examples
    ...
    
    10010:  "RUNFILE_PATH"=>"bundle/vendor/bundle",
    10011:  "RUN_UNDER_RUNFILES"=>"1",
    10012:  "SE_AVOID_STATS"=>"true",
    10013:  "SYSTEMDRIVE"=>"C:",
    10014:  "SYSTEMROOT"=>"C:\\Windows",
    10015:  "TEMP"=>"C:\\Users\\RUNNER~1\\AppData\\Local\\Temp",
    10016:  "TEST_BINARY"=>
    10017:  "rb/spec/integration/selenium/webdriver/bidi/browsing_context-edge-remote.cmd",
    10018:  "TEST_INFRASTRUCTURE_FAILURE_FILE"=>
    10019:  "D:/_bazel/execroot/selenium/bazel-out/x64_windows-fastbuild/testlogs/rb/spec/integration/selenium/webdriver/bidi/browsing_context-edge-remote/test.infrastructure_failure",
    ...
    
    10040:  "TEST_WORKSPACE"=>"selenium",
    10041:  "TMP"=>"C:\\Users\\RUNNER~1\\AppData\\Local\\Temp",
    10042:  "TZ"=>"UTC",
    10043:  "USER"=>"runneradmin",
    10044:  "WD_REMOTE_BROWSER"=>"edge",
    10045:  "WD_SPEC_DRIVER"=>"remote",
    10046:  "XML_OUTPUT_FILE"=>
    10047:  "D:/_bazel/execroot/selenium/bazel-out/x64_windows-fastbuild/testlogs/rb/spec/integration/selenium/webdriver/bidi/browsing_context-edge-remote/test.xml"}
    10048:  An error occurred in a `before(:suite)` hook.
    10049:  Failure/Error: @pid = Process.spawn(*@command, options)
    10050:  Errno::EACCES:
    10051:  Permission denied - java
    10052:  # ./rb/lib/selenium/webdriver/common/child_process.rb:57:in `spawn'
    10053:  # ./rb/lib/selenium/webdriver/common/child_process.rb:57:in `start'
    10054:  # ./rb/lib/selenium/server.rb:204:in `start'
    10055:  # //?/D:/a/selenium/selenium/rb/spec/integration/selenium/webdriver/spec_helper.rb:40:in `block (2 levels) in <top (required)>'
    10056:  Finished in 0.0543 seconds (files took 0.61315 seconds to load)
    10057:  0 examples, 0 failures, 1 error occurred outside of examples
    10058:  ================================================================================
    10059:  �[32m[2,913 / 2,914]�[0m 26 / 27 tests, �[31m�[1m26 failed�[0m;�[0m Testing //rb/spec/integration/selenium/webdriver:bidi-edge-remote; 1s disk-cache
    10060:  �[32m[2,913 / 2,914]�[0m 26 / 27 tests, �[31m�[1m26 failed�[0m;�[0m [Sched] Testing //rb/spec/integration/selenium/webdriver:bidi-edge-remote
    10061:  �[32m[2,913 / 2,914]�[0m 26 / 27 tests, �[31m�[1m26 failed�[0m;�[0m Testing //rb/spec/integration/selenium/webdriver:bidi-edge-remote; 1s local, disk-cache
    10062:  �[32m[2,913 / 2,914]�[0m 26 / 27 tests, �[31m�[1m26 failed�[0m;�[0m Testing //rb/spec/integration/selenium/webdriver:bidi-edge-remote; 6s local, disk-cache
    10063:  �[31m�[1mFAIL: �[0m//rb/spec/integration/selenium/webdriver:bidi-edge-remote (see D:/_bazel/execroot/selenium/bazel-out/x64_windows-fastbuild/testlogs/rb/spec/integration/selenium/webdriver/bidi-edge-remote/test_attempts/attempt_1.log)
    10064:  �[32m[2,913 / 2,914]�[0m 26 / 27 tests, �[31m�[1m26 failed�[0m;�[0m Testing //rb/spec/integration/selenium/webdriver:bidi-edge-remote; 8s local, disk-cache
    10065:  �[32m[2,913 / 2,914]�[0m 26 / 27 tests, �[31m�[1m26 failed�[0m;�[0m Testing //rb/spec/integration/selenium/webdriver:bidi-edge-remote; 14s local, disk-cache
    10066:  �[31m�[1mFAIL: �[0m//rb/spec/integration/selenium/webdriver:bidi-edge-remote (see D:/_bazel/execroot/selenium/bazel-out/x64_windows-fastbuild/testlogs/rb/spec/integration/selenium/webdriver/bidi-edge-remote/test_attempts/attempt_2.log)
    10067:  �[32m[2,913 / 2,914]�[0m 26 / 27 tests, �[31m�[1m26 failed�[0m;�[0m Testing //rb/spec/integration/selenium/webdriver:bidi-edge-remote; 15s local, disk-cache
    10068:  �[32m[2,913 / 2,914]�[0m 26 / 27 tests, �[31m�[1m26 failed�[0m;�[0m Testing //rb/spec/integration/selenium/webdriver:bidi-edge-remote; 21s local, disk-cache
    10069:  �[31m�[1mFAIL: �[0m//rb/spec/integration/selenium/webdriver:bidi-edge-remote (see D:/_bazel/execroot/selenium/bazel-out/x64_windows-fastbuild/testlogs/rb/spec/integration/selenium/webdriver/bidi-edge-remote/test.log)
    10070:  �[31m�[1mFAILED: �[0m//rb/spec/integration/selenium/webdriver:bidi-edge-remote (Summary)
    ...
    
    10135:  "RUNFILE_PATH"=>"bundle/vendor/bundle",
    10136:  "RUN_UNDER_RUNFILES"=>"1",
    10137:  "SE_AVOID_STATS"=>"true",
    10138:  "SYSTEMDRIVE"=>"C:",
    10139:  "SYSTEMROOT"=>"C:\\Windows",
    10140:  "TEMP"=>"C:\\Users\\RUNNER~1\\AppData\\Local\\Temp",
    10141:  �[32mINFO: �[0mFound 27 test targets...
    10142:  "TEST_BINARY"=>"rb/spec/integration/selenium/webdriver/bidi-edge-remote.cmd",
    10143:  "TEST_INFRASTRUCTURE_FAILURE_FILE"=>
    10144:  "D:/_bazel/execroot/selenium/bazel-out/x64_windows-fastbuild/testlogs/rb/spec/integration/selenium/webdriver/bidi-edge-remote/test.infrastructure_failure",
    ...
    
    10164:  "TEST_WORKSPACE"=>"selenium",
    10165:  "TMP"=>"C:\\Users\\RUNNER~1\\AppData\\Local\\Temp",
    10166:  "TZ"=>"UTC",
    10167:  "USER"=>"runneradmin",
    10168:  "WD_REMOTE_BROWSER"=>"edge",
    10169:  "WD_SPEC_DRIVER"=>"remote",
    10170:  "XML_OUTPUT_FILE"=>
    10171:  "D:/_bazel/execroot/selenium/bazel-out/x64_windows-fastbuild/testlogs/rb/spec/integration/selenium/webdriver/bidi-edge-remote/test.xml"}
    10172:  An error occurred in a `before(:suite)` hook.
    10173:  Failure/Error: @pid = Process.spawn(*@command, options)
    10174:  Errno::EACCES:
    10175:  Permission denied - java
    10176:  # ./rb/lib/selenium/webdriver/common/child_process.rb:57:in `spawn'
    10177:  # ./rb/lib/selenium/webdriver/common/child_process.rb:57:in `start'
    10178:  # ./rb/lib/selenium/server.rb:204:in `start'
    10179:  # //?/D:/a/selenium/selenium/rb/spec/integration/selenium/webdriver/spec_helper.rb:40:in `block (2 levels) in <top (required)>'
    10180:  Finished in 0.05609 seconds (files took 0.65357 seconds to load)
    10181:  0 examples, 0 failures, 1 error occurred outside of examples
    ...
    
    10242:  "RUNFILES_MANIFEST_ONLY"=>"1",
    10243:  "RUNFILE_PATH"=>"bundle/vendor/bundle",
    10244:  "RUN_UNDER_RUNFILES"=>"1",
    10245:  "SE_AVOID_STATS"=>"true",
    10246:  "SYSTEMDRIVE"=>"C:",
    10247:  "SYSTEMROOT"=>"C:\\Windows",
    10248:  "TEMP"=>"C:\\Users\\RUNNER~1\\AppData\\Local\\Temp",
    10249:  "TEST_BINARY"=>"rb/spec/integration/selenium/webdriver/bidi-edge-remote.cmd",
    10250:  "TEST_INFRASTRUCTURE_FAILURE_FILE"=>
    10251:  "D:/_bazel/execroot/selenium/bazel-out/x64_windows-fastbuild/testlogs/rb/spec/integration/selenium/webdriver/bidi-edge-remote/test.infrastructure_failure",
    ...
    
    10271:  "TEST_WORKSPACE"=>"selenium",
    10272:  "TMP"=>"C:\\Users\\RUNNER~1\\AppData\\Local\\Temp",
    10273:  "TZ"=>"UTC",
    10274:  "USER"=>"runneradmin",
    10275:  "WD_REMOTE_BROWSER"=>"edge",
    10276:  "WD_SPEC_DRIVER"=>"remote",
    10277:  "XML_OUTPUT_FILE"=>
    10278:  "D:/_bazel/execroot/selenium/bazel-out/x64_windows-fastbuild/testlogs/rb/spec/integration/selenium/webdriver/bidi-edge-remote/test.xml"}
    10279:  An error occurred in a `before(:suite)` hook.
    10280:  Failure/Error: @pid = Process.spawn(*@command, options)
    10281:  Errno::EACCES:
    10282:  Permission denied - java
    10283:  # ./rb/lib/selenium/webdriver/common/child_process.rb:57:in `spawn'
    10284:  # ./rb/lib/selenium/webdriver/common/child_process.rb:57:in `start'
    10285:  # ./rb/lib/selenium/server.rb:204:in `start'
    10286:  # //?/D:/a/selenium/selenium/rb/spec/integration/selenium/webdriver/spec_helper.rb:40:in `block (2 levels) in <top (required)>'
    10287:  Finished in 0.05437 seconds (files took 0.60469 seconds to load)
    10288:  0 examples, 0 failures, 1 error occurred outside of examples
    ...
    
    10349:  "RUNFILES_MANIFEST_ONLY"=>"1",
    10350:  "RUNFILE_PATH"=>"bundle/vendor/bundle",
    10351:  "RUN_UNDER_RUNFILES"=>"1",
    10352:  "SE_AVOID_STATS"=>"true",
    10353:  "SYSTEMDRIVE"=>"C:",
    10354:  "SYSTEMROOT"=>"C:\\Windows",
    10355:  "TEMP"=>"C:\\Users\\RUNNER~1\\AppData\\Local\\Temp",
    10356:  "TEST_BINARY"=>"rb/spec/integration/selenium/webdriver/bidi-edge-remote.cmd",
    10357:  "TEST_INFRASTRUCTURE_FAILURE_FILE"=>
    10358:  "D:/_bazel/execroot/selenium/bazel-out/x64_windows-fastbuild/testlogs/rb/spec/integration/selenium/webdriver/bidi-edge-remote/test.infrastructure_failure",
    ...
    
    10378:  "TEST_WORKSPACE"=>"selenium",
    10379:  "TMP"=>"C:\\Users\\RUNNER~1\\AppData\\Local\\Temp",
    10380:  "TZ"=>"UTC",
    10381:  "USER"=>"runneradmin",
    10382:  "WD_REMOTE_BROWSER"=>"edge",
    10383:  "WD_SPEC_DRIVER"=>"remote",
    10384:  "XML_OUTPUT_FILE"=>
    10385:  "D:/_bazel/execroot/selenium/bazel-out/x64_windows-fastbuild/testlogs/rb/spec/integration/selenium/webdriver/bidi-edge-remote/test.xml"}
    10386:  An error occurred in a `before(:suite)` hook.
    10387:  Failure/Error: @pid = Process.spawn(*@command, options)
    10388:  Errno::EACCES:
    10389:  Permission denied - java
    10390:  # ./rb/lib/selenium/webdriver/common/child_process.rb:57:in `spawn'
    10391:  # ./rb/lib/selenium/webdriver/common/child_process.rb:57:in `start'
    10392:  # ./rb/lib/selenium/server.rb:204:in `start'
    10393:  # //?/D:/a/selenium/selenium/rb/spec/integration/selenium/webdriver/spec_helper.rb:40:in `block (2 levels) in <top (required)>'
    10394:  Finished in 0.0529 seconds (files took 0.59349 seconds to load)
    10395:  0 examples, 0 failures, 1 error occurred outside of examples
    10396:  ================================================================================
    10397:  �[32mINFO: �[0mElapsed time: 994.336s, Critical Path: 276.72s
    10398:  �[32mINFO: �[0m2684 processes: 408 disk cache hit, 1059 internal, 383 local, 834 worker.
    10399:  �[32mINFO: �[0mBuild completed, 27 tests FAILED, 2684 total actions
    10400:  //rb/spec/integration/selenium/webdriver:action_builder-edge-remote      �[0m�[31m�[1mFAILED�[0m in 3 out of 3 in 7.2s
    10401:  Stats over 3 runs: max = 7.2s, min = 6.7s, avg = 6.9s, dev = 0.2s
    10402:  D:/_bazel/execroot/selenium/bazel-out/x64_windows-fastbuild/testlogs/rb/spec/integration/selenium/webdriver/action_builder-edge-remote/test.log
    10403:  D:/_bazel/execroot/selenium/bazel-out/x64_windows-fastbuild/testlogs/rb/spec/integration/selenium/webdriver/action_builder-edge-remote/test_attempts/attempt_1.log
    10404:  D:/_bazel/execroot/selenium/bazel-out/x64_windows-fastbuild/testlogs/rb/spec/integration/selenium/webdriver/action_builder-edge-remote/test_attempts/attempt_2.log
    10405:  //rb/spec/integration/selenium/webdriver:bidi-edge-remote                �[0m�[31m�[1mFAILED�[0m in 3 out of 3 in 6.7s
    10406:  Stats over 3 runs: max = 6.7s, min = 6.6s, avg = 6.7s, dev = 0.0s
    10407:  D:/_bazel/execroot/selenium/bazel-out/x64_windows-fastbuild/testlogs/rb/spec/integration/selenium/webdriver/bidi-edge-remote/test.log
    10408:  D:/_bazel/execroot/selenium/bazel-out/x64_windows-fastbuild/testlogs/rb/spec/integration/selenium/webdriver/bidi-edge-remote/test_attempts/attempt_1.log
    10409:  D:/_bazel/execroot/selenium/bazel-out/x64_windows-fastbuild/testlogs/rb/spec/integration/selenium/webdriver/bidi-edge-remote/test_attempts/attempt_2.log
    10410:  //rb/spec/integration/selenium/webdriver:devtools-edge-remote            �[0m�[31m�[1mFAILED�[0m in 3 out of 3 in 6.7s
    10411:  Stats over 3 runs: max = 6.7s, min = 6.7s, avg = 6.7s, dev = 0.0s
    10412:  D:/_bazel/execroot/selenium/bazel-out/x64_windows-fastbuild/testlogs/rb/spec/integration/selenium/webdriver/devtools-edge-remote/test.log
    10413:  D:/_bazel/execroot/selenium/bazel-out/x64_windows-fastbuild/testlogs/rb/spec/integration/selenium/webdriver/devtools-edge-remote/test_attempts/attempt_1.log
    10414:  D:/_bazel/execroot/selenium/bazel-out/x64_windows-fastbuild/testlogs/rb/spec/integration/selenium/webdriver/devtools-edge-remote/test_attempts/attempt_2.log
    10415:  //rb/spec/integration/selenium/webdriver:driver-edge-remote              �[0m�[31m�[1mFAILED�[0m in 3 out of 3 in 6.9s
    10416:  Stats over 3 runs: max = 6.9s, min = 6.8s, avg = 6.9s, dev = 0.0s
    10417:  D:/_bazel/execroot/selenium/bazel-out/x64_windows-fastbuild/testlogs/rb/spec/integration/selenium/webdriver/driver-edge-remote/test.log
    10418:  D:/_bazel/execroot/selenium/bazel-out/x64_windows-fastbuild/testlogs/rb/spec/integration/selenium/webdriver/driver-edge-remote/test_attempts/attempt_1.log
    10419:  D:/_bazel/execroot/selenium/bazel-out/x64_windows-fastbuild/testlogs/rb/spec/integration/selenium/webdriver/driver-edge-remote/test_attempts/attempt_2.log
    10420:  //rb/spec/integration/selenium/webdriver:element-edge-remote             �[0m�[31m�[1mFAILED�[0m in 3 out of 3 in 7.0s
    10421:  Stats over 3 runs: max = 7.0s, min = 6.7s, avg = 6.9s, dev = 0.1s
    10422:  D:/_bazel/execroot/selenium/bazel-out/x64_windows-fastbuild/testlogs/rb/spec/integration/selenium/webdriver/element-edge-remote/test.log
    10423:  D:/_bazel/execroot/selenium/bazel-out/x64_windows-fastbuild/testlogs/rb/spec/integration/selenium/webdriver/element-edge-remote/test_attempts/attempt_1.log
    10424:  D:/_bazel/execroot/selenium/bazel-out/x64_windows-fastbuild/testlogs/rb/spec/integration/selenium/webdriver/element-edge-remote/test_attempts/attempt_2.log
    10425:  //rb/spec/integration/selenium/webdriver:error-edge-remote               �[0m�[31m�[1mFAILED�[0m in 3 out of 3 in 7.3s
    10426:  Stats over 3 runs: max = 7.3s, min = 6.7s, avg = 7.0s, dev = 0.3s
    10427:  D:/_bazel/execroot/selenium/bazel-out/x64_windows-fastbuild/testlogs/rb/spec/integration/selenium/webdriver/error-edge-remote/test.log
    10428:  D:/_bazel/execroot/selenium/bazel-out/x64_windows-fastbuild/testlogs/rb/spec/integration/selenium/webdriver/error-edge-remote/test_attempts/attempt_1.log
    10429:  D:/_bazel/execroot/selenium/bazel-out/x64_windows-fastbuild/testlogs/rb/spec/integration/selenium/webdriver/error-edge-remote/test_attempts/attempt_2.log
    10430:  //rb/spec/integration/selenium/webdriver:guard-edge-remote               �[0m�[31m�[1mFAILED�[0m in 3 out of 3 in 6.9s
    10431:  Stats over 3 runs: max = 6.9s, min = 6.7s, avg = 6.8s, dev = 0.1s
    10432:  D:/_bazel/execroot/selenium/bazel-out/x64_windows-fastbuild/testlogs/rb/spec/integration/selenium/webdriver/guard-edge-remote/test.log
    10433:  D:/_bazel/execroot/selenium/bazel-out/x64_windows-fastbuild/testlogs/rb/spec/integration/selenium/webdriver/guard-edge-remote/test_attempts/attempt_1.log
    10434:  D:/_bazel/execroot/selenium/bazel-out/x64_windows-fastbuild/testlogs/rb/spec/integration/selenium/webdriver/guard-edge-remote/test_attempts/attempt_2.log
    10435:  //rb/spec/integration/selenium/webdriver:listener-edge-remote            �[0m�[31m�[1mFAILED�[0m in 3 out of 3 in 7.2s
    10436:  Stats over 3 runs: max = 7.2s, min = 6.7s, avg = 6.9s, dev = 0.2s
    10437:  D:/_bazel/execroot/selenium/bazel-out/x64_windows-fastbuild/testlogs/rb/spec/integration/selenium/webdriver/listener-edge-remote/test.log
    10438:  D:/_bazel/execroot/selenium/bazel-out/x64_windows-fastbuild/testlogs/rb/spec/integration/selenium/webdriver/listener-edge-remote/test_attempts/attempt_1.log
    10439:  D:/_bazel/execroot/selenium/bazel-out/x64_windows-fastbuild/testlogs/rb/spec/integration/selenium/webdriver/listener-edge-remote/test_attempts/attempt_2.log
    10440:  //rb/spec/integration/selenium/webdriver:manager-edge-remote             �[0m�[31m�[1mFAILED�[0m in 3 out of 3 in 6.8s
    10441:  Stats over 3 runs: max = 6.8s, min = 6.7s, avg = 6.7s, dev = 0.0s
    10442:  D:/_bazel/execroot/selenium/bazel-out/x64_windows-fastbuild/testlogs/rb/spec/integration/selenium/webdriver/manager-edge-remote/test.log
    10443:  D:/_bazel/execroot/selenium/bazel-out/x64_windows-fastbuild/testlogs/rb/spec/integration/selenium/webdriver/manager-edge-remote/test_attempts/attempt_1.log
    10444:  D:/_bazel/execroot/selenium/bazel-out/x64_windows-fastbuild/testlogs/rb/spec/integration/selenium/webdriver/manager-edge-remote/test_attempts/attempt_2.log
    10445:  //rb/spec/integration/selenium/webdriver:navigation-edge-remote          �[0m�[31m�[1mFAILED�[0m in 3 out of 3 in 7.8s
    10446:  Stats over 3 runs: max = 7.8s, min = 6.7s, avg = 7.2s, dev = 0.5s
    10447:  D:/_bazel/execroot/selenium/bazel-out/x64_windows-fastbuild/testlogs/rb/spec/integration/selenium/webdriver/navigation-edge-remote/test.log
    10448:  D:/_bazel/execroot/selenium/bazel-out/x64_windows-fastbuild/testlogs/rb/spec/integration/selenium/webdriver/navigation-edge-remote/test_attempts/attempt_1.log
    10449:  D:/_bazel/execroot/selenium/bazel-out/x64_windows-fastbuild/testlogs/rb/spec/integration/selenium/webdriver/navigation-edge-remote/test_attempts/attempt_2.log
    10450:  //rb/spec/integration/selenium/webdriver:select-edge-remote              �[0m�[31m�[1mFAILED�[0m in 3 out of 3 in 7.3s
    10451:  Stats over 3 runs: max = 7.3s, min = 6.8s, avg = 7.0s, dev = 0.2s
    10452:  D:/_bazel/execroot/selenium/bazel-out/x64_windows-fastbuild/testlogs/rb/spec/integration/selenium/webdriver/select-edge-remote/test.log
    10453:  D:/_bazel/execroot/selenium/bazel-out/x64_windows-fastbuild/testlogs/rb/spec/integration/selenium/webdriver/select-edge-remote/test_attempts/attempt_1.log
    10454:  D:/_bazel/execroot/selenium/bazel-out/x64_windows-fastbuild/testlogs/rb/spec/integration/selenium/webdriver/select-edge-remote/test_attempts/attempt_2.log
    10455:  //rb/spec/integration/selenium/webdriver:shadow_root-edge-remote         �[0m�[31m�[1mFAILED�[0m in 3 out of 3 in 7.6s
    10456:  Stats over 3 runs: max = 7.6s, min = 6.8s, avg = 7.1s, dev = 0.4s
    10457:  D:/_bazel/execroot/selenium/bazel-out/x64_windows-fastbuild/testlogs/rb/spec/integration/selenium/webdriver/shadow_root-edge-remote/test.log
    10458:  D:/_bazel/execroot/selenium/bazel-out/x64_windows-fastbuild/testlogs/rb/spec/integration/selenium/webdriver/shadow_root-edge-remote/test_attempts/attempt_1.log
    10459:  D:/_bazel/execroot/selenium/bazel-out/x64_windows-fastbuild/testlogs/rb/spec/integration/selenium/webdriver/shadow_root-edge-remote/test_attempts/attempt_2.log
    10460:  //rb/spec/integration/selenium/webdriver:storage-edge-remote             �[0m�[31m�[1mFAILED�[0m in 3 out of 3 in 6.8s
    10461:  Stats over 3 runs: max = 6.8s, min = 6.7s, avg = 6.8s, dev = 0.1s
    10462:  D:/_bazel/execroot/selenium/bazel-out/x64_windows-fastbuild/testlogs/rb/spec/integration/selenium/webdriver/storage-edge-remote/test.log
    10463:  D:/_bazel/execroot/selenium/bazel-out/x64_windows-fastbuild/testlogs/rb/spec/integration/selenium/webdriver/storage-edge-remote/test_attempts/attempt_1.log
    10464:  D:/_bazel/execroot/selenium/bazel-out/x64_windows-fastbuild/testlogs/rb/spec/integration/selenium/webdriver/storage-edge-remote/test_attempts/attempt_2.log
    10465:  //rb/spec/integration/selenium/webdriver:takes_screenshot-edge-remote    �[0m�[31m�[1mFAILED�[0m in 3 out of 3 in 7.3s
    10466:  Stats over 3 runs: max = 7.3s, min = 6.7s, avg = 7.0s, dev = 0.3s
    10467:  D:/_bazel/execroot/selenium/bazel-out/x64_windows-fastbuild/testlogs/rb/spec/integration/selenium/webdriver/takes_screenshot-edge-remote/test.log
    10468:  D:/_bazel/execroot/selenium/bazel-out/x64_windows-fastbuild/testlogs/rb/spec/integration/selenium/webdriver/takes_screenshot-edge-remote/test_attempts/attempt_1.log
    10469:  D:/_bazel/execroot/selenium/bazel-out/x64_windows-fastbuild/testlogs/rb/spec/integration/selenium/webdriver/takes_screenshot-edge-remote/test_attempts/attempt_2.log
    10470:  //rb/spec/integration/selenium/webdriver:target_locator-edge-remote      �[0m�[31m�[1mFAILED�[0m in 3 out of 3 in 6.9s
    10471:  Stats over 3 runs: max = 6.9s, min = 6.8s, avg = 6.9s, dev = 0.0s
    10472:  D:/_bazel/execroot/selenium/bazel-out/x64_windows-fastbuild/testlogs/rb/spec/integration/selenium/webdriver/target_locator-edge-remote/test.log
    10473:  D:/_bazel/execroot/selenium/bazel-out/x64_windows-fastbuild/testlogs/rb/spec/integration/selenium/webdriver/target_locator-edge-remote/test_attempts/attempt_1.log
    10474:  D:/_bazel/execroot/selenium/bazel-out/x64_windows-fastbuild/testlogs/rb/spec/integration/selenium/webdriver/target_locator-edge-remote/test_attempts/attempt_2.log
    10475:  //rb/spec/integration/selenium/webdriver:timeout-edge-remote             �[0m�[31m�[1mFAILED�[0m in 3 out of 3 in 7.3s
    10476:  Stats over 3 runs: max = 7.3s, min = 6.8s, avg = 7.0s, dev = 0.2s
    10477:  D:/_bazel/execroot/selenium/bazel-out/x64_windows-fastbuild/testlogs/rb/spec/integration/selenium/webdriver/timeout-edge-remote/test.log
    10478:  D:/_bazel/execroot/selenium/bazel-out/x64_windows-fastbuild/testlogs/rb/spec/integration/selenium/webdriver/timeout-edge-remote/test_attempts/attempt_1.log
    10479:  D:/_bazel/execroot/selenium/bazel-out/x64_windows-fastbuild/testlogs/rb/spec/integration/selenium/webdriver/timeout-edge-remote/test_attempts/attempt_2.log
    10480:  //rb/spec/integration/selenium/webdriver:virtual_authenticator-edge-remote �[0m�[31m�[1mFAILED�[0m in 3 out of 3 in 6.9s
    10481:  Stats over 3 runs: max = 6.9s, min = 6.7s, avg = 6.8s, dev = 0.1s
    10482:  D:/_bazel/execroot/selenium/bazel-out/x64_windows-fastbuild/testlogs/rb/spec/integration/selenium/webdriver/virtual_authenticator-edge-remote/test.log
    10483:  D:/_bazel/execroot/selenium/bazel-out/x64_windows-fastbuild/testlogs/rb/spec/integration/selenium/webdriver/virtual_authenticator-edge-remote/test_attempts/attempt_1.log
    10484:  D:/_bazel/execroot/selenium/bazel-out/x64_windows-fastbuild/testlogs/rb/spec/integration/selenium/webdriver/virtual_authenticator-edge-remote/test_attempts/attempt_2.log
    10485:  //rb/spec/integration/selenium/webdriver:window-edge-remote              �[0m�[31m�[1mFAILED�[0m in 3 out of 3 in 7.3s
    10486:  Stats over 3 runs: max = 7.3s, min = 6.7s, avg = 7.0s, dev = 0.2s
    10487:  D:/_bazel/execroot/selenium/bazel-out/x64_windows-fastbuild/testlogs/rb/spec/integration/selenium/webdriver/window-edge-remote/test.log
    10488:  D:/_bazel/execroot/selenium/bazel-out/x64_windows-fastbuild/testlogs/rb/spec/integration/selenium/webdriver/window-edge-remote/test_attempts/attempt_1.log
    10489:  D:/_bazel/execroot/selenium/bazel-out/x64_windows-fastbuild/testlogs/rb/spec/integration/selenium/webdriver/window-edge-remote/test_attempts/attempt_2.log
    10490:  //rb/spec/integration/selenium/webdriver:zipper-edge-remote              �[0m�[31m�[1mFAILED�[0m in 3 out of 3 in 6.8s
    10491:  Stats over 3 runs: max = 6.8s, min = 6.6s, avg = 6.7s, dev = 0.1s
    10492:  D:/_bazel/execroot/selenium/bazel-out/x64_windows-fastbuild/testlogs/rb/spec/integration/selenium/webdriver/zipper-edge-remote/test.log
    10493:  D:/_bazel/execroot/selenium/bazel-out/x64_windows-fastbuild/testlogs/rb/spec/integration/selenium/webdriver/zipper-edge-remote/test_attempts/attempt_1.log
    10494:  D:/_bazel/execroot/selenium/bazel-out/x64_windows-fastbuild/testlogs/rb/spec/integration/selenium/webdriver/zipper-edge-remote/test_attempts/attempt_2.log
    10495:  //rb/spec/integration/selenium/webdriver/bidi:browsing_context-edge-remote �[0m�[31m�[1mFAILED�[0m in 3 out of 3 in 6.7s
    10496:  Stats over 3 runs: max = 6.7s, min = 6.6s, avg = 6.7s, dev = 0.0s
    10497:  D:/_bazel/execroot/selenium/bazel-out/x64_windows-fastbuild/testlogs/rb/spec/integration/selenium/webdriver/bidi/browsing_context-edge-remote/test.log
    10498:  D:/_bazel/execroot/selenium/bazel-out/x64_windows-fastbuild/testlogs/rb/spec/integration/selenium/webdriver/bidi/browsing_context-edge-remote/test_attempts/attempt_1.log
    10499:  D:/_bazel/execroot/selenium/bazel-out/x64_windows-fastbuild/testlogs/rb/spec/integration/selenium/webdriver/bidi/browsing_context-edge-remote/test_attempts/attempt_2.log
    10500:  //rb/spec/integration/selenium/webdriver/bidi:log_inspector-edge-remote  �[0m�[31m�[1mFAILED�[0m in 3 out of 3 in 6.7s
    10501:  Stats over 3 runs: max = 6.7s, min = 6.6s, avg = 6.7s, dev = 0.0s
    10502:  D:/_bazel/execroot/selenium/bazel-out/x64_windows-fastbuild/testlogs/rb/spec/integration/selenium/webdriver/bidi/log_inspector-edge-remote/test.log
    10503:  D:/_bazel/execroot/selenium/bazel-out/x64_windows-fastbuild/testlogs/rb/spec/integration/selenium/webdriver/bidi/log_inspector-edge-remote/test_attempts/attempt_1.log
    10504:  D:/_bazel/execroot/selenium/bazel-out/x64_windows-fastbuild/testlogs/rb/spec/integration/selenium/webdriver/bidi/log_inspector-edge-remote/test_attempts/attempt_2.log
    10505:  //rb/spec/integration/selenium/webdriver/edge:driver-edge-remote         �[0m�[31m�[1mFAILED�[0m in 3 out of 3 in 7.4s
    10506:  Stats over 3 runs: max = 7.4s, min = 6.9s, avg = 7.2s, dev = 0.2s
    10507:  D:/_bazel/execroot/selenium/bazel-out/x64_windows-fastbuild/testlogs/rb/spec/integration/selenium/webdriver/edge/driver-edge-remote/test.log
    10508:  D:/_bazel/execroot/selenium/bazel-out/x64_windows-fastbuild/testlogs/rb/spec/integration/selenium/webdriver/edge/driver-edge-remote/test_attempts/attempt_1.log
    10509:  D:/_bazel/execroot/selenium/bazel-out/x64_windows-fastbuild/testlogs/rb/spec/integration/selenium/webdriver/edge/driver-edge-remote/test_attempts/attempt_2.log
    10510:  //rb/spec/integration/selenium/webdriver/edge:options-edge-remote        �[0m�[31m�[1mFAILED�[0m in 3 out of 3 in 7.2s
    10511:  Stats over 3 runs: max = 7.2s, min = 6.8s, avg = 7.0s, dev = 0.2s
    10512:  D:/_bazel/execroot/selenium/bazel-out/x64_windows-fastbuild/testlogs/rb/spec/integration/selenium/webdriver/edge/options-edge-remote/test.log
    10513:  D:/_bazel/execroot/selenium/bazel-out/x64_windows-fastbuild/testlogs/rb/spec/integration/selenium/webdriver/edge/options-edge-remote/test_attempts/attempt_1.log
    10514:  D:/_bazel/execroot/selenium/bazel-out/x64_windows-fastbuild/testlogs/rb/spec/integration/selenium/webdriver/edge/options-edge-remote/test_attempts/attempt_2.log
    10515:  //rb/spec/integration/selenium/webdriver/edge:profile-edge-remote        �[0m�[31m�[1mFAILED�[0m in 3 out of 3 in 7.4s
    10516:  Stats over 3 runs: max = 7.4s, min = 6.8s, avg = 7.0s, dev = 0.3s
    10517:  D:/_bazel/execroot/selenium/bazel-out/x64_windows-fastbuild/testlogs/rb/spec/integration/selenium/webdriver/edge/profile-edge-remote/test.log
    10518:  D:/_bazel/execroot/selenium/bazel-out/x64_windows-fastbuild/testlogs/rb/spec/integration/selenium/webdriver/edge/profile-edge-remote/test_attempts/attempt_1.log
    10519:  D:/_bazel/execroot/selenium/bazel-out/x64_windows-fastbuild/testlogs/rb/spec/integration/selenium/webdriver/edge/profile-edge-remote/test_attempts/attempt_2.log
    10520:  //rb/spec/integration/selenium/webdriver/edge:service-edge-remote        �[0m�[31m�[1mFAILED�[0m in 3 out of 3 in 6.9s
    10521:  Stats over 3 runs: max = 6.9s, min = 6.8s, avg = 6.8s, dev = 0.1s
    10522:  D:/_bazel/execroot/selenium/bazel-out/x64_windows-fastbuild/testlogs/rb/spec/integration/selenium/webdriver/edge/service-edge-remote/test.log
    10523:  D:/_bazel/execroot/selenium/bazel-out/x64_windows-fastbuild/testlogs/rb/spec/integration/selenium/webdriver/edge/service-edge-remote/test_attempts/attempt_1.log
    10524:  D:/_bazel/execroot/selenium/bazel-out/x64_windows-fastbuild/testlogs/rb/spec/integration/selenium/webdriver/edge/service-edge-remote/test_attempts/attempt_2.log
    10525:  //rb/spec/integration/selenium/webdriver/remote:driver-edge-remote       �[0m�[31m�[1mFAILED�[0m in 3 out of 3 in 7.5s
    10526:  Stats over 3 runs: max = 7.5s, min = 6.8s, avg = 7.0s, dev = 0.3s
    10527:  D:/_bazel/execroot/selenium/bazel-out/x64_windows-fastbuild/testlogs/rb/spec/integration/selenium/webdriver/remote/driver-edge-remote/test.log
    10528:  D:/_bazel/execroot/selenium/bazel-out/x64_windows-fastbuild/testlogs/rb/spec/integration/selenium/webdriver/remote/driver-edge-remote/test_attempts/attempt_1.log
    10529:  D:/_bazel/execroot/selenium/bazel-out/x64_windows-fastbuild/testlogs/rb/spec/integration/selenium/webdriver/remote/driver-edge-remote/test_attempts/attempt_2.log
    10530:  //rb/spec/integration/selenium/webdriver/remote:element-edge-remote      �[0m�[31m�[1mFAILED�[0m in 3 out of 3 in 7.2s
    10531:  Stats over 3 runs: max = 7.2s, min = 6.7s, avg = 7.0s, dev = 0.2s
    10532:  D:/_bazel/execroot/selenium/bazel-out/x64_windows-fastbuild/testlogs/rb/spec/integration/selenium/webdriver/remote/element-edge-remote/test.log
    10533:  D:/_bazel/execroot/selenium/bazel-out/x64_windows-fastbuild/testlogs/rb/spec/integration/selenium/webdriver/remote/element-edge-remote/test_attempts/attempt_1.log
    10534:  D:/_bazel/execroot/selenium/bazel-out/x64_windows-fastbuild/testlogs/rb/spec/integration/selenium/webdriver/remote/element-edge-remote/test_attempts/attempt_2.log
    10535:  Executed 27 out of 27 tests: �[0m�[31m�[1m27 fail locally�[0m.
    10536:  �[0m
    10537:  ##[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.

    This ensures the server is not started with a system JDK which might be
    missing, outdated or simply inaccessible due to Bazel test sandboxing.
    Copy link

    @A1exKH A1exKH left a comment

    Choose a reason for hiding this comment

    The reason will be displayed to describe this comment to others. Learn more.

    LGTM.

    @p0deje
    Copy link
    Member Author

    p0deje commented May 1, 2024

    Replaced by #13882

    @p0deje p0deje closed this May 1, 2024
    @p0deje p0deje deleted the rb-server-java-bzl branch May 1, 2024 14:08
    Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
    Labels
    Projects
    None yet
    Development

    Successfully merging this pull request may close these issues.

    None yet

    2 participants