Skip to content

Conversation

@titusfortner
Copy link
Member

@titusfortner titusfortner commented Oct 25, 2025

User description

I tried tricking dotnet and Java to use chrome_beta instead of chrome for driver & browser locations while we are using "early release" (beta version). It worked for .NET but made Java unhappy, and I'm not sure the right thing to do here. Ideally we want to test the new CDP version, but we also don't want failing tests. What do you think @nvborisenko ?

I think this CDP code would work to check the channel and only update the test files if it is the stable channel. @cgoldberg does this python logic look right? I'm not sure we actually want to do it, though.


PR Type

Bug fix, Tests


Description

  • Revert .NET DevTools tests to CDP v141 from v142

  • Add conditional logic to only update test files on stable Chrome channel

  • Prevent test failures during beta/early release versions


Diagram Walkthrough

flowchart LR
  A["CDP v142 Tests"] -->|Revert| B["CDP v141 Tests"]
  C["update_cdp.py Script"] -->|Add Channel Check| D["Conditional Updates"]
  D -->|Stable Channel| E["Update Test Files"]
  D -->|Beta Channel| F["Skip Test Updates"]
Loading

File Walkthrough

Relevant files
Tests
8 files
DevToolsConsoleTest.cs
Revert CDP version from v142 to v141                                         
+1/-1     
DevToolsLogTest.cs
Revert CDP version from v142 to v141                                         
+1/-1     
DevToolsNetworkTest.cs
Revert CDP version from v142 to v141                                         
+1/-1     
DevToolsPerformanceTest.cs
Revert CDP version from v142 to v141                                         
+1/-1     
DevToolsProfilerTest.cs
Revert CDP version from v142 to v141                                         
+1/-1     
DevToolsSecurityTest.cs
Revert CDP version from v142 to v141                                         
+1/-1     
DevToolsTabsTest.cs
Revert CDP version from v142 to v141                                         
+1/-1     
DevToolsTargetTest.cs
Revert CDP version and id from v142 to v141                           
+2/-2     
Build
1 files
update_cdp.py
Add channel detection and conditional test file updates   
+14/-19 

@selenium-ci selenium-ci added C-dotnet .NET Bindings B-build Includes scripting, bazel and CI integrations labels Oct 25, 2025
@qodo-merge-pro
Copy link
Contributor

PR Compliance Guide 🔍

Below is a summary of compliance checks for this PR:

Security Compliance
Script logic error

Description: The for-loop syntax under the Stable channel branch appears malformed (missing colon and
iterable), which could skip intended guarded replacements or cause runtime errors,
potentially leading to unintended file modifications if corrected hastily; ensure proper
iteration over files (e.g., for file in dir_path.glob("*"): if file.is_file(): ...).
update_cdp.py [197-202]

Referred Code
if channel == "Stable":
    dir_path = root_dir / "dotnet/test/common/DevTools"
    for file in dir_path.glob("*") if file.is_file()
        replace_in_file(
            file, previous_chrome(chrome_milestone), new_chrome(chrome_milestone)
        )
Ticket Compliance
🎫 No ticket provided
- [ ] Create ticket/issue <!-- /create_ticket --create_ticket=true -->

</details></td></tr>
Codebase Duplication Compliance
Codebase context is not defined

Follow the guide to enable codebase context checks.

Custom Compliance
No custom compliance provided

Follow the guide to enable custom compliance check.

Compliance status legend 🟢 - Fully Compliant
🟡 - Partial Compliant
🔴 - Not Compliant
⚪ - Requires Further Human Verification
🏷️ - Compliance label

@qodo-merge-pro
Copy link
Contributor

PR Code Suggestions ✨

Explore these optional code suggestions:

CategorySuggestion                                                                                                                                    Impact
Possible issue
Fix invalid for loop syntax

Fix a SyntaxError in the for loop by adding a missing colon and correctly
placing the if condition within the loop body.

scripts/update_cdp.py [197-202]

 if channel == "Stable":
     dir_path = root_dir / "dotnet/test/common/DevTools"
-    for file in dir_path.glob("*") if file.is_file()
-        replace_in_file(
-            file, previous_chrome(chrome_milestone), new_chrome(chrome_milestone)
-        )
+    for file in dir_path.glob("*"):
+        if file.is_file():
+            replace_in_file(
+                file, previous_chrome(chrome_milestone), new_chrome(chrome_milestone)
+            )
  • Apply / Chat
Suggestion importance[1-10]: 10

__

Why: The suggestion correctly identifies a SyntaxError in the added Python code, which would cause the script to fail during execution.

High
High-level
Consider a more robust testing strategy

The current approach avoids test failures by not updating tests for beta
releases, but this delays finding bugs. A better strategy would be to enable
testing against beta versions, for example by using separate test suites or
conditionally ignoring failures.

Examples:

scripts/update_cdp.py [197-202]
    if channel == "Stable":
        dir_path = root_dir / "dotnet/test/common/DevTools"
        for file in dir_path.glob("*") if file.is_file()
            replace_in_file(
                file, previous_chrome(chrome_milestone), new_chrome(chrome_milestone)
            )

Solution Walkthrough:

Before:

# scripts/update_cdp.py

def update_dotnet(chrome_milestone):
    # ... update src files ...

    # Always update test files for all channels
    dir_path = root_dir / "dotnet/test/common/DevTools"
    files = [file for file in dir_path.glob("*") if file.is_file()]
    for file in files:
        replace_in_file(
            file, previous_chrome(chrome_milestone), new_chrome(chrome_milestone)
        )

After:

# A conceptual representation of the suggested strategy:
# The update script would always update a 'beta' test suite,
# while the CI would treat failures in that suite as non-blocking.

# scripts/update_cdp.py
def update_dotnet(chrome_milestone):
    # ... update src files ...

    # Update stable tests only on stable channel
    if channel == "Stable":
        update_test_suite("dotnet/test/common/DevTools", chrome_milestone)

    # Always update a separate beta test suite
    update_test_suite("dotnet/test/beta/DevTools", chrome_milestone)

# ci_config.yml
# - run: dotnet test stable_suite
# - run: dotnet test beta_suite --continue-on-error
Suggestion importance[1-10]: 8

__

Why: This is a valuable strategic suggestion that correctly identifies the trade-off in the PR and proposes better long-term solutions to the underlying problem of testing against pre-release browser versions.

Medium
  • More

@qodo-merge-pro
Copy link
Contributor

CI Feedback 🧐

A test triggered by this PR failed. Here is an AI-generated analysis of the failure:

Action: Test / All RBE tests

Failed stage: Run Bazel [❌]

Failed test name: rust/tests:integration_grid_tests_test

Failure summary:

The action failed because the Rust test //rust/tests:integration_grid_tests_test failed.
- Failing
case: grid_version_test::case_4
- Command executed: rust/selenium-manager --grid nightly --output
json
- Error: HTTP 404 when trying to download
https://github.com/SeleniumHQ/selenium/releases/download/nightly/selenium-server-4.38.0-SNAPSHOT.jar

- The test expected a successful retrieval for the nightly Grid version, but Selenium Manager
returned code 65 with an "Unsuccessful response (404 Not Found)" message.
- Relevant log file:
/home/runner/.bazel/execroot/_main/bazel-out/k8-fastbuild/testlogs/rust/tests/integration_grid_tests_test/test.log

Relevant error logs:
1:  ##[group]Runner Image Provisioner
2:  Hosted Compute Agent
...

925:  Package 'php-sql-formatter' is not installed, so not removed
926:  Package 'php8.3-ssh2' is not installed, so not removed
927:  Package 'php-ssh2-all-dev' is not installed, so not removed
928:  Package 'php8.3-stomp' is not installed, so not removed
929:  Package 'php-stomp-all-dev' is not installed, so not removed
930:  Package 'php-swiftmailer' is not installed, so not removed
931:  Package 'php-symfony' is not installed, so not removed
932:  Package 'php-symfony-asset' is not installed, so not removed
933:  Package 'php-symfony-asset-mapper' is not installed, so not removed
934:  Package 'php-symfony-browser-kit' is not installed, so not removed
935:  Package 'php-symfony-clock' is not installed, so not removed
936:  Package 'php-symfony-debug-bundle' is not installed, so not removed
937:  Package 'php-symfony-doctrine-bridge' is not installed, so not removed
938:  Package 'php-symfony-dom-crawler' is not installed, so not removed
939:  Package 'php-symfony-dotenv' is not installed, so not removed
940:  Package 'php-symfony-error-handler' is not installed, so not removed
941:  Package 'php-symfony-event-dispatcher' is not installed, so not removed
...

1119:  Package 'php-twig-html-extra' is not installed, so not removed
1120:  Package 'php-twig-i18n-extension' is not installed, so not removed
1121:  Package 'php-twig-inky-extra' is not installed, so not removed
1122:  Package 'php-twig-intl-extra' is not installed, so not removed
1123:  Package 'php-twig-markdown-extra' is not installed, so not removed
1124:  Package 'php-twig-string-extra' is not installed, so not removed
1125:  Package 'php8.3-uopz' is not installed, so not removed
1126:  Package 'php-uopz-all-dev' is not installed, so not removed
1127:  Package 'php8.3-uploadprogress' is not installed, so not removed
1128:  Package 'php-uploadprogress-all-dev' is not installed, so not removed
1129:  Package 'php8.3-uuid' is not installed, so not removed
1130:  Package 'php-uuid-all-dev' is not installed, so not removed
1131:  Package 'php-validate' is not installed, so not removed
1132:  Package 'php-vlucas-phpdotenv' is not installed, so not removed
1133:  Package 'php-voku-portable-ascii' is not installed, so not removed
1134:  Package 'php-wmerrors' is not installed, so not removed
1135:  Package 'php-xdebug-all-dev' is not installed, so not removed
...

1761:  (05:05:41) �[32mLoading:�[0m 2 packages loaded
1762:  (05:05:44) �[33mDEBUG: �[0m/home/runner/work/selenium/selenium/deploys/docker/docker.bzl:5:14: Ignoring ports on generated image distributor-image: https://github.com/bazel-contrib/rules_oci/issues/220
1763:  (05:05:44) �[33mDEBUG: �[0m/home/runner/work/selenium/selenium/deploys/docker/docker.bzl:5:14: Ignoring ports on generated image event-bus-image: https://github.com/bazel-contrib/rules_oci/issues/220
1764:  (05:05:44) �[33mDEBUG: �[0m/home/runner/work/selenium/selenium/deploys/docker/docker.bzl:5:14: Ignoring ports on generated image router-image: https://github.com/bazel-contrib/rules_oci/issues/220
1765:  (05:05:44) �[33mDEBUG: �[0m/home/runner/work/selenium/selenium/deploys/docker/docker.bzl:5:14: Ignoring ports on generated image session-map-image: https://github.com/bazel-contrib/rules_oci/issues/220
1766:  (05:05:44) �[33mDEBUG: �[0m/home/runner/work/selenium/selenium/deploys/docker/docker.bzl:5:14: Ignoring ports on generated image session-queue-image: https://github.com/bazel-contrib/rules_oci/issues/220
1767:  (05:05:44) �[33mDEBUG: �[0m/home/runner/work/selenium/selenium/deploys/docker/docker.bzl:5:14: Ignoring ports on generated image chrome-node: https://github.com/bazel-contrib/rules_oci/issues/220
1768:  (05:05:44) �[33mDEBUG: �[0m/home/runner/work/selenium/selenium/deploys/docker/docker.bzl:5:14: Ignoring ports on generated image firefox-node: https://github.com/bazel-contrib/rules_oci/issues/220
1769:  (05:05:47) �[32mLoading:�[0m 243 packages loaded
1770:  currently loading: javascript/atoms ... (11 packages)
1771:  (05:05:51) �[32mAnalyzing:�[0m 2403 targets (254 packages loaded, 0 targets configured)
1772:  (05:05:51) �[32mAnalyzing:�[0m 2403 targets (254 packages loaded, 0 targets configured)
1773:  (05:05:57) �[32mAnalyzing:�[0m 2403 targets (420 packages loaded, 69 targets configured)
1774:  (05:05:59) �[33mDEBUG: �[0m/home/runner/.bazel/external/rules_jvm_external+/private/extensions/maven.bzl:295:14: WARNING: The following maven modules appear in multiple sub-modules with potentially different versions. Consider adding one of these to your root module to ensure consistent versions:
1775:  com.google.code.findbugs:jsr305
1776:  com.google.errorprone:error_prone_annotations
1777:  com.google.guava:guava (versions: 30.1.1-jre, 31.0.1-android)
...

1807:  (05:06:53) �[32mAnalyzing:�[0m 2403 targets (1622 packages loaded, 52569 targets configured)
1808:  �[32m[1,498 / 1,519]�[0m checking cached actions
1809:  (05:06:59) �[32mAnalyzing:�[0m 2403 targets (1627 packages loaded, 52966 targets configured)
1810:  �[32m[1,498 / 1,519]�[0m checking cached actions
1811:  (05:07:04) �[32mAnalyzing:�[0m 2403 targets (1635 packages loaded, 53086 targets configured)
1812:  �[32m[1,498 / 1,519]�[0m checking cached actions
1813:  (05:07:09) �[32mAnalyzing:�[0m 2403 targets (1667 packages loaded, 54162 targets configured)
1814:  �[32m[1,596 / 1,652]�[0m checking cached actions
1815:  (05:07:14) �[32mAnalyzing:�[0m 2403 targets (1717 packages loaded, 62860 targets configured)
1816:  �[32m[1,688 / 1,691]�[0m 74 / 83 tests;�[0m checking cached actions
1817:  (05:07:14) �[35mWARNING: �[0m/home/runner/.bazel/external/io_bazel_rules_closure/java/com/google/javascript/jscomp/BUILD:19:13: in java_library rule @@io_bazel_rules_closure//java/com/google/javascript/jscomp:jscomp: target '@@io_bazel_rules_closure//java/com/google/javascript/jscomp:jscomp' depends on deprecated target '@@io_bazel_rules_closure//java/io/bazel/rules/closure:build_info_java_proto': Use java_proto_library from com_google_protobuf
1818:  (05:07:14) �[33mDEBUG: �[0m/home/runner/.bazel/external/io_bazel_rules_closure/closure/compiler/closure_js_deps.bzl:38:10: closure_js_deps() and deps.js files are deprecated. Please remove your closure_js_deps rules and, if needed, use the google-closure-deps npm module with bazelbuild/rules_nodejs to generate deps.js files.
1819:  (05:07:15) �[33mDEBUG: �[0m/home/runner/.bazel/external/io_bazel_rules_closure/closure/compiler/closure_js_deps.bzl:38:10: closure_js_deps() and deps.js files are deprecated. Please remove your closure_js_deps rules and, if needed, use the google-closure-deps npm module with bazelbuild/rules_nodejs to generate deps.js files.
1820:  (05:07:15) �[33mDEBUG: �[0m/home/runner/.bazel/external/io_bazel_rules_closure/closure/compiler/closure_js_deps.bzl:38:10: closure_js_deps() and deps.js files are deprecated. Please remove your closure_js_deps rules and, if needed, use the google-closure-deps npm module with bazelbuild/rules_nodejs to generate deps.js files.
1821:  (05:07:15) �[32mINFO: �[0mFrom Building java/src/org/openqa/selenium/remote/libapi-class.jar (63 source files):
1822:  java/src/org/openqa/selenium/remote/ErrorHandler.java:46: warning: [removal] ErrorCodes in org.openqa.selenium.remote has been deprecated and marked for removal
1823:  private final ErrorCodes errorCodes;
1824:  ^
1825:  java/src/org/openqa/selenium/remote/ErrorHandler.java:60: warning: [removal] ErrorCodes in org.openqa.selenium.remote has been deprecated and marked for removal
1826:  this.errorCodes = new ErrorCodes();
1827:  ^
1828:  java/src/org/openqa/selenium/remote/ErrorHandler.java:68: warning: [removal] ErrorCodes in org.openqa.selenium.remote has been deprecated and marked for removal
1829:  public ErrorHandler(ErrorCodes codes, boolean includeServerErrors) {
1830:  ^
1831:  java/src/org/openqa/selenium/remote/Response.java:100: warning: [removal] ErrorCodes in org.openqa.selenium.remote has been deprecated and marked for removal
1832:  ErrorCodes errorCodes = new ErrorCodes();
1833:  ^
1834:  java/src/org/openqa/selenium/remote/Response.java:100: warning: [removal] ErrorCodes in org.openqa.selenium.remote has been deprecated and marked for removal
1835:  ErrorCodes errorCodes = new ErrorCodes();
1836:  ^
1837:  java/src/org/openqa/selenium/remote/ProtocolHandshake.java:181: warning: [removal] ErrorCodes in org.openqa.selenium.remote has been deprecated and marked for removal
1838:  response.setStatus(ErrorCodes.SUCCESS);
1839:  ^
1840:  java/src/org/openqa/selenium/remote/ProtocolHandshake.java:182: warning: [removal] ErrorCodes in org.openqa.selenium.remote has been deprecated and marked for removal
1841:  response.setState(ErrorCodes.SUCCESS_STRING);
1842:  ^
1843:  java/src/org/openqa/selenium/remote/W3CHandshakeResponse.java:53: warning: [removal] ErrorCodes in org.openqa.selenium.remote has been deprecated and marked for removal
1844:  new ErrorCodes().toStatus((String) rawError, Optional.of(tuple.getStatusCode())));
1845:  ^
1846:  java/src/org/openqa/selenium/remote/W3CHandshakeResponse.java:56: warning: [removal] ErrorCodes in org.openqa.selenium.remote has been deprecated and marked for removal
1847:  new ErrorCodes().getExceptionType((String) rawError);
1848:  ^
1849:  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
1850:  private final ErrorCodes errorCodes = new ErrorCodes();
1851:  ^
1852:  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
1853:  private final ErrorCodes errorCodes = new ErrorCodes();
1854:  ^
1855:  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
1856:  int status = response.getStatus() == ErrorCodes.SUCCESS ? HTTP_OK : HTTP_INTERNAL_ERROR;
1857:  ^
1858:  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
1859:  response.setStatus(ErrorCodes.UNKNOWN_COMMAND);
1860:  ^
1861:  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
1862:  response.setStatus(ErrorCodes.UNHANDLED_ERROR);
1863:  ^
1864:  java/src/org/openqa/selenium/remote/codec/AbstractHttpResponseCodec.java:117: warning: [removal] ErrorCodes in org.openqa.selenium.remote has been deprecated and marked for removal
1865:  response.setStatus(ErrorCodes.SUCCESS);
1866:  ^
1867:  java/src/org/openqa/selenium/remote/codec/AbstractHttpResponseCodec.java:118: warning: [removal] ErrorCodes in org.openqa.selenium.remote has been deprecated and marked for removal
1868:  response.setState(errorCodes.toState(ErrorCodes.SUCCESS));
1869:  ^
1870:  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
1871:  response.setState(errorCodes.toState(ErrorCodes.SUCCESS));
1872:  ^
1873:  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
1874:  private final ErrorCodes errorCodes = new ErrorCodes();
1875:  ^
1876:  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
1877:  private final ErrorCodes errorCodes = new ErrorCodes();
1878:  ^
1879:  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
1880:  response.setStatus(ErrorCodes.UNKNOWN_COMMAND);
1881:  ^
1882:  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
1883:  response.setStatus(ErrorCodes.UNHANDLED_ERROR);
1884:  ^
1885:  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
1886:  response.setStatus(ErrorCodes.SUCCESS);
1887:  ^
...

1921:  (05:07:24) �[35mWARNING: �[0m/home/runner/work/selenium/selenium/javascript/webdriver/BUILD.bazel:66:19: runfiles symlink javascript/webdriver/test/testutil.js -> javascript/webdriver/test/testutil.js obscured by javascript/webdriver/test -> bazel-out/k8-fastbuild/bin/javascript/webdriver/test
1922:  (05:07:24) �[35mWARNING: �[0m/home/runner/work/selenium/selenium/javascript/webdriver/BUILD.bazel:66:19: runfiles symlink javascript/webdriver/test/testutil_test.js -> javascript/webdriver/test/testutil_test.js obscured by javascript/webdriver/test -> bazel-out/k8-fastbuild/bin/javascript/webdriver/test
1923:  (05:07:24) �[35mWARNING: �[0m/home/runner/work/selenium/selenium/javascript/atoms/BUILD.bazel:397:19: runfiles symlink javascript/atoms/test/action_test.html -> javascript/atoms/test/action_test.html obscured by javascript/atoms/test -> bazel-out/k8-fastbuild/bin/javascript/atoms/test
1924:  (05:07:24) �[35mWARNING: �[0m/home/runner/work/selenium/selenium/javascript/atoms/BUILD.bazel:397:19: runfiles symlink javascript/atoms/test/attribute_test.html -> javascript/atoms/test/attribute_test.html obscured by javascript/atoms/test -> bazel-out/k8-fastbuild/bin/javascript/atoms/test
1925:  (05:07:24) �[35mWARNING: �[0m/home/runner/work/selenium/selenium/javascript/atoms/BUILD.bazel:397:19: runfiles symlink javascript/atoms/test/child_locator_test.html -> javascript/atoms/test/child_locator_test.html obscured by javascript/atoms/test -> bazel-out/k8-fastbuild/bin/javascript/atoms/test
1926:  (05:07:24) �[35mWARNING: �[0m/home/runner/work/selenium/selenium/javascript/atoms/BUILD.bazel:397:19: runfiles symlink javascript/atoms/test/click_link_test.html -> javascript/atoms/test/click_link_test.html obscured by javascript/atoms/test -> bazel-out/k8-fastbuild/bin/javascript/atoms/test
1927:  (05:07:24) �[35mWARNING: �[0m/home/runner/work/selenium/selenium/javascript/atoms/BUILD.bazel:397:19: runfiles symlink javascript/atoms/test/click_submit_test.html -> javascript/atoms/test/click_submit_test.html obscured by javascript/atoms/test -> bazel-out/k8-fastbuild/bin/javascript/atoms/test
1928:  (05:07:24) �[35mWARNING: �[0m/home/runner/work/selenium/selenium/javascript/atoms/BUILD.bazel:397:19: runfiles symlink javascript/atoms/test/click_test.html -> javascript/atoms/test/click_test.html obscured by javascript/atoms/test -> bazel-out/k8-fastbuild/bin/javascript/atoms/test
1929:  (05:07:24) �[35mWARNING: �[0m/home/runner/work/selenium/selenium/javascript/atoms/BUILD.bazel:397:19: runfiles symlink javascript/atoms/test/clientrect_test.html -> javascript/atoms/test/clientrect_test.html obscured by javascript/atoms/test -> bazel-out/k8-fastbuild/bin/javascript/atoms/test
1930:  (05:07:24) �[35mWARNING: �[0m/home/runner/work/selenium/selenium/javascript/atoms/BUILD.bazel:397:19: runfiles symlink javascript/atoms/test/color_test.html -> javascript/atoms/test/color_test.html obscured by javascript/atoms/test -> bazel-out/k8-fastbuild/bin/javascript/atoms/test
1931:  (05:07:24) �[35mWARNING: �[0m/home/runner/work/selenium/selenium/javascript/atoms/BUILD.bazel:397:19: runfiles symlink javascript/atoms/test/deps.js -> javascript/atoms/test/deps.js obscured by javascript/atoms/test -> bazel-out/k8-fastbuild/bin/javascript/atoms/test
1932:  (05:07:24) �[35mWARNING: �[0m/home/runner/work/selenium/selenium/javascript/atoms/BUILD.bazel:397:19: runfiles symlink javascript/atoms/test/dom_test.html -> javascript/atoms/test/dom_test.html obscured by javascript/atoms/test -> bazel-out/k8-fastbuild/bin/javascript/atoms/test
1933:  (05:07:24) �[35mWARNING: �[0m/home/runner/work/selenium/selenium/javascript/atoms/BUILD.bazel:397:19: runfiles symlink javascript/atoms/test/drag_test.html -> javascript/atoms/test/drag_test.html obscured by javascript/atoms/test -> bazel-out/k8-fastbuild/bin/javascript/atoms/test
1934:  (05:07:24) �[35mWARNING: �[0m/home/runner/work/selenium/selenium/javascript/atoms/BUILD.bazel:397:19: runfiles symlink javascript/atoms/test/enabled_test.html -> javascript/atoms/test/enabled_test.html obscured by javascript/atoms/test -> bazel-out/k8-fastbuild/bin/javascript/atoms/test
1935:  (05:07:24) �[35mWARNING: �[0m/home/runner/work/selenium/selenium/javascript/atoms/BUILD.bazel:397:19: runfiles symlink javascript/atoms/test/enter_submit_test.html -> javascript/atoms/test/enter_submit_test.html obscured by javascript/atoms/test -> bazel-out/k8-fastbuild/bin/javascript/atoms/test
1936:  (05:07:24) �[35mWARNING: �[0m/home/runner/work/selenium/selenium/javascript/atoms/BUILD.bazel:397:19: runfiles symlink javascript/atoms/test/error_test.html -> javascript/atoms/test/error_test.html obscured by javascript/atoms/test -> bazel-out/k8-fastbuild/bin/javascript/atoms/test
1937:  (05:07:24) �[35mWARNING: �[0m/home/runner/work/selenium/selenium/javascript/atoms/BUILD.bazel:397:19: runfiles symlink javascript/atoms/test/events_test.html -> javascript/atoms/test/events_test.html obscured by javascript/atoms/test -> bazel-out/k8-fastbuild/bin/javascript/atoms/test
...

2169:  (05:07:44) �[32mAnalyzing:�[0m 2403 targets (1740 packages loaded, 65610 targets configured)
2170:  �[32m[10,461 / 11,575]�[0m 89 / 1813 tests;�[0m [Prepa] Testing //rb/spec/integration/selenium/webdriver/edge:driver-edge ... (15 actions, 0 running)
2171:  (05:07:49) �[32mAnalyzing:�[0m 2403 targets (1740 packages loaded, 65730 targets configured)
2172:  �[32m[10,496 / 11,633]�[0m 93 / 1817 tests;�[0m Testing //rb/spec/integration/selenium/webdriver/edge:driver-edge; 4s remote, remote-cache ... (50 actions, 0 running)
2173:  (05:07:54) �[32mAnalyzing:�[0m 2403 targets (1740 packages loaded, 65969 targets configured)
2174:  �[32m[10,521 / 11,730]�[0m 99 / 1824 tests;�[0m Testing //rb/spec/unit/selenium/webdriver:file_reaper; 7s remote, remote-cache ... (50 actions, 0 running)
2175:  (05:07:59) �[32mAnalyzing:�[0m 2403 targets (1740 packages loaded, 66195 targets configured)
2176:  �[32m[10,556 / 11,799]�[0m 106 / 1835 tests;�[0m Compiling DevTools/DevToolsTargetTest-edge; 12s remote, remote-cache ... (50 actions, 1 running)
2177:  (05:08:04) �[32mAnalyzing:�[0m 2403 targets (1741 packages loaded, 66345 targets configured)
2178:  �[32m[10,582 / 12,406]�[0m 115 / 2104 tests;�[0m Testing //rb/spec/integration/selenium/webdriver:manager-edge; 10s remote, remote-cache ... (49 actions, 1 running)
2179:  (05:08:09) �[32mAnalyzing:�[0m 2403 targets (1748 packages loaded, 69551 targets configured)
2180:  �[32m[10,719 / 12,973]�[0m 172 / 2402 tests;�[0m Compiling DevTools/DevToolsPerformanceTest-edge; 2s remote, remote-cache ... (50 actions, 4 running)
2181:  (05:08:10) �[32mINFO: �[0mAnalyzed 2403 targets (1748 packages loaded, 69551 targets configured).
2182:  (05:08:14) �[32m[11,115 / 13,255]�[0m 258 / 2403 tests;�[0m Compiling DevTools/DevToolsProfilerTest-edge; 2s remote, remote-cache ... (48 actions, 5 running)
2183:  (05:08:19) �[32m[11,658 / 13,624]�[0m 340 / 2403 tests;�[0m Compiling DevTools/DevToolsLogTest-firefox; 1s remote, remote-cache ... (47 actions, 7 running)
2184:  (05:08:23) �[32mINFO: �[0mFrom Building java/test/org/openqa/selenium/remote/ErrorHandlerTest.jar (1 source file) and running annotation processors (AutoServiceProcessor):
2185:  java/test/org/openqa/selenium/remote/ErrorHandlerTest.java:79: warning: [removal] ErrorCodes in org.openqa.selenium.remote has been deprecated and marked for removal
2186:  handler.throwIfResponseFailed(createResponse(ErrorCodes.SUCCESS), 100);
2187:  ^
2188:  java/test/org/openqa/selenium/remote/ErrorHandlerTest.java:85: warning: [removal] ErrorCodes in org.openqa.selenium.remote has been deprecated and marked for removal
2189:  assertThrowsCorrectExceptionType(ErrorCodes.NO_SUCH_WINDOW, NoSuchWindowException.class);
2190:  ^
2191:  java/test/org/openqa/selenium/remote/ErrorHandlerTest.java:86: warning: [removal] ErrorCodes in org.openqa.selenium.remote has been deprecated and marked for removal
2192:  assertThrowsCorrectExceptionType(ErrorCodes.NO_SUCH_FRAME, NoSuchFrameException.class);
2193:  ^
2194:  java/test/org/openqa/selenium/remote/ErrorHandlerTest.java:87: warning: [removal] ErrorCodes in org.openqa.selenium.remote has been deprecated and marked for removal
2195:  assertThrowsCorrectExceptionType(ErrorCodes.NO_SUCH_ELEMENT, NoSuchElementException.class);
2196:  ^
2197:  java/test/org/openqa/selenium/remote/ErrorHandlerTest.java:88: warning: [removal] ErrorCodes in org.openqa.selenium.remote has been deprecated and marked for removal
2198:  assertThrowsCorrectExceptionType(ErrorCodes.UNKNOWN_COMMAND, UnsupportedCommandException.class);
2199:  ^
2200:  java/test/org/openqa/selenium/remote/ErrorHandlerTest.java:90: warning: [removal] ErrorCodes in org.openqa.selenium.remote has been deprecated and marked for removal
2201:  ErrorCodes.METHOD_NOT_ALLOWED, UnsupportedCommandException.class);
2202:  ^
2203:  java/test/org/openqa/selenium/remote/ErrorHandlerTest.java:92: warning: [removal] ErrorCodes in org.openqa.selenium.remote has been deprecated and marked for removal
2204:  ErrorCodes.STALE_ELEMENT_REFERENCE, StaleElementReferenceException.class);
2205:  ^
2206:  java/test/org/openqa/selenium/remote/ErrorHandlerTest.java:94: warning: [removal] ErrorCodes in org.openqa.selenium.remote has been deprecated and marked for removal
2207:  ErrorCodes.INVALID_ELEMENT_STATE, InvalidElementStateException.class);
2208:  ^
2209:  java/test/org/openqa/selenium/remote/ErrorHandlerTest.java:95: warning: [removal] ErrorCodes in org.openqa.selenium.remote has been deprecated and marked for removal
2210:  assertThrowsCorrectExceptionType(ErrorCodes.XPATH_LOOKUP_ERROR, InvalidSelectorException.class);
2211:  ^
2212:  java/test/org/openqa/selenium/remote/ErrorHandlerTest.java:107: warning: [removal] ErrorCodes in org.openqa.selenium.remote has been deprecated and marked for removal
2213:  Response response = createResponse(ErrorCodes.UNHANDLED_ERROR);
2214:  ^
2215:  java/test/org/openqa/selenium/remote/ErrorHandlerTest.java:120: warning: [removal] ErrorCodes in org.openqa.selenium.remote has been deprecated and marked for removal
2216:  createResponse(ErrorCodes.UNHANDLED_ERROR, "boom"), 123))
2217:  ^
2218:  java/test/org/openqa/selenium/remote/ErrorHandlerTest.java:133: warning: [removal] ErrorCodes in org.openqa.selenium.remote has been deprecated and marked for removal
2219:  createResponse(ErrorCodes.UNHANDLED_ERROR, ImmutableMap.of("message", "boom")),
2220:  ^
2221:  java/test/org/openqa/selenium/remote/ErrorHandlerTest.java:147: warning: [removal] ErrorCodes in org.openqa.selenium.remote has been deprecated and marked for removal
2222:  ErrorCodes.UNHANDLED_ERROR,
2223:  ^
2224:  java/test/org/openqa/selenium/remote/ErrorHandlerTest.java:167: warning: [removal] ErrorCodes in org.openqa.selenium.remote has been deprecated and marked for removal
2225:  ErrorCodes.UNHANDLED_ERROR,
2226:  ^
2227:  java/test/org/openqa/selenium/remote/ErrorHandlerTest.java:193: warning: [removal] ErrorCodes in org.openqa.selenium.remote has been deprecated and marked for removal
2228:  createResponse(ErrorCodes.UNHANDLED_ERROR, toMap(serverError)), 123))
2229:  ^
2230:  java/test/org/openqa/selenium/remote/ErrorHandlerTest.java:214: warning: [removal] ErrorCodes in org.openqa.selenium.remote has been deprecated and marked for removal
2231:  createResponse(ErrorCodes.UNHANDLED_ERROR, data), 123))
2232:  ^
2233:  java/test/org/openqa/selenium/remote/ErrorHandlerTest.java:248: warning: [removal] ErrorCodes in org.openqa.selenium.remote has been deprecated and marked for removal
2234:  createResponse(ErrorCodes.UNHANDLED_ERROR, data), 123))
2235:  ^
2236:  java/test/org/openqa/selenium/remote/ErrorHandlerTest.java:280: warning: [removal] ErrorCodes in org.openqa.selenium.remote has been deprecated and marked for removal
2237:  createResponse(ErrorCodes.UNHANDLED_ERROR, data), 123))
2238:  ^
2239:  java/test/org/openqa/selenium/remote/ErrorHandlerTest.java:308: warning: [removal] ErrorCodes in org.openqa.selenium.remote has been deprecated and marked for removal
2240:  createResponse(ErrorCodes.UNHANDLED_ERROR, data), 123))
2241:  ^
2242:  java/test/org/openqa/selenium/remote/ErrorHandlerTest.java:327: warning: [removal] ErrorCodes in org.openqa.selenium.remote has been deprecated and marked for removal
2243:  createResponse(ErrorCodes.UNHANDLED_ERROR, data), 123))
2244:  ^
2245:  java/test/org/openqa/selenium/remote/ErrorHandlerTest.java:355: warning: [removal] ErrorCodes in org.openqa.selenium.remote has been deprecated and marked for removal
2246:  createResponse(ErrorCodes.UNHANDLED_ERROR, data), 123))
2247:  ^
2248:  java/test/org/openqa/selenium/remote/ErrorHandlerTest.java:394: warning: [removal] ErrorCodes in org.openqa.selenium.remote has been deprecated and marked for removal
2249:  createResponse(ErrorCodes.UNHANDLED_ERROR, data), 123))
2250:  ^
2251:  java/test/org/openqa/selenium/remote/ErrorHandlerTest.java:426: warning: [removal] ErrorCodes in org.openqa.selenium.remote has been deprecated and marked for removal
2252:  createResponse(ErrorCodes.UNHANDLED_ERROR, toMap(serverError)), 123))
2253:  ^
2254:  java/test/org/openqa/selenium/remote/ErrorHandlerTest.java:435: warning: [removal] ErrorCodes in org.openqa.selenium.remote has been deprecated and marked for removal
2255:  exceptions.put(ErrorCodes.NO_SUCH_SESSION, NoSuchSessionException.class);
2256:  ^
2257:  java/test/org/openqa/selenium/remote/ErrorHandlerTest.java:436: warning: [removal] ErrorCodes in org.openqa.selenium.remote has been deprecated and marked for removal
2258:  exceptions.put(ErrorCodes.NO_SUCH_ELEMENT, NoSuchElementException.class);
2259:  ^
2260:  java/test/org/openqa/selenium/remote/ErrorHandlerTest.java:437: warning: [removal] ErrorCodes in org.openqa.selenium.remote has been deprecated and marked for removal
2261:  exceptions.put(ErrorCodes.NO_SUCH_FRAME, NoSuchFrameException.class);
2262:  ^
2263:  java/test/org/openqa/selenium/remote/ErrorHandlerTest.java:438: warning: [removal] ErrorCodes in org.openqa.selenium.remote has been deprecated and marked for removal
2264:  exceptions.put(ErrorCodes.UNKNOWN_COMMAND, UnsupportedCommandException.class);
2265:  ^
2266:  java/test/org/openqa/selenium/remote/ErrorHandlerTest.java:439: warning: [removal] ErrorCodes in org.openqa.selenium.remote has been deprecated and marked for removal
2267:  exceptions.put(ErrorCodes.STALE_ELEMENT_REFERENCE, StaleElementReferenceException.class);
2268:  ^
2269:  java/test/org/openqa/selenium/remote/ErrorHandlerTest.java:440: warning: [removal] ErrorCodes in org.openqa.selenium.remote has been deprecated and marked for removal
2270:  exceptions.put(ErrorCodes.INVALID_ELEMENT_STATE, InvalidElementStateException.class);
2271:  ^
2272:  java/test/org/openqa/selenium/remote/ErrorHandlerTest.java:441: warning: [removal] ErrorCodes in org.openqa.selenium.remote has been deprecated and marked for removal
2273:  exceptions.put(ErrorCodes.UNHANDLED_ERROR, WebDriverException.class);
2274:  ^
2275:  java/test/org/openqa/selenium/remote/ErrorHandlerTest.java:442: warning: [removal] ErrorCodes in org.openqa.selenium.remote has been deprecated and marked for removal
2276:  exceptions.put(ErrorCodes.JAVASCRIPT_ERROR, JavascriptException.class);
2277:  ^
2278:  java/test/org/openqa/selenium/remote/ErrorHandlerTest.java:443: warning: [removal] ErrorCodes in org.openqa.selenium.remote has been deprecated and marked for removal
2279:  exceptions.put(ErrorCodes.XPATH_LOOKUP_ERROR, InvalidSelectorException.class);
2280:  ^
2281:  java/test/org/openqa/selenium/remote/ErrorHandlerTest.java:444: warning: [removal] ErrorCodes in org.openqa.selenium.remote has been deprecated and marked for removal
2282:  exceptions.put(ErrorCodes.TIMEOUT, TimeoutException.class);
2283:  ^
2284:  java/test/org/openqa/selenium/remote/ErrorHandlerTest.java:445: warning: [removal] ErrorCodes in org.openqa.selenium.remote has been deprecated and marked for removal
2285:  exceptions.put(ErrorCodes.NO_SUCH_WINDOW, NoSuchWindowException.class);
2286:  ^
2287:  java/test/org/openqa/selenium/remote/ErrorHandlerTest.java:446: warning: [removal] ErrorCodes in org.openqa.selenium.remote has been deprecated and marked for removal
2288:  exceptions.put(ErrorCodes.INVALID_COOKIE_DOMAIN, InvalidCookieDomainException.class);
2289:  ^
2290:  java/test/org/openqa/selenium/remote/ErrorHandlerTest.java:447: warning: [removal] ErrorCodes in org.openqa.selenium.remote has been deprecated and marked for removal
2291:  exceptions.put(ErrorCodes.UNABLE_TO_SET_COOKIE, UnableToSetCookieException.class);
2292:  ^
2293:  java/test/org/openqa/selenium/remote/ErrorHandlerTest.java:448: warning: [removal] ErrorCodes in org.openqa.selenium.remote has been deprecated and marked for removal
2294:  exceptions.put(ErrorCodes.UNEXPECTED_ALERT_PRESENT, UnhandledAlertException.class);
2295:  ^
2296:  java/test/org/openqa/selenium/remote/ErrorHandlerTest.java:449: warning: [removal] ErrorCodes in org.openqa.selenium.remote has been deprecated and marked for removal
2297:  exceptions.put(ErrorCodes.NO_ALERT_PRESENT, NoAlertPresentException.class);
2298:  ^
2299:  java/test/org/openqa/selenium/remote/ErrorHandlerTest.java:450: warning: [removal] ErrorCodes in org.openqa.selenium.remote has been deprecated and marked for removal
2300:  exceptions.put(ErrorCodes.ASYNC_SCRIPT_TIMEOUT, ScriptTimeoutException.class);
2301:  ^
2302:  java/test/org/openqa/selenium/remote/ErrorHandlerTest.java:451: warning: [removal] ErrorCodes in org.openqa.selenium.remote has been deprecated and marked for removal
2303:  exceptions.put(ErrorCodes.INVALID_SELECTOR_ERROR, InvalidSelectorException.class);
2304:  ^
2305:  java/test/org/openqa/selenium/remote/ErrorHandlerTest.java:452: warning: [removal] ErrorCodes in org.openqa.selenium.remote has been deprecated and marked for removal
2306:  exceptions.put(ErrorCodes.SESSION_NOT_CREATED, SessionNotCreatedException.class);
2307:  ^
2308:  java/test/org/openqa/selenium/remote/ErrorHandlerTest.java:453: warning: [removal] ErrorCodes in org.openqa.selenium.remote has been deprecated and marked for removal
2309:  exceptions.put(ErrorCodes.MOVE_TARGET_OUT_OF_BOUNDS, MoveTargetOutOfBoundsException.class);
2310:  ^
2311:  java/test/org/openqa/selenium/remote/ErrorHandlerTest.java:454: warning: [removal] ErrorCodes in org.openqa.selenium.remote has been deprecated and marked for removal
2312:  exceptions.put(ErrorCodes.INVALID_XPATH_SELECTOR, InvalidSelectorException.class);
2313:  ^
2314:  java/test/org/openqa/selenium/remote/ErrorHandlerTest.java:455: warning: [removal] ErrorCodes in org.openqa.selenium.remote has been deprecated and marked for removal
2315:  exceptions.put(ErrorCodes.INVALID_XPATH_SELECTOR_RETURN_TYPER, InvalidSelectorException.class);
2316:  ^
2317:  java/test/org/openqa/selenium/remote/ErrorHandlerTest.java:469: warning: [removal] ErrorCodes in org.openqa.selenium.remote has been deprecated and marked for removal
2318:  ? ErrorCodes.INVALID_SELECTOR_ERROR
2319:  ^
2320:  java/test/org/openqa/selenium/remote/ErrorHandlerTest.java:471: warning: [removal] ErrorCodes in org.openqa.selenium.remote has been deprecated and marked for removal
2321:  assertThat(new ErrorCodes().toStatusCode(e)).isEqualTo(expected);
2322:  ^
2323:  java/test/org/openqa/selenium/remote/ErrorHandlerTest.java:483: warning: [removal] ErrorCodes in org.openqa.selenium.remote has been deprecated and marked for removal
2324:  response.setState(new ErrorCodes().toState(status));
2325:  ^
2326:  (05:08:24) �[32m[13,144 / 15,293]�[0m 382 / 2403 tests;�[0m [Prepa] Testing //dotnet/test/common:ElementSelectingTest-chrome ... (48 actions, 11 running)
2327:  (05:08:29) �[32mINFO: �[0mFrom Building java/test/org/openqa/selenium/remote/RemotableByTest.jar (1 source file) and running annotation processors (AutoServiceProcessor):
2328:  java/test/org/openqa/selenium/remote/RemotableByTest.java:23: warning: [removal] ErrorCodes in org.openqa.selenium.remote has been deprecated and marked for removal
2329:  import static org.openqa.selenium.remote.ErrorCodes.SUCCESS_STRING;
2330:  ^
2331:  java/test/org/openqa/selenium/remote/RemotableByTest.java:23: warning: [removal] ErrorCodes in org.openqa.selenium.remote has been deprecated and marked for removal
2332:  import static org.openqa.selenium.remote.ErrorCodes.SUCCESS_STRING;
2333:  ^
2334:  java/test/org/openqa/selenium/remote/RemotableByTest.java:23: warning: [removal] ErrorCodes in org.openqa.selenium.remote has been deprecated and marked for removal
2335:  import static org.openqa.selenium.remote.ErrorCodes.SUCCESS_STRING;
2336:  ^
2337:  java/test/org/openqa/selenium/remote/RemotableByTest.java:45: warning: [removal] ErrorCodes in org.openqa.selenium.remote has been deprecated and marked for removal
2338:  private final ErrorCodes errorCodes = new ErrorCodes();
2339:  ^
2340:  java/test/org/openqa/selenium/remote/RemotableByTest.java:45: warning: [removal] ErrorCodes in org.openqa.selenium.remote has been deprecated and marked for removal
2341:  private final ErrorCodes errorCodes = new ErrorCodes();
2342:  ^
2343:  java/test/org/openqa/selenium/remote/RemotableByTest.java:45: warning: [removal] ErrorCodes in org.openqa.selenium.remote has been deprecated and marked for removal
2344:  private final ErrorCodes errorCodes = new ErrorCodes();
2345:  ^
2346:  java/test/org/openqa/selenium/remote/RemotableByTest.java:45: warning: [removal] ErrorCodes in org.openqa.selenium.remote has been deprecated and marked for removal
2347:  private final ErrorCodes errorCodes = new ErrorCodes();
2348:  ^
2349:  (05:08:30) �[32m[13,427 / 15,492]�[0m 460 / 2403 tests;�[0m Testing //dotnet/test/common:DevTools/DevToolsLogTest-edge; 2s remote, remote-cache ... (50 actions, 3 running)
2350:  (05:08:34) �[32mINFO: �[0mFrom Building java/test/org/openqa/selenium/remote/codec/w3c/W3CHttpResponseCodecTest.jar (1 source file):
2351:  java/test/org/openqa/selenium/remote/codec/w3c/W3CHttpResponseCodecTest.java:26: warning: [removal] ErrorCodes in org.openqa.selenium.remote has been deprecated and marked for removal
2352:  import static org.openqa.selenium.remote.ErrorCodes.METHOD_NOT_ALLOWED;
2353:  ^
2354:  java/test/org/openqa/selenium/remote/codec/w3c/W3CHttpResponseCodecTest.java:55: warning: [removal] ErrorCodes in org.openqa.selenium.remote has been deprecated and marked for removal
2355:  assertThat(decoded.getStatus()).isEqualTo(ErrorCodes.SUCCESS);
2356:  ^
2357:  java/test/org/openqa/selenium/remote/codec/w3c/W3CHttpResponseCodecTest.java:81: warning: [removal] ErrorCodes in org.openqa.selenium.remote has been deprecated and marked for removal
2358:  assertThat(decoded.getStatus()).isEqualTo(ErrorCodes.UNHANDLED_ERROR);
2359:  ^
2360:  java/test/org/openqa/selenium/remote/codec/w3c/W3CHttpResponseCodecTest.java:107: warning: [removal] ErrorCodes in org.openqa.selenium.remote has been deprecated and marked for removal
2361:  assertThat(decoded.getStatus()).isEqualTo(ErrorCodes.UNHANDLED_ERROR);
2362:  ^
2363:  (05:08:35) �[32m[13,699 / 15,650]�[0m 564 / 2403 tests;�[0m Testing //dotnet/test/common:DevTools/DevToolsLogTest-edge; 7s remote, remote-cache ... (49 actions, 11 running)
2364:  (05:08:35) �[32mINFO: �[0mFrom Building java/test/org/openqa/selenium/json/JsonTest.jar (1 source file):
2365:  java/test/org/openqa/selenium/json/JsonTest.java:430: warning: [removal] ErrorCodes in org.openqa.selenium.remote has been deprecated and marked for removal
2366:  assertThat(response.getState()).isEqualTo(new ErrorCodes().toState(0));
2367:  ^
2368:  java/test/org/openqa/selenium/json/JsonTest.java:441: warning: [removal] ErrorCodes in org.openqa.selenium.remote has been deprecated and marked for removal
2369:  assertThat(response.getState()).isEqualTo(new ErrorCodes().toState(0));
2370:  ^
2371:  java/test/org/openqa/selenium/json/JsonTest.java:454: warning: [removal] ErrorCodes in org.openqa.selenium.remote has been deprecated and marked for removal
2372:  assertThat(response.getState()).isEqualTo(new ErrorCodes().toState(32));
2373:  ^
2374:  (05:08:36) �[32mINFO: �[0mFrom Building java/test/org/openqa/selenium/remote/libsmall-tests-test-lib.jar (5 source files) and running annotation processors (AutoServiceProcessor):
2375:  java/test/org/openqa/selenium/remote/WebDriverFixture.java:170: warning: [removal] ErrorCodes in org.openqa.selenium.remote has been deprecated and marked for removal
2376:  response.setStatus(new ErrorCodes().toStatus(state, Optional.of(400)));
2377:  ^
...

2517:  �[0m�[1m�[33mwarning�[0m�[0m�[1m: 1 warning emitted�[0m
2518:  (05:09:20) �[32mINFO: �[0mFrom Compiling Rust bin integration_browser_tests_test (2 files):
2519:  �[0m�[1m�[33mwarning�[0m�[0m�[1m: the gold linker is deprecated and has known bugs with Rust�[0m
2520:  �[0m  �[0m�[0m�[1m�[38;5;12m|�[0m
2521:  �[0m  �[0m�[0m�[1m�[38;5;12m= �[0m�[0m�[1mhelp�[0m�[0m: consider using LLD or ld from GNU binutils instead�[0m
2522:  �[0m�[1m�[33mwarning�[0m�[0m�[1m: 1 warning emitted�[0m
2523:  (05:09:20) �[32mINFO: �[0mFrom Compiling Rust bin integration_mirror_tests_test (2 files):
2524:  �[0m�[1m�[33mwarning�[0m�[0m�[1m: the gold linker is deprecated and has known bugs with Rust�[0m
2525:  �[0m  �[0m�[0m�[1m�[38;5;12m|�[0m
2526:  �[0m  �[0m�[0m�[1m�[38;5;12m= �[0m�[0m�[1mhelp�[0m�[0m: consider using LLD or ld from GNU binutils instead�[0m
2527:  �[0m�[1m�[33mwarning�[0m�[0m�[1m: 1 warning emitted�[0m
2528:  (05:09:20) �[32m[17,211 / 17,229]�[0m 2315 / 2403 tests;�[0m Testing //py:common-firefox-bidi-test/selenium/webdriver/common/driver_element_finding_tests.py; 7s remote, remote-cache ... (18 actions, 1 running)
2529:  (05:09:23) �[31m�[1mFAIL: �[0m//rust/tests:integration_grid_tests_test (see /home/runner/.bazel/execroot/_main/bazel-out/k8-fastbuild/testlogs/rust/tests/integration_grid_tests_test/test_attempts/attempt_1.log)
2530:  (05:09:26) �[32m[17,227 / 17,229]�[0m 2331 / 2403 tests;�[0m Testing //py:common-firefox-bidi-test/selenium/webdriver/common/driver_element_finding_tests.py; 12s remote, remote-cache ... (2 actions running)
2531:  (05:09:26) �[31m�[1mFAIL: �[0m//rust/tests:integration_grid_tests_test (see /home/runner/.bazel/execroot/_main/bazel-out/k8-fastbuild/testlogs/rust/tests/integration_grid_tests_test/test.log)
2532:  �[31m�[1mFAILED: �[0m//rust/tests:integration_grid_tests_test (Summary)
2533:  /home/runner/.bazel/execroot/_main/bazel-out/k8-fastbuild/testlogs/rust/tests/integration_grid_tests_test/test.log
2534:  /home/runner/.bazel/execroot/_main/bazel-out/k8-fastbuild/testlogs/rust/tests/integration_grid_tests_test/test_attempts/attempt_1.log
2535:  (05:09:26) �[32mINFO: �[0mFrom Testing //rust/tests:integration_grid_tests_test:
2536:  ==================== Test output for //rust/tests:integration_grid_tests_test:
2537:  running 7 tests
2538:  test grid_error_test::case_1 ... ok
2539:  test grid_error_test::case_2 ... ok
2540:  test grid_latest_test ... ok
2541:  test grid_version_test::case_1 ... ok
2542:  test grid_version_test::case_2 ... ok
2543:  test grid_version_test::case_3 ... ok
2544:  test grid_version_test::case_4 ... FAILED
2545:  failures:
2546:  ---- grid_version_test::case_4 stdout ----
2547:  thread 'grid_version_test::case_4' panicked at /rustc/29483883eed69d5fb4db01964cdf2af4d86e9cb2/library/core/src/ops/function.rs:250:5:
2548:  Unexpected failure.
2549:  code=65
2550:  stderr=```""```
2551:  command=`"rust/selenium-manager" "--grid" "nightly" "--output" "json"`
2552:  code=65
2553:  stdout=```
2554:  {
2555:  \"logs\": [
2556:  {
2557:  \"level\": \"ERROR\",
2558:  \"timestamp\": 1761368963,
2559:  \"message\": \"Unsuccessful response (404 Not Found) for URL https://github.com/SeleniumHQ/selenium/releases/download/nightly/selenium-server-4.38.0-SNAPSHOT.jar\"
2560:  }
2561:  ],
2562:  \"result\": {
2563:  \"code\": 65,
2564:  \"message\": \"Unsuccessful response (404 Not Found) for URL https://github.com/SeleniumHQ/selenium/releases/download/nightly/selenium-server-4.38.0-SNAPSHOT.jar\",
2565:  \"driver_path\": \"\",
2566:  \"browser_path\": \"\"
2567:  }
2568:  }```
2569:  stderr=""
2570:  note: run with `RUST_BACKTRACE=1` environment variable to display a backtrace
2571:  failures:
2572:  grid_version_test::case_4
2573:  test result: FAILED. 6 passed; 1 failed; 0 ignored; 0 measured; 0 filtered out; finished in 2.00s
2574:  Execution result: https://gypsum.cluster.engflow.com/actions/executions/ChBFfWfM6UBUE7oEjCeZVwYyEgdkZWZhdWx0GiUKIKxjpSBI1V5vc__UETBVb1R02oMbSQlkFmskXaJK_w4XELwD
2575:  ================================================================================
2576:  ==================== Test output for //rust/tests:integration_grid_tests_test:
2577:  running 7 tests
2578:  test grid_error_test::case_1 ... ok
2579:  test grid_error_test::case_2 ... ok
2580:  test grid_latest_test ... ok
2581:  test grid_version_test::case_1 ... ok
2582:  test grid_version_test::case_2 ... ok
2583:  test grid_version_test::case_3 ... ok
2584:  test grid_version_test::case_4 ... FAILED
2585:  failures:
2586:  ---- grid_version_test::case_4 stdout ----
2587:  thread 'grid_version_test::case_4' panicked at /rustc/29483883eed69d5fb4db01964cdf2af4d86e9cb2/library/core/src/ops/function.rs:250:5:
2588:  Unexpected failure.
2589:  code=65
2590:  stderr=```""```
2591:  command=`"rust/selenium-manager" "--grid" "nightly" "--output" "json"`
2592:  code=65
2593:  stdout=```
2594:  {
2595:  \"logs\": [
2596:  {
2597:  \"level\": \"ERROR\",
2598:  \"timestamp\": 1761368966,
2599:  \"message\": \"Unsuccessful response (404 Not Found) for URL https://github.com/SeleniumHQ/selenium/releases/download/nightly/selenium-server-4.38.0-SNAPSHOT.jar\"
2600:  }
2601:  ],
2602:  \"result\": {
2603:  \"code\": 65,
2604:  \"message\": \"Unsuccessful response (404 Not Found) for URL https://github.com/SeleniumHQ/selenium/releases/download/nightly/selenium-server-4.38.0-SNAPSHOT.jar\",
2605:  \"driver_path\": \"\",
2606:  \"browser_path\": \"\"
2607:  }
2608:  }```
2609:  stderr=""
2610:  note: run with `RUST_BACKTRACE=1` environment variable to display a backtrace
2611:  failures:
2612:  grid_version_test::case_4
2613:  test result: FAILED. 6 passed; 1 failed; 0 ignored; 0 measured; 0 filtered out; finished in 1.90s
2614:  Execution result: https://gypsum.cluster.engflow.com/actions/executions/ChBFfWfM6UBUE7oEjCeZVwYyEgdkZWZhdWx0GiUKIKxjpSBI1V5vc__UETBVb1R02oMbSQlkFmskXaJK_w4XELwD
2615:  ================================================================================
2616:  (05:09:33) �[32m[17,228 / 17,229]�[0m 2332 / 2403 tests, �[31m�[1m1 failed�[0m;�[0m Testing //py:common-firefox-bidi-test/selenium/webdriver/common/driver_element_finding_tests.py; 20s remote, remote-cache
2617:  (05:09:38) �[32m[17,228 / 17,229]�[0m 2332 / 2403 tests, �[31m�[1m1 failed�[0m;�[0m Testing //py:common-firefox-bidi-test/selenium/webdriver/common/driver_element_finding_tests.py; 25s remote, remote-cache
2618:  (05:10:07) �[32m[17,228 / 17,229]�[0m 2332 / 2403 tests, �[31m�[1m1 failed�[0m;�[0m Testing //py:common-firefox-bidi-test/selenium/webdriver/common/driver_element_finding_tests.py; 54s remote, remote-cache
2619:  (05:11:07) �[32m[17,228 / 17,229]�[0m 2332 / 2403 tests, �[31m�[1m1 failed�[0m;�[0m Testing //py:common-firefox-bidi-test/selenium/webdriver/common/driver_element_finding_tests.py; 114s remote, remote-cache
2620:  (05:12:07) �[32m[17,228 / 17,229]�[0m 2332 / 2403 tests, �[31m�[1m1 failed�[0m;�[0m Testing //py:common-firefox-bidi-test/selenium/webdriver/common/driver_element_finding_tests.py; 174s remote, remote-cache
2621:  (05:13:07) �[32m[17,228 / 17,229]�[0m 2332 / 2403 tests, �[31m�[1m1 failed�[0m;�[0m Testing //py:common-firefox-bidi-test/selenium/webdriver/common/driver_element_finding_tests.py; 234s remote, remote-cache
2622:  (05:14:07) �[32m[17,228 / 17,229]�[0m 2332 / 2403 tests, �[31m�[1m1 failed�[0m;�[0m Testing //py:common-firefox-bidi-test/selenium/webdriver/common/driver_element_finding_tests.py; 294s remote, remote-cache
2623:  (05:15:07) �[32m[17,228 / 17,229]�[0m 2332 / 2403 tests, �[31m�[1m1 failed�[0m;�[0m Testing //py:common-firefox-bidi-test/selenium/webdriver/common/driver_element_finding_tests.py; 354s remote, remote-cache
2624:  (05:16:07) �[32m[17,228 / 17,229]�[0m 2332 / 2403 tests, �[31m�[1m1 failed�[0m;�[0m Testing //py:common-firefox-bidi-test/selenium/webdriver/common/driver_element_finding_tests.py; 414s remote, remote-cache
2625:  (05:17:07) �[32m[17,228 / 17,229]�[0m 2332 / 2403 tests, �[31m�[1m1 failed�[0m;�[0m Testing //py:common-firefox-bidi-test/selenium/webdriver/common/driver_element_finding_tests.py; 474s remote, remote-cache
2626:  (05:17:38) �[32m[17,228 / 17,229]�[0m 2332 / 2403 tests, �[31m�[1m1 failed�[0m;�[0m Testing //py:common-firefox-bidi-test/selenium/webdriver/common/driver_element_finding_tests.py; 504s remote, remote-cache
2627:  (05:17:43) �[32m[17,252 / 17,253]�[0m 2356 / 2403 tests, �[31m�[1m1 failed�[0m;�[0m Testing //rb/spec/integration/selenium/webdriver/bidi:script-firefox-beta-bidi; 1s remote, remote-cache
2628:  (05:17:48) �[32m[17,253 / 17,254]�[0m 2357 / 2403 tests, �[31m�[1m1 failed�[0m;�[0m Testing //rb/spec/integration/selenium/webdriver/bidi:browsing_context-firefox; 2s remote, remote-cache
2629:  (05:17:58) �[32m[17,253 / 17,254]�[0m 2357 / 2403 tests, �[31m�[1m1 failed�[0m;�[0m Testing //rb/spec/integration/selenium/webdriver/bidi:browsing_context-firefox; 12s remote, remote-cache
2630:  (05:18:03) �[32m[17,254 / 17,255]�[0m 2358 / 2403 tests, �[31m�[1m1 failed�[0m;�[0m Testing //rb/spec/integration/selenium/webdriver/bidi:browser-edge-bidi; 4s remote, remote-cache
2631:  (05:18:25) �[32m[17,254 / 17,255]�[0m 2358 / 2403 tests, �[31m�[1m1 failed�[0m;�[0m Testing //rb/spec/integration/selenium/webdriver/bidi:browser-edge-bidi; 25s remote, remote-cache
2632:  (05:18:33) �[32m[17,255 / 17,256]�[0m 2359 / 2403 tests, �[31m�[1m1 failed�[0m;�[0m Testing //rb/spec/integration/selenium/webdriver:devtools-chrome-beta; 7s remote, remote-cache
2633:  (05:19:32) �[32m[17,255 / 17,256]�[0m 2359 / 2403 tests, �[31m�[1m1 failed�[0m;�[0m Testing //rb/spec/integration/selenium/webdriver:devtools-chrome-beta; 66s remote, remote-cache
2634:  (05:19:38) �[32m[17,256 / 17,257]�[0m 2360 / 2403 tests, �[31m�[1m1 failed�[0m;�[0m Testing //rb/spec/integration/selenium/webdriver/bidi:browsing_context-edge; 5s remote, remote-cache
2635:  (05:19:46) �[32m[17,256 / 17,257]�[0m 2360 / 2403 tests, �[31m�[1m1 failed�[0m;�[0m Testing //rb/spec/integration/selenium/webdriver/bidi:browsing_context-edge; 12s remote, remote-cache
2636:  (05:19:53) �[32m[17,257 / 17,258]�[0m 2361 / 2403 tests, �[31m�[1m1 failed�[0m;�[0m Testing //rb/spec/integration/selenium/webdriver/bidi:browser-firefox-beta-remote; 6s remote, remote-cache
2637:  (05:20:03) �[32m[17,257 / 17,258]�[0m 2361 / 2403 tests, �[31m�[1m1 failed�[0m;�[0m Testing //rb/spec/integration/selenium/webdriver/bidi:browser-firefox-beta-remote; 16s remote, remote-cache
2638:  (05:20:08) �[32m[17,258 / 17,259]�[0m 2362 / 2403 tests, �[31m�[1m1 failed�[0m;�[0m Testing //rb/spec/integration/selenium/webdriver/bidi:browser-firefox; 4s remote, remote-cache
2639:  (05:20:16) �[32m[17,258 / 17,259]�[0m 2362 / 2403 tests, �[31m�[1m1 failed�[0m;�[0m Testing //rb/spec/integration/selenium/webdriver/bidi:browser-firefox; 12s remote, remote-cache
2640:  (05:20:23) �[32m[17,259 / 17,260]�[0m 2363 / 2403 tests, �[31m�[1m1 failed�[0m;�[0m Testing //rb/spec/integration/selenium/webdriver:devtools-firefox; 5s remote, remote-cache
2641:  (05:20:30) �[32m[17,259 / 17,260]�[0m 2363 / 2403 tests, �[31m�[1m1 failed�[0m;�[0m Testing //rb/spec/integration/selenium/webdriver:devtools-firefox; 12s remote, remote-cache
2642:  (05:20:38) �[32m[17,260 / 17,261]�[0m 2364 / 2403 tests, �[31m�[1m1 failed�[0m;�[0m Testing //rb/spec/integration/selenium/webdriver/bidi:browsing_context-firefox-beta-remote; 7s remote, remote-cache
2643:  (05:20:48) �[32m[17,260 / 17,261]�[0m 2364 / 2403 tests, �[31m�[1m1 failed�[0m;�[0m Testing //rb/spec/integration/selenium/webdriver/bidi:browsing_context-firefox-beta-remote; 16s remote, remote-cache
2644:  (05:20:53) �[32m[17,261 / 17,262]�[0m 2365 / 2403 tests, �[31m�[1m1 failed�[0m;�[0m Testing //rb/spec/integration/selenium/webdriver/bidi:network-firefox; 4s remote, remote-cache
2645:  (05:21:01) �[32m[17,261 / 17,262]�[0m 2365 / 2403 tests, �[31m�[1m1 failed�[0m;�[0m Testing //rb/spec/integration/selenium/webdriver/bidi:network-firefox; 12s remote, remote-cache
2646:  (05:21:08) �[32m[17,262 / 17,263]�[0m 2366 / 2403 tests, �[31m�[1m1 failed�[0m;�[0m Testing //rb/spec/integration/selenium/webdriver/bidi:browser-firefox-beta; 6s remote, remote-cache
2647:  (05:21:15) �[32m[17,262 / 17,263]�[0m 2366 / 2403 tests, �[31m�[1m1 failed�[0m;�[0m Testing //rb/spec/integration/selenium/webdriver/bidi:browser-firefox-beta; 13s remote, remote-cache
2648:  (05:21:23) �[32m[17,263 / 17,264]�[0m 2367 / 2403 tests, �[31m�[1m1 failed�[0m;�[0m Testing //rb/spec/integration/selenium/webdriver/bidi:script-firefox-bidi; 7s remote, remote-cache
2649:  (05:22:10) �[32m[17,263 / 17,264]�[0m 2367 / 2403 tests, �[31m�[1m1 failed�[0m;�[0m Testing //rb/spec/integration/selenium/webdriver/bidi:script-firefox-bidi; 53s remote, remote-cache
2650:  (05:22:18) �[32m[17,264 / 17,265]�[0m 2368 / 2403 tests, �[31m�[1m1 failed�[0m;�[0m Testing //rb/spec/integration/selenium/webdriver:devtools-edge-remote; 7s remote, remote-cache
2651:  (05:23:22) �[32m[17,264 / 17,265]�[0m 2368 / 2403 tests, �[31m�[1m1 failed�[0m;�[0m Testing //rb/spec/integration/selenium/webdriver:devtools-edge-remote; 70s remote, remote-cache
2652:  (05:23:28) �[32m[17,265 / 17,266]�[0m 2369 / 2403 tests, �[31m�[1m1 failed�[0m;�[0m Testing //rb/spec/integration/selenium/webdriver:devtools-chrome-remote; 6s remote, remote-cache
2653:  (05:24:29) �[32m[17,265 / 17,266]�[0m 2369 / 2403 tests, �[31m�[1m1 failed�[0m;�[0m Testing //rb/spec/integration/selenium/webdriver:devtools-chrome-remote; 66s remote, remote-cache
2654:  (05:24:38) �[32m[17,266 / 17,267]�[0m 2370 / 2403 tests, �[31m�[1m1 failed�[0m;�[0m Testing //rb/spec/integration/selenium/webdriver/bidi:script-chrome; 8s remote, remote-cache
2655:  (05:24:43) �[32m[17,266 / 17,267]�[0m 2370 / 2403 tests, �[31m�[1m1 failed�[0m;�[0m Testing //rb/spec/integration/selenium/webdriver/bidi:script-chrome; 13s remote, remote-cache
2656:  (05:24:53) �[32m[17,267 / 17,268]�[0m 2371 / 2403 tests, �[31m�[1m1 failed�[0m;�[0m Testing //rb/spec/integration/selenium/webdriver/bidi:script-edge-bidi; 9s remote, remote-cache
2657:  (05:25:12) �[32m[17,267 / 17,268]�[0m 2371 / 2403 tests, �[31m�[1m1 failed�[0m;�[0m Testing //rb/spec/integration/selenium/webdriver/bidi:script-edge-bidi; 28s remote, remote-cache
2658:  (05:25:18) �[32m[17,268 / 17,269]�[0m 2372 / 2403 tests, �[31m�[1m1 failed�[0m;�[0m Testing //rb/spec/integration/selenium/webdriver:devtools-firefox-beta-remote; 5s remote, remote-cache
2659:  (05:25:30) �[32m[17,268 / 17,269]�[0m 2372 / 2403 tests, �[31m�[1m1 failed�[0m;�[0m Testing //rb/spec/integration/selenium/webdriver:devtools-firefox-beta-remote; 16s remote, remote-cache
2660:  (05:25:38) �[32m[17,269 / 17,270]�[0m 2373 / 2403 tests, �[31m�[1m1 failed�[0m;�[0m Testing //rb/spec/integration/selenium/webdriver/bidi:browser-edge; 8s remote, remote-cache
2661:  (05:25:43) �[32m[17,269 / 17,270]�[0m 2373 / 2403 tests, �[31m�[1m1 failed�[0m;�[0m Testing //rb/spec/integration/selenium/webdriver/bidi:browser-edge; 13s remote, remote-cache
2662:  (05:25:53) �[32m[17,270 / 17,271]�[0m 2374 / 2403 tests, �[31m�[1m1 failed�[0m;�[0m Testing //rb/spec/integration/selenium/webdriver:devtools-edge; 9s remote, remote-cache
2663:  (05:26:55) �[32m[17,270 / 17,271]�[0m 2374 / 2403 tests, �[31m�[1m1 failed�[0m;�[0m Testing //rb/spec/integration/selenium/webdriver:devtools-edge; 70s remote, remote-cache
2664:  (05:27:03) �[32m[17,271 / 17,272]�[0m 2375 / 2403 tests, �[31m�[1m1 failed�[0m;�[0m Testing //rb/spec/integration/selenium/webdriver/bidi:script-edge; 7s remote, remote-cache
2665:  (05:27:09) �[32m[17,271 / 17,272]�[0m 2375 / 2403 tests, �[31m�[1m1 failed�[0m;�[0m Testing //rb/spec/integration/selenium/webdriver/bidi:script-edge; 13s remote, remote-cache
2666:  (05:27:18) �[32m[17,272 / 17,273]�[0m 2376 / 2403 tests, �[31m�[1m1 failed�[0m;�[0m Testing //rb/spec/integration/selenium/webdriver/bidi:browser-firefox-bidi; 8s remote, remote-cache
2667:  (05:28:02) �[32m[17,272 / 17,273]�[0m 2376 / 2403 tests, �[31m�[1m1 failed�[0m;�[0m Testing //rb/spec/integration/selenium/webdriver/bidi:browser-firefox-bidi; 51s remote, remote-cache
2668:  (05:28:08) �[32m[17,273 / 17,274]�[0m 2377 / 2403 tests, �[31m�[1m1 failed�[0m;�[0m Testing //rb/spec/integration/selenium/webdriver/bidi:script-chrome-bidi; 6s remote, remote-cache
2669:  (05:28:29) �[32m[17,273 / 17,274]�[0m 2377 / 2403 tests, �[31m�[1m1 failed�[0m;�[0m Testing //rb/spec/integration/selenium/webdriver/bidi:script-chrome-bidi; 27s remote, remote-cache
2670:  (05:28:38) �[32m[17,274 / 17,275]�[0m 2378 / 2403 tests, �[31m�[1m1 failed�[0m;�[0m Testing //rb/spec/integration/selenium/webdriver/bidi:network-chrome-remote; 8s remote, remote-cache
2671:  (05:28:47) �[32m[17,274 / 17,275]�[0m 2378 / 2403 tests, �[31m�[1m1 failed�[0m;�[0m Testing //rb/spec/integration/selenium/webdriver/bidi:network-chrome-remote; 16s remote, remote-cache
2672:  (05:28:53) �[32m[17,275 / 17,276]�[0m 2379 / 2403 tests, �[31m�[1m1 failed�[0m;�[0m Testing //rb/spec/integration/selenium/webdriver/bidi:browser-chrome-remote; 6s remote, remote-cache
2673:  (05:29:04) �[32m[17,275 / 17,276]�[0m 2379 / 2403 tests, �[31m�[1m1 failed�[0m;�[0m Testing //rb/spec/integration/selenium/webdriver/bidi:browser-chrome-remote; 16s remote, remote-cache
2674:  (05:29:13) �[32m[17,276 / 17,277]�[0m 2380 / 2403 tests, �[31m�[1m1 failed�[0m;�[0m Testing //rb/spec/integration/selenium/webdriver:devtools-chrome; 8s remote, remote-cache
2675:  (05:30:13) �[32m[17,276 / 17,277]�[0m 2380 / 2403 tests, �[31m�[1m1 failed�[0m;�[0m Testing //rb/spec/integration/selenium/webdriver:devtools-chrome; 68s remote, remote-cache
2676:  (05:30:18) �[32m[17,277 / 17,278]�[0m 2381 / 2403 tests, �[31m�[1m1 failed�[0m;�[0m Testing //rb/spec/integration/selenium/webdriver/bidi:browser-chrome-beta-bidi; 4s remote, remote-cache
2677:  (05:30:39) �[32m[17,277 / 17,278]�[0m 2381 / 2403 tests, �[31m�[1m1 failed�[0m;�[0m Testing //rb/spec/integration/selenium/webdriver/bidi:browser-chrome-beta-bidi; 25s remote, remote-cache
2678:  (05:30:48) �[32m[17,278 / 17,279]�[0m 2382 / 2403 tests, �[31m�[1m1 failed�[0m;�[0m Testing //rb/spec/integration/selenium/webdriver/bidi:script-firefox; 8s remote, remote-cache
2679:  (05:30:54) �[32m[17,279 / 17,280]�[0m 2383 / 2403 tests, �[31m�[1m1 failed�[0m;�[0m [Sched] Testing //rb/spec/integration/selenium/webdriver/bidi:script-chrome-beta
2680:  (05:31:03) �[32m[17,279 / 17,280]�[0m 2383 / 2403 tests, �[31m�[1m1 failed�[0m;�[0m Testing //rb/spec/integration/selenium/webdriver/bidi:script-chrome-beta; 9s remote, remote-cache
2681:  (05:31:13) �[32m[17,280 / 17,281]�[0m 2384 / 2403 tests, �[31m�[1m1 failed�[0m;�[0m Testing //rb/spec/integration/selenium/webdriver/bidi:browser-chrome-bidi; 5s remote, remote-cache
2682:  (05:31:32) �[32m[17,280 / 17,281]�[0m 2384 / 2403 tests, �[31m�[1m1 failed�[0m;�[0m Testing //rb/spec/integration/selenium/webdriver/bidi:browser-chrome-bidi; 24s remote, remote-cache
2683:  (05:31:38) �[32m[17,281 / 17,282]�[0m 2385 / 2403 tests, �[31m�[1m1 failed�[0m;�[0m Testing //rb/spec/integration/selenium/webdriver/bidi:network-edge-bidi; 5s remote, remote-cache
2684:  (05:32:17) �[32m[17,281 / 17,282]�[0m 2385 / 2403 tests, �[31m�[1m1 failed�[0m;�[0m Testing //rb/spec/integration/selenium/webdriver/bidi:network-edge-bidi; 43s remote, remote-cache
2685:  (05:32:23) �[32m[17,282 / 17,283]�[0m 2386 / 2403 tests, �[31m�[1m1 failed�[0m;�[0m Testing //rb/spec/integration/selenium/webdriver/bidi:network-firefox-beta-remote; 5s remote, remote-cache
2686:  (05:32:34) �[32m[17,282 / 17,283]�[0m 2386 / 2403 tests, �[31m�[1m1 failed�[0m;�[0m Testing //rb/spec/integration/selenium/webdriver/bidi:network-firefox-beta-remote; 16s remote, remote-cache
2687:  (05:32:43) �[32m[17,283 / 17,284]�[0m 2387 / 2403 tests, �[31m�[1m1 failed�[0m;�[0m Testing //rb/spec/integration/selenium/webdriver/bidi:browsing_context-firefox-beta; 8s remote, remote-cache
2688:  (05:32:49) �[32m[17,283 / 17,284]�[0m 2387 / 2403 tests, �[31m�[1m1 failed�[0m;�[0m Testing //rb/spec/integration/selenium/webdriver/bidi:browsing_context-firefox-beta; 13s remote, remote-cache
2689:  (05:32:58) �[32m[17,284 / 17,285]�[0m 2388 / 2403 tests, �[31m�[1m1 failed�[0m;�[0m Testing //rb/spec/integration/selenium/webdriver/bidi:network-edge; 8s remote, remote-cache
2690:  (05:33:03) �[32m[17,284 / 17,285]�[0m 2388 / 2403 tests, �[31m�[1m1 failed�[0m;�[0m Testing //rb/spec/integration/selenium/webdriver/bidi:network-edge; 13s remote, remote-cache
2691:  (05:33:13) �[32m[17,285 / 17,286]�[0m 2389 / 2403 tests, �[31m�[1m1 failed�[0m;�[0m Testing //rb/spec/integration/selenium/webdriver/bidi:script-chrome-beta-remote; 9s remote, remote-cache
2692:  (05:33:21) �[32m[17,285 / 17,286]�[0m 2389 / 2403 tests, �[31m�[1m1 failed�[0m;�[0m Testing //rb/spec/integration/selenium/webdriver/bidi:script-chrome-beta-remote; 17s remote, remote-cache
2693:  (05:33:28) �[32m[17,286 / 17,287]�[0m 2390 / 2403 tests, �[31m�[1m1 failed�[0m;�[0m Testing //rb/spec/integration/selenium/webdriver/bidi:browsing_context-chrome-beta-remote; 6s remote, remote-cache
2694:  (05:33:38) �[32m[17,286 / 17,287]�[0m 2390 / 2403 tests, �[31m�[1m1 failed�[0m;�[0m Testing //rb/spec/integration/selenium/webdriver/bidi:browsing_context-chrome-beta-remote; 16s remote, remote-cache
2695:  (05:33:43) �[32m[17,287 / 17,288]�[0m 2391 / 2403 tests, �[31m�[1m1 failed�[0m;�[0m Testing //rb/spec/integration/selenium/webdriver/bidi:network-firefox-remote; 4s remote, remote-cache
2696:  (05:33:57) �[32m[17,287 / 17,288]�[0m 2391 / 2403 tests, �[31m�[1m1 failed�[0m;�[0m Testing //rb/spec/integration/selenium/webdriver/bidi:network-firefox-remote; 17s remote, remote-cache
2697:  (05:34:03) �[32m[17,288 / 17,289]�[0m 2392 / 2403 tests, �[31m�[1m1 failed�[0m;�[0m Testing //rb/spec/integration/selenium/webdriver/bidi:browser-firefox-beta-bidi; 5s remote, remote-cache
2698:  (05:34:49) �[32m[17,288 / 17,289]�[0m 2392 / 2403 tests, �[31m�[1m1 failed�[0m;�[0m Testing //rb/spec/integration/selenium/webdriver/bidi:browser-firefox-beta-bidi; 51s remote, remote-cache
2699:  (05:34:58) �[32m[17,289 / 17,290]�[0m 2393 / 2403 tests, �[31m�[1m1 failed�[0m;�[0m Testing //rb/spec/integration/selenium/webdriver/bidi:script-firefox-beta-remote; 8s remote, remote-cache
2700:  (05:35:06) �[32m[17,289 / 17,290]�[0m 2393 / 2403 tests, �[31m�[1m1 failed�[0m;�[0m Testing //rb/spec/integration/selenium/webdriver/bidi:script-firefox-beta-remote; 16s remote, remote-cache
2701:  (05:35:13) �[32m[17,290 / 17,291]�[0m 2394 / 2403 tests, �[31m�[1m1 failed�[0m;�[0m Testing //rb/spec/integration/selenium/webdriver/bidi:browsing_context-chrome-remote; 6s remote, remote-cache
2702:  (05:35:24) �[32m[17,290 / 17,291]�[0m 2394 / 2403 tests, �[31m�[1m1 failed�[0m;�[0m Testing //rb/spec/integration/selenium/webdriver/bidi:browsing_context-chrome-remote; 16s remote, remote-cache
2703:  (05:35:33) �[32m[17,291 / 17,292]�[0m 2395 / 2403 tests, �[31m�[1m1 failed�[0m;�[0m Testing //rb/spec/integration/selenium/webdriver/bidi:browsing_context-firefox-beta-bidi; 8s remote, remote-cache
2704:  (05:36:59) �[32m[17,291 / 17,292]�[0m 2395 / 2403 tests, �[31m�[1m1 failed�[0m;�[0m Testing //rb/spec/integration/selenium/webdriver/bidi:browsing_context-firefox-beta-bidi; 93s remote, remote-cache
2705:  (05:37:08) �[32m[17,292 / 17,293]�[0m 2396 / 2403 tests, �[31m�[1m1 failed�[0m;�[0m Testing //rb/spec/integration/selenium/webdriver/bidi:browsing_context-firefox-bidi; 8s remote, remote-cache
2706:  (05:38:35) �[32m[17,292 / 17,293]�[0m 2396 / 2403 tests, �[31m�[1m1 failed�[0m;�[0m Testing //rb/spec/integration/selenium/webdriver/bidi:browsing_context-firefox-bidi; 95s remote, remote-cache
2707:  (05:38:43) �[32m[17,293 / 17,294]�[0m 2397 / 2403 tests, �[31m�[1m1 failed�[0m;�[0m Testing //rb/spec/integration/selenium/webdriver/bidi:network-chrome; 7s remote, remote-cache
2708:  (05:38:50) �[32m[17,293 / 17,294]�[0m 2397 / 2403 tests, �[31m�[1m1 failed�[0m;�[0m Testing //rb/spec/integration/selenium/webdriver/bidi:network-chrome; 13s remote, remote-cache
2709:  (05:38:58) �[32m[17,294 / 17,295]�[0m 2398 / 2403 tests, �[31m�[1m1 failed�[0m;�[0m Testing //rb/spec/integration/selenium/webdriver/bidi:network-chrome-beta-remote; 7s remote, remote-cache
2710:  (05:39:07) �[32m[17,294 / 17,295]�[0m 2398 / 2403 tests, �[31m�[1m1 failed�[0m;�[0m Testing //rb/spec/integration/selenium/webdriver/bidi:network-chrome-beta-remote; 16s remote, remote-cache
2711:  (05:39:13) �[32m[17,295 / 17,296]�[0m 2399 / 2403 tests, �[31m�[1m1 failed�[0m;�[0m Testing //rb/spec/integration/selenium/webdriver:devtools-chrome-beta-remote; 5s remote, remote-cache
2712:  (05:40:14) �[32m[17,295 / 17,296]�[0m 2399 / 2403 tests, �[31m�[1m1 failed�[0m;�[0m Testing //rb/spec/integration/selenium/webdriver:devtools-chrome-beta-remote; 66s remote, remote-cache
2713:  (05:40:23) �[32m[17,296 / 17,297]�[0m 2400 / 2403 tests, �[31m�[1m1 failed�[0m;�[0m Testing //rb/spec/integration/selenium/webdriver:devtools-firefox-beta; 8s remote, remote-cache
2714:  (05:40:29) �[32m[17,296 / 17,297]�[0m 2400 / 2403 tests, �[31m�[1m1 failed�[0m;�[0m Testing //rb/spec/integration/selenium/webdriver:devtools-firefox-beta; 13s remote, remote-cache
2715:  (05:40:38) �[32m[17,297 / 17,298]�[0m 2401 / 2403 tests, �[31m�[1m1 failed�[0m;�[0m Testing //rb/spec/integration/selenium/webdriver/bidi:network-firefox-bidi; 8s remote, remote-cache
2716:  (05:43:09) �[32m[17,297 / 17,298]�[0m 2401 / 2403 tests, �[31m�[1m1 failed�[0m;�[0m Testing //rb/spec/integration/selenium/webdriver/bidi:network-firefox-bidi; 159s remote, remote-cache
2717:  (05:43:18) �[32m[17,298 / 17,299]�[0m 2402 / 2403 tests, �[31m�[1m1 failed�[0m;�[0m Testing //rb/spec/integration/selenium/webdriver/bidi:browser-chrome-beta; 7s remote, remote-cache
2718:  (05:43:23) �[32m[17,298 / 17,299]�[0m 2402 / 2403 tests, �[31m�[1m1 failed�[0m;�[0m Testing //rb/spec/integration/selenium/webdriver/bidi:browser-chrome-beta; 12s remote, remote-cache
2719:  (05:43:24) �[32mINFO: �[0mFound 2403 test targets...
2720:  (05:43:24) �[32mINFO: �[0mElapsed time: 2288.245s, Critical Path: 508.94s
2721:  (05:43:24) �[32mINFO: �[0m16586 processes: 8188 remote cache hit, 8175 internal, 54 local, 169 remote.
2722:  (05:43:24) �[32mINFO: �[0mBuild completed, 1 test FAILED, 16586 total actions
2723:  (05:43:24) �[32mINFO:�[0m 
...

2826:  //dotnet/test/common:ElementElementFindingTest-chrome           �[0m�[32m(cached) PASSED�[0m in 8.8s
2827:  //dotnet/test/common:ElementElementFindingTest-edge            ...


if channel == "Stable":
dir_path = root_dir / "dotnet/test/common/DevTools"
for file in dir_path.glob("*") if file.is_file()
Copy link
Member

Choose a reason for hiding this comment

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

Is that valid syntax?

I'd write that as:

for file in dir_path.glob("*"):
    if file.is_file():

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment

Labels

B-build Includes scripting, bazel and CI integrations C-dotnet .NET Bindings Review effort 2/5

Projects

None yet

Development

Successfully merging this pull request may close these issues.

3 participants