Skip to content

[dotnet][rb][java][js][py] Automated Browser Version Update #16029

New issue

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

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

Already on GitHub? Sign in to your account

Merged
merged 1 commit into from
Jul 10, 2025

Conversation

selenium-ci
Copy link
Member

@selenium-ci selenium-ci commented Jul 9, 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 Jul 9, 2025
Copy link
Contributor

qodo-merge-pro bot commented Jul 9, 2025

PR Reviewer Guide 🔍

Here are some key observations to aid the review process:

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

Checksum validation:
The PR updates SHA256 checksums for browser downloads from external sources (Mozilla, Microsoft, Google). While this is standard practice, it's critical to verify these checksums are correct and match the actual files being downloaded. Incorrect checksums could allow corrupted or potentially malicious files to be accepted during the build process.

⚡ Recommended focus areas for review

Checksum Validation

The SHA256 checksums for all browser archives have been updated. These checksums should be verified against the actual downloaded files to ensure integrity and prevent potential security issues from corrupted or tampered downloads.

        sha256 = "63e0033e6f4dd0576074de3cf1f70feec43359f923ed9055e554cf84b13856f6",
        build_file_content = """
load("@aspect_rules_js//js:defs.bzl", "js_library")
package(default_visibility = ["//visibility:public"])

filegroup(
    name = "files",
    srcs = glob(["**/*"]),
)

exports_files(["firefox/firefox"])

js_library(
    name = "firefox-js",
    data = [":files"],
)
""",
    )

    dmg_archive(
        name = "mac_firefox",
        url = "https://ftp.mozilla.org/pub/firefox/releases/140.0.4/mac/en-US/Firefox%20140.0.4.dmg",
        sha256 = "e97d88d6ac04766cc52963d0d8f567bd39464bfc612167cd81627e6bb22d1d8c",
        build_file_content = """
load("@aspect_rules_js//js:defs.bzl", "js_library")
package(default_visibility = ["//visibility:public"])

exports_files(["Firefox.app"])

js_library(
    name = "firefox-js",
    data = glob(["Firefox.app/**/*"]),
)
""",
    )

    http_archive(
        name = "linux_beta_firefox",
        url = "https://ftp.mozilla.org/pub/firefox/releases/141.0b7/linux-x86_64/en-US/firefox-141.0b7.tar.xz",
        sha256 = "a4ae15b933f9cb4240355b8d418b47317f872d24ef66ab55efa60c2b24888de2",
        build_file_content = """
load("@aspect_rules_js//js:defs.bzl", "js_library")
package(default_visibility = ["//visibility:public"])

filegroup(
    name = "files",
    srcs = glob(["**/*"]),
)

exports_files(["firefox/firefox"])

js_library(
    name = "firefox-js",
    data = [":files"],
)
""",
    )

    dmg_archive(
        name = "mac_beta_firefox",
        url = "https://ftp.mozilla.org/pub/firefox/releases/141.0b7/mac/en-US/Firefox%20141.0b7.dmg",
        sha256 = "aaacbfb926c742a5e19eaefd6218ea226e450ede10929ea7c6f793f417bdc5f3",
        build_file_content = """
load("@aspect_rules_js//js:defs.bzl", "js_library")
package(default_visibility = ["//visibility:public"])

exports_files(["Firefox.app"])

js_library(
    name = "firefox-js",
    data = glob(["Firefox.app/**/*"]),
)
""",
    )

    http_archive(
        name = "linux_geckodriver",
        url = "https://github.com/mozilla/geckodriver/releases/download/v0.36.0/geckodriver-v0.36.0-linux64.tar.gz",
        sha256 = "0bde38707eb0a686a20c6bd50f4adcc7d60d4f73c60eb83ee9e0db8f65823e04",
        build_file_content = """
load("@aspect_rules_js//js:defs.bzl", "js_library")
package(default_visibility = ["//visibility:public"])

exports_files(["geckodriver"])

js_library(
    name = "geckodriver-js",
    data = ["geckodriver"],
)
""",
    )

    http_archive(
        name = "mac_geckodriver",
        url = "https://github.com/mozilla/geckodriver/releases/download/v0.36.0/geckodriver-v0.36.0-macos.tar.gz",
        sha256 = "b5627bfc29801b8752c9f1e7699018963c39c076aab6576dc14fcb1ce7a256f6",
        build_file_content = """
load("@aspect_rules_js//js:defs.bzl", "js_library")
package(default_visibility = ["//visibility:public"])

exports_files(["geckodriver"])

js_library(
    name = "geckodriver-js",
    data = ["geckodriver"],
)
""",
    )

    pkg_archive(
        name = "mac_edge",
        url = "https://msedge.sf.dl.delivery.mp.microsoft.com/filestreamingservice/files/5d98b72a-4c14-4c48-a73a-35f6c2587eba/MicrosoftEdge-138.0.3351.77.pkg",
        sha256 = "efba38365a5de0888c172cae50cb43877e0fc3ed2ae6e8d76ce50fa89d62952d",
        move = {
            "MicrosoftEdge-138.0.3351.77.pkg/Payload/Microsoft Edge.app": "Edge.app",
        },
        build_file_content = """
load("@aspect_rules_js//js:defs.bzl", "js_library")
package(default_visibility = ["//visibility:public"])

exports_files(["Edge.app"])

js_library(
    name = "edge-js",
    data = glob(["Edge.app/**/*"]),
)
""",
    )

    deb_archive(
        name = "linux_edge",
        url = "https://packages.microsoft.com/repos/edge/pool/main/m/microsoft-edge-stable/microsoft-edge-stable_138.0.3351.77-1_amd64.deb",
        sha256 = "f03d1a625ce4a79a25eecea6d77e3604938d8a2420c99782951105c34999a876",
        build_file_content = """
load("@aspect_rules_js//js:defs.bzl", "js_library")
package(default_visibility = ["//visibility:public"])

filegroup(
    name = "files",
    srcs = glob(["**/*"]),
)

exports_files(["opt/microsoft/msedge/microsoft-edge"])

js_library(
    name = "edge-js",
    data = [":files"],
)
""",
    )

    http_archive(
        name = "linux_edgedriver",
        url = "https://msedgedriver.azureedge.net/138.0.3351.77/edgedriver_linux64.zip",
        sha256 = "4dfbddfb6cabe44da0214d464e0421bbbeada428ddd95a60a2aa245074230ddf",
        build_file_content = """
load("@aspect_rules_js//js:defs.bzl", "js_library")
package(default_visibility = ["//visibility:public"])

exports_files(["msedgedriver"])

js_library(
    name = "msedgedriver-js",
    data = ["msedgedriver"],
)
""",
    )

    http_archive(
        name = "mac_edgedriver",
        url = "https://msedgedriver.azureedge.net/138.0.3351.77/edgedriver_mac64.zip",
        sha256 = "57a0dbd5ce37cf2600410307e91c09f6eb78746cc02221e7309e0a6feb37725f",
        build_file_content = """
load("@aspect_rules_js//js:defs.bzl", "js_library")
package(default_visibility = ["//visibility:public"])

exports_files(["msedgedriver"])

js_library(
    name = "msedgedriver-js",
    data = ["msedgedriver"],
)
""",
    )

    http_archive(
        name = "linux_chrome",
        url = "https://storage.googleapis.com/chrome-for-testing-public/138.0.7204.94/linux64/chrome-linux64.zip",
        sha256 = "7766500a69967e997814d694d32a11d60b65462473210d606118461b254607b5",
        build_file_content = """
load("@aspect_rules_js//js:defs.bzl", "js_library")
package(default_visibility = ["//visibility:public"])

filegroup(
    name = "files",
    srcs = glob(["**/*"]),
)

exports_files(["chrome-linux64/chrome"])

js_library(
    name = "chrome-js",
    data = [":files"],
)
""",
    )
    http_archive(
        name = "mac_chrome",
        url = "https://storage.googleapis.com/chrome-for-testing-public/138.0.7204.94/mac-x64/chrome-mac-x64.zip",
        sha256 = "4eeb938a161b3eddf04f6fd1bdb5b1857003446329a5d247d535b020c076ae4d",
        strip_prefix = "chrome-mac-x64",
        patch_cmds = [
            "mv 'Google Chrome for Testing.app' Chrome.app",
            "mv 'Chrome.app/Contents/MacOS/Google Chrome for Testing' Chrome.app/Contents/MacOS/Chrome",
        ],
        build_file_content = """
load("@aspect_rules_js//js:defs.bzl", "js_library")
package(default_visibility = ["//visibility:public"])

exports_files(["Chrome.app"])

js_library(
    name = "chrome-js",
    data = glob(["Chrome.app/**/*"]),
)
""",
    )
    http_archive(
        name = "linux_chromedriver",
        url = "https://storage.googleapis.com/chrome-for-testing-public/138.0.7204.94/linux64/chromedriver-linux64.zip",
        sha256 = "59db6a59947f6f623cd66c56ce6532df96b14f3e8350144a3a246f9b51ffc28c",
        strip_prefix = "chromedriver-linux64",
        build_file_content = """
load("@aspect_rules_js//js:defs.bzl", "js_library")
package(default_visibility = ["//visibility:public"])

exports_files(["chromedriver"])

js_library(
    name = "chromedriver-js",
    data = ["chromedriver"],
)
""",
    )

    http_archive(
        name = "mac_chromedriver",
        url = "https://storage.googleapis.com/chrome-for-testing-public/138.0.7204.94/mac-x64/chromedriver-mac-x64.zip",
        sha256 = "3330c58df57b75b166286aac87ce2da2587d2cb6789eb7423551391c4f489e51",

Copy link
Contributor

qodo-merge-pro bot commented Jul 9, 2025

PR Code Suggestions ✨

No code suggestions found for the PR.

@selenium-ci selenium-ci force-pushed the pinned-browser-updates branch from 816c2dd to 55119f3 Compare July 10, 2025 00:42
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: test-bidi-network-test.js-chrome, test-fedcm-fedcm-test.js-chrome

Failure summary:

The action failed because 2 JavaScript tests failed:

//javascript/selenium-webdriver:test-bidi-network-test.js-chrome - Failed with "TypeError: Cannot
read properties of undefined (reading 'name')" at test/bidi/network_test.js:72:60 in the "can
request cookies" test
//javascript/selenium-webdriver:test-fedcm-fedcm-test.js-chrome - Failed
with "TimeoutError: Expected dialog type to be 'AccountChooser'. Wait timed out after 10050ms" in
the "credential management dialog should appear" test

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

963:  Package 'php-sql-formatter' is not installed, so not removed
964:  Package 'php8.3-ssh2' is not installed, so not removed
965:  Package 'php-ssh2-all-dev' is not installed, so not removed
966:  Package 'php8.3-stomp' is not installed, so not removed
967:  Package 'php-stomp-all-dev' is not installed, so not removed
968:  Package 'php-swiftmailer' is not installed, so not removed
969:  Package 'php-symfony' is not installed, so not removed
970:  Package 'php-symfony-asset' is not installed, so not removed
971:  Package 'php-symfony-asset-mapper' is not installed, so not removed
972:  Package 'php-symfony-browser-kit' is not installed, so not removed
973:  Package 'php-symfony-clock' is not installed, so not removed
974:  Package 'php-symfony-debug-bundle' is not installed, so not removed
975:  Package 'php-symfony-doctrine-bridge' is not installed, so not removed
976:  Package 'php-symfony-dom-crawler' is not installed, so not removed
977:  Package 'php-symfony-dotenv' is not installed, so not removed
978:  Package 'php-symfony-error-handler' is not installed, so not removed
979:  Package 'php-symfony-event-dispatcher' is not installed, so not removed
...

1157:  Package 'php-twig-html-extra' is not installed, so not removed
1158:  Package 'php-twig-i18n-extension' is not installed, so not removed
1159:  Package 'php-twig-inky-extra' is not installed, so not removed
1160:  Package 'php-twig-intl-extra' is not installed, so not removed
1161:  Package 'php-twig-markdown-extra' is not installed, so not removed
1162:  Package 'php-twig-string-extra' is not installed, so not removed
1163:  Package 'php8.3-uopz' is not installed, so not removed
1164:  Package 'php-uopz-all-dev' is not installed, so not removed
1165:  Package 'php8.3-uploadprogress' is not installed, so not removed
1166:  Package 'php-uploadprogress-all-dev' is not installed, so not removed
1167:  Package 'php8.3-uuid' is not installed, so not removed
1168:  Package 'php-uuid-all-dev' is not installed, so not removed
1169:  Package 'php-validate' is not installed, so not removed
1170:  Package 'php-vlucas-phpdotenv' is not installed, so not removed
1171:  Package 'php-voku-portable-ascii' is not installed, so not removed
1172:  Package 'php-wmerrors' is not installed, so not removed
1173:  Package 'php-xdebug-all-dev' is not installed, so not removed
...

1811:  (09:25:10) �[32mAnalyzing:�[0m 2357 targets (249 packages loaded, 0 targets configured)
1812:  (09:25:10) �[32mAnalyzing:�[0m 2357 targets (249 packages loaded, 0 targets configured)
1813:  (09:25:15) �[32mAnalyzing:�[0m 2357 targets (425 packages loaded, 66 targets configured)
1814:  (09:25:21) �[32mAnalyzing:�[0m 2357 targets (540 packages loaded, 6802 targets configured)
1815:  (09:25:26) �[32mAnalyzing:�[0m 2357 targets (668 packages loaded, 13864 targets configured)
1816:  (09:25:31) �[32mAnalyzing:�[0m 2357 targets (783 packages loaded, 14152 targets configured)
1817:  (09:25:36) �[32mAnalyzing:�[0m 2357 targets (895 packages loaded, 14579 targets configured)
1818:  (09:25:38) �[33mDEBUG: �[0mRule 'rules_ruby++ruby+bundle' indicated that a canonical reproducible form can be obtained by modifying arguments gem_checksums = {"activesupport-7.2.2.1": "842bcbf8a92977f80fb4750661a237cf5dd4fdd442066b3c35e88afb488647f5", "addressable-2.8.7": "462986537cf3735ab5f3c0f557f14155d778f4b43ea4f485a9deb9c8f7c58232", "ast-2.4.3": "954615157c1d6a382bc27d690d973195e79db7f55e9765ac7c481c60bdb4d383", "base64-0.3.0": "27337aeabad6ffae05c265c450490628ef3ebd4b67be58257393227588f5a97b", "benchmark-0.4.1": "d4ef40037bba27f03b28013e219b950b82bace296549ec15a78016552f8d2cce", "bigdecimal-3.2.2": "39085f76b495eb39a79ce07af716f3a6829bc35eb44f2195e2753749f2fa5adc", "bigdecimal-3.2.2-java": "1fcbead3efc3eae26956f7fef6bbdd342f987c0bdbf68f500a1467389f430205", "concurrent-ruby-1.3.5": "813b3e37aca6df2a21a3b9f1d497f8cbab24a2b94cab325bffe65ee0f6cbebc6", "connection_pool-2.5.3": "cfd74a82b9b094d1ce30c4f1a346da23ee19dc8a062a16a85f58eab1ced4305b", "crack-1.0.0": "c83aefdb428cdc7b66c7f287e488c796f055c0839e6e545fec2c7047743c4a49", "csv-3.3.5": "6e5134ac3383ef728b7f02725d9872934f523cb40b961479f69cf3afa6c8e73f", "curb-1.0.9": "07e5b74a4836103ce186827528f76a22d3991a9b7c45f5c10ee18ee7b03feb0d", "date-3.4.1": "bf268e14ef7158009bfeaec40b5fa3c7271906e88b196d958a89d4b408abe64f", "date-3.4.1-java": "74740d914c65a922a15657c25ff0e203c16f1d0f7aa910a9ebed712afe9819c4", "debug-1.11.0": "1425db64cfa0130c952684e3dc974985be201dd62899bf4bbe3f8b5d6cf1aef2", "diff-lcs-1.6.2": "9ae0d2cba7d4df3075fe8cd8602a8604993efc0dfa934cff568969efb1909962", "drb-2.2.3": "0b00d6fdb50995fe4a45dea13663493c841112e4068656854646f418fda13373", "erb-5.0.1": "760439803b36cc93eca8a266aab614614e588024a89bc30a62e78d98ff452c23", "erb-5.0.1-java": "7f1793bbee2bea4d634d60271617bd408263af0587602a64313df05f630c6579", "ffi-1.17.2": "297235842e5947cc3036ebe64077584bff583cd7a4e94e9a02fdec399ef46da6", "ffi-1.17.2-java": "94c8516d7c97b21915497b994e41f69e7e8e21d5fc085c498b68e52044e191ec", "ffi-1.17.2-x64-mingw-ucrt": "15d2da54ee578657a333a6059ed16eaba1cbd794ceecd15944825b65c8381ac0", "ffi-1.17.2-x86_64-darwin": "981f2d4e32ea03712beb26e55e972797c2c5a7b0257955d8667ba58f2da6440e", "ffi-1.17.2-x86_64-linux-gnu": "05d2026fc9dbb7cfd21a5934559f16293815b7ce0314846fee2ac8efbdb823ea", "fileutils-1.7.3": "57271e854b694a87755d76f836f5c57b2c9538ebbaf4b2154bb66addf15eb5da", "git-1.19.1": "b0a422d9f6517353c48a330d6114de4db9e0c82dbe7202964a1d9f1fbc827d70", "hashdiff-1.2.0": "c984f13e115bfc9953332e8e83bd9d769cfde9944e2d54e07eb9df7b76e140b5", "i18n-1.14.7": "ceba573f8138ff2c0915427f1fc5bdf4aa3ab8ae88c8ce255eb3ecf0a11a5d0f", "io-console-0.8.0": "cd6a9facbc69871d69b2cb8b926fc6ea7ef06f06e505e81a64f14a470fddefa2", "io-console-0.8.0-java": "3cc6fd5c66e587145c1fdf8dc40c2e3d851e90722a5d0cc3f38da352f06fe1bd", "irb-1.15.2": "222f32952e278da34b58ffe45e8634bf4afc2dc7aa9da23fed67e581aa50fdba", "jar-dependencies-0.5.5": "2972b9fcba4b014e6446a84b5c09674a3e8648b95b71768e729f0e8e40568059", "json-2.12.2": "ba94a48ad265605c8fa9a50a5892f3ba6a02661aa010f638211f3cb36f44abf4", "json-2.12.2-java": "db52f3150bcc993edb3fb36f750b95d1ae01042ed65e3310d7e894669f22dee4", "language_server-protocol-3.17.0.5": "fd1e39a51a28bf3eec959379985a72e296e9f9acfce46f6a79d31ca8760803cc", "lint_roller-1.1.0": "2c0c845b632a7d172cb849cc90c1bce937a28c5c8ccccb50dfd46a485003cc87", "listen-3.9.0": "db9e4424e0e5834480385197c139cb6b0ae0ef28cc13310cfd1ca78377d59c67", "logger-1.7.0": "196edec7cc44b66cfb40f9755ce11b392f21f7967696af15d274dde7edff0203", "minitest-5.25.5": "391b6c6cb43a4802bfb7c93af1ebe2ac66a210293f4a3fb7db36f2fc7dc2c756", "parallel-1.27.0": "4ac151e1806b755fb4e2dc2332cbf0e54f2e24ba821ff2d3dcf86bf6dc4ae130", "parser-3.3.8.0": "2476364142b307fa5a1b1ece44f260728be23858a9c71078e956131a75453c45", "pp-0.6.2": "947ec3120c6f92195f8ee8aa25a7b2c5297bb106d83b41baa02983686577b6ff", "prettyprint-0.2.0": "2bc9e15581a94742064a3cc8b0fb9d45aae3d03a1baa6ef80922627a0766f193", "prism-1.4.0": "dc0e3e00e93160213dc2a65519d9002a4a1e7b962db57d444cf1a71565bb703e", "psych-5.2.6": "814328aa5dcb6d604d32126a20bc1cbcf05521a5b49dbb1a8b30a07e580f316e", "psych-5.2.6-java": "0a5f65d47ed1ae3475d062b254e7b2035a259eac578038016d62172dd4cfbd91", "public_suffix-6.0.2": "bfa7cd5108066f8c9602e0d6d4114999a5df5839a63149d3e8b0f9c1d3558394", "racc-1.8.1": "4a7f6929691dbec8b5209a0b373bc2614882b55fc5d2e447a21aaa691303d62f", "racc-1.8.1-java": "54f2e6d1e1b91c154013277d986f52a90e5ececbe91465d29172e49342732b98", "rack-2.2.17": "5fe02a1ca80d6fb2271dba00985ee2962d6f5620b6f46dfed89f5301ac4699dd", "rainbow-3.1.1": "039491aa3a89f42efa1d6dec2fc4e62ede96eb6acd95e52f1ad581182b79bc6a", "rake-13.3.0": "96f5092d786ff412c62fde76f793cc0541bd84d2eb579caa529aa8a059934493", "rb-fsevent-0.11.2": "43900b972e7301d6570f64b850a5aa67833ee7d87b458ee92805d56b7318aefe", "rb-inotify-0.11.1": "a0a700441239b0ff18eb65e3866236cd78613d6b9f78fea1f9ac47a85e47be6e", "rbs-3.9.4": "8e42c8f133fc2d94b65f62f34479546de1247b79892b57584f625b61e518a5d7", "rchardet-1.9.0": "26889486cdd83b378652baf7603f71d93e431bb11bc237b4cd8c65151af4a590", "rdoc-6.14.1": "905efa796cd296ef252af4fb31fe41c073dee894de6aad715821f335c632516b", "regexp_parser-2.10.0": "cb6f0ddde88772cd64bff1dbbf68df66d376043fe2e66a9ef77fcb1b0c548c61", "reline-0.6.1": "1afcc9d7cb1029cdbe780d72f2f09251ce46d3780050f3ec39c3ccc6b60675fb", "rexml-3.4.1": "c74527a9a0a04b4ec31dbe0dc4ed6004b960af943d8db42e539edde3a871abca", "rspec-3.13.1": "b9f9a58fa915b8d94a1d6b3195fe6dd28c4c34836a6097015142c4a9ace72140", "rspec-core-3.13.5": "ab3f682897c6131c67f9a17cfee5022a597f283aebe654d329a565f9937a4fa3", "rspec-expectations-3.13.5": "33a4d3a1d95060aea4c94e9f237030a8f9eae5615e9bd85718fe3a09e4b58836", "rspec-mocks-3.13.5": "e4338a6f285ada9fe56f5893f5457783af8194f5d08884d17a87321d5195ea81", "rspec-support-3.13.4": "184b1814f6a968102b57df631892c7f1990a91c9a3b9e80ef892a0fc2a71a3f7", "rubocop-1.77.0": "1f360b4575ef7a124be27b0dfffa227a2b2d9420d22d4fd8bf179d702bcc88c0", "rubocop-ast-1.45.1": "94042e49adc17f187ba037b33f941ba7398fede77cdf4bffafba95190a473a3e", "rubocop-performance-1.25.0": "6f7d03568a770054117a78d0a8e191cefeffb703b382871ca7743831b1a52ec1", "rubocop-rake-0.7.1": "3797f2b6810c3e9df7376c26d5f44f3475eda59eb1adc38e6f62ecf027cbae4d", "rubocop-rspec-3.6.0": "c0e4205871776727e54dee9cc91af5fd74578001551ba40e1fe1a1ab4b404479", "ruby-progressbar-1.13.0": "80fc9c47a9b640d6834e0dc7b3c94c9df37f08cb072b7761e4a71e22cff29b33", "rubyzip-2.4.1": "8577c88edc1fde8935eb91064c5cb1aef9ad5494b940cf19c775ee833e075615", "securerandom-0.4.1": "cc5193d414a4341b6e225f0cb4446aceca8e50d5e1888743fac16987638ea0b1", "steep-1.5.3": "7c6302a4d5932d0a46176ebc79766e52b853c223a85525aa2f8911e345123b85", "stringio-3.1.7": "5b78b7cb242a315fb4fca61a8255d62ec438f58da2b90be66048546ade4507fa", "strscan-3.1.5": "f8413b90ea9395a69609a4414a8c88551bcda64337e234272c24fcd4c83e5947", "strscan-3.1.5-java": "84805eaad025f64854376608a6dbd49d4a22740ec3f21ba880434a6641621f1e", "terminal-table-3.0.2": "f951b6af5f3e00203fb290a669e0a85c5dd5b051b3b023392ccfd67ba5abae91", "tzinfo-2.0.6": "8daf828cc77bcf7d63b0e3bdb6caa47e2272dcfaf4fbfe46f8c3a9df087a829b", "unicode-display_width-2.6.0": "12279874bba6d5e4d2728cef814b19197dbb10d7a7837a869bab65da943b7f5a", "webmock-3.25.1": "ab9d5d9353bcbe6322c83e1c60a7103988efc7b67cd72ffb9012629c3d396323", "webrick-1.9.1": "b42d3c94f166f3fb73d87e9b359def9b5836c426fc8beacf38f2184a21b2a989", "websocket-1.2.11": "b7e7a74e2410b5e85c25858b26b3322f29161e300935f70a0e0d3c35e0462737", "yard-0.9.37": "a6e910399e78e613f80ba9add9ba7c394b1a935f083cccbef82903a3d2a26992"}
1819:  (09:25:38) �[33mDEBUG: �[0mRepository rules_ruby++ruby+bundle instantiated at:
1820:  <builtin>: in <toplevel>
1821:  Repository rule rb_bundle_fetch defined at:
1822:  /home/runner/.bazel/external/rules_ruby+/ruby/private/bundle_fetch.bzl:258:34: in <toplevel>
1823:  (09:25:41) �[32mAnalyzing:�[0m 2357 targets (903 packages loaded, 19349 targets configured)
1824:  (09:25:42) �[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:
1825:  com.google.code.findbugs:jsr305
1826:  com.google.errorprone:error_prone_annotations
1827:  com.google.guava:guava (versions: 30.1.1-jre, 31.0.1-android)
...

1842:  (09:26:14) �[32mINFO: �[0mFrom Building external/contrib_rules_jvm+/java/src/com/github/bazel_contrib/contrib_rules_jvm/junit5/liballow.jar (1 source file):
1843:  warning: [options] source value 8 is obsolete and will be removed in a future release
1844:  warning: [options] target value 8 is obsolete and will be removed in a future release
1845:  warning: [options] To suppress warnings about obsolete options, use -Xlint:-options.
1846:  (09:26:15) �[32mINFO: �[0mFrom Building external/contrib_rules_jvm+/java/src/com/github/bazel_contrib/contrib_rules_jvm/junit5/libjunit5-compile-class.jar (19 source files):
1847:  warning: [options] source value 8 is obsolete and will be removed in a future release
1848:  warning: [options] target value 8 is obsolete and will be removed in a future release
1849:  warning: [options] To suppress warnings about obsolete options, use -Xlint:-options.
1850:  (09:26:16) �[32mAnalyzing:�[0m 2357 targets (1549 packages loaded, 46361 targets configured)
1851:  �[32m[1,401 / 1,542]�[0m checking cached actions
1852:  (09:26:17) �[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
1853:  (09:26:17) �[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.
1854:  (09:26:17) �[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.
1855:  (09:26:17) �[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.
1856:  (09:26:21) �[32mAnalyzing:�[0m 2357 targets (1565 packages loaded, 48182 targets configured)
1857:  �[32m[1,747 / 2,696]�[0m Creating source manifest for //rb/spec/integration/selenium/webdriver:error-firefox-beta; 0s local ... (4 actions, 2 running)
1858:  (09:26:26) �[32mAnalyzing:�[0m 2357 targets (1566 packages loaded, 48691 targets configured)
...

1860:  (09:26:31) �[32mAnalyzing:�[0m 2357 targets (1569 packages loaded, 49012 targets configured)
1861:  �[32m[3,679 / 5,370]�[0m Extracting npm package @mui/icons-material@5.15.18_60647716; 5s remote, remote-cache ... (4 actions, 0 running)
1862:  (09:26:34) �[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
1863:  (09:26:34) �[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
1864:  (09:26:34) �[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
1865:  (09:26:34) �[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
1866:  (09:26:34) �[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
1867:  (09:26:34) �[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
1868:  (09:26:34) �[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
1869:  (09:26:34) �[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
1870:  (09:26:34) �[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
1871:  (09:26:34) �[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
1872:  (09:26:34) �[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
1873:  (09:26:34) �[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
1874:  (09:26:34) �[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
1875:  (09:26:34) �[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
1876:  (09:26:34) �[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
...

1975:  (09:26:35) �[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
1976:  (09:26:35) �[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
1977:  (09:26:35) �[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
1978:  (09:26:35) �[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
1979:  (09:26:35) �[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
1980:  (09:26:35) �[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
1981:  (09:26:36) �[32mAnalyzing:�[0m 2357 targets (1576 packages loaded, 49233 targets configured)
1982:  �[32m[5,883 / 8,134]�[0m Extracting npm package @mui/icons-material@5.15.18_60647716; 10s remote, remote-cache ... (48 actions, 6 running)
1983:  (09:26:39) �[32mINFO: �[0mFrom Building external/protobuf+/java/core/liblite_runtime_only.jar (93 source files) [for tool]:
1984:  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
1985:  AccessController.doPrivileged(
1986:  ^
1987:  (09:26:41) �[32mAnalyzing:�[0m 2357 targets (1629 packages loaded, 52003 targets configured)
1988:  �[32m[7,635 / 8,960]�[0m 19 / 1341 tests;�[0m [Prepa] Running lifecycle hooks on npm package fsevents@2.3.3} ... (34 actions, 10 running)
1989:  (09:26:42) �[32mINFO: �[0mFrom Building java/src/org/openqa/selenium/remote/libapi-class.jar (64 source files):
1990:  java/src/org/openqa/selenium/remote/ErrorHandler.java:46: warning: [removal] ErrorCodes in org.openqa.selenium.remote has been deprecated and marked for removal
1991:  private final ErrorCodes errorCodes;
1992:  ^
1993:  java/src/org/openqa/selenium/remote/ErrorHandler.java:60: warning: [removal] ErrorCodes in org.openqa.selenium.remote has been deprecated and marked for removal
1994:  this.errorCodes = new ErrorCodes();
1995:  ^
1996:  java/src/org/openqa/selenium/remote/ErrorHandler.java:68: warning: [removal] ErrorCodes in org.openqa.selenium.remote has been deprecated and marked for removal
1997:  public ErrorHandler(ErrorCodes codes, boolean includeServerErrors) {
1998:  ^
1999:  java/src/org/openqa/selenium/remote/Response.java:97: warning: [removal] ErrorCodes in org.openqa.selenium.remote has been deprecated and marked for removal
2000:  ErrorCodes errorCodes = new ErrorCodes();
2001:  ^
2002:  java/src/org/openqa/selenium/remote/Response.java:97: warning: [removal] ErrorCodes in org.openqa.selenium.remote has been deprecated and marked for removal
2003:  ErrorCodes errorCodes = new ErrorCodes();
2004:  ^
2005:  java/src/org/openqa/selenium/remote/ProtocolHandshake.java:181: warning: [removal] ErrorCodes in org.openqa.selenium.remote has been deprecated and marked for removal
2006:  response.setStatus(ErrorCodes.SUCCESS);
2007:  ^
2008:  java/src/org/openqa/selenium/remote/ProtocolHandshake.java:182: warning: [removal] ErrorCodes in org.openqa.selenium.remote has been deprecated and marked for removal
2009:  response.setState(ErrorCodes.SUCCESS_STRING);
2010:  ^
2011:  java/src/org/openqa/selenium/remote/W3CHandshakeResponse.java:53: warning: [removal] ErrorCodes in org.openqa.selenium.remote has been deprecated and marked for removal
2012:  new ErrorCodes().toStatus((String) rawError, Optional.of(tuple.getStatusCode())));
2013:  ^
2014:  java/src/org/openqa/selenium/remote/W3CHandshakeResponse.java:56: warning: [removal] ErrorCodes in org.openqa.selenium.remote has been deprecated and marked for removal
2015:  new ErrorCodes().getExceptionType((String) rawError);
2016:  ^
2017:  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
2018:  private final ErrorCodes errorCodes = new ErrorCodes();
2019:  ^
2020:  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
2021:  private final ErrorCodes errorCodes = new ErrorCodes();
2022:  ^
2023:  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
2024:  int status = response.getStatus() == ErrorCodes.SUCCESS ? HTTP_OK : HTTP_INTERNAL_ERROR;
2025:  ^
2026:  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
2027:  response.setStatus(ErrorCodes.UNKNOWN_COMMAND);
2028:  ^
2029:  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
2030:  response.setStatus(ErrorCodes.UNHANDLED_ERROR);
2031:  ^
2032:  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
2033:  response.setStatus(ErrorCodes.SUCCESS);
2034:  ^
2035:  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
2036:  response.setState(errorCodes.toState(ErrorCodes.SUCCESS));
2037:  ^
2038:  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
2039:  response.setState(errorCodes.toState(ErrorCodes.SUCCESS));
2040:  ^
2041:  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
2042:  private final ErrorCodes errorCodes = new ErrorCodes();
2043:  ^
2044:  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
2045:  private final ErrorCodes errorCodes = new ErrorCodes();
2046:  ^
2047:  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
2048:  response.setStatus(ErrorCodes.UNKNOWN_COMMAND);
2049:  ^
2050:  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
2051:  response.setStatus(ErrorCodes.UNHANDLED_ERROR);
2052:  ^
2053:  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
2054:  response.setStatus(ErrorCodes.SUCCESS);
2055:  ^
...

2199:  ^
2200:  (09:26:50) �[32mINFO: �[0mFrom Running Cargo build script bzip2-sys:
2201:  Build Script Warning: bzip2-1.0.8/compress.c: In function ‘sendMTFValues’:
2202:  Build Script Warning: bzip2-1.0.8/compress.c:243:19: warning: variable ‘nBytes’ set but not used [-Wunused-but-set-variable]
2203:  Build Script Warning:   243 |    Int32 nGroups, nBytes;
2204:  Build Script Warning:       |                   ^~~~~~
2205:  (09:26:51) �[32mAnalyzing:�[0m 2357 targets (1690 packages loaded, 61500 targets configured)
2206:  �[32m[10,045 / 10,927]�[0m 103 / 1709 tests;�[0m Testing //rust:unit; 0s remote, remote-cache ... (18 actions, 0 running)
2207:  (09:26:56) �[32mAnalyzing:�[0m 2357 targets (1691 packages loaded, 64021 targets configured)
2208:  �[32m[10,076 / 10,983]�[0m 108 / 1709 tests;�[0m [Prepa] Testing //rb/spec/integration/selenium/webdriver:window-edge-bidi ... (22 actions, 0 running)
2209:  (09:27:01) �[32mAnalyzing:�[0m 2357 targets (1691 packages loaded, 64171 targets configured)
2210:  �[32m[10,081 / 11,096]�[0m 109 / 1727 tests;�[0m Testing //rb/spec/unit/selenium/webdriver/common/interactions:input_device; 6s remote, remote-cache ... (50 actions, 0 running)
2211:  (09:27:07) �[32mAnalyzing:�[0m 2357 targets (1691 packages loaded, 64407 targets configured)
2212:  �[32m[10,105 / 11,283]�[0m 124 / 1779 tests;�[0m Testing //rb/spec/unit/selenium/webdriver:guard; 6s remote, remote-cache ... (50 actions, 0 running)
2213:  (09:27:12) �[32mAnalyzing:�[0m 2357 targets (1691 packages loaded, 64553 targets configured)
2214:  �[32m[10,142 / 11,686]�[0m 134 / 1928 tests;�[0m Testing //rb/spec/integration/selenium/webdriver:error-edge; 8s remote, remote-cache ... (50 actions, 1 running)
2215:  (09:27:17) �[32mAnalyzing:�[0m 2357 targets (1691 packages loaded, 64553 targets configured)
2216:  �[32m[10,209 / 11,929]�[0m 155 / 2003 tests;�[0m Testing //rb/spec/unit/selenium/webdriver/common/interactions:wheel_actions; 7s remote, remote-cache ... (50 actions, 1 running)
2217:  (09:27:22) �[32mAnalyzing:�[0m 2357 targets (1691 packages loaded, 64585 targets configured)
2218:  �[32m[10,240 / 12,122]�[0m 166 / 2085 tests;�[0m Testing //javascript/selenium-webdriver:test-fedcm-fedcm-test.js-chrome; 11s remote, remote-cache ... (50 actions, 1 running)
2219:  (09:27:27) �[32mAnalyzing:�[0m 2357 targets (1691 packages loaded, 64733 targets configured)
2220:  �[32m[10,494 / 12,354]�[0m 251 / 2233 tests;�[0m Testing //javascript/selenium-webdriver:test-fedcm-fedcm-test.js-chrome; 16s remote, remote-cache ... (50 actions, 1 running)
2221:  (09:27:31) �[32mINFO: �[0mAnalyzed 2357 targets (1691 packages loaded, 64857 targets configured).
2222:  (09:27:32) �[32m[11,219 / 12,796]�[0m 383 / 2357 tests;�[0m Testing //javascript/selenium-webdriver:test-fedcm-fedcm-test.js-chrome; 21s remote, remote-cache ... (47 actions, 28 running)
2223:  (09:27:35) �[32mINFO: �[0mFrom Building java/test/org/openqa/selenium/remote/libsmall-tests-test-lib.jar (5 source files) and running annotation processors (AutoServiceProcessor):
2224:  java/test/org/openqa/selenium/remote/WebDriverFixture.java:170: warning: [removal] ErrorCodes in org.openqa.selenium.remote has been deprecated and marked for removal
2225:  response.setStatus(new ErrorCodes().toStatus(state, Optional.of(400)));
2226:  ^
2227:  (09:27:37) �[32m[11,942 / 13,284]�[0m 473 / 2357 tests;�[0m Testing //javascript/selenium-webdriver:test-fedcm-fedcm-test.js-chrome; 26s remote, remote-cache ... (50 actions, 3 running)
2228:  (09:27:39) �[32mINFO: �[0mFrom Building java/test/org/openqa/selenium/json/JsonTest.jar (1 source file):
2229:  java/test/org/openqa/selenium/json/JsonTest.java:430: warning: [removal] ErrorCodes in org.openqa.selenium.remote has been deprecated and marked for removal
2230:  assertThat(response.getState()).isEqualTo(new ErrorCodes().toState(0));
2231:  ^
2232:  java/test/org/openqa/selenium/json/JsonTest.java:441: warning: [removal] ErrorCodes in org.openqa.selenium.remote has been deprecated and marked for removal
2233:  assertThat(response.getState()).isEqualTo(new ErrorCodes().toState(0));
2234:  ^
2235:  java/test/org/openqa/selenium/json/JsonTest.java:454: warning: [removal] ErrorCodes in org.openqa.selenium.remote has been deprecated and marked for removal
2236:  assertThat(response.getState()).isEqualTo(new ErrorCodes().toState(32));
2237:  ^
2238:  (09:27:40) �[32mINFO: �[0mFrom Building java/test/org/openqa/selenium/remote/ErrorHandlerTest.jar (1 source file) and running annotation processors (AutoServiceProcessor):
2239:  java/test/org/openqa/selenium/remote/ErrorHandlerTest.java:79: warning: [removal] ErrorCodes in org.openqa.selenium.remote has been deprecated and marked for removal
2240:  handler.throwIfResponseFailed(createResponse(ErrorCodes.SUCCESS), 100);
2241:  ^
2242:  java/test/org/openqa/selenium/remote/ErrorHandlerTest.java:85: warning: [removal] ErrorCodes in org.openqa.selenium.remote has been deprecated and marked for removal
2243:  assertThrowsCorrectExceptionType(ErrorCodes.NO_SUCH_WINDOW, NoSuchWindowException.class);
2244:  ^
2245:  java/test/org/openqa/selenium/remote/ErrorHandlerTest.java:86: warning: [removal] ErrorCodes in org.openqa.selenium.remote has been deprecated and marked for removal
2246:  assertThrowsCorrectExceptionType(ErrorCodes.NO_SUCH_FRAME, NoSuchFrameException.class);
2247:  ^
2248:  java/test/org/openqa/selenium/remote/ErrorHandlerTest.java:87: warning: [removal] ErrorCodes in org.openqa.selenium.remote has been deprecated and marked for removal
2249:  assertThrowsCorrectExceptionType(ErrorCodes.NO_SUCH_ELEMENT, NoSuchElementException.class);
2250:  ^
2251:  java/test/org/openqa/selenium/remote/ErrorHandlerTest.java:88: warning: [removal] ErrorCodes in org.openqa.selenium.remote has been deprecated and marked for removal
2252:  assertThrowsCorrectExceptionType(ErrorCodes.UNKNOWN_COMMAND, UnsupportedCommandException.class);
2253:  ^
2254:  java/test/org/openqa/selenium/remote/ErrorHandlerTest.java:90: warning: [removal] ErrorCodes in org.openqa.selenium.remote has been deprecated and marked for removal
2255:  ErrorCodes.METHOD_NOT_ALLOWED, UnsupportedCommandException.class);
2256:  ^
2257:  java/test/org/openqa/selenium/remote/ErrorHandlerTest.java:92: warning: [removal] ErrorCodes in org.openqa.selenium.remote has been deprecated and marked for removal
2258:  ErrorCodes.STALE_ELEMENT_REFERENCE, StaleElementReferenceException.class);
2259:  ^
2260:  java/test/org/openqa/selenium/remote/ErrorHandlerTest.java:94: warning: [removal] ErrorCodes in org.openqa.selenium.remote has been deprecated and marked for removal
2261:  ErrorCodes.INVALID_ELEMENT_STATE, InvalidElementStateException.class);
2262:  ^
2263:  java/test/org/openqa/selenium/remote/ErrorHandlerTest.java:95: warning: [removal] ErrorCodes in org.openqa.selenium.remote has been deprecated and marked for removal
2264:  assertThrowsCorrectExceptionType(ErrorCodes.XPATH_LOOKUP_ERROR, InvalidSelectorException.class);
2265:  ^
2266:  java/test/org/openqa/selenium/remote/ErrorHandlerTest.java:107: warning: [removal] ErrorCodes in org.openqa.selenium.remote has been deprecated and marked for removal
2267:  Response response = createResponse(ErrorCodes.UNHANDLED_ERROR);
2268:  ^
2269:  java/test/org/openqa/selenium/remote/ErrorHandlerTest.java:120: warning: [removal] ErrorCodes in org.openqa.selenium.remote has been deprecated and marked for removal
2270:  createResponse(ErrorCodes.UNHANDLED_ERROR, "boom"), 123))
2271:  ^
2272:  java/test/org/openqa/selenium/remote/ErrorHandlerTest.java:133: warning: [removal] ErrorCodes in org.openqa.selenium.remote has been deprecated and marked for removal
2273:  createResponse(ErrorCodes.UNHANDLED_ERROR, ImmutableMap.of("message", "boom")),
2274:  ^
2275:  java/test/org/openqa/selenium/remote/ErrorHandlerTest.java:147: warning: [removal] ErrorCodes in org.openqa.selenium.remote has been deprecated and marked for removal
2276:  ErrorCodes.UNHANDLED_ERROR,
2277:  ^
2278:  java/test/org/openqa/selenium/remote/ErrorHandlerTest.java:167: warning: [removal] ErrorCodes in org.openqa.selenium.remote has been deprecated and marked for removal
2279:  ErrorCodes.UNHANDLED_ERROR,
2280:  ^
2281:  java/test/org/openqa/selenium/remote/ErrorHandlerTest.java:193: warning: [removal] ErrorCodes in org.openqa.selenium.remote has been deprecated and marked for removal
2282:  createResponse(ErrorCodes.UNHANDLED_ERROR, toMap(serverError)), 123))
2283:  ^
2284:  java/test/org/openqa/selenium/remote/ErrorHandlerTest.java:214: warning: [removal] ErrorCodes in org.openqa.selenium.remote has been deprecated and marked for removal
2285:  createResponse(ErrorCodes.UNHANDLED_ERROR, data), 123))
2286:  ^
2287:  java/test/org/openqa/selenium/remote/ErrorHandlerTest.java:248: warning: [removal] ErrorCodes in org.openqa.selenium.remote has been deprecated and marked for removal
2288:  createResponse(ErrorCodes.UNHANDLED_ERROR, data), 123))
2289:  ^
2290:  java/test/org/openqa/selenium/remote/ErrorHandlerTest.java:280: warning: [removal] ErrorCodes in org.openqa.selenium.remote has been deprecated and marked for removal
2291:  createResponse(ErrorCodes.UNHANDLED_ERROR, data), 123))
2292:  ^
2293:  java/test/org/openqa/selenium/remote/ErrorHandlerTest.java:308: warning: [removal] ErrorCodes in org.openqa.selenium.remote has been deprecated and marked for removal
2294:  createResponse(ErrorCodes.UNHANDLED_ERROR, data), 123))
2295:  ^
2296:  java/test/org/openqa/selenium/remote/ErrorHandlerTest.java:327: 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:355: 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:394: 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:426: warning: [removal] ErrorCodes in org.openqa.selenium.remote has been deprecated and marked for removal
2306:  createResponse(ErrorCodes.UNHANDLED_ERROR, toMap(serverError)), 123))
2307:  ^
2308:  java/test/org/openqa/selenium/remote/ErrorHandlerTest.java:435: warning: [removal] ErrorCodes in org.openqa.selenium.remote has been deprecated and marked for removal
2309:  exceptions.put(ErrorCodes.NO_SUCH_SESSION, NoSuchSessionException.class);
2310:  ^
2311:  java/test/org/openqa/selenium/remote/ErrorHandlerTest.java:436: warning: [removal] ErrorCodes in org.openqa.selenium.remote has been deprecated and marked for removal
2312:  exceptions.put(ErrorCodes.NO_SUCH_ELEMENT, NoSuchElementException.class);
2313:  ^
2314:  java/test/org/openqa/selenium/remote/ErrorHandlerTest.java:437: warning: [removal] ErrorCodes in org.openqa.selenium.remote has been deprecated and marked for removal
2315:  exceptions.put(ErrorCodes.NO_SUCH_FRAME, NoSuchFrameException.class);
2316:  ^
2317:  java/test/org/openqa/selenium/remote/ErrorHandlerTest.java:438: warning: [removal] ErrorCodes in org.openqa.selenium.remote has been deprecated and marked for removal
2318:  exceptions.put(ErrorCodes.UNKNOWN_COMMAND, UnsupportedCommandException.class);
2319:  ^
2320:  java/test/org/openqa/selenium/remote/ErrorHandlerTest.java:439: warning: [removal] ErrorCodes in org.openqa.selenium.remote has been deprecated and marked for removal
2321:  exceptions.put(ErrorCodes.STALE_ELEMENT_REFERENCE, StaleElementReferenceException.class);
2322:  ^
2323:  java/test/org/openqa/selenium/remote/ErrorHandlerTest.java:440: warning: [removal] ErrorCodes in org.openqa.selenium.remote has been deprecated and marked for removal
2324:  exceptions.put(ErrorCodes.INVALID_ELEMENT_STATE, InvalidElementStateException.class);
2325:  ^
2326:  java/test/org/openqa/selenium/remote/ErrorHandlerTest.java:441: warning: [removal] ErrorCodes in org.openqa.selenium.remote has been deprecated and marked for removal
2327:  exceptions.put(ErrorCodes.UNHANDLED_ERROR, WebDriverException.class);
2328:  ^
2329:  java/test/org/openqa/selenium/remote/ErrorHandlerTest.java:442: warning: [removal] ErrorCodes in org.openqa.selenium.remote has been deprecated and marked for removal
2330:  exceptions.put(ErrorCodes.JAVASCRIPT_ERROR, JavascriptException.class);
2331:  ^
2332:  java/test/org/openqa/selenium/remote/ErrorHandlerTest.java:443: warning: [removal] ErrorCodes in org.openqa.selenium.remote has been deprecated and marked for removal
2333:  exceptions.put(ErrorCodes.XPATH_LOOKUP_ERROR, InvalidSelectorException.class);
2334:  ^
2335:  java/test/org/openqa/selenium/remote/ErrorHandlerTest.java:444: warning: [removal] ErrorCodes in org.openqa.selenium.remote has been deprecated and marked for removal
2336:  exceptions.put(ErrorCodes.TIMEOUT, TimeoutException.class);
2337:  ^
2338:  java/test/org/openqa/selenium/remote/ErrorHandlerTest.java:445: warning: [removal] ErrorCodes in org.openqa.selenium.remote has been deprecated and marked for removal
2339:  exceptions.put(ErrorCodes.NO_SUCH_WINDOW, NoSuchWindowException.class);
2340:  ^
2341:  java/test/org/openqa/selenium/remote/ErrorHandlerTest.java:446: warning: [removal] ErrorCodes in org.openqa.selenium.remote has been deprecated and marked for removal
2342:  exceptions.put(ErrorCodes.INVALID_COOKIE_DOMAIN, InvalidCookieDomainException.class);
2343:  ^
2344:  java/test/org/openqa/selenium/remote/ErrorHandlerTest.java:447: warning: [removal] ErrorCodes in org.openqa.selenium.remote has been deprecated and marked for removal
2345:  exceptions.put(ErrorCodes.UNABLE_TO_SET_COOKIE, UnableToSetCookieException.class);
2346:  ^
2347:  java/test/org/openqa/selenium/remote/ErrorHandlerTest.java:448: warning: [removal] ErrorCodes in org.openqa.selenium.remote has been deprecated and marked for removal
2348:  exceptions.put(ErrorCodes.UNEXPECTED_ALERT_PRESENT, UnhandledAlertException.class);
2349:  ^
2350:  java/test/org/openqa/selenium/remote/ErrorHandlerTest.java:449: warning: [removal] ErrorCodes in org.openqa.selenium.remote has been deprecated and marked for removal
2351:  exceptions.put(ErrorCodes.NO_ALERT_PRESENT, NoAlertPresentException.class);
2352:  ^
2353:  java/test/org/openqa/selenium/remote/ErrorHandlerTest.java:450: warning: [removal] ErrorCodes in org.openqa.selenium.remote has been deprecated and marked for removal
2354:  exceptions.put(ErrorCodes.ASYNC_SCRIPT_TIMEOUT, ScriptTimeoutException.class);
2355:  ^
2356:  java/test/org/openqa/selenium/remote/ErrorHandlerTest.java:451: warning: [removal] ErrorCodes in org.openqa.selenium.remote has been deprecated and marked for removal
2357:  exceptions.put(ErrorCodes.INVALID_SELECTOR_ERROR, InvalidSelectorException.class);
2358:  ^
2359:  java/test/org/openqa/selenium/remote/ErrorHandlerTest.java:452: warning: [removal] ErrorCodes in org.openqa.selenium.remote has been deprecated and marked for removal
2360:  exceptions.put(ErrorCodes.SESSION_NOT_CREATED, SessionNotCreatedException.class);
2361:  ^
2362:  java/test/org/openqa/selenium/remote/ErrorHandlerTest.java:453: warning: [removal] ErrorCodes in org.openqa.selenium.remote has been deprecated and marked for removal
2363:  exceptions.put(ErrorCodes.MOVE_TARGET_OUT_OF_BOUNDS, MoveTargetOutOfBoundsException.class);
2364:  ^
2365:  java/test/org/openqa/selenium/remote/ErrorHandlerTest.java:454: warning: [removal] ErrorCodes in org.openqa.selenium.remote has been deprecated and marked for removal
2366:  exceptions.put(ErrorCodes.INVALID_XPATH_SELECTOR, InvalidSelectorException.class);
2367:  ^
2368:  java/test/org/openqa/selenium/remote/ErrorHandlerTest.java:455: warning: [removal] ErrorCodes in org.openqa.selenium.remote has been deprecated and marked for removal
2369:  exceptions.put(ErrorCodes.INVALID_XPATH_SELECTOR_RETURN_TYPER, InvalidSelectorException.class);
2370:  ^
2371:  java/test/org/openqa/selenium/remote/ErrorHandlerTest.java:469: warning: [removal] ErrorCodes in org.openqa.selenium.remote has been deprecated and marked for removal
2372:  ? ErrorCodes.INVALID_SELECTOR_ERROR
2373:  ^
2374:  java/test/org/openqa/selenium/remote/ErrorHandlerTest.java:471: warning: [removal] ErrorCodes in org.openqa.selenium.remote has been deprecated and marked for removal
2375:  assertThat(new ErrorCodes().toStatusCode(e)).isEqualTo(expected);
2376:  ^
2377:  java/test/org/openqa/selenium/remote/ErrorHandlerTest.java:483: warning: [removal] ErrorCodes in org.openqa.selenium.remote has been deprecated and marked for removal
2378:  response.setState(new ErrorCodes().toState(status));
2379:  ^
2380:  (09:27:40) �[32mINFO: �[0mFrom Building java/test/org/openqa/selenium/remote/RemotableByTest.jar (1 source file) and running annotation processors (AutoServiceProcessor):
2381:  java/test/org/openqa/selenium/remote/RemotableByTest.java:23: warning: [removal] ErrorCodes in org.openqa.selenium.remote has been deprecated and marked for removal
2382:  import static org.openqa.selenium.remote.ErrorCodes.SUCCESS_STRING;
2383:  ^
2384:  java/test/org/openqa/selenium/remote/RemotableByTest.java:23: warning: [removal] ErrorCodes in org.openqa.selenium.remote has been deprecated and marked for removal
2385:  import static org.openqa.selenium.remote.ErrorCodes.SUCCESS_STRING;
2386:  ^
2387:  java/test/org/openqa/selenium/remote/RemotableByTest.java:23: warning: [removal] ErrorCodes in org.openqa.selenium.remote has been deprecated and marked for removal
2388:  import static org.openqa.selenium.remote.ErrorCodes.SUCCESS_STRING;
2389:  ^
2390:  java/test/org/openqa/selenium/remote/RemotableByTest.java:45: warning: [removal] ErrorCodes in org.openqa.selenium.remote has been deprecated and marked for removal
2391:  private final ErrorCodes errorCodes = new ErrorCodes();
2392:  ^
2393:  java/test/org/openqa/selenium/remote/RemotableByTest.java:45: warning: [removal] ErrorCodes in org.openqa.selenium.remote has been deprecated and marked for removal
2394:  private final ErrorCodes errorCodes = new ErrorCodes();
2395:  ^
2396:  java/test/org/openqa/selenium/remote/RemotableByTest.java:45: warning: [removal] ErrorCodes in org.openqa.selenium.remote has been deprecated and marked for removal
2397:  private final ErrorCodes errorCodes = new ErrorCodes();
2398:  ^
2399:  java/test/org/openqa/selenium/remote/RemotableByTest.java:45: warning: [removal] ErrorCodes in org.openqa.selenium.remote has been deprecated and marked for removal
2400:  private final ErrorCodes errorCodes = new ErrorCodes();
2401:  ^
2402:  (09:27:42) �[32m[12,971 / 14,214]�[0m 598 / 2357 tests;�[0m Testing //javascript/selenium-webdriver:test-fedcm-fedcm-test.js-chrome; 31s remote, remote-cache ... (40 actions, 13 running)
2403:  (09:27:43) �[32mINFO: �[0mFrom Building java/test/org/openqa/selenium/remote/codec/w3c/W3CHttpResponseCodecTest.jar (1 source file):
2404:  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
2405:  import static org.openqa.selenium.remote.ErrorCodes.METHOD_NOT_ALLOWED;
2406:  ^
2407:  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
2408:  assertThat(decoded.getStatus()).isEqualTo(ErrorCodes.SUCCESS);
2409:  ^
2410:  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
2411:  assertThat(decoded.getStatus()).isEqualTo(ErrorCodes.UNHANDLED_ERROR);
2412:  ^
2413:  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
2414:  assertThat(decoded.getStatus()).isEqualTo(ErrorCodes.UNHANDLED_ERROR);
2415:  ^
...

2509:  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.'
2510:  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.'
2511:  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.'
2512:  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.'
2513:  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.'
2514:  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.'
2515:  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.'
2516:  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.'
2517:  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.'
2518:  (09:28:39) �[31m�[1mFAIL: �[0m//javascript/selenium-webdriver:test-bidi-network-test.js-chrome (see /home/runner/.bazel/execroot/_main/bazel-out/k8-fastbuild/testlogs/javascript/selenium-webdriver/test-bidi-network-test.js-chrome/test_attempts/attempt_1.log)
2519:  (09:28:47) �[32m[16,308 / 16,310]�[0m 2265 / 2357 tests;�[0m Testing //javascript/selenium-webdriver:test-fedcm-fedcm-test.js-chrome; 95s remote, remote-cache ... (2 actions running)
2520:  (09:28:49) �[31m�[1mFAIL: �[0m//javascript/selenium-webdriver:test-fedcm-fedcm-test.js-chrome (see /home/runner/.bazel/execroot/_main/bazel-out/k8-fastbuild/testlogs/javascript/selenium-webdriver/test-fedcm-fedcm-test.js-chrome/test_attempts/attempt_1.log)
2521:  (09:28:52) �[32m[16,308 / 16,310]�[0m 2265 / 2357 tests;�[0m Testing //javascript/selenium-webdriver:test-fedcm-fedcm-test.js-chrome; 100s remote, remote-cache ... (2 actions running)
2522:  (09:28:57) �[32m[16,308 / 16,310]�[0m 2265 / 2357 tests;�[0m Testing //javascript/selenium-webdriver:test-fedcm-fedcm-test.js-chrome; 105s remote, remote-cache ... (2 actions running)
2523:  (09:29:01) �[31m�[1mFAIL: �[0m//javascript/selenium-webdriver:test-bidi-network-test.js-chrome (see /home/runner/.bazel/execroot/_main/bazel-out/k8-fastbuild/testlogs/javascript/selenium-webdriver/test-bidi-network-test.js-chrome/test.log)
2524:  �[31m�[1mFAILED: �[0m//javascript/selenium-webdriver:test-bidi-network-test.js-chrome (Summary)
2525:  /home/runner/.bazel/execroot/_main/bazel-out/k8-fastbuild/testlogs/javascript/selenium-webdriver/test-bidi-network-test.js-chrome/test.log
2526:  /home/runner/.bazel/execroot/_main/bazel-out/k8-fastbuild/testlogs/javascript/selenium-webdriver/test-bidi-network-test.js-chrome/test_attempts/attempt_1.log
2527:  (09:29:01) �[32mINFO: �[0mFrom Testing //javascript/selenium-webdriver:test-bidi-network-test.js-chrome:
2528:  ==================== Test output for //javascript/selenium-webdriver:test-bidi-network-test.js-chrome:
2529:  [INFO] Running tests against [chrome]
2530:  [chrome]
2531:  Network network
2532:  ✔ can listen to event before request is sent (265ms)
2533:  1) can request cookies
2534:  - can redirect http equiv
2535:  ✔ can subscribe to response started (324ms)
2536:  ✔ test response started mime type (472ms)
2537:  ✔ can subscribe to response completed (286ms)
2538:  - can listen to auth required event
2539:  ✔ can listen to fetch error event (577ms)
2540:  ✔ test response completed mime type (372ms)
2541:  setCacheBehavior
2542:  ✔ can set cache behavior to bypass for a context (419ms)
2543:  ✔ can set cache behavior to default for a context (396ms)
2544:  ✔ can set cache behavior to default/bypass with no context id (274ms)
2545:  ✔ throws error for invalid cache behavior (172ms)
2546:  ✔ throws error for invalid context id types (153ms)
2547:  11 passing (28s)
2548:  2 pending
2549:  1 failing
2550:  1) [chrome]
2551:  Network network
2552:  can request cookies:
2553:  TypeError: Cannot read properties of undefined (reading 'name')
2554:  at Context.<anonymous> (test/bidi/network_test.js:72:60)
2555:  at process.processTicksAndRejections (node:internal/process/task_queues:95:5)
2556:  Execution result: https://gypsum.cluster.engflow.com/actions/executions/ChC3VJZCMZVWO59U9Bol4sm3EgdkZWZhdWx0GiUKIHgGEYlsdUDHVe73vzg59vRozyWXWzRpn4Ux4h2iPWSGELwD
2557:  ================================================================================
2558:  ==================== Test output for //javascript/selenium-webdriver:test-bidi-network-test.js-chrome:
2559:  [INFO] Running tests against [chrome]
2560:  [chrome]
2561:  Network network
2562:  ✔ can listen to event before request is sent (189ms)
2563:  1) can request cookies
2564:  - can redirect http equiv
2565:  ✔ can subscribe to response started (189ms)
2566:  ✔ test response started mime type (271ms)
2567:  ✔ can subscribe to response completed (179ms)
2568:  - can listen to auth required event
2569:  ✔ can listen to fetch error event (305ms)
2570:  ✔ test response completed mime type (258ms)
2571:  setCacheBehavior
2572:  ✔ can set cache behavior to bypass for a context (276ms)
2573:  ✔ can set cache behavior to default for a context (259ms)
2574:  ✔ can set cache behavior to default/bypass with no context id (174ms)
2575:  ✔ throws error for invalid cache behavior (147ms)
2576:  ✔ throws error for invalid context id types (139ms)
2577:  11 passing (19s)
2578:  2 pending
2579:  1 failing
2580:  1) [chrome]
2581:  Network network
2582:  can request cookies:
2583:  TypeError: Cannot read properties of undefined (reading 'name')
2584:  at Context.<anonymous> (test/bidi/network_test.js:72:60)
2585:  at process.processTicksAndRejections (node:internal/process/task_queues:95:5)
2586:  Execution result: https://gypsum.cluster.engflow.com/actions/executions/ChC3VJZCMZVWO59U9Bol4sm3EgdkZWZhdWx0GiUKIHgGEYlsdUDHVe73vzg59vRozyWXWzRpn4Ux4h2iPWSGELwD
2587:  ================================================================================
2588:  (09:29:07) �[32m[16,309 / 16,310]�[0m 2266 / 2357 tests, �[31m�[1m1 failed�[0m;�[0m Testing //javascript/selenium-webdriver:test-fedcm-fedcm-test.js-chrome; 115s remote, remote-cache
2589:  (09:29:13) �[32m[16,309 / 16,310]�[0m 2266 / 2357 tests, �[31m�[1m1 failed�[0m;�[0m Testing //javascript/selenium-webdriver:test-fedcm-fedcm-test.js-chrome; 121s remote, remote-cache
2590:  (09:29:18) �[32m[16,309 / 16,310]�[0m 2266 / 2357 tests, �[31m�[1m1 failed�[0m;�[0m Testing //javascript/selenium-webdriver:test-fedcm-fedcm-test.js-chrome; 127s remote, remote-cache
2591:  (09:29:19) �[31m�[1mFAIL: �[0m//javascript/selenium-webdriver:test-fedcm-fedcm-test.js-chrome (see /home/runner/.bazel/execroot/_main/bazel-out/k8-fastbuild/testlogs/javascript/selenium-webdriver/test-fedcm-fedcm-test.js-chrome/test.log)
2592:  �[31m�[1mFAILED: �[0m//javascript/selenium-webdriver:test-fedcm-fedcm-test.js-chrome (Summary)
2593:  /home/runner/.bazel/execroot/_main/bazel-out/k8-fastbuild/testlogs/javascript/selenium-webdriver/test-fedcm-fedcm-test.js-chrome/test.log
2594:  /home/runner/.bazel/execroot/_main/bazel-out/k8-fastbuild/testlogs/javascript/selenium-webdriver/test-fedcm-fedcm-test.js-chrome/test_attempts/attempt_1.log
2595:  (09:29:19) �[32mINFO: �[0mFrom Testing //javascript/selenium-webdriver:test-fedcm-fedcm-test.js-chrome:
2596:  ==================== Test output for //javascript/selenium-webdriver:test-fedcm-fedcm-test.js-chrome:
2597:  [INFO] Running tests against [chrome]
2598:  [chrome]
2599:  Federated Credential Management Test
2600:  1) credential management dialog should appear
2601:  ✔ can dismiss dialog (361ms)
2602:  ✔ can select account (356ms)
2603:  ✔ can get account list (339ms)
2604:  3 passing (51s)
2605:  1 failing
2606:  1) [chrome]
2607:  Federated Credential Management Test
2608:  credential management dialog should appear:
2609:  TimeoutError: Expected dialog type to be "AccountChooser"
2610:  Wait timed out after 10050ms
2611:  at /mnt/engflow/worker/work/1/exec/bazel-out/k8-fastbuild/bin/javascript/selenium-webdriver/test-fedcm-fedcm-test.js-chrome_/test-fedcm-fedcm-test.js-chrome.runfiles/_main/node_modules/.aspect_rules_js/selenium-webdriver@4.35.0-nightly202506301117/node_modules/selenium-webdriver/lib/webdriver.js:929:22
2612:  at process.processTicksAndRejections (node:internal/process/task_queues:95:5)
2613:  Execution result: https://gypsum.cluster.engflow.com/actions/executions/ChCWpToAQA5QVKVg3NdtuvCMEgdkZWZhdWx0GiUKIMzTKVVlD8lxvpPi9dRq8_Ey7GyoAjPteVJSMTIL2cu0ELwD
2614:  ================================================================================
2615:  ==================== Test output for //javascript/selenium-webdriver:test-fedcm-fedcm-test.js-chrome:
2616:  [INFO] Running tests against [chrome]
2617:  [chrome]
2618:  Federated Credential Management Test
2619:  1) credential management dialog should appear
2620:  ✔ can dismiss dialog (374ms)
2621:  ✔ can select account (390ms)
2622:  ✔ can get account list (364ms)
2623:  3 passing (28s)
2624:  1 failing
2625:  1) [chrome]
2626:  Federated Credential Management Test
2627:  credential management dialog should appear:
2628:  TimeoutError: Expected dialog type to be "AccountChooser"
2629:  Wait timed out after 10378ms
2630:  at /mnt/engflow/worker/work/1/exec/bazel-out/k8-fastbuild/bin/javascript/selenium-webdriver/test-fedcm-fedcm-test.js-chrome_/test-fedcm-fedcm-test.js-chrome.runfiles/_main/node_modules/.aspect_rules_js/selenium-webdriver@4.35.0-nightly202506301117/node_modules/selenium-webdriver/lib/webdriver.js:929:22
2631:  at process.processTicksAndRejections (node:internal/process/task_queues:95:5)
2632:  Execution result: https://gypsum.cluster.engflow.com/actions/executions/ChCWpToAQA5QVKVg3NdtuvCMEgdkZWZhdWx0GiUKIMzTKVVlD8lxvpPi9dRq8_Ey7GyoAjPteVJSMTIL2cu0ELwD
2633:  ================================================================================
2634:  (09:29:24) �[32m[16,330 / 16,331]�[0m 2287 / 2357 tests, �[31m�[1m2 failed�[0m;�[0m Testing //rb/spec/integration/selenium/webdriver/bidi:network-chrome-beta-bidi; 0s remote, remote-cache
2635:  (09:29:29) �[32m[16,352 / 16,353]�[0m 2309 / 2357 tests, �[31m�[1m2 failed�[0m;�[0m Testing //rb/spec/integration/selenium/webdriver/bidi:browsing_context-firefox-beta-bidi; 0s remote, remote-cache
2636:  (09:29:34) �[32m[16,374 / 16,375]�[0m 2332 / 2357 tests, �[31m�[1m2 failed�[0m;�[0m Testing //rb/spec/integration/selenium/webdriver/bidi:network-chrome-remote; 0s remote, remote-cache
2637:  (09:29:39) �[32m[16,394 / 16,395]�[0m 2351 / 2357 tests, �[31m�[1m2 failed�[0m;�[0m Testing //rb/spec/integration/selenium/webdriver/bidi:browsing_context-firefox-beta-remote; 0s remote, remote-cache
2638:  (09:29:40) �[32mINFO: �[0mFound 2357 test targets...
2639:  (09:29:40) �[32mINFO: �[0mElapsed time: 306.420s, Critical Path: 147.07s
2640:  (09:29:40) �[32mINFO: �[0m15670 processes: 7707 remote cache hit, 7905 internal, 47 local, 11 remote.
2641:  (09:29:40) �[32mINFO: �[0mBuild completed, 2 tests FAILED, 15670 total actions
2642:  (09:29:40) �[32mINFO:�[0m 
...

2760:  //dotnet/test/common:ElementElementFindingTest-chrome           �[0m�[32m(cached) PASSED�[0m in 9.0s
2761:  //dotnet/test/common:ElementElementFindingTest-edge             �[0m�[32m(cached) PASSED�[0m in 11.2s
2762:  //dotnet/test/common:ElementElementFindingTest-firefox          �[0m�[32m(cached) PASSED�[0m in 17.6s
2763:  //dotnet/test/common:ElementEqualityTest-chrome                 �[0m�[32m(cached) PASSED�[0m in 9.9s
2764:  //dotnet/test/common:ElementEqualityTest-edge                   �[0m�[32m(cached) PASSED�[0m in 7.6s
2765:  //dotnet/test/common:ElementEqualityTest-firefox                �[0m�[32m(cached) PASSED�[0m in 13.1s
2766:  //dotnet/test/common:ElementFindingTest-chrome                  �[0m�[32m(cached) PASSED�[0m in 29.4s
2767:  //dotnet/test/common:ElementFindingTest-edge                    �[0m�[32m(cached) PASSED�[0m in 31.9s
2768:  //dotnet/test/common:ElementFindingTest-firefox                 �[0m�[32m(cached) PASSED�[0m in 48.2s
2769:  //dotnet/test/common:ElementPropertyTest-chrome                 �[0m�[32m(cached) PASSED�[0m in 6.5s
2770:  //dotnet/test/common:ElementPropertyTest-edge                   �[0m�[32m(cached) PASSED�[0m in 10.1s
2771:  //dotnet/test/common:ElementPropertyTest-firefox                �[0m�[32m(cached) PASSED�[0m in 17.3s
2772:  //dotnet/test/common:ElementSelectingTest-chrome                �[0m�[32m(cached) PASSED�[0m in 10.9s
2773:  //dotnet/test/common:ElementSelectingTest-edge                  �[0m�[32m(cached) PASSED�[0m in 14.9s
2774:  //dotnet/test/common:ElementSelectingTest-firefox               �[0m�[32m(cached) PASSED�[0m in 29.1s
2775:  //dotnet/test/common:ErrorsTest-chrome                          �[0m�[32m(cached) PASSED�[0m in 5.8s
2776:  //dotnet/test/common:ErrorsTest-edge                            �[0m�[32m(cached) PASSED�[0m in 8.3s
2777:  //dotnet/test/common:ErrorsTest-firefox                         �[0m�[32m(cached) PASSED�[0m in 12.0s
2778:  //dotnet/test/common:ExecutingAsyncJavascriptTest-chrome        �[0m�[32m(cached) PASSED�[0m in 21.0s
...

3116:  //java/test/org/openqa/selenium:ElementEqualityTest             �[0m�[32m(cached) PASSED�[0m in 17.4s
3117:  //java/test/org/openqa/selenium:ElementEqualityTest-chrome      �[0m�[32m(cached) PASSED�[0m in 8.3s
3118:  //java/test/org/openqa/selenium:ElementEqualityTest-edge        �[0m�[32m(cached) PASSED�[0m in 11.1s
3119:  //java/test/org/openqa/selenium:ElementEqualityTest-firefox-beta �[0m�[32m(cached) PASSED�[0m in 21.2s
3120:  //java/test/org/openqa/selenium:ElementEqualityTest-spotbugs    �[0m�[32m(cached) PASSED�[0m in 10.0s
3121:  //java/test/org/openqa/selenium:ElementFindingTest              �[0m�[32m(cached) PASSED�[0m in 48.8s
3122:  //java/test/org/openqa/selenium:ElementFindingTest-chrome       �[0m�[32m(cached) PASSED�[0m in 28.3s
3123:  //java/test/org/openqa/selenium:ElementFindingTest-edge         �[0m�[32m(cached) PASSED�[0m in 29.4s
3124:  //java/test/org/openqa/selenium:ElementFindingTest-firefox-beta �[0m�[32m(cached) PASSED�[0m in 37.8s
3125:  //java/test/org/openqa/selenium:ElementFindingTest-spotbugs     �[0m�[32m(cached) PASSED�[0m in 13.0s
3126:  //java/test/org/openqa/selenium:ElementSelectingTest            �[0m�[32m(cached) PASSED�[0m in 27.8s
3127:  //java/test/org/openqa/selenium:ElementSelectingTest-chrome     �[0m�[32m(cached) PASSED�[0m in 17.0s
3128:  //java/test/org/openqa/selenium:ElementSelectingTest-edge       �[0m�[32m(cached) PASSED�[0m in 19.6s
3129:  //java/test/org/openqa/selenium:ElementSelectingTest-firefox-beta �[0m�[32m(cached) PASSED�[0m in 25.3s
3130:  //java/test/org/openqa/selenium:ElementSelectingTest-spotbugs   �[0m�[32m(cached) PASSED�[0m in 9.7s
3131:  //java/test/org/openqa/selenium:ErrorsTest                      �[0m�[32m(cached) PASSED�[0m in 15.1s
3132:  //java/test/org/openqa/selenium:ErrorsTest-chrome               �[0m�[32m(cached) PASSED�[0m in 9.7s
3133:  //java/test/org/openqa/selenium:ErrorsTest-edge                 �[0m�[32m(cached) PASSED�[0m in 9.5s
3134:  //java/test/org/openqa/selenium:ErrorsTest-firefox-beta         �[0m�[32m(cached) PASSED�[0m in 13.3s
3135:  //java/test/org/openqa/selenium:ErrorsTest-spotbugs             �[0m�[32m(cached) PASSED�[0m in 5.2s
3136:  //java/test/org/openqa/selenium:ExecutingAsyncJavascriptTest    �[0m�[32m(cached) PASSED�[0m in 37.9s
...

3850:  //java/test/org/openqa/selenium/net:UrlsTest-spotbugs           �[0m�[32m(cached) PASSED�[0m in 10.3s
3851:  //java/test/org/openqa/selenium/net:net-spotbugs                �[0m�[32m(cached) PASSED�[0m in 11.5s
3852:  //java/test/org/openqa/selenium/netty/server:NettyServerTest    �[0m�[32m(cached) PASSED�[0m in 5.4s
3853:  //java/test/org/openqa/selenium/netty/server:NettyServerTest-spotbugs �[0m�[32m(ca...

@diemol diemol merged commit fbde7fa into trunk Jul 10, 2025
32 of 34 checks passed
@diemol diemol deleted the pinned-browser-updates branch July 10, 2025 09:30
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