Skip to content

Conversation

selenium-ci
Copy link
Member

@selenium-ci selenium-ci commented Sep 23, 2025

This is an automated pull request to update pinned browsers and drivers

Merge after verify the new browser versions properly passing the tests and no bugs need to be filed

@selenium-ci selenium-ci added the B-build Includes scripting, bazel and CI integrations label Sep 23, 2025
Copy link
Contributor

PR Reviewer Guide 🔍

Here are some key observations to aid the review process:

⏱️ Estimated effort to review: 2 🔵🔵⚪⚪⚪
🧪 No relevant tests
🔒 Security concerns

Supply chain integrity:
Changes update external binary URLs and checksums. Ensure checksums are verified from a trusted source and consider pinning via GPG signatures or additional verification where possible.

⚡ Recommended focus areas for review

Integrity Mismatch Risk

Verify the provided SHA256 checksums match the actual artifacts at the updated URLs to avoid build failures and supply-chain risk.

url = "https://ftp.mozilla.org/pub/firefox/releases/144.0b4/linux-x86_64/en-US/firefox-144.0b4.tar.xz",
sha256 = "028695766920f2a19fdd856cc3709b2b69eea7ce762c0df65990156f6eb0f8e2",
build_file_content = """
Mirror/Availability

Consider adding a mirror or list of urls for resilience; single URL updates can cause flaky builds if Mozilla CDN paths change or are temporarily unavailable.

dmg_archive(
    name = "mac_beta_firefox",
    url = "https://ftp.mozilla.org/pub/firefox/releases/144.0b4/mac/en-US/Firefox%20144.0b4.dmg",
    sha256 = "71b949952ab8bbac37432d3b074d05cf1ddb227c03c00696b3a000ea29780cdd",

Copy link
Contributor

qodo-merge-pro bot commented Sep 23, 2025

PR Code Suggestions ✨

Explore these optional code suggestions:

CategorySuggestion                                                                                                                                    Impact
General
Centralize version string in a variable

Define a variable for the Firefox version string and use it in the url
attributes to avoid duplication and improve maintainability.

common/repositories.bzl [51-77]

+    _FIREFOX_BETA_VERSION = "144.0b4"
+
     http_archive(
         name = "linux_beta_firefox",
-        url = "https://ftp.mozilla.org/pub/firefox/releases/144.0b4/linux-x86_64/en-US/firefox-144.0b4.tar.xz",
+        url = "https://ftp.mozilla.org/pub/firefox/releases/{v}/linux-x86_64/en-US/firefox-{v}.tar.xz".format(v = _FIREFOX_BETA_VERSION),
         sha256 = "028695766920f2a19fdd856cc3709b2b69eea7ce762c0df65990156f6eb0f8e2",
         build_file_content = """
 load("@aspect_rules_js//js:defs.bzl", "js_library")
 ...
 """,
     )
 
     dmg_archive(
         name = "mac_beta_firefox",
-        url = "https://ftp.mozilla.org/pub/firefox/releases/144.0b4/mac/en-US/Firefox%20144.0b4.dmg",
+        url = "https://ftp.mozilla.org/pub/firefox/releases/{v}/mac/en-US/Firefox%20{v}.dmg".format(v = _FIREFOX_BETA_VERSION),
         sha256 = "71b949952ab8bbac37432d3b074d05cf1ddb227c03c00696b3a000ea29780cdd",
         build_file_content = """
 load("@aspect_rules_js//js:defs.bzl", "js_library")
 ...
 """,
     )

[To ensure code accuracy, apply this suggestion manually]

Suggestion importance[1-10]: 6

__

Why: The suggestion correctly identifies duplicated version strings and proposes centralizing them in a variable, which improves code maintainability for future updates.

Low
  • Update

@selenium-ci selenium-ci force-pushed the pinned-browser-updates branch 6 times, most recently from d4fded1 to 929c60a Compare September 30, 2025 00:41
@selenium-ci selenium-ci force-pushed the pinned-browser-updates branch 2 times, most recently from f2ee713 to 6579bf9 Compare October 2, 2025 00:41
@selenium-ci selenium-ci force-pushed the pinned-browser-updates branch from 6579bf9 to 9a03639 Compare October 3, 2025 00:44
Copy link
Contributor

qodo-merge-pro bot commented Oct 3, 2025

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 one test consistently failed:
- Test
//rust/tests:integration_grid_tests_test failed in both attempts. Specifically,
grid_version_test::case_4 panicked because running command rust/selenium-manager --grid nightly
--output json returned exit code 65 with error message selenium-server release not available. This
indicates the test expects a valid "nightly" selenium-server release, but none was available,
causing the failure.
- Two Java tests were flaky but ultimately passed on retry:
-
//java/test/org/openqa/selenium:FormHandlingTest initially failed at FormHandlingTest.java:219 with
NoSuchElementException for element #inputWithText, then passed on retry.
-
//java/test/org/openqa/selenium:SessionHandlingTest-chrome had a flaky failure and passed on retry.

Build concluded with 1 test failed overall, leading to the workflow exit with code 3.

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

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

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

1752:  (12:09:34) �[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
1753:  (12:09:34) �[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
1754:  (12:09:34) �[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
1755:  (12:09:34) �[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
1756:  (12:09:34) �[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
1757:  (12:09:34) �[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
1758:  (12:09:34) �[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
1759:  (12:09:37) �[32mLoading:�[0m 242 packages loaded
1760:  currently loading: javascript/selenium-webdriver ... (11 packages)
1761:  (12:09:41) �[32mAnalyzing:�[0m 2505 targets (253 packages loaded, 0 targets configured)
1762:  (12:09:42) �[32mAnalyzing:�[0m 2505 targets (253 packages loaded, 0 targets configured)
1763:  (12:09:48) �[32mAnalyzing:�[0m 2505 targets (419 packages loaded, 67 targets configured)
1764:  (12:09:53) �[32mAnalyzing:�[0m 2505 targets (544 packages loaded, 8053 targets configured)
1765:  (12:09:54) �[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:
1766:  com.google.code.findbugs:jsr305
1767:  com.google.errorprone:error_prone_annotations
1768:  com.google.guava:guava (versions: 30.1.1-jre, 31.0.1-android)
...

1803:  (12:11:04) �[32mAnalyzing:�[0m 2505 targets (1681 packages loaded, 61312 targets configured)
1804:  �[32m[1,694 / 1,696]�[0m 81 / 83 tests;�[0m checking cached actions
1805:  (12:11:09) �[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
1806:  (12:11:09) �[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
1807:  (12:11:09) �[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
1808:  (12:11:09) �[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
1809:  (12:11:09) �[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
1810:  (12:11:09) �[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
1811:  (12:11:09) �[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
1812:  (12:11:09) �[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
1813:  (12:11:09) �[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
1814:  (12:11:09) �[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
1815:  (12:11:09) �[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
1816:  (12:11:09) �[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
1817:  (12:11:09) �[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
1818:  (12:11:09) �[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
1819:  (12:11:09) �[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
...

1918:  (12:11:09) �[35mWARNING: �[0m/home/runner/work/selenium/selenium/javascript/webdriver/BUILD.bazel:66:19: runfiles symlink javascript/webdriver/test/http/xhrclient_test.js -> javascript/webdriver/test/http/xhrclient_test.js obscured by javascript/webdriver/test -> bazel-out/k8-fastbuild/bin/javascript/webdriver/test
1919:  (12:11:09) �[35mWARNING: �[0m/home/runner/work/selenium/selenium/javascript/webdriver/BUILD.bazel:66:19: runfiles symlink javascript/webdriver/test/logging_test.js -> javascript/webdriver/test/logging_test.js obscured by javascript/webdriver/test -> bazel-out/k8-fastbuild/bin/javascript/webdriver/test
1920:  (12:11:09) �[35mWARNING: �[0m/home/runner/work/selenium/selenium/javascript/webdriver/BUILD.bazel:66:19: runfiles symlink javascript/webdriver/test/stacktrace_test.js -> javascript/webdriver/test/stacktrace_test.js obscured by javascript/webdriver/test -> bazel-out/k8-fastbuild/bin/javascript/webdriver/test
1921:  (12:11:09) �[35mWARNING: �[0m/home/runner/work/selenium/selenium/javascript/webdriver/BUILD.bazel:66:19: runfiles symlink javascript/webdriver/test/test_bootstrap.js -> javascript/webdriver/test/test_bootstrap.js obscured by javascript/webdriver/test -> bazel-out/k8-fastbuild/bin/javascript/webdriver/test
1922:  (12:11:09) �[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
1923:  (12:11:09) �[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
1924:  (12:11:10) �[32mAnalyzing:�[0m 2505 targets (1696 packages loaded, 61735 targets configured)
1925:  �[32m[4,200 / 6,557]�[0m 82 / 589 tests;�[0m [Prepa] Creating source manifest for //dotnet/test/common:ContentEditableTest-chrome ... (16 actions, 10 running)
1926:  (12:11:15) �[32mAnalyzing:�[0m 2505 targets (1697 packages loaded, 61899 targets configured)
1927:  �[32m[5,936 / 8,133]�[0m 82 / 1056 tests;�[0m Extracting npm package @mui/[email protected]_437803898; 2s remote, remote-cache ... (27 actions, 21 running)
1928:  (12:11:17) �[32mINFO: �[0mFrom Building external/protobuf+/java/core/liblite_runtime_only.jar (93 source files) [for tool]:
1929:  external/protobuf+/java/core/src/main/java/com/google/protobuf/UnsafeUtil.java:270: warning: [removal] AccessController in java.security has been deprecated and marked for removal
1930:  AccessController.doPrivileged(
1931:  ^
1932:  (12:11:17) �[32mINFO: �[0mFrom Building java/src/org/openqa/selenium/remote/libapi-class.jar (63 source files):
1933:  java/src/org/openqa/selenium/remote/ErrorHandler.java:46: warning: [removal] ErrorCodes in org.openqa.selenium.remote has been deprecated and marked for removal
1934:  private final ErrorCodes errorCodes;
1935:  ^
1936:  java/src/org/openqa/selenium/remote/ErrorHandler.java:60: warning: [removal] ErrorCodes in org.openqa.selenium.remote has been deprecated and marked for removal
1937:  this.errorCodes = new ErrorCodes();
1938:  ^
1939:  java/src/org/openqa/selenium/remote/ErrorHandler.java:68: warning: [removal] ErrorCodes in org.openqa.selenium.remote has been deprecated and marked for removal
1940:  public ErrorHandler(ErrorCodes codes, boolean includeServerErrors) {
1941:  ^
1942:  java/src/org/openqa/selenium/remote/Response.java:97: warning: [removal] ErrorCodes in org.openqa.selenium.remote has been deprecated and marked for removal
1943:  ErrorCodes errorCodes = new ErrorCodes();
1944:  ^
1945:  java/src/org/openqa/selenium/remote/Response.java:97: warning: [removal] ErrorCodes in org.openqa.selenium.remote has been deprecated and marked for removal
1946:  ErrorCodes errorCodes = new ErrorCodes();
1947:  ^
1948:  java/src/org/openqa/selenium/remote/ProtocolHandshake.java:181: warning: [removal] ErrorCodes in org.openqa.selenium.remote has been deprecated and marked for removal
1949:  response.setStatus(ErrorCodes.SUCCESS);
1950:  ^
1951:  java/src/org/openqa/selenium/remote/ProtocolHandshake.java:182: warning: [removal] ErrorCodes in org.openqa.selenium.remote has been deprecated and marked for removal
1952:  response.setState(ErrorCodes.SUCCESS_STRING);
1953:  ^
1954:  java/src/org/openqa/selenium/remote/W3CHandshakeResponse.java:53: warning: [removal] ErrorCodes in org.openqa.selenium.remote has been deprecated and marked for removal
1955:  new ErrorCodes().toStatus((String) rawError, Optional.of(tuple.getStatusCode())));
1956:  ^
1957:  java/src/org/openqa/selenium/remote/W3CHandshakeResponse.java:56: warning: [removal] ErrorCodes in org.openqa.selenium.remote has been deprecated and marked for removal
1958:  new ErrorCodes().getExceptionType((String) rawError);
1959:  ^
1960:  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
1961:  private final ErrorCodes errorCodes = new ErrorCodes();
1962:  ^
1963:  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
1964:  private final ErrorCodes errorCodes = new ErrorCodes();
1965:  ^
1966:  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
1967:  int status = response.getStatus() == ErrorCodes.SUCCESS ? HTTP_OK : HTTP_INTERNAL_ERROR;
1968:  ^
1969:  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
1970:  response.setStatus(ErrorCodes.UNKNOWN_COMMAND);
1971:  ^
1972:  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
1973:  response.setStatus(ErrorCodes.UNHANDLED_ERROR);
1974:  ^
1975:  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
1976:  response.setStatus(ErrorCodes.SUCCESS);
1977:  ^
1978:  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
1979:  response.setState(errorCodes.toState(ErrorCodes.SUCCESS));
1980:  ^
1981:  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
1982:  response.setState(errorCodes.toState(ErrorCodes.SUCCESS));
1983:  ^
1984:  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
1985:  private final ErrorCodes errorCodes = new ErrorCodes();
1986:  ^
1987:  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
1988:  private final ErrorCodes errorCodes = new ErrorCodes();
1989:  ^
1990:  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
1991:  response.setStatus(ErrorCodes.UNKNOWN_COMMAND);
1992:  ^
1993:  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
1994:  response.setStatus(ErrorCodes.UNHANDLED_ERROR);
1995:  ^
1996:  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
1997:  response.setStatus(ErrorCodes.SUCCESS);
1998:  ^
...

2187:  dotnet/test/common/ProxyTest.cs(76,9): warning CS0618: 'Proxy.FtpProxy' is obsolete: 'FTP proxy support is deprecated and will be removed in the 4.37 version.'
2188:  dotnet/test/common/ProxyTest.cs(85,21): warning CS0618: 'Proxy.FtpProxy' is obsolete: 'FTP proxy support is deprecated and will be removed in the 4.37 version.'
2189:  dotnet/test/common/ProxyTest.cs(107,21): warning CS0618: 'Proxy.FtpProxy' is obsolete: 'FTP proxy support is deprecated and will be removed in the 4.37 version.'
2190:  dotnet/test/common/ProxyTest.cs(127,21): warning CS0618: 'Proxy.FtpProxy' is obsolete: 'FTP proxy support is deprecated and will be removed in the 4.37 version.'
2191:  dotnet/test/common/ProxyTest.cs(156,21): warning CS0618: 'Proxy.FtpProxy' is obsolete: 'FTP proxy support is deprecated and will be removed in the 4.37 version.'
2192:  dotnet/test/common/ProxyTest.cs(202,21): warning CS0618: 'Proxy.FtpProxy' is obsolete: 'FTP proxy support is deprecated and will be removed in the 4.37 version.'
2193:  dotnet/test/common/ProxyTest.cs(225,21): warning CS0618: 'Proxy.FtpProxy' is obsolete: 'FTP proxy support is deprecated and will be removed in the 4.37 version.'
2194:  dotnet/test/common/ProxyTest.cs(246,21): warning CS0618: 'Proxy.FtpProxy' is obsolete: 'FTP proxy support is deprecated and will be removed in the 4.37 version.'
2195:  dotnet/test/common/ProxyTest.cs(268,21): warning CS0618: 'Proxy.FtpProxy' is obsolete: 'FTP proxy support is deprecated and will be removed in the 4.37 version.'
2196:  dotnet/test/common/ProxyTest.cs(290,21): warning CS0618: 'Proxy.FtpProxy' is obsolete: 'FTP proxy support is deprecated and will be removed in the 4.37 version.'
2197:  (12:11:50) �[32mAnalyzing:�[0m 2505 targets (1708 packages loaded, 63754 targets configured)
2198:  �[32m[11,125 / 12,199]�[0m 84 / 2013 tests;�[0m Testing //rb/spec/integration/selenium/webdriver/remote:driver-firefox-bidi; 5s remote, remote-cache ... (50 actions, 4 running)
2199:  (12:11:55) �[32mAnalyzing:�[0m 2505 targets (1708 packages loaded, 64036 targets configured)
2200:  �[32m[11,129 / 12,292]�[0m 84 / 2013 tests;�[0m Testing //rb/spec/integration/selenium/webdriver/remote:driver-firefox-bidi; 10s remote, remote-cache ... (50 actions, 4 running)
2201:  (12:11:58) �[32mINFO: �[0mFrom Building java/test/org/openqa/selenium/json/JsonTest.jar (1 source file):
2202:  java/test/org/openqa/selenium/json/JsonTest.java:430: warning: [removal] ErrorCodes in org.openqa.selenium.remote has been deprecated and marked for removal
2203:  assertThat(response.getState()).isEqualTo(new ErrorCodes().toState(0));
2204:  ^
2205:  java/test/org/openqa/selenium/json/JsonTest.java:441: warning: [removal] ErrorCodes in org.openqa.selenium.remote has been deprecated and marked for removal
2206:  assertThat(response.getState()).isEqualTo(new ErrorCodes().toState(0));
2207:  ^
2208:  java/test/org/openqa/selenium/json/JsonTest.java:454: warning: [removal] ErrorCodes in org.openqa.selenium.remote has been deprecated and marked for removal
2209:  assertThat(response.getState()).isEqualTo(new ErrorCodes().toState(32));
2210:  ^
2211:  (12:12:00) �[32mAnalyzing:�[0m 2505 targets (1708 packages loaded, 64254 targets configured)
2212:  �[32m[11,137 / 12,847]�[0m 86 / 2230 tests;�[0m Testing //rb/spec/integration/selenium/webdriver/remote:driver-firefox-bidi; 15s remote, remote-cache ... (50 actions, 4 running)
2213:  (12:12:05) �[32mINFO: �[0mFrom Building java/test/org/openqa/selenium/remote/codec/w3c/W3CHttpResponseCodecTest.jar (1 source file):
2214:  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
2215:  import static org.openqa.selenium.remote.ErrorCodes.METHOD_NOT_ALLOWED;
2216:  ^
2217:  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
2218:  assertThat(decoded.getStatus()).isEqualTo(ErrorCodes.SUCCESS);
2219:  ^
2220:  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
2221:  assertThat(decoded.getStatus()).isEqualTo(ErrorCodes.UNHANDLED_ERROR);
2222:  ^
2223:  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
2224:  assertThat(decoded.getStatus()).isEqualTo(ErrorCodes.UNHANDLED_ERROR);
2225:  ^
2226:  (12:12:05) �[32mAnalyzing:�[0m 2505 targets (1712 packages loaded, 65020 targets configured)
2227:  �[32m[11,158 / 13,132]�[0m 89 / 2342 tests;�[0m Testing //rb/spec/integration/selenium/webdriver/remote:driver-firefox-bidi; 20s remote, remote-cache ... (48 actions, 5 running)
2228:  (12:12:07) �[32mINFO: �[0mFrom Building java/test/org/openqa/selenium/remote/RemotableByTest.jar (1 source file) and running annotation processors (AutoServiceProcessor):
2229:  java/test/org/openqa/selenium/remote/RemotableByTest.java:23: warning: [removal] ErrorCodes in org.openqa.selenium.remote has been deprecated and marked for removal
2230:  import static org.openqa.selenium.remote.ErrorCodes.SUCCESS_STRING;
2231:  ^
2232:  java/test/org/openqa/selenium/remote/RemotableByTest.java:23: warning: [removal] ErrorCodes in org.openqa.selenium.remote has been deprecated and marked for removal
2233:  import static org.openqa.selenium.remote.ErrorCodes.SUCCESS_STRING;
2234:  ^
2235:  java/test/org/openqa/selenium/remote/RemotableByTest.java:23: warning: [removal] ErrorCodes in org.openqa.selenium.remote has been deprecated and marked for removal
2236:  import static org.openqa.selenium.remote.ErrorCodes.SUCCESS_STRING;
2237:  ^
2238:  java/test/org/openqa/selenium/remote/RemotableByTest.java:45: warning: [removal] ErrorCodes in org.openqa.selenium.remote has been deprecated and marked for removal
2239:  private final ErrorCodes errorCodes = new ErrorCodes();
2240:  ^
2241:  java/test/org/openqa/selenium/remote/RemotableByTest.java:45: warning: [removal] ErrorCodes in org.openqa.selenium.remote has been deprecated and marked for removal
2242:  private final ErrorCodes errorCodes = new ErrorCodes();
2243:  ^
2244:  java/test/org/openqa/selenium/remote/RemotableByTest.java:45: warning: [removal] ErrorCodes in org.openqa.selenium.remote has been deprecated and marked for removal
2245:  private final ErrorCodes errorCodes = new ErrorCodes();
2246:  ^
2247:  java/test/org/openqa/selenium/remote/RemotableByTest.java:45: warning: [removal] ErrorCodes in org.openqa.selenium.remote has been deprecated and marked for removal
2248:  private final ErrorCodes errorCodes = new ErrorCodes();
2249:  ^
2250:  (12:12:08) �[32mINFO: �[0mFrom Building java/test/org/openqa/selenium/remote/ErrorHandlerTest.jar (1 source file) and running annotation processors (AutoServiceProcessor):
2251:  java/test/org/openqa/selenium/remote/ErrorHandlerTest.java:79: warning: [removal] ErrorCodes in org.openqa.selenium.remote has been deprecated and marked for removal
2252:  handler.throwIfResponseFailed(createResponse(ErrorCodes.SUCCESS), 100);
2253:  ^
2254:  java/test/org/openqa/selenium/remote/ErrorHandlerTest.java:85: warning: [removal] ErrorCodes in org.openqa.selenium.remote has been deprecated and marked for removal
2255:  assertThrowsCorrectExceptionType(ErrorCodes.NO_SUCH_WINDOW, NoSuchWindowException.class);
2256:  ^
2257:  java/test/org/openqa/selenium/remote/ErrorHandlerTest.java:86: warning: [removal] ErrorCodes in org.openqa.selenium.remote has been deprecated and marked for removal
2258:  assertThrowsCorrectExceptionType(ErrorCodes.NO_SUCH_FRAME, NoSuchFrameException.class);
2259:  ^
2260:  java/test/org/openqa/selenium/remote/ErrorHandlerTest.java:87: warning: [removal] ErrorCodes in org.openqa.selenium.remote has been deprecated and marked for removal
2261:  assertThrowsCorrectExceptionType(ErrorCodes.NO_SUCH_ELEMENT, NoSuchElementException.class);
2262:  ^
2263:  java/test/org/openqa/selenium/remote/ErrorHandlerTest.java:88: warning: [removal] ErrorCodes in org.openqa.selenium.remote has been deprecated and marked for removal
2264:  assertThrowsCorrectExceptionType(ErrorCodes.UNKNOWN_COMMAND, UnsupportedCommandException.class);
2265:  ^
2266:  java/test/org/openqa/selenium/remote/ErrorHandlerTest.java:90: warning: [removal] ErrorCodes in org.openqa.selenium.remote has been deprecated and marked for removal
2267:  ErrorCodes.METHOD_NOT_ALLOWED, UnsupportedCommandException.class);
2268:  ^
2269:  java/test/org/openqa/selenium/remote/ErrorHandlerTest.java:92: warning: [removal] ErrorCodes in org.openqa.selenium.remote has been deprecated and marked for removal
2270:  ErrorCodes.STALE_ELEMENT_REFERENCE, StaleElementReferenceException.class);
2271:  ^
2272:  java/test/org/openqa/selenium/remote/ErrorHandlerTest.java:94: warning: [removal] ErrorCodes in org.openqa.selenium.remote has been deprecated and marked for removal
2273:  ErrorCodes.INVALID_ELEMENT_STATE, InvalidElementStateException.class);
2274:  ^
2275:  java/test/org/openqa/selenium/remote/ErrorHandlerTest.java:95: warning: [removal] ErrorCodes in org.openqa.selenium.remote has been deprecated and marked for removal
2276:  assertThrowsCorrectExceptionType(ErrorCodes.XPATH_LOOKUP_ERROR, InvalidSelectorException.class);
2277:  ^
2278:  java/test/org/openqa/selenium/remote/ErrorHandlerTest.java:107: warning: [removal] ErrorCodes in org.openqa.selenium.remote has been deprecated and marked for removal
2279:  Response response = createResponse(ErrorCodes.UNHANDLED_ERROR);
2280:  ^
2281:  java/test/org/openqa/selenium/remote/ErrorHandlerTest.java:120: warning: [removal] ErrorCodes in org.openqa.selenium.remote has been deprecated and marked for removal
2282:  createResponse(ErrorCodes.UNHANDLED_ERROR, "boom"), 123))
2283:  ^
2284:  java/test/org/openqa/selenium/remote/ErrorHandlerTest.java:133: warning: [removal] ErrorCodes in org.openqa.selenium.remote has been deprecated and marked for removal
2285:  createResponse(ErrorCodes.UNHANDLED_ERROR, ImmutableMap.of("message", "boom")),
2286:  ^
2287:  java/test/org/openqa/selenium/remote/ErrorHandlerTest.java:147: warning: [removal] ErrorCodes in org.openqa.selenium.remote has been deprecated and marked for removal
2288:  ErrorCodes.UNHANDLED_ERROR,
2289:  ^
2290:  java/test/org/openqa/selenium/remote/ErrorHandlerTest.java:167: warning: [removal] ErrorCodes in org.openqa.selenium.remote has been deprecated and marked for removal
2291:  ErrorCodes.UNHANDLED_ERROR,
2292:  ^
2293:  java/test/org/openqa/selenium/remote/ErrorHandlerTest.java:193: warning: [removal] ErrorCodes in org.openqa.selenium.remote has been deprecated and marked for removal
2294:  createResponse(ErrorCodes.UNHANDLED_ERROR, toMap(serverError)), 123))
2295:  ^
2296:  java/test/org/openqa/selenium/remote/ErrorHandlerTest.java:214: warning: [removal] ErrorCodes in org.openqa.selenium.remote has been deprecated and marked for removal
2297:  createResponse(ErrorCodes.UNHANDLED_ERROR, data), 123))
2298:  ^
2299:  java/test/org/openqa/selenium/remote/ErrorHandlerTest.java:248: warning: [removal] ErrorCodes in org.openqa.selenium.remote has been deprecated and marked for removal
2300:  createResponse(ErrorCodes.UNHANDLED_ERROR, data), 123))
2301:  ^
2302:  java/test/org/openqa/selenium/remote/ErrorHandlerTest.java:280: warning: [removal] ErrorCodes in org.openqa.selenium.remote has been deprecated and marked for removal
2303:  createResponse(ErrorCodes.UNHANDLED_ERROR, data), 123))
2304:  ^
2305:  java/test/org/openqa/selenium/remote/ErrorHandlerTest.java:308: warning: [removal] ErrorCodes in org.openqa.selenium.remote has been deprecated and marked for removal
2306:  createResponse(ErrorCodes.UNHANDLED_ERROR, data), 123))
2307:  ^
2308:  java/test/org/openqa/selenium/remote/ErrorHandlerTest.java:327: warning: [removal] ErrorCodes in org.openqa.selenium.remote has been deprecated and marked for removal
2309:  createResponse(ErrorCodes.UNHANDLED_ERROR, data), 123))
2310:  ^
2311:  java/test/org/openqa/selenium/remote/ErrorHandlerTest.java:355: warning: [removal] ErrorCodes in org.openqa.selenium.remote has been deprecated and marked for removal
2312:  createResponse(ErrorCodes.UNHANDLED_ERROR, data), 123))
2313:  ^
2314:  java/test/org/openqa/selenium/remote/ErrorHandlerTest.java:394: warning: [removal] ErrorCodes in org.openqa.selenium.remote has been deprecated and marked for removal
2315:  createResponse(ErrorCodes.UNHANDLED_ERROR, data), 123))
2316:  ^
2317:  java/test/org/openqa/selenium/remote/ErrorHandlerTest.java:426: warning: [removal] ErrorCodes in org.openqa.selenium.remote has been deprecated and marked for removal
2318:  createResponse(ErrorCodes.UNHANDLED_ERROR, toMap(serverError)), 123))
2319:  ^
2320:  java/test/org/openqa/selenium/remote/ErrorHandlerTest.java:435: warning: [removal] ErrorCodes in org.openqa.selenium.remote has been deprecated and marked for removal
2321:  exceptions.put(ErrorCodes.NO_SUCH_SESSION, NoSuchSessionException.class);
2322:  ^
2323:  java/test/org/openqa/selenium/remote/ErrorHandlerTest.java:436: warning: [removal] ErrorCodes in org.openqa.selenium.remote has been deprecated and marked for removal
2324:  exceptions.put(ErrorCodes.NO_SUCH_ELEMENT, NoSuchElementException.class);
2325:  ^
2326:  java/test/org/openqa/selenium/remote/ErrorHandlerTest.java:437: warning: [removal] ErrorCodes in org.openqa.selenium.remote has been deprecated and marked for removal
2327:  exceptions.put(ErrorCodes.NO_SUCH_FRAME, NoSuchFrameException.class);
2328:  ^
2329:  java/test/org/openqa/selenium/remote/ErrorHandlerTest.java:438: warning: [removal] ErrorCodes in org.openqa.selenium.remote has been deprecated and marked for removal
2330:  exceptions.put(ErrorCodes.UNKNOWN_COMMAND, UnsupportedCommandException.class);
2331:  ^
2332:  java/test/org/openqa/selenium/remote/ErrorHandlerTest.java:439: warning: [removal] ErrorCodes in org.openqa.selenium.remote has been deprecated and marked for removal
2333:  exceptions.put(ErrorCodes.STALE_ELEMENT_REFERENCE, StaleElementReferenceException.class);
2334:  ^
2335:  java/test/org/openqa/selenium/remote/ErrorHandlerTest.java:440: warning: [removal] ErrorCodes in org.openqa.selenium.remote has been deprecated and marked for removal
2336:  exceptions.put(ErrorCodes.INVALID_ELEMENT_STATE, InvalidElementStateException.class);
2337:  ^
2338:  java/test/org/openqa/selenium/remote/ErrorHandlerTest.java:441: warning: [removal] ErrorCodes in org.openqa.selenium.remote has been deprecated and marked for removal
2339:  exceptions.put(ErrorCodes.UNHANDLED_ERROR, WebDriverException.class);
2340:  ^
2341:  java/test/org/openqa/selenium/remote/ErrorHandlerTest.java:442: warning: [removal] ErrorCodes in org.openqa.selenium.remote has been deprecated and marked for removal
2342:  exceptions.put(ErrorCodes.JAVASCRIPT_ERROR, JavascriptException.class);
2343:  ^
2344:  java/test/org/openqa/selenium/remote/ErrorHandlerTest.java:443: warning: [removal] ErrorCodes in org.openqa.selenium.remote has been deprecated and marked for removal
2345:  exceptions.put(ErrorCodes.XPATH_LOOKUP_ERROR, InvalidSelectorException.class);
2346:  ^
2347:  java/test/org/openqa/selenium/remote/ErrorHandlerTest.java:444: warning: [removal] ErrorCodes in org.openqa.selenium.remote has been deprecated and marked for removal
2348:  exceptions.put(ErrorCodes.TIMEOUT, TimeoutException.class);
2349:  ^
2350:  java/test/org/openqa/selenium/remote/ErrorHandlerTest.java:445: warning: [removal] ErrorCodes in org.openqa.selenium.remote has been deprecated and marked for removal
2351:  exceptions.put(ErrorCodes.NO_SUCH_WINDOW, NoSuchWindowException.class);
2352:  ^
2353:  java/test/org/openqa/selenium/remote/ErrorHandlerTest.java:446: warning: [removal] ErrorCodes in org.openqa.selenium.remote has been deprecated and marked for removal
2354:  exceptions.put(ErrorCodes.INVALID_COOKIE_DOMAIN, InvalidCookieDomainException.class);
2355:  ^
2356:  java/test/org/openqa/selenium/remote/ErrorHandlerTest.java:447: warning: [removal] ErrorCodes in org.openqa.selenium.remote has been deprecated and marked for removal
2357:  exceptions.put(ErrorCodes.UNABLE_TO_SET_COOKIE, UnableToSetCookieException.class);
2358:  ^
2359:  java/test/org/openqa/selenium/remote/ErrorHandlerTest.java:448: warning: [removal] ErrorCodes in org.openqa.selenium.remote has been deprecated and marked for removal
2360:  exceptions.put(ErrorCodes.UNEXPECTED_ALERT_PRESENT, UnhandledAlertException.class);
2361:  ^
2362:  java/test/org/openqa/selenium/remote/ErrorHandlerTest.java:449: warning: [removal] ErrorCodes in org.openqa.selenium.remote has been deprecated and marked for removal
2363:  exceptions.put(ErrorCodes.NO_ALERT_PRESENT, NoAlertPresentException.class);
2364:  ^
2365:  java/test/org/openqa/selenium/remote/ErrorHandlerTest.java:450: warning: [removal] ErrorCodes in org.openqa.selenium.remote has been deprecated and marked for removal
2366:  exceptions.put(ErrorCodes.ASYNC_SCRIPT_TIMEOUT, ScriptTimeoutException.class);
2367:  ^
2368:  java/test/org/openqa/selenium/remote/ErrorHandlerTest.java:451: warning: [removal] ErrorCodes in org.openqa.selenium.remote has been deprecated and marked for removal
2369:  exceptions.put(ErrorCodes.INVALID_SELECTOR_ERROR, InvalidSelectorException.class);
2370:  ^
2371:  java/test/org/openqa/selenium/remote/ErrorHandlerTest.java:452: warning: [removal] ErrorCodes in org.openqa.selenium.remote has been deprecated and marked for removal
2372:  exceptions.put(ErrorCodes.SESSION_NOT_CREATED, SessionNotCreatedException.class);
2373:  ^
2374:  java/test/org/openqa/selenium/remote/ErrorHandlerTest.java:453: warning: [removal] ErrorCodes in org.openqa.selenium.remote has been deprecated and marked for removal
2375:  exceptions.put(ErrorCodes.MOVE_TARGET_OUT_OF_BOUNDS, MoveTargetOutOfBoundsException.class);
2376:  ^
2377:  java/test/org/openqa/selenium/remote/ErrorHandlerTest.java:454: warning: [removal] ErrorCodes in org.openqa.selenium.remote has been deprecated and marked for removal
2378:  exceptions.put(ErrorCodes.INVALID_XPATH_SELECTOR, InvalidSelectorException.class);
2379:  ^
2380:  java/test/org/openqa/selenium/remote/ErrorHandlerTest.java:455: warning: [removal] ErrorCodes in org.openqa.selenium.remote has been deprecated and marked for removal
2381:  exceptions.put(ErrorCodes.INVALID_XPATH_SELECTOR_RETURN_TYPER, InvalidSelectorException.class);
2382:  ^
2383:  java/test/org/openqa/selenium/remote/ErrorHandlerTest.java:469: warning: [removal] ErrorCodes in org.openqa.selenium.remote has been deprecated and marked for removal
2384:  ? ErrorCodes.INVALID_SELECTOR_ERROR
2385:  ^
2386:  java/test/org/openqa/selenium/remote/ErrorHandlerTest.java:471: warning: [removal] ErrorCodes in org.openqa.selenium.remote has been deprecated and marked for removal
2387:  assertThat(new ErrorCodes().toStatusCode(e)).isEqualTo(expected);
2388:  ^
2389:  java/test/org/openqa/selenium/remote/ErrorHandlerTest.java:483: warning: [removal] ErrorCodes in org.openqa.selenium.remote has been deprecated and marked for removal
2390:  response.setState(new ErrorCodes().toState(status));
2391:  ^
2392:  (12:12:08) �[32mINFO: �[0mFrom Building java/test/org/openqa/selenium/remote/libsmall-tests-test-lib.jar (5 source files) and running annotation processors (AutoServiceProcessor):
2393:  java/test/org/openqa/selenium/remote/WebDriverFixture.java:170: warning: [removal] ErrorCodes in org.openqa.selenium.remote has been deprecated and marked for removal
2394:  response.setStatus(new ErrorCodes().toStatus(state, Optional.of(400)));
2395:  ^
...

2510:  (12:22:48) �[31m�[1mFAIL: �[0m//java/test/org/openqa/selenium:FormHandlingTest (see /home/runner/.bazel/execroot/_main/bazel-out/k8-fastbuild/testlogs/java/test/org/openqa/selenium/FormHandlingTest/test_attempts/attempt_1.log)
2511:  (12:22:48) �[32m[14,133 / 16,463]�[0m 850 / 2505 tests;�[0m Testing //rb/spec/integration/selenium/webdriver:network-firefox-bidi; 310s remote, remote-cache ... (50 actions, 49 running)
2512:  (12:22:53) �[32m[14,139 / 16,463]�[0m 856 / 2505 tests;�[0m Testing //rb/spec/integration/selenium/webdriver:network-firefox-bidi; 315s remote, remote-cache ... (50 actions running)
2513:  (12:23:00) �[32m[14,152 / 16,463]�[0m 869 / 2505 tests;�[0m Testing //rb/spec/integration/selenium/webdriver:network-firefox-bidi; 322s remote, remote-cache ... (50 actions, 49 running)
2514:  (12:23:05) �[32m[14,161 / 16,463]�[0m 878 / 2505 tests;�[0m Testing //rb/spec/integration/selenium/webdriver:network-firefox-bidi; 327s remote, remote-cache ... (50 actions, 49 running)
2515:  (12:23:10) �[32m[14,182 / 16,468]�[0m 891 / 2505 tests;�[0m Testing //rb/spec/integration/selenium/webdriver:network-firefox-bidi; 332s remote, remote-cache ... (50 actions, 49 running)
2516:  (12:23:15) �[32m[14,197 / 16,468]�[0m 906 / 2505 tests;�[0m Testing //rb/spec/integration/selenium/webdriver:network-firefox-bidi; 337s remote, remote-cache ... (50 actions, 47 running)
2517:  (12:23:21) �[32m[14,203 / 16,468]�[0m 912 / 2505 tests;�[0m Testing //javascript/selenium-webdriver:test-bidi-script-test.js-firefox; 273s remote, remote-cache ... (50 actions running)
2518:  (12:23:26) �[32m[14,215 / 16,471]�[0m 921 / 2505 tests;�[0m Testing //java/test/org/openqa/selenium/grid/distributor:DrainTest; 227s remote, remote-cache ... (50 actions, 49 running)
2519:  �[35mFLAKY: �[0m//java/test/org/openqa/selenium:FormHandlingTest (Summary)
2520:  /home/runner/.bazel/execroot/_main/bazel-out/k8-fastbuild/testlogs/java/test/org/openqa/selenium/FormHandlingTest/test_attempts/attempt_1.log
2521:  (12:23:27) �[32mINFO: �[0mFrom Testing //java/test/org/openqa/selenium:FormHandlingTest:
2522:  ==================== Test output for //java/test/org/openqa/selenium:FormHandlingTest:
2523:  Failures: 1
2524:  1) testSendingKeyboardEventsShouldAppendTextInInputsWithExistingValue() (org.openqa.selenium.FormHandlingTest)
2525:  org.openqa.selenium.TimeoutException: Expected condition failed: waiting for presence of element located by: By.id: inputWithText (tried for 10 second(s) with 500 milliseconds interval)
2526:  at org.openqa.selenium.support.ui.WebDriverWait.timeoutException(WebDriverWait.java:84)
2527:  at org.openqa.selenium.support.ui.FluentWait.until(FluentWait.java:228)
2528:  at org.openqa.selenium.testing.SeleniumExtension.waitUntil(SeleniumExtension.java:240)
2529:  at org.openqa.selenium.FormHandlingTest.testSendingKeyboardEventsShouldAppendTextInInputsWithExistingValue(FormHandlingTest.java:219)
2530:  Caused by: org.openqa.selenium.NoSuchElementException: Unable to locate element: #inputWithText
2531:  For documentation on this error, please visit: https://www.selenium.dev/documentation/webdriver/troubleshooting/errors#nosuchelementexception
2532:  Build info: version: '4.37.0-SNAPSHOT', revision: 'Unknown'
2533:  System info: os.name: 'Linux', os.arch: 'amd64', os.version: '6.1.0-40-cloud-amd64', java.version: '21.0.4'
2534:  Driver info: org.openqa.selenium.firefox.FirefoxDriver
2535:  Command: [441068f8-273f-49ff-b1f5-a788ccd713fe, findElement {value=inputWithText, using=id}]
2536:  Capabilities {acceptInsecureCerts: true, browserName: firefox, browserVersion: 143.0.3, moz:accessibilityChecks: false, moz:buildID: 20250929153833, moz:geckodriverVersion: 0.36.0, moz:headless: false, moz:platformVersion: 6.1.0-40-cloud-amd64, moz:processID: 13891, moz:profile: /tmp/rust_mozprofileRbMnMJ, moz:shutdownTimeout: 60000, moz:webdriverClick: true, moz:windowless: false, pageLoadStrategy: normal, platformName: linux, proxy: Proxy(), setWindowRect: true, strictFileInteractability: false, timeouts: {implicit: 0, pageLoad: 300000, script: 30000}, unhandledPromptBehavior: dismiss and notify, userAgent: Mozilla/5.0 (X11; Linux x86..., webSocketUrl: ws://127.0.0.1:46669/sessio...}
2537:  Session ID: 441068f8-273f-49ff-b1f5-a788ccd713fe
2538:  at java.base/jdk.internal.reflect.DirectConstructorHandleAccessor.newInstance(DirectConstructorHandleAccessor.java:62)
2539:  at java.base/java.lang.reflect.Constructor.newInstanceWithCaller(Constructor.java:502)
2540:  at java.base/java.lang.reflect.Constructor.newInstance(Constructor.java:486)
2541:  at org.openqa.selenium.remote.ErrorCodec.decode(ErrorCodec.java:167)
2542:  at org.openqa.selenium.remote.codec.w3c.W3CHttpResponseCodec.decode(W3CHttpResponseCodec.java:138)
...

2561:  (12:23:37) �[31m�[1mFAIL: �[0m//java/test/org/openqa/selenium:SessionHandlingTest-chrome (see /home/runner/.bazel/execroot/_main/bazel-out/k8-fastbuild/testlogs/java/test/org/openqa/selenium/SessionHandlingTest-chrome/test_attempts/attempt_1.log)
2562:  (12:23:41) �[32m[14,520 / 16,577]�[0m 974 / 2505 tests;�[0m Testing //java/test/org/openqa/selenium/grid/distributor:DrainTest; 242s remote, remote-cache ... (50 actions running)
2563:  (12:23:46) �[32m[14,549 / 16,586]�[0m 994 / 2505 tests;�[0m Testing //java/test/org/openqa/selenium/grid/distributor:DrainTest; 247s remote, remote-cache ... (50 actions running)
2564:  (12:23:51) �[32m[14,568 / 16,589]�[0m 1011 / 2505 tests;�[0m Testing //java/test/org/openqa/selenium/grid/distributor:DrainTest; 252s remote, remote-cache ... (50 actions, 49 running)
2565:  (12:23:56) �[32m[14,578 / 16,589]�[0m 1020 / 2505 tests;�[0m Testing //java/test/org/openqa/selenium/grid/distributor:DrainTest; 257s remote, remote-cache ... (50 actions running)
2566:  (12:24:03) �[32m[14,638 / 16,610]�[0m 1041 / 2505 tests;�[0m Testing //java/test/org/openqa/selenium/grid/distributor:DrainTest; 264s remote, remote-cache ... (50 actions running)
2567:  (12:24:09) �[32m[14,733 / 16,650]�[0m 1056 / 2505 tests;�[0m Testing //java/test/org/openqa/selenium/grid/distributor:DrainTest; 270s remote, remote-cache ... (50 actions running)
2568:  (12:24:14) �[32m[15,041 / 16,798]�[0m 1070 / 2505 tests;�[0m Testing //java/test/org/openqa/selenium/grid/distributor:DrainTest; 275s remote, remote-cache ... (50 actions, 49 running)
2569:  �[35mFLAKY: �[0m//java/test/org/openqa/selenium:SessionHandlingTest-chrome (Summary)
2570:  /home/runner/.bazel/execroot/_main/bazel-out/k8-fastbuild/testlogs/java/test/org/openqa/selenium/SessionHandlingTest-chrome/test_attempts/attempt_1.log
2571:  (12:24:16) �[32mINFO: �[0mFrom Testing //java/test/org/openqa/selenium:SessionHandlingTest-chrome:
2572:  ==================== Test output for //java/test/org/openqa/selenium:SessionHandlingTest-chrome:
2573:  Restarting driver after succeeded test callingAnyOperationAfterClosingTheLastWindowShouldThrowAnException()
2574:  Restarting driver after succeeded test callingAnyOperationAfterQuitShouldThrowAnException()
2575:  Restarting driver after succeeded test callingQuitMoreThanOnceOnASessionIsANoOp()
2576:  Restarting driver after failed test callingQuitAfterClosingTheLastWindowIsANoOp()
2577:  Failures: 1
...

2848:  (12:32:18) �[32m[17,242 / 17,572]�[0m 2070 / 2505 tests;�[0m Testing //java/test/org/openqa/selenium/bidi/browsingcontext:BrowsingContextTest; 291s remote, remote-cache ... (50 actions, 49 running)
2849:  (12:32:24) �[32m[17,251 / 17,572]�[0m 2079 / 2505 tests;�[0m Testing //java/test/org/openqa/selenium/bidi/browsingcontext:BrowsingContextTest; 297s remote, remote-cache ... (50 actions running)
2850:  (12:32:29) �[32m[17,266 / 17,572]�[0m 2095 / 2505 tests;�[0m Testing //py:common-firefox-bidi-test/selenium/webdriver/common/element_attribute_tests.py; 135s remote, remote-cache ... (50 actions, 49 running)
2851:  (12:32:34) �[32m[17,273 / 17,572]�[0m 2102 / 2505 tests;�[0m Testing //py:common-firefox-bidi-test/selenium/webdriver/common/element_attribute_tests.py; 140s remote, remote-cache ... (50 actions, 49 running)
2852:  (12:32:39) �[32m[17,283 / 17,572]�[0m 2111 / 2505 tests;�[0m Testing //py:common-firefox-bidi-test/selenium/webdriver/common/element_attribute_tests.py; 145s remote, remote-cache ... (50 actions running)
2853:  (12:32:44) �[32m[17,287 / 17,572]�[0m 2115 / 2505 tests;�[0m Testing //py:common-firefox-bidi-test/selenium/webdriver/common/element_attribute_tests.py; 150s remote, remote-cache ... (50 actions running)
2854:  (12:32:50) �[32m[17,294 / 17,572]�[0m 2122 / 2505 tests;�[0m Testing //py:common-firefox-bidi-test/selenium/webdriver/common/element_attribute_tests.py; 156s remote, remote-cache ... (50 actions, 49 running)
2855:  (12:32:55) �[32m[17,297 / 17,572]�[0m 2125 / 2505 tests;�[0m Testing //py:common-firefox-bidi-test/selenium/webdriver/common/element_attribute_tests.py; 161s remote, remote-cache ... (50 actions running)
2856:  (12:33:00) �[32m[17,300 / 17,572]�[0m 2128 / 2505 tests;�[0m Testing //py:common-firefox-bidi-test/selenium/webdriver/common/element_attribute_tests.py; 167s remote, remote-cache ... (50 actions running)
2857:  (12:33:05) �[32m[17,309 / 17,572]�[0m 2137 / 2505 tests;�[0m Testing //py:common-firefox-bidi-test/selenium/webdriver/common/element_attribute_tests.py; 172s remote, remote-cache ... (50 actions, 49 running)
2858:  (12:33:11) �[32m[17,314 / 17,572]�[0m 2142 / 2505 tests;�[0m Testing //py:common-firefox-bidi-test/selenium/webdriver/common/element_attribute_tests.py; 177s remote, remote-cache ... (50 actions running)
2859:  (12:33:17) �[32m[17,321 / 17,572]�[0m 2149 / 2505 tests;�[0m Testing //py:common-firefox-bidi-test/selenium/webdriver/common/element_attribute_tests.py; 183s remote, remote-cache ... (50 actions running)
2860:  (12:33:22) �[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)
2861:  (12:33:22) �[32m[17,329 / 17,572]�[0m 2157 / 2505 tests;�[0m Testing //py:common-firefox-bidi-test/selenium/webdriver/common/element_attribute_tests.py; 189s remote, remote-cache ... (50 actions running)
2862:  (12:33:22) �[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)
2863:  �[31m�[1mFAILED: �[0m//rust/tests:integration_grid_tests_test (Summary)
2864:  /home/runner/.bazel/execroot/_main/bazel-out/k8-fastbuild/testlogs/rust/tests/integration_grid_tests_test/test.log
2865:  /home/runner/.bazel/execroot/_main/bazel-out/k8-fastbuild/testlogs/rust/tests/integration_grid_tests_test/test_attempts/attempt_1.log
2866:  (12:33:22) �[32mINFO: �[0mFrom Testing //rust/tests:integration_grid_tests_test:
2867:  ==================== Test output for //rust/tests:integration_grid_tests_test:
2868:  running 7 tests
2869:  test grid_error_test::case_1 ... ok
2870:  test grid_error_test::case_2 ... ok
2871:  test grid_latest_test ... ok
2872:  test grid_version_test::case_1 ... ok
2873:  test grid_version_test::case_2 ... ok
2874:  test grid_version_test::case_3 ... ok
2875:  test grid_version_test::case_4 ... FAILED
2876:  failures:
2877:  ---- grid_version_test::case_4 stdout ----
2878:  thread 'grid_version_test::case_4' panicked at /rustc/29483883eed69d5fb4db01964cdf2af4d86e9cb2/library/core/src/ops/function.rs:250:5:
2879:  Unexpected failure.
2880:  code=65
2881:  stderr=```""```
2882:  command=`"rust/selenium-manager" "--grid" "nightly" "--output" "json"`
2883:  code=65
2884:  stdout=```
2885:  {
2886:  \"logs\": [
2887:  {
2888:  \"level\": \"ERROR\",
2889:  \"timestamp\": 1759494801,
2890:  \"message\": \"selenium-server release not available\"
2891:  }
2892:  ],
2893:  \"result\": {
2894:  \"code\": 65,
2895:  \"message\": \"selenium-server release not available\",
2896:  \"driver_path\": \"\",
2897:  \"browser_path\": \"\"
2898:  }
2899:  }```
2900:  stderr=""
2901:  note: run with `RUST_BACKTRACE=1` environment variable to display a backtrace
2902:  failures:
2903:  grid_version_test::case_4
2904:  test result: FAILED. 6 passed; 1 failed; 0 ignored; 0 measured; 0 filtered out; finished in 1.75s
2905:  Execution result: https://gypsum.cluster.engflow.com/actions/executions/ChCYEG5qd71TDJVibH6BT1vjEgdkZWZhdWx0GiUKIMid1Nw93CBMF2UNAEkjREUOa1SK29F3kgqLHYFH9SHHELwD
2906:  ================================================================================
2907:  ==================== Test output for //rust/tests:integration_grid_tests_test:
2908:  running 7 tests
2909:  test grid_error_test::case_1 ... ok
2910:  test grid_error_test::case_2 ... ok
2911:  test grid_latest_test ... ok
2912:  test grid_version_test::case_1 ... ok
2913:  test grid_version_test::case_2 ... ok
2914:  test grid_version_test::case_3 ... ok
2915:  test grid_version_test::case_4 ... FAILED
2916:  failures:
2917:  ---- grid_version_test::case_4 stdout ----
2918:  thread 'grid_version_test::case_4' panicked at /rustc/29483883eed69d5fb4db01964cdf2af4d86e9cb2/library/core/src/ops/function.rs:250:5:
2919:  Unexpected failure.
2920:  code=65
2921:  stderr=```""```
2922:  command=`"rust/selenium-manager" "--grid" "nightly" "--output" "json"`
2923:  code=65
2924:  stdout=```
2925:  {
2926:  \"logs\": [
2927:  {
2928:  \"level\": \"ERROR\",
2929:  \"timestamp\": 1759494802,
2930:  \"message\": \"selenium-server release not available\"
2931:  }
2932:  ],
2933:  \"result\": {
2934:  \"code\": 65,
2935:  \"message\": \"selenium-server release not available\",
2936:  \"driver_path\": \"\",
2937:  \"browser_path\": \"\"
2938:  }
2939:  }```
2940:  stderr=""
2941:  note: run with `RUST_BACKTRACE=1` environment variable to display a backtrace
2942:  failures:
2943:  grid_version_test::case_4
2944:  test result: FAILED. 6 passed; 1 failed; 0 ignored; 0 measured; 0 filtered out; finished in 0.19s
2945:  Execution result: https://gypsum.cluster.engflow.com/actions/executions/ChCYEG5qd71TDJVibH6BT1vjEgdkZWZhdWx0GiUKIMid1Nw93CBMF2UNAEkjREUOa1SK29F3kgqLHYFH9SHHELwD
2946:  ================================================================================
2947:  (12:33:27) �[32m[17,342 / 17,572]�[0m 2170 / 2505 tests, �[31m�[1m1 failed�[0m;�[0m Testing //py:common-firefox-bidi-test/selenium/webdriver/common/element_attribute_tests.py; 194s remote, remote-cache ... (50 actions, 49 running)
2948:  (12:33:32) �[32m[17,346 / 17,572]�[0m 2174 / 2505 tests, �[31m�[1m1 failed�[0m;�[0m Testing //py:common-firefox-bidi-test/selenium/webdriver/common/element_attribute_tests.py; 199s remote, remote-cache ... (50 actions, 48 running)
2949:  (12:33:37) �[32m[17,356 / 17,572]�[0m 2185 / 2505 tests, �[31m�[1m1 failed�[0m;�[0m Testing //py:common-firefox-bidi-test/selenium/webdriver/common/element_attribute_tests.py; 204s remote, remote-cache ... (50 actions running)
2950:  (12:33:42) �[32m[17,358 / 17,572]�[0m 2186 / 2505 tests, �[31m�[1m1 failed�[0m;�[0m Testing //py:common-firefox-bidi-test/selenium/webdriver/common/element_attribute_tests.py; 209s remote, remote-cache ... (50 actions running)
2951:  (12:33:47) �[32m[17,367 / 17,572]�[0m 2196 / 2505 tests, �[31m�[1m1 failed�[0m;�[0m Testing //py:common-firefox-bidi-test/selenium/webdriver/common/element_attribute_tests.py; 214s remote, remote-cache ... (50 actions, 46 running)
2952:  (12:33:52) �[32m[17,378 / 17,572]�[0m 2206 / 2505 tests, �[31m�[1m1 failed�[0m;�[0m Testing //py:common-firefox-bidi-test/selenium/webdriver/common/element_attribute_tests.py; 219s remote, remote-cache ... (50 actions, 46 running)
2953:  (12:33:57) �[32m[17,383 / 17,572]�[0m 2211 / 2505 tests, �[31m�[1m1 failed�[0m;�[0m Testing //py:common-firefox-bidi-test/selenium/webdriver/common/element_attribute_tests.py; 224s remote, remote-cache ... (50 actions, 47 running)
2954:  (12:34:03) �[32m[17,390 / 17,572]�[0m 2218 / 2505 tests, �[31m�[1m1 failed�[0m;�[0m Testing //py:common-firefox-bidi-test/selenium/webdriver/common/element_attribute_tests.py; 229s remote, remote-cache ... (50 actions, 49 running)
2955:  (12:34:08) �[32m[17,400 / 17,572]�[0m 2228 / 2505 tests, �[31m�[1m1 failed�[0m;�[0m Testing //py:common-firefox-bidi-test/selenium/webdriver/common/element_attribute_tests.py; 234s remote, remote-cache ... (50 actions running)
2956:  (12:34:13) �[32m[17,405 / 17,572]�[0m 2233 / 2505 tests, �[31m�[1m1 failed�[0m;�[0m Testing //py:common-firefox-bidi-test/selenium/webdriver/common/element_attribute_tests.py; 239s remote, remote-cache ... (50 actions, 49 running)
2957:  (12:34:18) �[32m[17,413 / 17,572]�[0m 2242 / 2505 tests, �[31m�[1m1 failed�[0m;�[0m Testing //py:common-firefox-bidi-test/selenium/webdriver/support/relative_by_tests.py; 199s remote, remote-cache ... (50 actions, 47 running)
2958:  (12:34:23) �[32m[17,417 / 17,572]�[0m 2245 / 2505 tests, �[31m�[1m1 failed�[0m;�[0m Testing //py:common-firefox-bidi-test/selenium/webdriver/support/relative_by_tests.py; 204s remote, remote-cache ... (50 actions, 49 running)
2959:  (12:34:28) �[32m[17,426 / 17,572]�[0m 2254 / 2505 tests, �[31m�[1m1 failed�[0m;�[0m Testing //py:common-firefox-bidi-test/selenium/webdriver/support/relative_by_tests.py; 209s remote, remote-cache ... (50 actions, 48 running)
2960:  (12:34:33) �[32m[17,433 / 17,572]�[0m 2262 / 2505 tests, �[31m�[1m1 failed�[0m;�[0m Testing //py:common-firefox-bidi-test/selenium/webdriver/support/relative_by_tests.py; 214s remote, remote-cache ... (50 actions running)
2961:  (12:34:38) �[32m[17,442 / 17,572]�[0m 2270 / 2505 tests, �[31m�[1m1 failed�[0m;�[0m Testing //py:common-firefox-bidi-test/selenium/webdriver/support/relative_by_tests.py; 219s remote, remote-cache ... (50 actions, 49 running)
2962:  (12:34:43) �[32m[17,450 / 17,572]�[0m 2278 / 2505 tests, �[31m�[1m1 failed�[0m;�[0m Testing //py:common-firefox-bidi-test/selenium/webdriver/support/relative_by_tests.py; 224s remote, remote-cache ... (50 actions, 48 running)
2963:  (12:34:48) �[32m[17,456 / 17,572]�[0m 2284 / 2505 tests, �[31m�[1m1 failed�[0m;�[0m Testing //py:common-firefox-bidi-test/selenium/webdriver/support/relative_by_tests.py; 229s remote, remote-cache ... (50 actions running)
2964:  (12:34:53) �[32m[17,466 / 17,572]�[0m 2295 / 2505 tests, �[31m�[1m1 failed�[0m;�[0m Testing //py:common-firefox-bidi-test/selenium/webdriver/common/bidi_script_tests.py; 222s remote, remote-cache ... (50 actions, 48 running)
2965:  (12:34:58) �[32m[17,483 / 17,572]�[0m 2311 / 2505 tests, �[31m�[1m1 failed�[0m;�[0m Testing //py:common-firefox-bidi-test/selenium/webdriver/common/bidi_script_tests.py; 227s remote, remote-cache ... (50 actions, 48 running)
2966:  (12:35:04) �[32m[17,495 / 17,572]�[0m 2323 / 2505 tests, �[31m�[1m1 failed�[0m;�[0m Testing //py:common-firefox-bidi-test/selenium/webdriver/common/bidi_script_tests.py; 232s remote, remote-cache ... (50 actions, 48 running)
2967:  (12:35:09) �[32m[17,499 / 17,572]�[0m 2327 / 2505 tests, �[31m�[1m1 failed�[0m;�[0m Testing //py:common-firefox-bidi-test/selenium/webdriver/common/bidi_script_tests.py; 237s remote, remote-cache ... (50 actions, 49 running)
2968:  (12:35:14) �[32m[17,504 / 17,572]�[0m 2332 / 2505 tests, �[31m�[1m1 failed�[0m;�[0m Testing //py:common-firefox-bidi-test/selenium/webdriver/common/bidi_script_tests.py; 243s remote, remote-cache ... (50 actions running)
2969:  (12:35:19) �[32m[17,509 / 17,572]�[0m 2337 / 2505 tests, �[31m�[1m1 failed�[0m;�[0m Testing //py:common-firefox-bidi-test/selenium/webdriver/common/bidi_script_tests.py; 248s remote, remote-cache ... (50 actions, 49 running)
2970:  (12:35:24) �[32m[17,516 / 17,572]�[0m 2344 / 2505 tests, �[31m�[1m1 failed�[0m;�[0m Testing //py:common-firefox-bidi-test/selenium/webdriver/common/bidi_script_tests.py; 253s remote, remote-cache ... (50 actions, 48 running)
2971:  (12:35:29) �[32m[17,528 / 17,572]�[0m 2357 / 2505 tests, �[31m�[1m1 failed�[0m;�[0m Testing //py:common-firefox-bidi-test/selenium/webdriver/common/bidi_script_tests.py; 258s remote, remote-cache ... (44 actions running)
2972:  (12:35:35) �[32m[17,539 / 17,572]�[0m 2367 / 2505 tests, �[31m�[1m1 failed�[0m;�[0m Testing //py:common-firefox-bidi-test/selenium/webdriver/common/bidi_script_tests.py; 263s remote, remote-cache ... (33 actions running)
2973:  (12:35:41) �[32m[17,541 / 17,572]�[0m 2369 / 2505 tests, �[31m�[1m1 failed�[0m;�[0m Testing //py:common-firefox-bidi-test/selenium/webdriver/common/bidi_script_tests.py; 269s remote, remote-cache ... (31 actions running)
2974:  (12:35:46) �[32m[17,545 / 17,572]�[0m 2373 / 2505 tests, �[31m�[1m1 failed�[0m;�[0m Testing //py:common-firefox-bidi-test/selenium/webdriver/common/bidi_script_tests.py; 274s remote, remote-cache ... (27 actions running)
2975:  (12:35:51) �[32m[17,549 / 17,572]�[0m 2377 / 2505 tests, �[31m�[1m1 failed�[0m;�[0m Testing //py:common-firefox-bidi-test/selenium/webdriver/common/bidi_script_tests.py; 280s remote, remote-cache ... (23 actions running)
2976:  (12:35:57) �[32m[17,552 / 17,572]�[0m 2380 / 2505 tests, �[31m�[1m1 failed�[0m;�[0m Testing //py:common-firefox-bidi-test/selenium/webdriver/common/bidi_script_tests.py; 285s remote, remote-cache ... (20 actions running)
2977:  (12:36:05) �[32m[17,559 / 17,572]�[0m 2387 / 2505 tests, �[31m�[1m1 failed�[0m;�[0m Testing //py:common-firefox-bidi-test/selenium/webdriver/common/bidi_script_tests.py; 293s remote, remote-cache ... (13 actions running)
2978:  (12:36:12) �[32m[17,559 / 17,572]�[0m 2387 / 2505 tests, �[31m�[1m1 failed�[0m;�[0m Testing //py:common-firefox-bidi-test/selenium/webdriver/common/bidi_script_tests.py; 301s remote, remote-cache ... (13 actions running)
2979:  (12:36:18) �[32m[17,560 / 17,572]�[0m 2388 / 2505 tests, �[31m�[1m1 failed�[0m;�[0m Testing //py:common-firefox-bidi-test/selenium/webdriver/common/bidi_script_tests.py; 307s remote, remote-cache ... (12 actions running)
2980:  (12:36:24) �[32m[17,562 / 17,572]�[0m 2390 / 2505 tests, �[31m�[1m1 failed�[0m;�[0m Testing //py:common-firefox-bidi-test/selenium/webdriver/common/bidi_script_tests.py; 312s remote, remote-cache ... (10 actions running)
2981:  (12:36:30) �[32m[17,564 / 17,572]�[0m 2392 / 2505 tests, �[31m�[1m1 failed�[0m;�[0m Testing //py:common-firefox-bidi-test/selenium/webdriver/common/bidi_script_tests.py; 318s remote, remote-cache ... (8 actions running)
2982:  (12:36:38) �[32m[17,564 / 17,572]�[0m 2392 / 2505 tests, �[31m�[1m1 failed�[0m;�[0m Testing //py:common-firefox-bidi-test/selenium/webdriver/common/bidi_script_tests.py; 326s remote, remote-cache ... (8 actions running)
2983:  (12:36:45) �[32m[17,565 / 17,572]�[0m 2393 / 2505 tests, �[31m�[1m1 failed�[0m;�[0m Testing //py:common-firefox-bidi-test/selenium/webdriver/common/bidi_script_tests.py; 333s remote, remote-cache ... (7 actions running)
2984:  (12:36:50) �[32m[17,565 / 17,572]�[0m 2393 / 2505 tests, �[31m�[1m1 failed�[0m;�[0m Testing //py:common-firefox-bidi-test/selenium/webdriver/common/bidi_script_tests.py; 339s remote, remote-cache ... (7 actions running)
2985:  (12:37:13) �[32m[17,565 / 17,572]�[0m 2393 / 2505 tests, �[31m�[1m1 failed�[0m;�[0m Testing //py:common-firefox-bidi-test/selenium/webdriver/common/bidi_script_tests.py; 362s remote, remote-cache ... (7 actions running)
2986:  (12:37:20) �[32m[17,566 / 17,572]�[0m 2394 / 2505 tests, �[31m�[1m1 failed�[0m;�[0m Testing //py:common-firefox-bidi-test/selenium/webdriver/common/bidi_browsing_context_tests.py; 290s remote, remote-cache ... (6 actions running)
2987:  (12:37:30) �[32m[17,567 / 17,572]�[0m 2395 / 2505 tests, �[31m�[1m1 failed�[0m;�[0m Testing //py:common-firefox-bidi-test/selenium/webdriver/common/bidi_browsing_context_tests.py; 300s remote, remote-cache ... (5 actions running)
2988:  (12:37:36) �[32m[17,567 / 17,572]�[0m 2395 / 2505 tests, �[31m�[1m1 failed�[0m;�[0m Testing //py:common-firefox-bidi-test/selenium/webdriver/common/bidi_browsing_context_tests.py; 307s remote, remote-cache ... (5 actions running)
2989:  (12:37:41) �[32m[17,567 / 17,572]�[0m 2395 / 2505 tests, �[31m�[1m1 failed�[0m;�[0m Testing //py:common-firefox-bidi-test/selenium/webdriver/common/bidi_browsing_context_tests.py; 312s remote, remote-cache ... (5 actions running)
2990:  (12:37:50) �[32m[17,568 / 17,572]�[0m 2396 / 2505 tests, �[31m�[1m1 failed�[0m;�[0m Testing //py:common-firefox-bidi-test/selenium/webdriver/common/bidi_browsing_context_tests.py; 320s remote, remote-cache ... (4 actions running)
2991:  (12:37:59) �[32m[17,568 / 17,572]�[0m 2396 / 2505 tests, �[31m�[1m1 failed�[0m;�[0m Testing //py:common-firefox-bidi-test/selenium/webdriver/common/bidi_browsing_context_tests.py; 329s remote, remote-cache ... (4 actions running)
2992:  (12:38:05) �[32m[17,569 / 17,572]�[0m 2397 / 2505 tests, �[31m�[1m1 failed�[0m;�[0m Testing //py:common-firefox-bidi-test/selenium/webdriver/common/bidi_browsing_context_tests.py; 335s remote, remote-cache ... (3 actions running)
2993:  (12:38:11) �[32m[17,569 / 17,572]�[0m 2397 / 2505 tests, �[31m�[1m1 failed�[0m;�[0m Testing //py:common-firefox-bidi-test/selenium/webdriver/common/bidi_browsing_context_tests.py; 342s remote, remote-cache ... (3 actions running)
2994:  (12:38:32) �[32m[17,569 / 17,572]�[0m 2397 / 2505 tests, �[31m�[1m1 failed�[0m;�[0m Testing //py:common-firefox-bidi-test/selenium/webdriver/common/bidi_browsing_context_tests.py; 363s remote, remote-cache ... (3 actions running)
2995:  (12:38:40) �[32m[17,570 / 17,572]�[0m 2398 / 2505 tests, �[31m�[1m1 failed�[0m;�[0m Testing //py:common-firefox-bidi-test/selenium/webdriver/common/bidi_browsing_context_tests.py; 370s remote, remote-cache ... (2 actions running)
2996:  (12:38:45) �[32m[17,570 / 17,572]�[0m 2398 / 2505 tests, �[31m�[1m1 failed�[0m;�[0m Testing //py:common-firefox-bidi-test/selenium/webdriver/common/bidi_browsing_context_tests.py; 375s remote, remote-cache ... (2 actions running)
2997:  (12:38:5...

@diemol diemol merged commit 9b743ea into trunk Oct 3, 2025
40 of 41 checks passed
@diemol diemol deleted the pinned-browser-updates branch October 3, 2025 14:16
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 Possible security concern Review effort 2/5
Projects
None yet
Development

Successfully merging this pull request may close these issues.

2 participants