Skip to content

Conversation

selenium-ci
Copy link
Member

@selenium-ci selenium-ci commented Aug 27, 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 Aug 27, 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
🔒 No security concerns identified
⚡ Recommended focus areas for review

Integrity Hash Mismatch

Verify all updated sha256 checksums match the downloaded artifacts for the new URLs to avoid fetch/build failures in CI.

        url = "https://ftp.mozilla.org/pub/firefox/releases/143.0b4/linux-x86_64/en-US/firefox-143.0b4.tar.xz",
        sha256 = "d12919259ce9e8e38ed5142e68859250513cfcc5be6b9591b30030a67bb2fc7a",
        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/143.0b4/mac/en-US/Firefox%20143.0b4.dmg",
        sha256 = "fca0e5c200755b983b6c9a1af95b45a59bb7ec92095e2ab9f81b99f5b6a9d238",
        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/95344cbf-d116-4494-8485-b96014e98901/MicrosoftEdge-139.0.3405.119.pkg",
        sha256 = "31b3ddce353180a706179d64086ed01b53cfd20a7daea45597a7e9e405fc553f",
        move = {
            "MicrosoftEdge-139.0.3405.119.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_139.0.3405.119-1_amd64.deb",
        sha256 = "e51e4e36cde5e7be2031fd9145ac9bf26444f734a88ff43858e05c7782e60c7b",
        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.microsoft.com/139.0.3405.119/edgedriver_linux64.zip",
        sha256 = "a8466733ad2508902a0b83d07594a4ae4541e0a0619abd240bf501cfc1154ad1",
        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.microsoft.com/139.0.3405.119/edgedriver_mac64.zip",
        sha256 = "3d183d0ec03f20e635649f5260de11a484eed1bc2e6b9b4a9b094662e3b2efdb",
        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/139.0.7258.154/linux64/chrome-linux64.zip",
        sha256 = "bfaade5ad550f728b25a46077c90c0703b8d1bdf48c6a74ccac29c5cd5f57b56",
        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/139.0.7258.154/mac-x64/chrome-mac-x64.zip",
        sha256 = "83d04846c500de39fa1eaca349ef636b6af597a8ed4b605acb46b866a88d503b",
        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/139.0.7258.154/linux64/chromedriver-linux64.zip",
        sha256 = "0b8e3924c2087cbe94e7bad27e7084ab908aeb53441a4e5a7f1f01c0b82a875e",
        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/139.0.7258.154/mac-x64/chromedriver-mac-x64.zip",
        sha256 = "949505cb45f015607dd2e0e56d89f4f4c8415a51dc41d97c20b60d78af6caabc",
        strip_prefix = "chromedriver-mac-x64",
Cross-Platform Coverage

Only Linux and macOS archives are updated; confirm whether Windows browser/drivers are intentionally excluded or updated elsewhere to prevent version skew across platforms.

        name = "linux_edgedriver",
        url = "https://msedgedriver.microsoft.com/139.0.3405.119/edgedriver_linux64.zip",
        sha256 = "a8466733ad2508902a0b83d07594a4ae4541e0a0619abd240bf501cfc1154ad1",
        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.microsoft.com/139.0.3405.119/edgedriver_mac64.zip",
        sha256 = "3d183d0ec03f20e635649f5260de11a484eed1bc2e6b9b4a9b094662e3b2efdb",
        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/139.0.7258.154/linux64/chrome-linux64.zip",
        sha256 = "bfaade5ad550f728b25a46077c90c0703b8d1bdf48c6a74ccac29c5cd5f57b56",
        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/139.0.7258.154/mac-x64/chrome-mac-x64.zip",
        sha256 = "83d04846c500de39fa1eaca349ef636b6af597a8ed4b605acb46b866a88d503b",
        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/139.0.7258.154/linux64/chromedriver-linux64.zip",
        sha256 = "0b8e3924c2087cbe94e7bad27e7084ab908aeb53441a4e5a7f1f01c0b82a875e",
        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/139.0.7258.154/mac-x64/chromedriver-mac-x64.zip",
        sha256 = "949505cb45f015607dd2e0e56d89f4f4c8415a51dc41d97c20b60d78af6caabc",
        strip_prefix = "chromedriver-mac-x64",

Copy link
Contributor

qodo-merge-pro bot commented Aug 27, 2025

PR Code Suggestions ✨

Explore these optional code suggestions:

CategorySuggestion                                                                                                                                    Impact
High-level
Align versions across platforms

The updates target Linux and macOS x64 but seem to omit Windows and potentially
macOS arm64, which can create cross-platform version drift and driver/browser
mismatches. Ensure all supported platforms are bumped in lockstep (e.g., Chrome
and ChromeDriver 139.0.7258.154 everywhere) to avoid CI failures and flaky
behavior. If arm64/Windows archives exist in this repo, update their URLs and
checksums in this same PR.

Examples:

common/repositories.bzl [201-224]
        name = "linux_chrome",
        url = "https://storage.googleapis.com/chrome-for-testing-public/139.0.7258.154/linux64/chrome-linux64.zip",
        sha256 = "bfaade5ad550f728b25a46077c90c0703b8d1bdf48c6a74ccac29c5cd5f57b56",
        build_file_content = """
load("@aspect_rules_js//js:defs.bzl", "js_library")
package(default_visibility = ["//visibility:public"])

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

 ... (clipped 14 lines)

Solution Walkthrough:

Before:

# common/repositories.bzl

# Chrome for linux x64
http_archive(
    name = "linux_chrome",
    url = ".../139.0.7258.154/.../chrome-linux64.zip", # updated
    ...
)

# Chrome for mac x64
http_archive(
    name = "mac_chrome",
    url = ".../139.0.7258.154/.../chrome-mac-x64.zip", # updated
    ...
)

# Hypothetical Chrome for Windows, not updated in the PR
http_archive(
    name = "windows_chrome",
    url = ".../139.0.7258.138/.../chrome-win64.zip", # old version
    ...
)

After:

# common/repositories.bzl

# Chrome for linux x64
http_archive(
    name = "linux_chrome",
    url = ".../139.0.7258.154/.../chrome-linux64.zip", # updated
    ...
)

# Chrome for mac x64
http_archive(
    name = "mac_chrome",
    url = ".../139.0.7258.154/.../chrome-mac-x64.zip", # updated
    ...
)

# Hypothetical Chrome for Windows, now updated
http_archive(
    name = "windows_chrome",
    url = ".../139.0.7258.154/.../chrome-win64.zip", # updated
    ...
)
Suggestion importance[1-10]: 8

__

Why: The suggestion correctly identifies that the PR only updates Linux and macOS x64 versions, potentially creating version drift if other platforms like Windows or macOS arm64 are also supported in common/repositories.bzl.

Medium
  • Update

@selenium-ci selenium-ci force-pushed the pinned-browser-updates branch 5 times, most recently from 7068c3a to ad283d2 Compare September 3, 2025 00:37
@selenium-ci selenium-ci force-pushed the pinned-browser-updates branch 4 times, most recently from 85a06ef to aa10fdc Compare September 7, 2025 00:42
@selenium-ci selenium-ci force-pushed the pinned-browser-updates branch from aa10fdc to eb1c82c Compare September 9, 2025 00:39
Copy link
Contributor

qodo-merge-pro bot commented Sep 9, 2025

CI Feedback 🧐

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

Action: Ruby / Local Tests (chrome, macos) / Local Tests (chrome, macos)

Failed stage: Run Bazel [❌]

Failed test name: Selenium::WebDriver::Element raises if different element receives click

Failure summary:

The action failed due to a consistently failing integration test in the Ruby Selenium WebDriver
suite for Chrome:
- Test target //rb/spec/integration/selenium/webdriver:element-chrome failed in 3
out of 3 runs.
- Specific failing example: Selenium::WebDriver::Element raises if different element
receives click.
- Assertion expected Error::ElementClickInterceptedError, but the code raised
Error::NoSuchElementError when trying to driver.find_element(id: contents).click.
- Failure stack
points to ./rb/spec/integration/selenium/webdriver/element_spec.rb:34, with WebDriver call chain
through:
- ./rb/lib/selenium/webdriver/remote/bridge.rb:493:in find_element_by'
-
./rb/lib/selenium/webdriver/common/search_context.rb:71:in find_element'
- Other tests marked as
FLAKY did not cause the final failure; the single hard failure was this element-chrome test, causing
the workflow to exit with code 3.

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

679:  �[32m[1,291 / 1,311]�[0m 2 / 29 tests;�[0m Testing //rb/spec/integration/selenium/webdriver:target_locator-chrome; 215s local, disk-cache ... (3 actions, 1 running)
680:  �[32m[1,291 / 1,311]�[0m 2 / 29 tests;�[0m Testing //rb/spec/integration/selenium/webdriver:target_locator-chrome; 245s local, disk-cache ... (3 actions, 2 running)
681:  ==================== Test output for //rb/spec/integration/selenium/webdriver:target_locator-chrome:
682:  �[35mFLAKY: �[0m//rb/spec/integration/selenium/webdriver:target_locator-chrome (Summary)
683:  /Users/runner/.bazel/execroot/_main/bazel-out/darwin_arm64-fastbuild/testlogs/rb/spec/integration/selenium/webdriver/target_locator-chrome/test_attempts/attempt_1.log
684:  Running Ruby specs:
685:  �[32mINFO: �[0mFrom Testing //rb/spec/integration/selenium/webdriver:target_locator-chrome:
686:  browser: chrome
687:  driver: chrome
688:  version: stable
689:  platform: macosx
690:  ci: github
691:  rbe: false
692:  ruby: ruby 3.2.8 (2025-03-26 revision 13f495dc2c) [arm64-darwin24]
693:  Selenium::WebDriver::TargetLocator
694:  finds the active element (FAILED - 1)
695:  switches to a frame directly
696:  switches to a frame by Element
697:  switches to parent frame
698:  switches to a window and execute a block when current window is closed
699:  switches to default content
700:  when switching windows
701:  switches to a window and back when given a block
702:  handles exceptions inside the block
703:  switches to a window without a block
704:  uses the original window if the block closes the popup
705:  #new_window
706:  switches to a new window
707:  switches to a new tab
708:  raises exception when the new window type is not recognized
709:  switches to the new window then close it when given a block
710:  does not error if switching to a new window with a block that closes window
711:  with more than two windows
712:  closes current window via block
713:  closes another window
714:  iterates over open windows when current window is not closed
715:  iterates over open windows when current window is closed
716:  alerts
717:  allows the user to accept an alert
718:  allows the user to dismiss an alert
719:  allows the user to set the value of a prompt
720:  allows the user to get the text of an alert
721:  raises when calling #text on a closed alert
722:  raises NoAlertOpenError if no alert is present
723:  unhandled alert error
724:  raises an UnexpectedAlertOpenError if an alert has not been dealt with
725:  Failures:
726:  1) Selenium::WebDriver::TargetLocator finds the active element
727:  Failure/Error: before { @original_window = driver.window_handle }
728:  Net::ReadTimeout:
...

732:  # ./rb/lib/selenium/webdriver/remote/http/common.rb:68:in `call'
733:  # ./rb/lib/selenium/webdriver/remote/bridge.rb:625:in `execute'
734:  # ./rb/lib/selenium/webdriver/remote/bridge.rb:76:in `create_session'
735:  # ./rb/lib/selenium/webdriver/common/driver.rb:325:in `block in create_bridge'
736:  # ./rb/lib/selenium/webdriver/common/driver.rb:324:in `create_bridge'
737:  # ./rb/lib/selenium/webdriver/common/driver.rb:73:in `initialize'
738:  # ./rb/lib/selenium/webdriver/chrome/driver.rb:35:in `initialize'
739:  # ./rb/lib/selenium/webdriver/common/driver.rb:47:in `new'
740:  # ./rb/lib/selenium/webdriver/common/driver.rb:47:in `for'
741:  # /Users/runner/work/selenium/selenium/rb/spec/integration/selenium/webdriver/spec_support/test_environment.rb:243:in `chrome_driver'
742:  # /Users/runner/work/selenium/selenium/rb/spec/integration/selenium/webdriver/spec_support/test_environment.rb:176:in `create_driver!'
743:  # /Users/runner/work/selenium/selenium/rb/spec/integration/selenium/webdriver/spec_support/test_environment.rb:65:in `driver_instance'
744:  # /Users/runner/work/selenium/selenium/rb/spec/integration/selenium/webdriver/spec_support/helpers.rb:25:in `driver'
745:  # ./rb/spec/integration/selenium/webdriver/target_locator_spec.rb:25:in `block (2 levels) in <module:WebDriver>'
746:  Finished in 2 minutes 19.7 seconds (files took 0.35962 seconds to load)
747:  26 examples, 1 failure
748:  Failed examples:
749:  rspec ./rb/spec/integration/selenium/webdriver/target_locator_spec.rb:42 # Selenium::WebDriver::TargetLocator finds the active element
750:  ================================================================================
751:  �[32m[1,292 / 1,311]�[0m 3 / 29 tests;�[0m [Sched] Testing //rb/spec/integration/selenium/webdriver/chrome:profile-chrome; 75s ... (3 actions, 1 running)
752:  �[32m[1,292 / 1,311]�[0m 3 / 29 tests;�[0m [Sched] Testing //rb/spec/integration/selenium/webdriver/chrome:profile-chrome; 86s ... (3 actions, 1 running)
753:  �[32m[1,293 / 1,311]�[0m 4 / 29 tests;�[0m [Sched] Testing //rb/spec/integration/selenium/webdriver/remote:driver-chrome; 12s ... (3 actions, 1 running)
754:  �[32m[1,294 / 1,311]�[0m 5 / 29 tests;�[0m [Sched] Testing //rb/spec/integration/selenium/webdriver:select-chrome ... (3 actions, 1 running)
755:  �[32m[1,295 / 1,311]�[0m 6 / 29 tests;�[0m [Sched] Testing //rb/spec/integration/selenium/webdriver/chrome:service-chrome ... (3 actions, 1 running)
756:  �[32m[1,295 / 1,311]�[0m 6 / 29 tests;�[0m [Sched] Testing //rb/spec/integration/selenium/webdriver/chrome:service-chrome; 13s ... (3 actions, 1 running)
757:  �[32m[1,295 / 1,311]�[0m 6 / 29 tests;�[0m Testing //rb/spec/integration/selenium/webdriver:select-chrome; 24s local, disk-cache ... (3 actions, 2 running)
758:  �[32m[1,296 / 1,311]�[0m 7 / 29 tests;�[0m [Sched] Testing //rb/spec/integration/selenium/webdriver:driver-chrome; 25s ... (3 actions, 1 running)
759:  �[32m[1,296 / 1,311]�[0m 7 / 29 tests;�[0m Testing //rb/spec/integration/selenium/webdriver/chrome:service-chrome; 4s local, disk-cache ... (3 actions, 2 running)
760:  �[32m[1,297 / 1,311]�[0m 8 / 29 tests;�[0m [Sched] Testing //rb/spec/integration/selenium/webdriver:error-chrome; 5s ... (3 actions, 1 running)
761:  �[32m[1,297 / 1,311]�[0m 8 / 29 tests;�[0m [Sched] Testing //rb/spec/integration/selenium/webdriver:error-chrome; 16s ... (3 actions, 1 running)
762:  �[32m[1,297 / 1,311]�[0m 8 / 29 tests;�[0m [Sched] Testing //rb/spec/integration/selenium/webdriver:error-chrome; 49s ... (3 actions, 1 running)
763:  �[32m[1,297 / 1,311]�[0m 8 / 29 tests;�[0m Testing //rb/spec/integration/selenium/webdriver:driver-chrome; 50s local, disk-cache ... (3 actions, 2 running)
764:  �[32m[1,298 / 1,311]�[0m 9 / 29 tests;�[0m [Sched] Testing //rb/spec/integration/selenium/webdriver/chrome:driver-chrome; 51s ... (3 actions, 1 running)
765:  �[32m[1,298 / 1,311]�[0m 9 / 29 tests;�[0m [Sched] Testing //rb/spec/integration/selenium/webdriver/chrome:driver-chrome; 62s ... (3 actions, 1 running)
766:  �[32m[1,298 / 1,311]�[0m 9 / 29 tests;�[0m Testing //rb/spec/integration/selenium/webdriver:error-chrome; 18s local, disk-cache ... (3 actions, 2 running)
767:  �[32m[1,299 / 1,311]�[0m 10 / 29 tests;�[0m [Sched] Testing //rb/spec/integration/selenium/webdriver:element-chrome; 18s ... (3 actions, 1 running)
...

783:  �[32m[1,302 / 1,311]�[0m 13 / 29 tests;�[0m Testing //rb/spec/integration/selenium/webdriver:element-chrome; 137s local, disk-cache ... (3 actions, 1 running)
784:  �[32m[1,302 / 1,311]�[0m 13 / 29 tests;�[0m Testing //rb/spec/integration/selenium/webdriver:element-chrome; 158s local, disk-cache ... (3 actions, 2 running)
785:  �[31m�[1mFAIL: �[0m//rb/spec/integration/selenium/webdriver:element-chrome (see /Users/runner/.bazel/execroot/_main/bazel-out/darwin_arm64-fastbuild/testlogs/rb/spec/integration/selenium/webdriver/element-chrome/test_attempts/attempt_2.log)
786:  �[32m[1,302 / 1,311]�[0m 13 / 29 tests;�[0m Testing //rb/spec/integration/selenium/webdriver:element-chrome; 160s local, disk-cache ... (3 actions, 2 running)
787:  �[32m[1,302 / 1,311]�[0m 13 / 29 tests;�[0m Testing //rb/spec/integration/selenium/webdriver:element-chrome; 170s local, disk-cache ... (3 actions, 2 running)
788:  �[32m[1,302 / 1,311]�[0m 13 / 29 tests;�[0m Testing //rb/spec/integration/selenium/webdriver:element-chrome; 178s local, disk-cache ... (3 actions running)
789:  �[32m[1,303 / 1,311]�[0m 14 / 29 tests;�[0m Testing //rb/spec/integration/selenium/webdriver:element-chrome; 179s local, disk-cache ... (3 actions, 2 running)
790:  �[32m[1,303 / 1,311]�[0m 14 / 29 tests;�[0m Testing //rb/spec/integration/selenium/webdriver:element-chrome; 190s local, disk-cache ... (3 actions, 2 running)
791:  �[32m[1,303 / 1,311]�[0m 14 / 29 tests;�[0m Testing //rb/spec/integration/selenium/webdriver:element-chrome; 223s local, disk-cache ... (3 actions, 2 running)
792:  �[32m[1,303 / 1,311]�[0m 14 / 29 tests;�[0m Testing //rb/spec/integration/selenium/webdriver:element-chrome; 228s local, disk-cache ... (3 actions, 2 running)
793:  �[32m[1,304 / 1,311]�[0m 15 / 29 tests;�[0m Testing //rb/spec/integration/selenium/webdriver:element-chrome; 229s local, disk-cache ... (3 actions, 1 running)
794:  �[32m[1,304 / 1,311]�[0m 15 / 29 tests;�[0m Testing //rb/spec/integration/selenium/webdriver:element-chrome; 240s local, disk-cache ... (3 actions, 1 running)
795:  �[32m[1,304 / 1,311]�[0m 15 / 29 tests;�[0m Testing //rb/spec/integration/selenium/webdriver:element-chrome; 266s local, disk-cache ... (3 actions, 2 running)
796:  �[31m�[1mFAIL: �[0m//rb/spec/integration/selenium/webdriver:element-chrome (see /Users/runner/.bazel/execroot/_main/bazel-out/darwin_arm64-fastbuild/testlogs/rb/spec/integration/selenium/webdriver/element-chrome/test.log)
797:  ==================== Test output for //rb/spec/integration/selenium/webdriver:element-chrome:
798:  �[31m�[1mFAILED: �[0m//rb/spec/integration/selenium/webdriver:element-chrome (Summary)
799:  /Users/runner/.bazel/execroot/_main/bazel-out/darwin_arm64-fastbuild/testlogs/rb/spec/integration/selenium/webdriver/element-chrome/test.log
800:  Running Ruby specs:
801:  /Users/runner/.bazel/execroot/_main/bazel-out/darwin_arm64-fastbuild/testlogs/rb/spec/integration/selenium/webdriver/element-chrome/test_attempts/attempt_1.log
802:  /Users/runner/.bazel/execroot/_main/bazel-out/darwin_arm64-fastbuild/testlogs/rb/spec/integration/selenium/webdriver/element-chrome/test_attempts/attempt_2.log
803:  browser: chrome
804:  �[32mINFO: �[0mFrom Testing //rb/spec/integration/selenium/webdriver:element-chrome:
805:  driver: chrome
806:  version: stable
807:  platform: macosx
808:  ci: github
809:  rbe: false
810:  ruby: ruby 3.2.8 (2025-03-26 revision 13f495dc2c) [arm64-darwin24]
811:  Selenium::WebDriver::Element
812:  clicks
813:  raises if different element receives click (FAILED - 1)
814:  raises if element is partially covered
...

826:  gets text
827:  gets displayed
828:  drags and drop
829:  gets css property
830:  knows when two elements are equal
831:  knows when element arrays are equal
832:  knows when two elements are not equal
833:  returns the same #hash for equal elements when found by Driver#find_element
834:  returns the same #hash for equal elements when found by Driver#find_elements
835:  #submit
836:  valid submit button
837:  any input element in form
838:  any element in form
839:  button with id submit
840:  button with name submit
841:  errors with button outside form
842:  properties and attributes
...

899:  property attribute name difference with property naming
900:  #dom_attribute returns nil
901:  #property returns property value
902:  #attribute returns property value
903:  property attribute value difference
904:  #dom_attribute returns attribute value
905:  #property returns property value
906:  #attribute returns property value
907:  size and location
908:  gets current location
909:  gets location once scrolled into view
910:  gets size
911:  gets rect
912:  Failures:
913:  1) Selenium::WebDriver::Element raises if different element receives click
914:  Failure/Error: expect { driver.find_element(id: 'contents').click }.to raise_error(Error::ElementClickInterceptedError)
915:  expected Selenium::WebDriver::Error::ElementClickInterceptedError, got #<Selenium::WebDriver::Error::NoSuchElementError:"no such element: Unable to locate element: {\"metho... https://www.selenium.dev/documentation/webdriver/troubleshooting/errors#no-such-element-exception"> with backtrace:
916:  # ./rb/lib/selenium/webdriver/remote/response.rb:63:in `add_cause'
917:  # ./rb/lib/selenium/webdriver/remote/response.rb:41:in `error'
918:  # ./rb/lib/selenium/webdriver/remote/response.rb:52:in `assert_ok'
919:  # ./rb/lib/selenium/webdriver/remote/response.rb:34:in `initialize'
920:  # ./rb/lib/selenium/webdriver/remote/http/common.rb:103:in `new'
921:  # ./rb/lib/selenium/webdriver/remote/http/common.rb:103:in `create_response'
922:  # ./rb/lib/selenium/webdriver/remote/http/default.rb:103:in `request'
923:  # ./rb/lib/selenium/webdriver/remote/http/common.rb:68:in `call'
924:  # ./rb/lib/selenium/webdriver/remote/bridge.rb:625:in `execute'
925:  # ./rb/lib/selenium/webdriver/remote/bridge.rb:493:in `find_element_by'
926:  # ./rb/lib/selenium/webdriver/common/search_context.rb:71:in `find_element'
927:  # ./rb/spec/integration/selenium/webdriver/element_spec.rb:34:in `block (3 levels) in <module:WebDriver>'
928:  # ./rb/spec/integration/selenium/webdriver/element_spec.rb:34:in `block (2 levels) in <module:WebDriver>'
929:  # ./rb/spec/integration/selenium/webdriver/element_spec.rb:34:in `block (2 levels) in <module:WebDriver>'
930:  Finished in 36.01 seconds (files took 0.61857 seconds to load)
931:  83 examples, 1 failure
932:  Failed examples:
933:  rspec ./rb/spec/integration/selenium/webdriver/element_spec.rb:32 # Selenium::WebDriver::Element raises if different element receives click
934:  ================================================================================
935:  ==================== Test output for //rb/spec/integration/selenium/webdriver:element-chrome:
936:  Running Ruby specs:
937:  browser: chrome
938:  driver: chrome
939:  version: stable
940:  platform: macosx
941:  ci: github
942:  rbe: false
943:  ruby: ruby 3.2.8 (2025-03-26 revision 13f495dc2c) [arm64-darwin24]
944:  Selenium::WebDriver::Element
945:  clicks
946:  raises if different element receives click (FAILED - 1)
947:  raises if element is partially covered
...

959:  gets text
960:  gets displayed
961:  drags and drop
962:  gets css property
963:  knows when two elements are equal
964:  knows when element arrays are equal
965:  knows when two elements are not equal
966:  returns the same #hash for equal elements when found by Driver#find_element
967:  returns the same #hash for equal elements when found by Driver#find_elements
968:  #submit
969:  valid submit button
970:  any input element in form
971:  any element in form
972:  button with id submit
973:  button with name submit
974:  errors with button outside form
975:  properties and attributes
...

1032:  property attribute name difference with property naming
1033:  #dom_attribute returns nil
1034:  #property returns property value
1035:  #attribute returns property value
1036:  property attribute value difference
1037:  #dom_attribute returns attribute value
1038:  #property returns property value
1039:  #attribute returns property value
1040:  size and location
1041:  gets current location
1042:  gets location once scrolled into view
1043:  gets size
1044:  gets rect
1045:  Failures:
1046:  1) Selenium::WebDriver::Element raises if different element receives click
1047:  Failure/Error: expect { driver.find_element(id: 'contents').click }.to raise_error(Error::ElementClickInterceptedError)
1048:  expected Selenium::WebDriver::Error::ElementClickInterceptedError, got #<Selenium::WebDriver::Error::NoSuchElementError:"no such element: Unable to locate element: {\"metho... https://www.selenium.dev/documentation/webdriver/troubleshooting/errors#no-such-element-exception"> with backtrace:
1049:  # ./rb/lib/selenium/webdriver/remote/response.rb:63:in `add_cause'
1050:  # ./rb/lib/selenium/webdriver/remote/response.rb:41:in `error'
1051:  # ./rb/lib/selenium/webdriver/remote/response.rb:52:in `assert_ok'
1052:  # ./rb/lib/selenium/webdriver/remote/response.rb:34:in `initialize'
1053:  # ./rb/lib/selenium/webdriver/remote/http/common.rb:103:in `new'
1054:  # ./rb/lib/selenium/webdriver/remote/http/common.rb:103:in `create_response'
1055:  # ./rb/lib/selenium/webdriver/remote/http/default.rb:103:in `request'
1056:  # ./rb/lib/selenium/webdriver/remote/http/common.rb:68:in `call'
1057:  # ./rb/lib/selenium/webdriver/remote/bridge.rb:625:in `execute'
1058:  # ./rb/lib/selenium/webdriver/remote/bridge.rb:493:in `find_element_by'
1059:  # ./rb/lib/selenium/webdriver/common/search_context.rb:71:in `find_element'
1060:  # ./rb/spec/integration/selenium/webdriver/element_spec.rb:34:in `block (3 levels) in <module:WebDriver>'
1061:  # ./rb/spec/integration/selenium/webdriver/element_spec.rb:34:in `block (2 levels) in <module:WebDriver>'
1062:  # ./rb/spec/integration/selenium/webdriver/element_spec.rb:34:in `block (2 levels) in <module:WebDriver>'
1063:  Finished in 32.43 seconds (files took 0.22687 seconds to load)
1064:  83 examples, 1 failure
1065:  Failed examples:
1066:  rspec ./rb/spec/integration/selenium/webdriver/element_spec.rb:32 # Selenium::WebDriver::Element raises if different element receives click
1067:  ================================================================================
1068:  ==================== Test output for //rb/spec/integration/selenium/webdriver:element-chrome:
1069:  Running Ruby specs:
1070:  browser: chrome
1071:  driver: chrome
1072:  version: stable
1073:  platform: macosx
1074:  ci: github
1075:  rbe: false
1076:  ruby: ruby 3.2.8 (2025-03-26 revision 13f495dc2c) [arm64-darwin24]
1077:  Selenium::WebDriver::Element
1078:  clicks
1079:  raises if different element receives click (FAILED - 1)
1080:  raises if element is partially covered
...

1092:  gets text
1093:  gets displayed
1094:  drags and drop
1095:  gets css property
1096:  knows when two elements are equal
1097:  knows when element arrays are equal
1098:  knows when two elements are not equal
1099:  returns the same #hash for equal elements when found by Driver#find_element
1100:  returns the same #hash for equal elements when found by Driver#find_elements
1101:  #submit
1102:  valid submit button
1103:  any input element in form
1104:  any element in form
1105:  button with id submit
1106:  button with name submit
1107:  errors with button outside form
1108:  properties and attributes
...

1165:  property attribute name difference with property naming
1166:  #dom_attribute returns nil
1167:  #property returns property value
1168:  #attribute returns property value
1169:  property attribute value difference
1170:  #dom_attribute returns attribute value
1171:  #property returns property value
1172:  #attribute returns property value
1173:  size and location
1174:  gets current location
1175:  gets location once scrolled into view
1176:  gets size
1177:  gets rect
1178:  Failures:
1179:  1) Selenium::WebDriver::Element raises if different element receives click
1180:  Failure/Error: expect { driver.find_element(id: 'contents').click }.to raise_error(Error::ElementClickInterceptedError)
1181:  expected Selenium::WebDriver::Error::ElementClickInterceptedError, got #<Selenium::WebDriver::Error::NoSuchElementError:"no such element: Unable to locate element: {\"metho... https://www.selenium.dev/documentation/webdriver/troubleshooting/errors#no-such-element-exception"> with backtrace:
1182:  # ./rb/lib/selenium/webdriver/remote/response.rb:63:in `add_cause'
1183:  # ./rb/lib/selenium/webdriver/remote/response.rb:41:in `error'
1184:  # ./rb/lib/selenium/webdriver/remote/response.rb:52:in `assert_ok'
1185:  # ./rb/lib/selenium/webdriver/remote/response.rb:34:in `initialize'
1186:  # ./rb/lib/selenium/webdriver/remote/http/common.rb:103:in `new'
1187:  # ./rb/lib/selenium/webdriver/remote/http/common.rb:103:in `create_response'
1188:  # ./rb/lib/selenium/webdriver/remote/http/default.rb:103:in `request'
1189:  # ./rb/lib/selenium/webdriver/remote/http/common.rb:68:in `call'
1190:  # ./rb/lib/selenium/webdriver/remote/bridge.rb:625:in `execute'
1191:  # ./rb/lib/selenium/webdriver/remote/bridge.rb:493:in `find_element_by'
1192:  # ./rb/lib/selenium/webdriver/common/search_context.rb:71:in `find_element'
1193:  # ./rb/spec/integration/selenium/webdriver/element_spec.rb:34:in `block (3 levels) in <module:WebDriver>'
1194:  # ./rb/spec/integration/selenium/webdriver/element_spec.rb:34:in `block (2 levels) in <module:WebDriver>'
1195:  # ./rb/spec/integration/selenium/webdriver/element_spec.rb:34:in `block (2 levels) in <module:WebDriver>'
1196:  Finished in 37.54 seconds (files took 0.17892 seconds to load)
1197:  83 examples, 1 failure
1198:  Failed examples:
1199:  rspec ./rb/spec/integration/selenium/webdriver/element_spec.rb:32 # Selenium::WebDriver::Element raises if different element receives click
1200:  ================================================================================
1201:  �[32m[1,305 / 1,311]�[0m 16 / 29 tests, �[31m�[1m1 failed�[0m;�[0m [Sched] Testing //rb/spec/integration/selenium/webdriver/remote:element-chrome; 39s ... (3 actions, 1 running)
1202:  �[32m[1,305 / 1,311]�[0m 16 / 29 tests, �[31m�[1m1 failed�[0m;�[0m [Sched] Testing //rb/spec/integration/selenium/webdriver/remote:element-chrome; 50s ... (3 actions, 1 running)
1203:  �[32m[1,305 / 1,311]�[0m 16 / 29 tests, �[31m�[1m1 failed�[0m;�[0m Testing //rb/spec/integration/selenium/webdriver:navigation-chrome; 13s local, disk-cache ... (3 actions, 2 running)
1204:  �[32m[1,306 / 1,311]�[0m 17 / 29 tests, �[31m�[1m1 failed�[0m;�[0m [Sched] Testing //rb/spec/integration/selenium/webdriver:manager-chrome; 14s ... (3 actions, 1 running)
1205:  �[32m[1,306 / 1,311]�[0m 17 / 29 tests, �[31m�[1m1 failed�[0m;�[0m Testing //rb/spec/integration/selenium/webdriver/remote:element-chrome; 8s local, disk-cache ... (3 actions, 2 running)
1206:  �[32m[1,307 / 1,311]�[0m 18 / 29 tests, �[31m�[1m1 failed�[0m;�[0m [Sched] Testing //rb/spec/integration/selenium/webdriver:window-chrome; 8s ... (3 actions, 1 running)
1207:  �[32m[1,307 / 1,311]�[0m 18 / 29 tests, �[31m�[1m1 failed�[0m;�[0m Testing //rb/spec/integration/selenium/webdriver:manager-chrome; 11s local, disk-cache ... (3 actions, 2 running)
1208:  �[32m[1,308 / 1,311]�[0m 19 / 29 tests, �[31m�[1m1 failed�[0m;�[0m [Sched] Testing //rb/spec/integration/selenium/webdriver:action_builder-chrome; 12s ... (3 actions, 1 running)
1209:  �[32m[1,308 / 1,311]�[0m 19 / 29 tests, �[31m�[1m1 failed�[0m;�[0m [Sched] Testing //rb/spec/integration/selenium/webdriver:action_builder-chrome; 23s ... (3 actions, 1 running)
1210:  �[32m[1,308 / 1,311]�[0m 19 / 29 tests, �[31m�[1m1 failed�[0m;�[0m Testing //rb/spec/integration/selenium/webdriver:window-chrome; 19s local, disk-cache ... (3 actions, 2 running)
1211:  �[31m�[1mFAIL: �[0m//rb/spec/integration/selenium/webdriver:window-chrome (see /Users/runner/.bazel/execroot/_main/bazel-out/darwin_arm64-fastbuild/testlogs/rb/spec/integration/selenium/webdriver/window-chrome/test_attempts/attempt_1.log)
1212:  �[32m[1,308 / 1,311]�[0m 19 / 29 tests, �[31m�[1m1 failed�[0m;�[0m Testing //rb/spec/integration/selenium/webdriver:window-chrome; 21s local, disk-cache ... (3 actions, 2 running)
1213:  �[32m[1,308 / 1,311]�[0m 19 / 29 tests, �[31m�[1m1 failed�[0m;�[0m Testing //rb/spec/integration/selenium/webdriver:window-chrome; 44s local, disk-cache ... (3 actions, 2 running)
1214:  �[32m[1,308 / 1,311]�[0m 19 / 29 tests, �[31m�[1m1 failed�[0m;�[0m Testing //rb/spec/integration/selenium/webdriver:window-chrome; 54s local, disk-cache ... (3 actions running)
1215:  �[32m[1,309 / 1,311]�[0m 20 / 29 tests, �[31m�[1m1 failed�[0m;�[0m Testing //rb/spec/integration/selenium/webdriver:window-chrome; 55s local, disk-cache ... (2 actions running)
1216:  �[32m[1,309 / 1,311]�[0m 20 / 29 tests, �[31m�[1m1 failed�[0m;�[0m Testing //rb/spec/integration/selenium/webdriver:window-chrome; 64s local, disk-cache ... (2 actions running)
1217:  �[32m[1,310 / 1,311]�[0m 21 / 29 tests, �[31m�[1m1 failed�[0m;�[0m Testing //rb/spec/integration/selenium/webdriver:window-chrome; 66s local, disk-cache
1218:  �[32m[1,310 / 1,311]�[0m 21 / 29 tests, �[31m�[1m1 failed�[0m;�[0m Testing //rb/spec/integration/selenium/webdriver:window-chrome; 77s local, disk-cache
1219:  �[32m[1,310 / 1,311]�[0m 21 / 29 tests, �[31m�[1m1 failed�[0m;�[0m Testing //rb/spec/integration/selenium/webdriver:window-chrome; 83s local, disk-cache
1220:  �[31m�[1mFAIL: �[0m//rb/spec/integration/selenium/webdriver:window-chrome (see /Users/runner/.bazel/execroot/_main/bazel-out/darwin_arm64-fastbuild/testlogs/rb/spec/integration/selenium/webdriver/window-chrome/test_attempts/attempt_2.log)
1221:  �[32m[1,310 / 1,311]�[0m 21 / 29 tests, �[31m�[1m1 failed�[0m;�[0m Testing //rb/spec/integration/selenium/webdriver:window-chrome; 84s local, disk-cache
1222:  �[32m[1,310 / 1,311]�[0m 21 / 29 tests, �[31m�[1m1 failed�[0m;�[0m Testing //rb/spec/integration/selenium/webdriver:window-chrome; 101s local, disk-cache
1223:  �[35mFLAKY: �[0m//rb/spec/integration/selenium/webdriver:window-chrome (Summary)
...

1228:  Running Ruby specs:
1229:  browser: chrome
1230:  driver: chrome
1231:  version: stable
1232:  platform: macosx
1233:  ci: github
1234:  rbe: false
1235:  ruby: ruby 3.2.8 (2025-03-26 revision 13f495dc2c) [arm64-darwin24]
1236:  Selenium::WebDriver::Window
1237:  gets the size of the current window
1238:  sets the size of the current window
1239:  gets the position of the current window
1240:  sets the position of the current window
1241:  gets the rect of the current window
1242:  sets the rect of the current window
1243:  can maximize the current window (FAILED - 1)
1244:  can make window full screen
1245:  can minimize the window (PENDING: Test skipped because it is unreliable in this configuration; Guarded by {:browser=>:chrome, :platform=>[:macosx, :linux], :ci=>:github, :reason=>"No reason given"};)
1246:  Pending: (Failures listed here are expected and do not affect your suite's status)
1247:  1) Selenium::WebDriver::Window can minimize the window
1248:  # Test skipped because it is unreliable in this configuration; Guarded by {:browser=>:chrome, :platform=>[:macosx, :linux], :ci=>:github, :reason=>"No reason given"};
1249:  # ./rb/spec/integration/selenium/webdriver/window_spec.rb:127
1250:  Failures:
1251:  1) Selenium::WebDriver::Window can maximize the current window
1252:  Failure/Error: expect(new_size.height).to be > old_size.height
1253:  expected: > 700
1254:  got:   684
1255:  # ./rb/spec/integration/selenium/webdriver/window_spec.rb:113:in `block (2 levels) in <module:WebDriver>'
1256:  Finished in 18.76 seconds (files took 0.19029 seconds to load)
1257:  9 examples, 1 failure, 1 pending
1258:  Failed examples:
1259:  rspec ./rb/spec/integration/selenium/webdriver/window_spec.rb:105 # Selenium::WebDriver::Window can maximize the current window
...

1262:  Running Ruby specs:
1263:  browser: chrome
1264:  driver: chrome
1265:  version: stable
1266:  platform: macosx
1267:  ci: github
1268:  rbe: false
1269:  ruby: ruby 3.2.8 (2025-03-26 revision 13f495dc2c) [arm64-darwin24]
1270:  Selenium::WebDriver::Window
1271:  gets the size of the current window
1272:  sets the size of the current window
1273:  gets the position of the current window
1274:  sets the position of the current window
1275:  gets the rect of the current window
1276:  sets the rect of the current window
1277:  can maximize the current window (FAILED - 1)
1278:  can make window full screen
1279:  can minimize the window (PENDING: Test skipped because it is unreliable in this configuration; Guarded by {:browser=>:chrome, :platform=>[:macosx, :linux], :ci=>:github, :reason=>"No reason given"};)
1280:  Pending: (Failures listed here are expected and do not affect your suite's status)
1281:  1) Selenium::WebDriver::Window can minimize the window
1282:  # Test skipped because it is unreliable in this configuration; Guarded by {:browser=>:chrome, :platform=>[:macosx, :linux], :ci=>:github, :reason=>"No reason given"};
1283:  # ./rb/spec/integration/selenium/webdriver/window_spec.rb:127
1284:  Failures:
1285:  1) Selenium::WebDriver::Window can maximize the current window
1286:  Failure/Error: expect(new_size.height).to be > old_size.height
1287:  expected: > 700
1288:  got:   684
1289:  # ./rb/spec/integration/selenium/webdriver/window_spec.rb:113:in `block (2 levels) in <module:WebDriver>'
1290:  Finished in 17.58 seconds (files took 0.20171 seconds to load)
1291:  9 examples, 1 failure, 1 pending
1292:  Failed examples:
1293:  rspec ./rb/spec/integration/selenium/webdriver/window_spec.rb:105 # Selenium::WebDriver::Window can maximize the current window
1294:  ================================================================================
1295:  �[32m[1,311 / 1,312]�[0m 22 / 29 tests, �[31m�[1m1 failed�[0m;�[0m Testing //rb/spec/integration/selenium/webdriver:bidi-chrome; 0s local, disk-cache
1296:  �[32m[1,312 / 1,313]�[0m 23 / 29 tests, �[31m�[1m1 failed�[0m;�[0m Testing //rb/spec/integration/selenium/webdriver/bidi:network-chrome; 0s local, disk-cache
1297:  �[32m[1,313 / 1,314]�[0m 24 / 29 tests, �[31m�[1m1 failed�[0m;�[0m Testing //rb/spec/integration/selenium/webdriver/bidi:browser-chrome; 0s local, disk-cache
1298:  �[32m[1,314 / 1,315]�[0m 25 / 29 tests, �[31m�[1m1 failed�[0m;�[0m Testing //rb/spec/integration/selenium/webdriver/bidi:log_inspector-chrome; 0s local, disk-cache
1299:  �[32m[1,315 / 1,316]�[0m 26 / 29 tests, �[31m�[1m1 failed�[0m;�[0m Testing //rb/spec/integration/selenium/webdriver:devtools-chrome; 1s local, disk-cache
1300:  �[32m[1,315 / 1,316]�[0m 26 / 29 tests, �[31m�[1m1 failed�[0m;�[0m Testing //rb/spec/integration/selenium/webdriver:devtools-chrome; 227s local, disk-cache
1301:  �[32m[1,316 / 1,317]�[0m 27 / 29 tests, �[31m�[1m1 failed�[0m;�[0m Testing //rb/spec/integration/selenium/webdriver/bidi:browsing_context-chrome; 0s local, disk-cache
1302:  �[32m[1,317 / 1,318]�[0m 28 / 29 tests, �[31m�[1m1 failed�[0m;�[0m Testing //rb/spec/integration/selenium/webdriver/bidi:script-chrome; 0s disk-cache
1303:  �[32m[1,317 / 1,318]�[0m 28 / 29 tests, �[31m�[1m1 failed�[0m;�[0m Testing //rb/spec/integration/selenium/webdriver/bidi:script-chrome; 0s local, disk-cache
1304:  �[32mINFO: �[0mFound 29 test targets...
1305:  �[32mINFO: �[0mElapsed time: 1207.190s, Critical Path: 490.16s
1306:  �[32mINFO: �[0m1318 processes: 567 disk cache hit, 672 internal, 12 darwin-sandbox, 67 local.
1307:  �[32mINFO: �[0mBuild completed, 1 test FAILED, 1318 total actions
1308:  //rb/spec/integration/selenium/webdriver:action_builder-chrome           �[0m�[32mPASSED�[0m in 34.5s
1309:  //rb/spec/integration/selenium/webdriver:bidi-chrome                     �[0m�[32mPASSED�[0m in 0.7s
1310:  //rb/spec/integration/selenium/webdriver:devtools-chrome                 �[0m�[32mPASSED�[0m in 227.1s
1311:  //rb/spec/integration/selenium/webdriver:driver-chrome                   �[0m�[32mPASSED�[0m in 50.7s
1312:  //rb/spec/integration/selenium/webdriver:error-chrome                    �[0m�[32mPASSED�[0m in 18.7s
1313:  //rb/spec/integration/selenium/webdriver:fedcm-chrome                    �[0m�[32mPASSED�[0m in 76.5s
...

1319:  //rb/spec/integration/selenium/webdriver:shadow_root-chrome              �[0m�[32mPASSED�[0m in 50.2s
1320:  //rb/spec/integration/selenium/webdriver:takes_screenshot-chrome         �[0m�[32mPASSED�[0m in 12.9s
1321:  //rb/spec/integration/selenium/webdriver:timeout-chrome                  �[0m�[32mPASSED�[0m in 19.7s
1322:  //rb/spec/integration/selenium/webdriver:virtual_authenticator-chrome    �[0m�[32mPASSED�[0m in 10.6s
1323:  //rb/spec/integration/selenium/webdriver/bidi:browser-chrome             �[0m�[32mPASSED�[0m in 0.6s
1324:  //rb/spec/integration/selenium/webdriver/bidi:browsing_context-chrome    �[0m�[32mPASSED�[0m in 1.3s
1325:  //rb/spec/integration/selenium/webdriver/bidi:log_inspector-chrome       �[0m�[32mPASSED�[0m in 0.6s
1326:  //rb/spec/integration/selenium/webdriver/bidi:network-chrome             �[0m�[32mPASSED�[0m in 0.6s
1327:  //rb/spec/integration/selenium/webdriver/bidi:script-chrome              �[0m�[32mPASSED�[0m in 0.8s
1328:  //rb/spec/integration/selenium/webdriver/chrome:driver-chrome            �[0m�[32mPASSED�[0m in 114.3s
1329:  //rb/spec/integration/selenium/webdriver/chrome:options-chrome           �[0m�[32mPASSED�[0m in 27.8s
1330:  //rb/spec/integration/selenium/webdriver/chrome:profile-chrome           �[0m�[32mPASSED�[0m in 1.2s
1331:  //rb/spec/integration/selenium/webdriver/chrome:service-chrome           �[0m�[32mPASSED�[0m in 4.3s
1332:  //rb/spec/integration/selenium/webdriver/remote:driver-chrome            �[0m�[32mPASSED�[0m in 1.0s
1333:  //rb/spec/integration/selenium/webdriver/remote:element-chrome           �[0m�[32mPASSED�[0m in 8.1s
1334:  //rb/spec/integration/selenium/webdriver:target_locator-chrome            �[0m�[35mFLAKY�[0m, failed in 1 out of 2 in 141.0s
1335:  Stats over 2 runs: max = 141.0s, min = 75.3s, avg = 108.2s, dev = 32.9s
1336:  /Users/runner/.bazel/execroot/_main/bazel-out/darwin_arm64-fastbuild/testlogs/rb/spec/integration/selenium/webdriver/target_locator-chrome/test_attempts/attempt_1.log
1337:  //rb/spec/integration/selenium/webdriver:window-chrome                    �[0m�[35mFLAKY�[0m, failed in 2 out of 3 in 19.8s
1338:  Stats over 3 runs: max = 19.8s, min = 17.2s, avg = 18.5s, dev = 1.1s
1339:  /Users/runner/.bazel/execroot/_main/bazel-out/darwin_arm64-fastbuild/testlogs/rb/spec/integration/selenium/webdriver/window-chrome/test_attempts/attempt_1.log
1340:  /Users/runner/.bazel/execroot/_main/bazel-out/darwin_arm64-fastbuild/testlogs/rb/spec/integration/selenium/webdriver/window-chrome/test_attempts/attempt_2.log
1341:  //rb/spec/integration/selenium/webdriver:element-chrome                  �[0m�[31m�[1mFAILED�[0m in 3 out of 3 in 38.6s
1342:  Stats over 3 runs: max = 38.6s, min = 33.6s, avg = 36.9s, dev = 2.3s
1343:  /Users/runner/.bazel/execroot/_main/bazel-out/darwin_arm64-fastbuild/testlogs/rb/spec/integration/selenium/webdriver/element-chrome/test.log
1344:  /Users/runner/.bazel/execroot/_main/bazel-out/darwin_arm64-fastbuild/testlogs/rb/spec/integration/selenium/webdriver/element-chrome/test_attempts/attempt_1.log
1345:  /Users/runner/.bazel/execroot/_main/bazel-out/darwin_arm64-fastbuild/testlogs/rb/spec/integration/selenium/webdriver/element-chrome/test_attempts/attempt_2.log
1346:  Executed 29 out of 29 tests: 28 tests pass and �[0m�[31m�[1m1 fails locally�[0m.
1347:  There were tests whose specified size is too big. Use the --test_verbose_timeout_warnings command line option to see which ones these are.
1348:  �[0m
1349:  ##[error]Process completed with exit code 3.
1350:  Post job cleanup.

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 Review effort 2/5
Projects
None yet
Development

Successfully merging this pull request may close these issues.

1 participant