Skip to content

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

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

Open
wants to merge 1 commit into
base: trunk
Choose a base branch
from

Conversation

selenium-ci
Copy link
Member

@selenium-ci selenium-ci commented Jul 17, 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 17, 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

Version Consistency

Verify that all browser and driver version updates are consistent and properly paired. Chrome stable updated to 138.0.7204.157, Chrome beta to 139.0.7258.42, and Edge to 138.0.3351.95. Ensure corresponding drivers match these versions.

        url = "https://msedge.sf.dl.delivery.mp.microsoft.com/filestreamingservice/files/05828c72-bda8-4f2a-847a-58e65bc373b1/MicrosoftEdge-138.0.3351.95.pkg",
        sha256 = "f091c2793eba71ead779b01c9c58d15c867b8b8493dfe871c0f814a8d4b4eda5",
        move = {
            "MicrosoftEdge-138.0.3351.95.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.95-1_amd64.deb",
        sha256 = "4394dd9aa2e54484d60d167051332238e8d7426d3d0aaf9b2ba3795cd7b0e91f",
        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/138.0.3351.83/edgedriver_linux64.zip",
        sha256 = "ed7d3651a5087bf7cdd383c244de29fa9e6a347473ff53c0172583380c5f7256",
        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/138.0.3351.95/edgedriver_mac64.zip",
        sha256 = "981d9d6058d9ec1e83b6dcc691b5c9b07e1d1a65c84e11a7d47a6c0739c52c57",
        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.157/linux64/chrome-linux64.zip",
        sha256 = "9890b4d7a620304ab39719013d0d7664b1c632f544887bbfd87d6b2b3e3b4a4c",
        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.157/mac-x64/chrome-mac-x64.zip",
        sha256 = "bdbf356818a6cb23e987fac59c2c958f4fd8aa4c3030b4eb73c775e68a73eaac",
        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.157/linux64/chromedriver-linux64.zip",
        sha256 = "3d9ac5ef6af43c4aa802f99950631e130ecce2c7a168600cb133bba83d20bd19",
        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.157/mac-x64/chromedriver-mac-x64.zip",
        sha256 = "64a34403c35d0b7fe10207ff25b37b9abea8044bc2d603fbc1c8c99b8ac257a4",
        strip_prefix = "chromedriver-mac-x64",
        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 = "linux_beta_chrome",
        url = "https://storage.googleapis.com/chrome-for-testing-public/139.0.7258.42/linux64/chrome-linux64.zip",
        sha256 = "6194de3dd4d1d9824508bd41e30dc852ad0d0c405f89977a27379201c7260df1",
        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_beta_chrome",
        url = "https://storage.googleapis.com/chrome-for-testing-public/139.0.7258.42/mac-x64/chrome-mac-x64.zip",
        sha256 = "966779136e30e5e609c561286f06a0e31bcc076bf8416d9874ae1d508eb1fd81",
        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_beta_chromedriver",
        url = "https://storage.googleapis.com/chrome-for-testing-public/139.0.7258.42/linux64/chromedriver-linux64.zip",
        sha256 = "5e68a3473d44cb7edf28fb3a8d2c3e35ec4ff0ba03f289064b7c74fbc67f7b8c",
        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_beta_chromedriver",
        url = "https://storage.googleapis.com/chrome-for-testing-public/139.0.7258.42/mac-x64/chromedriver-mac-x64.zip",
        sha256 = "6a2507dedda1f760a45f02923db171aafff9bdb43de2fb6a026b6ea5a7ab2c21",
SHA256 Validation

All SHA256 checksums have been updated for the new browser and driver versions. These should be validated against the actual downloaded files to ensure integrity and prevent potential security issues from corrupted downloads.

        sha256 = "f091c2793eba71ead779b01c9c58d15c867b8b8493dfe871c0f814a8d4b4eda5",
        move = {
            "MicrosoftEdge-138.0.3351.95.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.95-1_amd64.deb",
        sha256 = "4394dd9aa2e54484d60d167051332238e8d7426d3d0aaf9b2ba3795cd7b0e91f",
        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/138.0.3351.83/edgedriver_linux64.zip",
        sha256 = "ed7d3651a5087bf7cdd383c244de29fa9e6a347473ff53c0172583380c5f7256",
        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/138.0.3351.95/edgedriver_mac64.zip",
        sha256 = "981d9d6058d9ec1e83b6dcc691b5c9b07e1d1a65c84e11a7d47a6c0739c52c57",
        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.157/linux64/chrome-linux64.zip",
        sha256 = "9890b4d7a620304ab39719013d0d7664b1c632f544887bbfd87d6b2b3e3b4a4c",
        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.157/mac-x64/chrome-mac-x64.zip",
        sha256 = "bdbf356818a6cb23e987fac59c2c958f4fd8aa4c3030b4eb73c775e68a73eaac",
        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.157/linux64/chromedriver-linux64.zip",
        sha256 = "3d9ac5ef6af43c4aa802f99950631e130ecce2c7a168600cb133bba83d20bd19",
        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.157/mac-x64/chromedriver-mac-x64.zip",
        sha256 = "64a34403c35d0b7fe10207ff25b37b9abea8044bc2d603fbc1c8c99b8ac257a4",
        strip_prefix = "chromedriver-mac-x64",
        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 = "linux_beta_chrome",
        url = "https://storage.googleapis.com/chrome-for-testing-public/139.0.7258.42/linux64/chrome-linux64.zip",
        sha256 = "6194de3dd4d1d9824508bd41e30dc852ad0d0c405f89977a27379201c7260df1",
        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_beta_chrome",
        url = "https://storage.googleapis.com/chrome-for-testing-public/139.0.7258.42/mac-x64/chrome-mac-x64.zip",
        sha256 = "966779136e30e5e609c561286f06a0e31bcc076bf8416d9874ae1d508eb1fd81",
        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_beta_chromedriver",
        url = "https://storage.googleapis.com/chrome-for-testing-public/139.0.7258.42/linux64/chromedriver-linux64.zip",
        sha256 = "5e68a3473d44cb7edf28fb3a8d2c3e35ec4ff0ba03f289064b7c74fbc67f7b8c",
        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_beta_chromedriver",
        url = "https://storage.googleapis.com/chrome-for-testing-public/139.0.7258.42/mac-x64/chromedriver-mac-x64.zip",
        sha256 = "6a2507dedda1f760a45f02923db171aafff9bdb43de2fb6a026b6ea5a7ab2c21",

Copy link
Contributor

qodo-merge-pro bot commented Jul 17, 2025

PR Code Suggestions ✨

No code suggestions found for the PR.

@selenium-ci selenium-ci force-pushed the pinned-browser-updates branch 4 times, most recently from 76ea3a3 to c81ba3b Compare July 24, 2025 00:44
@selenium-ci selenium-ci force-pushed the pinned-browser-updates branch from 6411edd to 5c8d82f Compare July 26, 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: Python / Browser Tests (edge, ubuntu) / Integration Tests (edge, ubuntu)

Failed stage: Run Bazel [❌]

Failed test name: test_check_console_messages[edge]

Failure summary:

The action failed because the test test_check_console_messages[edge] in
py/test/selenium/webdriver/common/devtools_tests.py timed out. The test was waiting for 2 console
API calls to be captured but only received 0 or fewer than expected. The test failed with a
TimeoutException after waiting 10 seconds for the condition len(console_api_calls) == 2 to be met.
Additionally, there were websocket connection errors ("Connection to remote host was lost") and HTTP
connection refused errors during test execution, indicating connectivity issues with the Edge
WebDriver session.

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

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

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

2219:  Setting up libgs10:amd64 (10.02.1~dfsg1-0ubuntu7.7) ...
2220:  Setting up libspectre1:amd64 (0.2.12-1build2) ...
2221:  Setting up libheif1:amd64 (1.17.6-1ubuntu4.1) ...
2222:  Setting up libheif-plugin-aomdec:amd64 (1.17.6-1ubuntu4.1) ...
2223:  Setting up libheif-plugin-libde265:amd64 (1.17.6-1ubuntu4.1) ...
2224:  Setting up libimlib2t64:amd64 (1.12.1-1.1build2) ...
2225:  Setting up libheif-plugin-aomenc:amd64 (1.17.6-1ubuntu4.1) ...
2226:  Setting up feh (3.10.1-1ubuntu0.1) ...
2227:  Processing triggers for libgdk-pixbuf-2.0-0:amd64 (2.42.10+dfsg-3ubuntu3.1) ...
2228:  Processing triggers for install-info (7.1-3build2) ...
2229:  Processing triggers for fontconfig (2.15.0-1.1ubuntu2) ...
2230:  Processing triggers for hicolor-icon-theme (0.17-2) ...
2231:  Processing triggers for libc-bin (2.39-0ubuntu8.5) ...
2232:  Processing triggers for man-db (2.12.0-4build2) ...
2233:  Processing triggers for menu (2.1.50) ...
2234:  /usr/share/menu/bash: 1: Syntax error: word unexpected (expecting ")")
2235:  /usr/share/menu/microsoft-edge.menu: 1: Syntax error: word unexpected (expecting ")")
2236:  /usr/share/menu/google-chrome.menu: 1: Syntax error: word unexpected (expecting ")")
2237:  /usr/share/menu/dash: 1: Syntax error: word unexpected (expecting ")")
2238:  /usr/share/menu/bc: 1: Syntax error: word unexpected (expecting ")")
2239:  Setting up fluxbox (1.3.7-1build2) ...
2240:  update-alternatives: using /usr/bin/startfluxbox to provide /usr/bin/x-window-manager (x-window-manager) in auto mode
2241:  Processing triggers for menu (2.1.50) ...
2242:  /usr/share/menu/bash: 1: Syntax error: word unexpected (expecting ")")
2243:  /usr/share/menu/microsoft-edge.menu: 1: Syntax error: word unexpected (expecting ")")
2244:  /usr/share/menu/google-chrome.menu: 1: Syntax error: word unexpected (expecting ")")
2245:  /usr/share/menu/dash: 1: Syntax error: word unexpected (expecting ")")
2246:  /usr/share/menu/bc: 1: Syntax error: word unexpected (expecting ")")
2247:  Running kernel seems to be up-to-date.
2248:  Restarting services...
2249:  Service restarts being deferred:
2250:  systemctl restart hosted-compute-agent.service
2251:  No containers need to be restarted.
2252:  No user sessions are running outdated binaries.
2253:  No VM guests are running outdated hypervisor (qemu) binaries on this host.
2254:  Warning: Failed to open file(fluxbox.cat)
2255:  for translation, using default messages.
...

2259:  > Warning:          Could not resolve keysym XF86CameraAccessToggle
2260:  > Warning:          Could not resolve keysym XF86NextElement
2261:  > Warning:          Could not resolve keysym XF86PreviousElement
2262:  > Warning:          Could not resolve keysym XF86AutopilotEngageToggle
2263:  > Warning:          Could not resolve keysym XF86MarkWaypoint
2264:  > Warning:          Could not resolve keysym XF86Sos
2265:  > Warning:          Could not resolve keysym XF86NavChart
2266:  > Warning:          Could not resolve keysym XF86FishingChart
2267:  > Warning:          Could not resolve keysym XF86SingleRangeRadar
2268:  > Warning:          Could not resolve keysym XF86DualRangeRadar
2269:  > Warning:          Could not resolve keysym XF86RadarOverlay
2270:  > Warning:          Could not resolve keysym XF86TraditionalSonar
2271:  > Warning:          Could not resolve keysym XF86ClearvuSonar
2272:  > Warning:          Could not resolve keysym XF86SidevuSonar
2273:  > Warning:          Could not resolve keysym XF86NavInfo
2274:  Errors from xkbcomp are not fatal to the X server
2275:  Failed to read: session.ignoreBorder
2276:  Setting default value
2277:  Failed to read: session.forcePseudoTransparency
2278:  Setting default value
2279:  Failed to read: session.colorsPerChannel
2280:  Setting default value
2281:  Failed to read: session.doubleClickInterval
2282:  Setting default value
2283:  Failed to read: session.tabPadding
2284:  Setting default value
2285:  Failed to read: session.styleOverlay
2286:  Setting default value
2287:  Failed to read: session.slitlistFile
2288:  Setting default value
2289:  Failed to read: session.appsFile
2290:  Setting default value
2291:  Failed to read: session.tabsAttachArea
2292:  Setting default value
2293:  Failed to read: session.menuSearch
2294:  Setting default value
2295:  Failed to read: session.cacheLife
2296:  Setting default value
2297:  Failed to read: session.cacheMax
2298:  Setting default value
2299:  Failed to read: session.autoRaiseDelay
2300:  Setting default value
2301:  Failed to read: session.ignoreBorder
2302:  Setting default value
2303:  Failed to read: session.forcePseudoTransparency
2304:  Setting default value
2305:  Failed to read: session.colorsPerChannel
2306:  Setting default value
2307:  Failed to read: session.doubleClickInterval
2308:  Setting default value
2309:  Failed to read: session.tabPadding
2310:  Setting default value
2311:  Failed to read: session.styleOverlay
2312:  Setting default value
2313:  Failed to read: session.slitlistFile
2314:  Setting default value
2315:  Failed to read: session.appsFile
2316:  Setting default value
2317:  Failed to read: session.tabsAttachArea
2318:  Setting default value
2319:  Failed to read: session.menuSearch
2320:  Setting default value
2321:  Failed to read: session.cacheLife
2322:  Setting default value
2323:  Failed to read: session.cacheMax
2324:  Setting default value
2325:  Failed to read: session.autoRaiseDelay
2326:  Setting default value
2327:  Failed to read: session.screen0.opaqueMove
2328:  Setting default value
2329:  Failed to read: session.screen0.fullMaximization
2330:  Setting default value
2331:  Failed to read: session.screen0.maxIgnoreIncrement
2332:  Setting default value
2333:  Failed to read: session.screen0.maxDisableMove
2334:  Setting default value
2335:  Failed to read: session.screen0.maxDisableResize
2336:  Setting default value
2337:  Failed to read: session.screen0.workspacewarping
2338:  Setting default value
2339:  Failed to read: session.screen0.showwindowposition
2340:  Setting default value
2341:  Failed to read: session.screen0.autoRaise
2342:  Setting default value
2343:  Failed to read: session.screen0.clickRaises
2344:  Setting default value
2345:  Failed to read: session.screen0.defaultDeco
2346:  Setting default value
2347:  Failed to read: session.screen0.tab.placement
2348:  Setting default value
2349:  Failed to read: session.screen0.windowMenu
2350:  Setting default value
2351:  Failed to read: session.screen0.noFocusWhileTypingDelay
2352:  Setting default value
2353:  Failed to read: session.screen0.workspaces
2354:  Setting default value
2355:  Failed to read: session.screen0.edgeSnapThreshold
2356:  Setting default value
2357:  Failed to read: session.screen0.window.focus.alpha
2358:  Setting default value
2359:  Failed to read: session.screen0.window.unfocus.alpha
2360:  Setting default value
2361:  Failed to read: session.screen0.menu.alpha
2362:  Setting default value
2363:  Failed to read: session.screen0.menuDelay
2364:  Setting default value
2365:  Failed to read: session.screen0.tab.width
2366:  Setting default value
2367:  Failed to read: session.screen0.tooltipDelay
2368:  Setting default value
2369:  Failed to read: session.screen0.allowRemoteActions
2370:  Setting default value
2371:  Failed to read: session.screen0.clientMenu.usePixmap
2372:  Setting default value
2373:  Failed to read: session.screen0.tabs.usePixmap
2374:  Setting default value
2375:  Failed to read: session.screen0.tabs.maxOver
2376:  Setting default value
2377:  Failed to read: session.screen0.tabs.intitlebar
2378:  Setting default value
2379:  Failed to read: session.screen0.focusModel
2380:  Setting default value
2381:  Failed to read: session.screen0.tabFocusModel
2382:  Setting default value
2383:  Failed to read: session.screen0.focusNewWindows
2384:  Setting default value
2385:  Failed to read: session.screen0.focusSameHead
2386:  Setting default value
2387:  Failed to read: session.screen0.rowPlacementDirection
2388:  Setting default value
2389:  Failed to read: session.screen0.colPlacementDirection
2390:  Setting default value
2391:  Failed to read: session.screen0.windowPlacement
2392:  Setting default value
2393:  Failed to read: session.ignoreBorder
2394:  Setting default value
2395:  Failed to read: session.forcePseudoTransparency
2396:  Setting default value
2397:  Failed to read: session.colorsPerChannel
2398:  Setting default value
2399:  Failed to read: session.doubleClickInterval
2400:  Setting default value
2401:  Failed to read: session.tabPadding
2402:  Setting default value
2403:  Failed to read: session.styleOverlay
2404:  Setting default value
2405:  Failed to read: session.slitlistFile
2406:  Setting default value
2407:  Failed to read: session.appsFile
2408:  Setting default value
2409:  Failed to read: session.tabsAttachArea
2410:  Setting default value
2411:  Failed to read: session.menuSearch
2412:  Setting default value
2413:  Failed to read: session.cacheLife
2414:  Setting default value
2415:  Failed to read: session.cacheMax
2416:  Setting default value
2417:  Failed to read: session.autoRaiseDelay
2418:  Setting default value
2419:  Failed to read: session.screen0.opaqueMove
2420:  Setting default value
2421:  Failed to read: session.screen0.fullMaximization
2422:  Setting default value
2423:  Failed to read: session.screen0.maxIgnoreIncrement
2424:  Setting default value
2425:  Failed to read: session.screen0.maxDisableMove
2426:  Setting default value
2427:  Failed to read: session.screen0.maxDisableResize
2428:  Setting default value
2429:  Failed to read: session.screen0.workspacewarping
2430:  Setting default value
2431:  Failed to read: session.screen0.showwindowposition
2432:  Setting default value
2433:  Failed to read: session.screen0.autoRaise
2434:  Setting default value
2435:  Failed to read: session.screen0.clickRaises
2436:  Setting default value
2437:  Failed to read: session.screen0.defaultDeco
2438:  Setting default value
2439:  Failed to read: session.screen0.tab.placement
2440:  Setting default value
2441:  Failed to read: session.screen0.windowMenu
2442:  Setting default value
2443:  Failed to read: session.screen0.noFocusWhileTypingDelay
2444:  Setting default value
2445:  Failed to read: session.screen0.workspaces
2446:  Setting default value
2447:  Failed to read: session.screen0.edgeSnapThreshold
2448:  Setting default value
2449:  Failed to read: session.screen0.window.focus.alpha
2450:  Setting default value
2451:  Failed to read: session.screen0.window.unfocus.alpha
2452:  Setting default value
2453:  Failed to read: session.screen0.menu.alpha
2454:  Setting default value
2455:  Failed to read: session.screen0.menuDelay
2456:  Setting default value
2457:  Failed to read: session.screen0.tab.width
2458:  Setting default value
2459:  Failed to read: session.screen0.tooltipDelay
2460:  Setting default value
2461:  Failed to read: session.screen0.allowRemoteActions
2462:  Setting default value
2463:  Failed to read: session.screen0.clientMenu.usePixmap
2464:  Setting default value
2465:  Failed to read: session.screen0.tabs.usePixmap
2466:  Setting default value
2467:  Failed to read: session.screen0.tabs.maxOver
2468:  Setting default value
2469:  Failed to read: session.screen0.tabs.intitlebar
2470:  Setting default value
2471:  Failed to read: session.screen0.focusModel
2472:  Setting default value
2473:  Failed to read: session.screen0.tabFocusModel
2474:  Setting default value
2475:  Failed to read: session.screen0.focusNewWindows
2476:  Setting default value
2477:  Failed to read: session.screen0.focusSameHead
2478:  Setting default value
2479:  Failed to read: session.screen0.rowPlacementDirection
2480:  Setting default value
2481:  Failed to read: session.screen0.colPlacementDirection
2482:  Setting default value
2483:  Failed to read: session.screen0.windowPlacement
2484:  Setting default value
2485:  Failed to read: session.screen0.slit.acceptKdeDockapps
2486:  Setting default value
2487:  Failed to read: session.screen0.slit.autoHide
2488:  Setting default value
2489:  Failed to read: session.screen0.slit.maxOver
2490:  Setting default value
2491:  Failed to read: session.screen0.slit.placement
2492:  Setting default value
2493:  Failed to read: session.screen0.slit.alpha
2494:  Setting default value
2495:  Failed to read: session.screen0.slit.onhead
2496:  Setting default value
2497:  Failed to read: session.screen0.slit.layer
2498:  Setting default value
2499:  Failed to read: session.screen0.toolbar.autoHide
2500:  Setting default value
2501:  Failed to read: session.screen0.toolbar.maxOver
2502:  Setting default value
2503:  Failed to read: session.screen0.toolbar.visible
2504:  Setting default value
2505:  Failed to read: session.screen0.toolbar.alpha
2506:  Setting default value
2507:  Failed to read: session.screen0.toolbar.layer
2508:  Setting default value
2509:  Failed to read: session.screen0.toolbar.onhead
2510:  Setting default value
2511:  Failed to read: session.screen0.toolbar.placement
2512:  Setting default value
2513:  Failed to read: session.screen0.toolbar.height
2514:  Setting default value
2515:  Failed to read: session.screen0.iconbar.mode
2516:  Setting default value
2517:  Failed to read: session.screen0.iconbar.alignment
2518:  Setting default value
2519:  Failed to read: session.screen0.iconbar.iconWidth
2520:  Setting default value
2521:  Failed to read: session.screen0.iconbar.iconTextPadding
2522:  Setting default value
2523:  Failed to read: session.screen0.iconbar.usePixmap
2524:  Setting default value
...

2772:  �[32m[1,066 / 1,086]�[0m 41 / 61 tests;�[0m Testing //py:common-edge-bidi-test/selenium/webdriver/common/devtools_tests.py; 67s local, disk-cache ... (4 actions, 1 running)
2773:  �[32m[1,066 / 1,086]�[0m 41 / 61 tests;�[0m Testing //py:common-edge-bidi-test/selenium/webdriver/common/devtools_tests.py; 71s local, disk-cache ... (4 actions, 2 running)
2774:  �[31m�[1mFAIL: �[0m//py:common-edge-bidi-test/selenium/webdriver/common/devtools_tests.py (see /home/runner/.bazel/execroot/_main/bazel-out/k8-fastbuild/testlogs/py/common-edge-bidi-test/selenium/webdriver/common/devtools_tests.py/test_attempts/attempt_2.log)
2775:  �[32m[1,066 / 1,086]�[0m 41 / 61 tests;�[0m Testing //py:common-edge-bidi-test/selenium/webdriver/common/devtools_tests.py; 72s local, disk-cache ... (4 actions, 2 running)
2776:  �[32m[1,066 / 1,086]�[0m 41 / 61 tests;�[0m Testing //py:common-edge-bidi-test/selenium/webdriver/common/devtools_tests.py; 76s local, disk-cache ... (4 actions, 3 running)
2777:  �[32m[1,067 / 1,086]�[0m 42 / 61 tests;�[0m Testing //py:common-edge-bidi-test/selenium/webdriver/common/devtools_tests.py; 77s local, disk-cache ... (4 actions, 2 running)
2778:  �[32m[1,067 / 1,086]�[0m 42 / 61 tests;�[0m Testing //py:common-edge-bidi-test/selenium/webdriver/common/devtools_tests.py; 87s local, disk-cache ... (4 actions, 2 running)
2779:  �[32m[1,067 / 1,086]�[0m 42 / 61 tests;�[0m Testing //py:common-edge-bidi-test/selenium/webdriver/common/devtools_tests.py; 88s local, disk-cache ... (4 actions, 3 running)
2780:  �[32m[1,068 / 1,086]�[0m 43 / 61 tests;�[0m Testing //py:common-edge-bidi-test/selenium/webdriver/common/devtools_tests.py; 90s local, disk-cache ... (4 actions, 2 running)
2781:  �[32m[1,068 / 1,086]�[0m 43 / 61 tests;�[0m Testing //py:common-edge-bidi-test/selenium/webdriver/common/devtools_tests.py; 100s local, disk-cache ... (4 actions, 2 running)
2782:  �[32m[1,068 / 1,086]�[0m 43 / 61 tests;�[0m Testing //py:common-edge-bidi-test/selenium/webdriver/common/devtools_tests.py; 108s local, disk-cache ... (4 actions, 2 running)
2783:  �[32m[1,069 / 1,086]�[0m 44 / 61 tests;�[0m Testing //py:common-edge-bidi-test/selenium/webdriver/common/devtools_tests.py; 109s local, disk-cache ... (4 actions, 1 running)
2784:  �[32m[1,069 / 1,086]�[0m 44 / 61 tests;�[0m Testing //py:common-edge-bidi-test/selenium/webdriver/common/devtools_tests.py; 119s local, disk-cache ... (4 actions, 1 running)
2785:  �[32m[1,069 / 1,086]�[0m 44 / 61 tests;�[0m Testing //py:common-edge-bidi-test/selenium/webdriver/common/devtools_tests.py; 122s local, disk-cache ... (4 actions, 2 running)
2786:  �[31m�[1mFAIL: �[0m//py:common-edge-bidi-test/selenium/webdriver/common/devtools_tests.py (see /home/runner/.bazel/execroot/_main/bazel-out/k8-fastbuild/testlogs/py/common-edge-bidi-test/selenium/webdriver/common/devtools_tests.py/test.log)
2787:  �[31m�[1mFAILED: �[0m//py:common-edge-bidi-test/selenium/webdriver/common/devtools_tests.py (Summary)
2788:  /home/runner/.bazel/execroot/_main/bazel-out/k8-fastbuild/testlogs/py/common-edge-bidi-test/selenium/webdriver/common/devtools_tests.py/test.log
2789:  /home/runner/.bazel/execroot/_main/bazel-out/k8-fastbuild/testlogs/py/common-edge-bidi-test/selenium/webdriver/common/devtools_tests.py/test_attempts/attempt_1.log
2790:  /home/runner/.bazel/execroot/_main/bazel-out/k8-fastbuild/testlogs/py/common-edge-bidi-test/selenium/webdriver/common/devtools_tests.py/test_attempts/attempt_2.log
2791:  �[32mINFO: �[0mFrom Testing //py:common-edge-bidi-test/selenium/webdriver/common/devtools_tests.py:
2792:  ==================== Test output for //py:common-edge-bidi-test/selenium/webdriver/common/devtools_tests.py:
2793:  ============================= test session starts ==============================
2794:  platform linux -- Python 3.9.23, pytest-8.4.1, pluggy-1.6.0
2795:  rootdir: /home/runner/.bazel/execroot/_main/bazel-out/k8-fastbuild/bin/py/common-edge-bidi-test/selenium/webdriver/common/devtools_tests.py.runfiles/_main/py
2796:  configfile: pyproject.toml
2797:  plugins: instafail-0.5.0, trio-0.8.0, mock-3.14.1
2798:  collected 2 items
2799:  py/test/selenium/webdriver/common/devtools_tests.py::test_check_console_messages[edge] FAILED [ 50%]
2800:  ______________________ test_check_console_messages[edge] _______________________
2801:  driver = <selenium.webdriver.edge.webdriver.WebDriver (session="415f1aa397e18db956516c6fa0ee4d5c")>
2802:  pages = <conftest.pages.<locals>.Pages object at 0x7fab7a2a5e80>
2803:  recwarn = WarningsRecorder(record=True)
2804:  @pytest.mark.xfail_safari
2805:  @pytest.mark.xfail_firefox
2806:  @pytest.mark.xfail_remote
2807:  def test_check_console_messages(driver, pages, recwarn):
2808:  devtools, connection = driver.start_devtools()
2809:  console_api_calls = []
2810:  assert len(recwarn) == 0
2811:  connection.execute(devtools.runtime.enable())
2812:  connection.on(devtools.runtime.ConsoleAPICalled, console_api_calls.append)
2813:  driver.execute_script("console.log('I love cheese')")
2814:  driver.execute_script("console.error('I love bread')")
2815:  >       WebDriverWait(driver, 10).until(lambda _: len(console_api_calls) == 2)
...

2853:  while True:
2854:  try:
2855:  value = method(self._driver)
2856:  if value:
2857:  return value
2858:  except self._ignored_exceptions as exc:
2859:  screen = getattr(exc, "screen", None)
2860:  stacktrace = getattr(exc, "stacktrace", None)
2861:  if time.monotonic() > end_time:
2862:  break
2863:  time.sleep(self._poll)
2864:  >       raise TimeoutException(message, screen, stacktrace)
2865:  E       selenium.common.exceptions.TimeoutException: Message:
2866:  py/selenium/webdriver/support/wait.py:138: TimeoutException
2867:  ------------------------------ live log logreport ------------------------------
2868:  ERROR    websocket:_logging.py:77 Connection to remote host was lost. - goodbye
2869:  ------------------------------ live log teardown -------------------------------
2870:  WARNING  urllib3.connectionpool:connectionpool.py:868 Retrying (Retry(total=2, connect=None, read=None, redirect=None, status=None)) after connection broken by 'NewConnectionError('<urllib3.connection.HTTPConnection object at 0x7fab7842fd30>: Failed to establish a new connection: [Errno 111] Connection refused')': /session/415f1aa397e18db956516c6fa0ee4d5c
2871:  WARNING  urllib3.connectionpool:connectionpool.py:868 Retrying (Retry(total=1, connect=None, read=None, redirect=None, status=None)) after connection broken by 'NewConnectionError('<urllib3.connection.HTTPConnection object at 0x7fab7842f7c0>: Failed to establish a new connection: [Errno 111] Connection refused')': /session/415f1aa397e18db956516c6fa0ee4d5c
2872:  WARNING  urllib3.connectionpool:connectionpool.py:868 Retrying (Retry(total=0, connect=None, read=None, redirect=None, status=None)) after connection broken by 'NewConnectionError('<urllib3.connection.HTTPConnection object at 0x7fab7842fa60>: Failed to establish a new connection: [Errno 111] Connection refused')': /session/415f1aa397e18db956516c6fa0ee4d5c
2873:  py/test/selenium/webdriver/common/devtools_tests.py::test_check_start_twice 
2874:  -------------------------------- live log call ---------------------------------
2875:  ERROR    websocket:_logging.py:77 Connection to remote host was lost. - goodbye
2876:  ERROR    websocket:_logging.py:77 Connection to remote host was lost. - goodbye
2877:  PASSED                                                                   [100%]
2878:  =========================== short test summary info ============================
2879:  FAILED py/test/selenium/webdriver/common/devtools_tests.py::test_check_console_messages[edge] - selenium.common.exceptions.TimeoutException: Message:
2880:  ========================= 1 failed, 1 passed in 13.96s =========================
2881:  ================================================================================
2882:  ==================== Test output for //py:common-edge-bidi-test/selenium/webdriver/common/devtools_tests.py:
2883:  ============================= test session starts ==============================
2884:  platform linux -- Python 3.9.23, pytest-8.4.1, pluggy-1.6.0
2885:  rootdir: /home/runner/.bazel/execroot/_main/bazel-out/k8-fastbuild/bin/py/common-edge-bidi-test/selenium/webdriver/common/devtools_tests.py.runfiles/_main/py
2886:  configfile: pyproject.toml
2887:  plugins: instafail-0.5.0, trio-0.8.0, mock-3.14.1
2888:  collected 2 items
2889:  py/test/selenium/webdriver/common/devtools_tests.py::test_check_console_messages[edge] FAILED [ 50%]
2890:  ______________________ test_check_console_messages[edge] _______________________
2891:  driver = <selenium.webdriver.edge.webdriver.WebDriver (session="06328c03946b0df91ce3857337d1787c")>
2892:  pages = <conftest.pages.<locals>.Pages object at 0x7fc7c0e23eb0>
2893:  recwarn = WarningsRecorder(record=True)
2894:  @pytest.mark.xfail_safari
2895:  @pytest.mark.xfail_firefox
2896:  @pytest.mark.xfail_remote
2897:  def test_check_console_messages(driver, pages, recwarn):
2898:  devtools, connection = driver.start_devtools()
2899:  console_api_calls = []
2900:  assert len(recwarn) == 0
2901:  connection.execute(devtools.runtime.enable())
2902:  connection.on(devtools.runtime.ConsoleAPICalled, console_api_calls.append)
2903:  driver.execute_script("console.log('I love cheese')")
2904:  driver.execute_script("console.error('I love bread')")
2905:  >       WebDriverWait(driver, 10).until(lambda _: len(console_api_calls) == 2)
...

2943:  while True:
2944:  try:
2945:  value = method(self._driver)
2946:  if value:
2947:  return value
2948:  except self._ignored_exceptions as exc:
2949:  screen = getattr(exc, "screen", None)
2950:  stacktrace = getattr(exc, "stacktrace", None)
2951:  if time.monotonic() > end_time:
2952:  break
2953:  time.sleep(self._poll)
2954:  >       raise TimeoutException(message, screen, stacktrace)
2955:  E       selenium.common.exceptions.TimeoutException: Message:
2956:  py/selenium/webdriver/support/wait.py:138: TimeoutException
2957:  ------------------------------ live log logreport ------------------------------
2958:  ERROR    websocket:_logging.py:77 Connection to remote host was lost. - goodbye
2959:  ------------------------------ live log teardown -------------------------------
2960:  WARNING  urllib3.connectionpool:connectionpool.py:868 Retrying (Retry(total=2, connect=None, read=None, redirect=None, status=None)) after connection broken by 'NewConnectionError('<urllib3.connection.HTTPConnection object at 0x7fc7be6d4df0>: Failed to establish a new connection: [Errno 111] Connection refused')': /session/06328c03946b0df91ce3857337d1787c
2961:  WARNING  urllib3.connectionpool:connectionpool.py:868 Retrying (Retry(total=1, connect=None, read=None, redirect=None, status=None)) after connection broken by 'NewConnectionError('<urllib3.connection.HTTPConnection object at 0x7fc7be72f640>: Failed to establish a new connection: [Errno 111] Connection refused')': /session/06328c03946b0df91ce3857337d1787c
2962:  WARNING  urllib3.connectionpool:connectionpool.py:868 Retrying (Retry(total=0, connect=None, read=None, redirect=None, status=None)) after connection broken by 'NewConnectionError('<urllib3.connection.HTTPConnection object at 0x7fc7be72fa90>: Failed to establish a new connection: [Errno 111] Connection refused')': /session/06328c03946b0df91ce3857337d1787c
2963:  py/test/selenium/webdriver/common/devtools_tests.py::test_check_start_twice 
2964:  -------------------------------- live log call ---------------------------------
2965:  ERROR    websocket:_logging.py:77 Connection to remote host was lost. - goodbye
2966:  ERROR    websocket:_logging.py:77 Connection to remote host was lost. - goodbye
2967:  PASSED                                                                   [100%]
2968:  =========================== short test summary info ============================
2969:  FAILED py/test/selenium/webdriver/common/devtools_tests.py::test_check_console_messages[edge] - selenium.common.exceptions.TimeoutException: Message:
2970:  ========================= 1 failed, 1 passed in 13.55s =========================
2971:  ================================================================================
2972:  ==================== Test output for //py:common-edge-bidi-test/selenium/webdriver/common/devtools_tests.py:
2973:  ============================= test session starts ==============================
2974:  platform linux -- Python 3.9.23, pytest-8.4.1, pluggy-1.6.0
2975:  rootdir: /home/runner/.bazel/execroot/_main/bazel-out/k8-fastbuild/bin/py/common-edge-bidi-test/selenium/webdriver/common/devtools_tests.py.runfiles/_main/py
2976:  configfile: pyproject.toml
2977:  plugins: instafail-0.5.0, trio-0.8.0, mock-3.14.1
2978:  collected 2 items
2979:  py/test/selenium/webdriver/common/devtools_tests.py::test_check_console_messages[edge] FAILED [ 50%]
2980:  ______________________ test_check_console_messages[edge] _______________________
2981:  driver = <selenium.webdriver.edge.webdriver.WebDriver (session="0a4456bdf29f7be5f0c89c26111847c8")>
2982:  pages = <conftest.pages.<locals>.Pages object at 0x7f1e6037ee50>
2983:  recwarn = WarningsRecorder(record=True)
2984:  @pytest.mark.xfail_safari
2985:  @pytest.mark.xfail_firefox
2986:  @pytest.mark.xfail_remote
2987:  def test_check_console_messages(driver, pages, recwarn):
2988:  devtools, connection = driver.start_devtools()
2989:  console_api_calls = []
2990:  assert len(recwarn) == 0
2991:  connection.execute(devtools.runtime.enable())
2992:  connection.on(devtools.runtime.ConsoleAPICalled, console_api_calls.append)
2993:  driver.execute_script("console.log('I love cheese')")
2994:  driver.execute_script("console.error('I love bread')")
2995:  >       WebDriverWait(driver, 10).until(lambda _: len(console_api_calls) == 2)
...

3033:  while True:
3034:  try:
3035:  value = method(self._driver)
3036:  if value:
3037:  return value
3038:  except self._ignored_exceptions as exc:
3039:  screen = getattr(exc, "screen", None)
3040:  stacktrace = getattr(exc, "stacktrace", None)
3041:  if time.monotonic() > end_time:
3042:  break
3043:  time.sleep(self._poll)
3044:  >       raise TimeoutException(message, screen, stacktrace)
3045:  E       selenium.common.exceptions.TimeoutException: Message:
3046:  py/selenium/webdriver/support/wait.py:138: TimeoutException
3047:  ------------------------------ live log logreport ------------------------------
3048:  ERROR    websocket:_logging.py:77 Connection to remote host was lost. - goodbye
3049:  ------------------------------ live log teardown -------------------------------
3050:  WARNING  urllib3.connectionpool:connectionpool.py:868 Retrying (Retry(total=2, connect=None, read=None, redirect=None, status=None)) after connection broken by 'NewConnectionError('<urllib3.connection.HTTPConnection object at 0x7f1e5dc58ee0>: Failed to establish a new connection: [Errno 111] Connection refused')': /session/0a4456bdf29f7be5f0c89c26111847c8
3051:  WARNING  urllib3.connectionpool:connectionpool.py:868 Retrying (Retry(total=1, connect=None, read=None, redirect=None, status=None)) after connection broken by 'NewConnectionError('<urllib3.connection.HTTPConnection object at 0x7f1e5dc58af0>: Failed to establish a new connection: [Errno 111] Connection refused')': /session/0a4456bdf29f7be5f0c89c26111847c8
3052:  WARNING  urllib3.connectionpool:connectionpool.py:868 Retrying (Retry(total=0, connect=None, read=None, redirect=None, status=None)) after connection broken by 'NewConnectionError('<urllib3.connection.HTTPConnection object at 0x7f1e5dc58940>: Failed to establish a new connection: [Errno 111] Connection refused')': /session/0a4456bdf29f7be5f0c89c26111847c8
3053:  py/test/selenium/webdriver/common/devtools_tests.py::test_check_start_twice 
3054:  -------------------------------- live log call ---------------------------------
3055:  ERROR    websocket:_logging.py:77 Connection to remote host was lost. - goodbye
3056:  ERROR    websocket:_logging.py:77 Connection to remote host was lost. - goodbye
3057:  PASSED                                                                   [100%]
3058:  =========================== short test summary info ============================
3059:  FAILED py/test/selenium/webdriver/common/devtools_tests.py::test_check_console_messages[edge] - selenium.common.exceptions.TimeoutException: Message:
3060:  ========================= 1 failed, 1 passed in 13.56s =========================
3061:  ================================================================================
3062:  �[32m[1,070 / 1,086]�[0m 45 / 61 tests, �[31m�[1m1 failed�[0m;�[0m [Sched] Testing //py:common-edge-bidi-test/selenium/webdriver/common/rendered_webelement_tests.py; 35s ... (4 actions, 1 running)
3063:  �[32m[1,070 / 1,086]�[0m 45 / 61 tests, �[31m�[1m1 failed�[0m;�[0m [Sched] Testing //py:common-edge-bidi-test/selenium/webdriver/common/rendered_webelement_tests.py; 44s ... (4 actions, 1 running)
3064:  �[32m[1,071 / 1,086]�[0m 46 / 61 tests, �[31m�[1m1 failed�[0m;�[0m [Sched] Testing //py:common-edge-bidi-test/selenium/webdriver/common/bidi_storage_tests.py; 26s ... (4 actions, 1 running)
3065:  �[32m[1,071 / 1,086]�[0m 46 / 61 tests, �[31m�[1m1 failed�[0m;�[0m [Sched] Testing //py:common-edge-bidi-test/selenium/webdriver/common/opacity_tests.py; 15s ... (4 actions, 2 running)
3066:  �[32m[1,072 / 1,086]�[0m 47 / 61 tests, �[31m�[1m1 failed�[0m;�[0m [Sched] Testing //py:common-edge-bidi-test/selenium/webdriver/common/opacity_tests.py; 17s ... (4 actions, 1 running)
3067:  �[32m[1,072 / 1,086]�[0m 47 / 61 tests, �[31m�[1m1 failed�[0m;�[0m [Sched] Testing //py:common-edge-bidi-test/selenium/webdriver/common/bidi_permissions_tests.py; 13s ... (4 actions, 2 running)
3068:  �[32m[1,073 / 1,086]�[0m 48 / 61 tests, �[31m�[1m1 failed�[0m;�[0m [Sched] Testing //py:common-edge-bidi-test/selenium/webdriver/common/bidi_permissions_tests.py; 15s ... (4 actions, 1 running)
3069:  �[32m[1,073 / 1,086]�[0m 48 / 61 tests, �[31m�[1m1 failed�[0m;�[0m [Sched] Testing //py:common-edge-bidi-test/selenium/webdriver/common/driver_finder_tests.py; 12s ... (4 actions, 2 running)
3070:  �[32m[1,074 / 1,086]�[0m 49 / 61 tests, �[31m�[1m1 failed�[0m;�[0m [Sched] Testing //py:common-edge-bidi-test/selenium/webdriver/common/driver_finder_tests.py; 14s ... (4 actions, 1 running)
3071:  �[32m[1,074 / 1,086]�[0m 49 / 61 tests, �[31m�[1m1 failed�[0m;�[0m [Sched] Testing //py:common-edge-bidi-test/selenium/webdriver/common/bidi_script_tests.py; 9s ... (4 actions, 2 running)
3072:  �[32m[1,075 / 1,086]�[0m 50 / 61 tests, �[31m�[1m1 failed�[0m;�[0m [Sched] Testing //py:common-edge-bidi-test/selenium/webdriver/common/takes_screenshots_tests.py; 8s ... (4 actions, 2 running)
3073:  �[32m[1,076 / 1,086]�[0m 51 / 61 tests, �[31m�[1m1 failed�[0m;�[0m [Sched] Testing //py:common-edge-bidi-test/selenium/webdriver/common/takes_screenshots_tests.py; 9s ... (4 actions, 1 running)
3074:  �[32m[1,076 / 1,086]�[0m 51 / 61 tests, �[31m�[1m1 failed�[0m;�[0m [Sched] Testing //py:common-edge-bidi-test/selenium/webdriver/common/takes_screenshots_tests.py; 19s ... (4 actions, 1 running)
3075:  �[32m[1,076 / 1,086]�[0m 51 / 61 tests, �[31m�[1m1 failed�[0m;�[0m [Sched] Testing //py:common-edge-bidi-test/selenium/webdriver/common/takes_screenshots_tests.py; 49s ... (4 actions, 1 running)
3076:  �[32m[1,076 / 1,086]�[0m 51 / 61 tests, �[31m�[1m1 failed�[0m;�[0m [Sched] Testing //py:common-edge-bidi-test/selenium/webdriver/common/proxy_tests.py; 50s ... (4 actions, 2 running)
3077:  �[32m[1,077 / 1,086]�[0m 52 / 61 tests, �[31m�[1m1 failed�[0m;�[0m [Sched] Testing //py:common-edge-bidi-test/selenium/webdriver/common/proxy_tests.py; 51s ... (4 actions, 1 running)
3078:  �[32m[1,077 / 1,086]�[0m 52 / 61 tests, �[31m�[1m1 failed�[0m;�[0m [Sched] Testing //py:common-edge-bidi-test/selenium/webdriver/common/bidi_session_tests.py; 52s ... (4 actions, 2 running)
3079:  �[32m[1,078 / 1,086]�[0m 53 / 61 tests, �[31m�[1m1 failed�[0m;�[0m [Sched] Testing //py:common-edge-bidi-test/selenium/webdriver/common/bidi_session_tests.py; 54s ... (4 actions, 1 running)
3080:  �[32m[1,079 / 1,086]�[0m 54 / 61 tests, �[31m�[1m1 failed�[0m;�[0m [Sched] Testing //py:common-edge-bidi-test/selenium/webdriver/common/page_loading_tests.py; 6s ... (4 actions, 1 running)
3081:  �[32m[1,079 / 1,086]�[0m 54 / 61 tests, �[31m�[1m1 failed�[0m;�[0m [Sched] Testing //py:common-edge-bidi-test/selenium/webdriver/common/bidi_browser_tests.py; 4s ... (4 actions, 2 running)
3082:  �[32m[1,080 / 1,086]�[0m 55 / 61 tests, �[31m�[1m1 failed�[0m;�[0m [Sched] Testing //py:common-edge-bidi-test/selenium/webdriver/common/bidi_browser_tests.py; 6s ... (4 actions, 1 running)
3083:  �[32m[1,081 / 1,086]�[0m 56 / 61 tests, �[31m�[1m1 failed�[0m;�[0m [Sched] Testing //py:common-edge-bidi-test/selenium/webdriver/common/driver_element_finding_tests.py; 6s ... (4 actions, 1 running)
3084:  �[32m[1,081 / 1,086]�[0m 56 / 61 tests, �[31m�[1m1 failed�[0m;�[0m [Sched] Testing //py:common-edge-bidi-test/selenium/webdriver/common/driver_element_finding_tests.py; 16s ... (4 actions, 1 running)
3085:  �[32m[1,081 / 1,086]�[0m 56 / 61 tests, �[31m�[1m1 failed�[0m;�[0m [Sched] Testing //py:common-edge-bidi-test/selenium/webdriver/common/typing_tests.py; 21s ... (4 actions, 2 running)
3086:  �[32m[1,082 / 1,086]�[0m 57 / 61 tests, �[31m�[1m1 failed�[0m;�[0m [Sched] Testing //py:common-edge-bidi-test/selenium/webdriver/common/typing_tests.py; 23s ... (4 actions, 1 running)
3087:  �[32m[1,082 / 1,086]�[0m 57 / 61 tests, �[31m�[1m1 failed�[0m;�[0m [Sched] Testing //py:common-edge-bidi-test/selenium/webdriver/common/typing_tests.py; 33s ... (4 actions, 1 running)
3088:  �[32m[1,082 / 1,086]�[0m 57 / 61 tests, �[31m�[1m1 failed�[0m;�[0m [Sched] Testing //py:common-edge-bidi-test/selenium/webdriver/common/typing_tests.py; 63s ... (4 actions, 1 running)
3089:  �[32m[1,082 / 1,086]�[0m 57 / 61 tests, �[31m�[1m1 failed�[0m;�[0m [Sched] Testing //py:common-edge-bidi-test/selenium/webdriver/common/bidi_emulation_tests.py; 72s ... (4 actions, 2 running)
3090:  �[32m[1,083 / 1,086]�[0m 58 / 61 tests, �[31m�[1m1 failed�[0m;�[0m [Sched] Testing //py:common-edge-bidi-test/selenium/webdriver/common/bidi_emulation_tests.py; 73s ... (3 actions, 1 running)
3091:  �[32m[1,083 / 1,086]�[0m 58 / 61 tests, �[31m�[1m1 failed�[0m;�[0m [Sched] Testing //py:common-edge-bidi-test/selenium/webdriver/common/bidi_emulation_tests.py; 83s ... (3 actions, 1 running)
3092:  �[32m[1,083 / 1,086]�[0m 58 / 61 tests, �[31m�[1m1 failed�[0m;�[0m [Sched] Testing //py:common-edge-bidi-test/selenium/webdriver/common/children_finding_tests.py; 78s ... (3 actions, 2 running)
3093:  �[32m[1,084 / 1,086]�[0m 59 / 61 tests, �[31m�[1m1 failed�[0m;�[0m [Sched] Testing //py:common-edge-bidi-test/selenium/webdriver/common/children_finding_tests.py; 79s ... (2 actions, 1 running)
3094:  �[32m[1,084 / 1,086]�[0m 59 / 61 tests, �[31m�[1m1 failed�[0m;�[0m Testing //py:common-edge-bidi-test/selenium/webdriver/common/bidi_emulation_tests.py; 10s local, disk-cache ... (2 actions running)
3095:  �[32m[1,085 / 1,086]�[0m 60 / 61 tests, �[31m�[1m1 failed�[0m;�[0m Testing //py:common-edge-bidi-test/selenium/webdriver/common/children_finding_tests.py; 1s local, disk-cache
3096:  �[32m[1,085 / 1,086]�[0m 60 / 61 tests, �[31m�[1m1 failed�[0m;�[0m Testing //py:common-edge-bidi-test/selenium/webdriver/common/children_finding_tests.py; 11s local, disk-cache
3097:  �[32m[1,085 / 1,086]�[0m 60 / 61 tests, �[31m�[1m1 failed�[0m;�[0m Testing //py:common-edge-bidi-test/selenium/webdriver/common/children_finding_tests.py; 17s local, disk-cache
3098:  �[32mINFO: �[0mFound 61 test targets...
3099:  �[32mINFO: �[0mElapsed time: 929.727s, Critical Path: 226.12s
3100:  �[32mINFO: �[0m1086 processes: 457 disk cache hit, 496 internal, 120 local, 13 processwrapper-sandbox.
3101:  �[32mINFO: �[0mBuild completed, 1 test FAILED, 1086 total actions
3102:  //py:common-edge-bidi-test/selenium/webdriver/common/alerts_tests.py     �[0m�[32mPASSED�[0m in 19.4s
...

3147:  //py:common-edge-bidi-test/selenium/webdriver/common/takes_screenshots_tests.py �[0m�[32mPASSED�[0m in 3.7s
3148:  //py:common-edge-bidi-test/selenium/webdriver/common/text_handling_tests.py �[0m�[32mPASSED�[0m in 17.7s
3149:  //py:common-edge-bidi-test/selenium/webdriver/common/timeout_tests.py    �[0m�[32mPASSED�[0m in 2.7s
3150:  //py:common-edge-bidi-test/selenium/webdriver/common/typing_tests.py     �[0m�[32mPASSED�[0m in 25.8s
3151:  //py:common-edge-bidi-test/selenium/webdriver/common/upload_tests.py     �[0m�[32mPASSED�[0m in 3.2s
3152:  //py:common-edge-bidi-test/selenium/webdriver/common/virtual_authenticator_tests.py �[0m�[32mPASSED�[0m in 7.8s
3153:  //py:common-edge-bidi-test/selenium/webdriver/common/visibility_tests.py �[0m�[32mPASSED�[0m in 12.5s
3154:  //py:common-edge-bidi-test/selenium/webdriver/common/w3c_interaction_tests.py �[0m�[32mPASSED�[0m in 18.6s
3155:  //py:common-edge-bidi-test/selenium/webdriver/common/web_components_tests.py �[0m�[32mPASSED�[0m in 4.9s
3156:  //py:common-edge-bidi-test/selenium/webdriver/common/webdriverwait_tests.py �[0m�[32mPASSED�[0m in 61.6s
3157:  //py:common-edge-bidi-test/selenium/webdriver/common/window_switching_tests.py �[0m�[32mPASSED�[0m in 12.1s
3158:  //py:common-edge-bidi-test/selenium/webdriver/common/window_tests.py     �[0m�[32mPASSED�[0m in 4.6s
3159:  //py:common-edge-bidi-test/selenium/webdriver/support/event_firing_webdriver_tests.py �[0m�[32mPASSED�[0m in 11.0s
3160:  //py:common-edge-bidi-test/selenium/webdriver/support/expected_conditions_tests.py �[0m�[32mPASSED�[0m in 11.0s
3161:  //py:common-edge-bidi-test/selenium/webdriver/support/relative_by_tests.py �[0m�[32mPASSED�[0m in 20.7s
3162:  //py:common-edge-bidi-test/selenium/webdriver/common/devtools_tests.py   �[0m�[31m�[1mFAILED�[0m in 3 out of 3 in 15.3s
3163:  Stats over 3 runs: max = 15.3s, min = 14.5s, avg = 14.8s, dev = 0.4s
3164:  /home/runner/.bazel/execroot/_main/bazel-out/k8-fastbuild/testlogs/py/common-edge-bidi-test/selenium/webdriver/common/devtools_tests.py/test.log
3165:  /home/runner/.bazel/execroot/_main/bazel-out/k8-fastbuild/testlogs/py/common-edge-bidi-test/selenium/webdriver/common/devtools_tests.py/test_attempts/attempt_1.log
3166:  /home/runner/.bazel/execroot/_main/bazel-out/k8-fastbuild/testlogs/py/common-edge-bidi-test/selenium/webdriver/common/devtools_tests.py/test_attempts/attempt_2.log
3167:  Executed 61 out of 61 tests: 60 tests pass and �[0m�[31m�[1m1 fails locally�[0m.
3168:  There were tests whose specified size is too big. Use the --test_verbose_timeout_warnings command line option to see which ones these are.
3169:  �[0m
3170:  ##[error]Process completed with exit code 3.
3171:  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