Skip to content

Conversation

@titusfortner
Copy link
Member

@titusfortner titusfortner commented Oct 25, 2025

User description

Well, let's hope this one works better


PR Type

Bug fix


Description

  • Replace explicit GITHUB_TOKEN secret with implicit github.token

  • Add explicit permissions for contents and pull-requests write access

  • Remove unnecessary GITHUB_TOKEN secret from stage-release workflow


Diagram Walkthrough

flowchart LR A["stage-release.yml"] -->|removes GITHUB_TOKEN secret| B["update-documentation.yml"] B -->|replaces secrets.GITHUB_TOKEN| C["github.token"] B -->|adds explicit permissions| D["contents: write<br/>pull-requests: write"] 
Loading

File Walkthrough

Relevant files
Configuration changes
stage-release.yml
Remove explicit GITHUB_TOKEN secret parameter                       

.github/workflows/stage-release.yml

  • Removed GITHUB_TOKEN from secrets passed to update-documentation
    workflow
  • Simplified workflow by relying on implicit token handling
+0/-1     
update-documentation.yml
Replace secret token with implicit github.token                   

.github/workflows/update-documentation.yml

  • Removed GITHUB_TOKEN from required secrets definition
  • Added explicit permissions block for contents and pull-requests write
    access
  • Changed GITHUB_TOKEN environment variable from secrets.GITHUB_TOKEN to
    github.token
+6/-3     

@qodo-merge-pro
Copy link
Contributor

PR Compliance Guide 🔍

Below is a summary of compliance checks for this PR:

Security Compliance
🟢
No security concerns identified No security vulnerabilities detected by AI analysis. Human verification advised for critical code.
Ticket Compliance
🎫 No ticket provided
- [ ] Create ticket/issue <!-- /create_ticket --create_ticket=true --> </details></td></tr> 
Codebase Duplication Compliance
Codebase context is not defined

Follow the guide to enable codebase context checks.

Custom Compliance
No custom compliance provided

Follow the guide to enable custom compliance check.

Compliance status legend 🟢 - Fully Compliant
🟡 - Partial Compliant
🔴 - Not Compliant
⚪ - Requires Further Human Verification
🏷️ - Compliance label
@selenium-ci selenium-ci added the B-build Includes scripting, bazel and CI integrations label Oct 25, 2025
@qodo-merge-pro
Copy link
Contributor

PR Code Suggestions ✨

Explore these optional code suggestions:

CategorySuggestion                                                                                                                                    Impact
Learned
best practice
Scope down workflow permissions

Restrict token permissions to the specific job or step that needs them, and use
'pull-requests: write' only if PR operations are actually performed.

.github/workflows/update-documentation.yml [44-46]

-permissions: - contents: write - pull-requests: write +jobs: + build-docs: + permissions: + contents: write + # pull-requests: write # enable only if creating/updating PRs + runs-on: ubuntu-latest + steps: + - name: Checkout + uses: actions/checkout@v4
  • Apply / Chat
Suggestion importance[1-10]: 6

__

Why:
Relevant best practice - Principle of least privilege for workflow tokens: grant only the minimal permissions needed at the narrowest scope possible.

Low
  • More
@qodo-merge-pro
Copy link
Contributor

CI Feedback 🧐

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

Action: Test / All RBE tests

Failed stage: Run Bazel [❌]

Failed test name: OpenQA.Selenium.DevTools.DevToolsTargetTest.CreateAndContentLifeCycle

Failure summary:

The action failed because multiple .NET DevTools tests for Chrome errored due to a Chrome DevTools
Protocol version mismatch:
- The tests requested domains type
OpenQA.Selenium.DevTools.V142.DevToolsSessionDomains, but the active session provided
OpenQA.Selenium.DevTools.V141.V141Domains.
- This caused System.InvalidOperationException in several
tests, e.g., DevToolsTargetTest, DevToolsConsoleTest, DevToolsTabsTest, DevToolsNetworkTest,
DevToolsSecurityTest, DevToolsPerformanceTest, and DevToolsProfilerTest.
- Example failure (see test
log): //dotnet/test/common:DevTools/DevToolsTargetTest-chrome with error at
OpenQA.Selenium.DevTools.DevToolsSession.GetVersionSpecificDomainsT.
- Root cause: mismatch
between the expected CDP version in the test code (v142) and the actual CDP version exposed by the
Chrome used in CI (v141), likely due to pinned Chrome/driver versions not aligning with the .NET
DevTools bindings.

Relevant error logs:
1: ##[group]Runner Image Provisioner 2: Hosted Compute Agent ... 925: Package 'php-sql-formatter' is not installed, so not removed 926: Package 'php8.3-ssh2' is not installed, so not removed 927: Package 'php-ssh2-all-dev' is not installed, so not removed 928: Package 'php8.3-stomp' is not installed, so not removed 929: Package 'php-stomp-all-dev' is not installed, so not removed 930: Package 'php-swiftmailer' is not installed, so not removed 931: Package 'php-symfony' is not installed, so not removed 932: Package 'php-symfony-asset' is not installed, so not removed 933: Package 'php-symfony-asset-mapper' is not installed, so not removed 934: Package 'php-symfony-browser-kit' is not installed, so not removed 935: Package 'php-symfony-clock' is not installed, so not removed 936: Package 'php-symfony-debug-bundle' is not installed, so not removed 937: Package 'php-symfony-doctrine-bridge' is not installed, so not removed 938: Package 'php-symfony-dom-crawler' is not installed, so not removed 939: Package 'php-symfony-dotenv' is not installed, so not removed 940: Package 'php-symfony-error-handler' is not installed, so not removed 941: Package 'php-symfony-event-dispatcher' is not installed, so not removed ... 1119: Package 'php-twig-html-extra' is not installed, so not removed 1120: Package 'php-twig-i18n-extension' is not installed, so not removed 1121: Package 'php-twig-inky-extra' is not installed, so not removed 1122: Package 'php-twig-intl-extra' is not installed, so not removed 1123: Package 'php-twig-markdown-extra' is not installed, so not removed 1124: Package 'php-twig-string-extra' is not installed, so not removed 1125: Package 'php8.3-uopz' is not installed, so not removed 1126: Package 'php-uopz-all-dev' is not installed, so not removed 1127: Package 'php8.3-uploadprogress' is not installed, so not removed 1128: Package 'php-uploadprogress-all-dev' is not installed, so not removed 1129: Package 'php8.3-uuid' is not installed, so not removed 1130: Package 'php-uuid-all-dev' is not installed, so not removed 1131: Package 'php-validate' is not installed, so not removed 1132: Package 'php-vlucas-phpdotenv' is not installed, so not removed 1133: Package 'php-voku-portable-ascii' is not installed, so not removed 1134: Package 'php-wmerrors' is not installed, so not removed 1135: Package 'php-xdebug-all-dev' is not installed, so not removed ... 1763: (00:19:27) �[33mDEBUG: �[0m/home/runner/work/selenium/selenium/deploys/docker/docker.bzl:5:14: Ignoring ports on generated image distributor-image: https://github.com/bazel-contrib/rules_oci/issues/220 1764: (00:19:27) �[33mDEBUG: �[0m/home/runner/work/selenium/selenium/deploys/docker/docker.bzl:5:14: Ignoring ports on generated image event-bus-image: https://github.com/bazel-contrib/rules_oci/issues/220 1765: (00:19:27) �[33mDEBUG: �[0m/home/runner/work/selenium/selenium/deploys/docker/docker.bzl:5:14: Ignoring ports on generated image router-image: https://github.com/bazel-contrib/rules_oci/issues/220 1766: (00:19:27) �[33mDEBUG: �[0m/home/runner/work/selenium/selenium/deploys/docker/docker.bzl:5:14: Ignoring ports on generated image session-map-image: https://github.com/bazel-contrib/rules_oci/issues/220 1767: (00:19:27) �[33mDEBUG: �[0m/home/runner/work/selenium/selenium/deploys/docker/docker.bzl:5:14: Ignoring ports on generated image session-queue-image: https://github.com/bazel-contrib/rules_oci/issues/220 1768: (00:19:27) �[33mDEBUG: �[0m/home/runner/work/selenium/selenium/deploys/docker/docker.bzl:5:14: Ignoring ports on generated image chrome-node: https://github.com/bazel-contrib/rules_oci/issues/220 1769: (00:19:27) �[33mDEBUG: �[0m/home/runner/work/selenium/selenium/deploys/docker/docker.bzl:5:14: Ignoring ports on generated image firefox-node: https://github.com/bazel-contrib/rules_oci/issues/220 1770: (00:19:30) �[32mLoading:�[0m 241 packages loaded 1771: currently loading: scripts ... (13 packages) 1772: (00:19:35) �[32mAnalyzing:�[0m 2403 targets (254 packages loaded, 0 targets configured) 1773: (00:19:35) �[32mAnalyzing:�[0m 2403 targets (254 packages loaded, 0 targets configured) 1774: (00:19:40) �[32mAnalyzing:�[0m 2403 targets (420 packages loaded, 71 targets configured) 1775: (00:19:45) �[32mAnalyzing:�[0m 2403 targets (496 packages loaded, 11515 targets configured) 1776: (00:19:50) �[33mDEBUG: �[0m/home/runner/.bazel/external/rules_jvm_external+/private/extensions/maven.bzl:295:14: WARNING: The following maven modules appear in multiple sub-modules with potentially different versions. Consider adding one of these to your root module to ensure consistent versions: 1777: com.google.code.findbugs:jsr305 1778: com.google.errorprone:error_prone_annotations 1779: com.google.guava:guava (versions: 30.1.1-jre, 31.0.1-android) ... 1808: (00:20:56) �[32mINFO: �[0mFrom Building external/contrib_rules_jvm+/java/src/com/github/bazel_contrib/contrib_rules_jvm/junit5/liballow.jar (1 source file): 1809: warning: [options] source value 8 is obsolete and will be removed in a future release 1810: warning: [options] target value 8 is obsolete and will be removed in a future release 1811: warning: [options] To suppress warnings about obsolete options, use -Xlint:-options. 1812: (00:20:56) �[32mINFO: �[0mFrom Building external/contrib_rules_jvm+/java/src/com/github/bazel_contrib/contrib_rules_jvm/junit5/libjunit5-compile-class.jar (19 source files): 1813: warning: [options] source value 8 is obsolete and will be removed in a future release 1814: warning: [options] target value 8 is obsolete and will be removed in a future release 1815: warning: [options] To suppress warnings about obsolete options, use -Xlint:-options. 1816: (00:20:56) �[35mWARNING: �[0m/home/runner/.bazel/external/io_bazel_rules_closure/java/com/google/javascript/jscomp/BUILD:19:13: in java_library rule @@io_bazel_rules_closure//java/com/google/javascript/jscomp:jscomp: target '@@io_bazel_rules_closure//java/com/google/javascript/jscomp:jscomp' depends on deprecated target '@@io_bazel_rules_closure//java/io/bazel/rules/closure:build_info_java_proto': Use java_proto_library from com_google_protobuf 1817: (00:20:56) �[33mDEBUG: �[0m/home/runner/.bazel/external/io_bazel_rules_closure/closure/compiler/closure_js_deps.bzl:38:10: closure_js_deps() and deps.js files are deprecated. Please remove your closure_js_deps rules and, if needed, use the google-closure-deps npm module with bazelbuild/rules_nodejs to generate deps.js files. 1818: (00:20:56) �[33mDEBUG: �[0m/home/runner/.bazel/external/io_bazel_rules_closure/closure/compiler/closure_js_deps.bzl:38:10: closure_js_deps() and deps.js files are deprecated. Please remove your closure_js_deps rules and, if needed, use the google-closure-deps npm module with bazelbuild/rules_nodejs to generate deps.js files. 1819: (00:20:56) �[33mDEBUG: �[0m/home/runner/.bazel/external/io_bazel_rules_closure/closure/compiler/closure_js_deps.bzl:38:10: closure_js_deps() and deps.js files are deprecated. Please remove your closure_js_deps rules and, if needed, use the google-closure-deps npm module with bazelbuild/rules_nodejs to generate deps.js files. 1820: (00:20:57) �[32mAnalyzing:�[0m 2403 targets (1661 packages loaded, 49915 targets configured) 1821: �[32m[1,665 / 1,676]�[0m 47 / 84 tests;�[0m Action java/src/org/openqa/selenium/manager/libmanager-module.jar; 0s remote, remote-cache 1822: (00:20:57) �[32mINFO: �[0mFrom Building java/src/org/openqa/selenium/remote/libapi-class.jar (63 source files): 1823: java/src/org/openqa/selenium/remote/ErrorHandler.java:46: warning: [removal] ErrorCodes in org.openqa.selenium.remote has been deprecated and marked for removal 1824: private final ErrorCodes errorCodes; 1825: ^ 1826: java/src/org/openqa/selenium/remote/ErrorHandler.java:60: warning: [removal] ErrorCodes in org.openqa.selenium.remote has been deprecated and marked for removal 1827: this.errorCodes = new ErrorCodes(); 1828: ^ 1829: java/src/org/openqa/selenium/remote/ErrorHandler.java:68: warning: [removal] ErrorCodes in org.openqa.selenium.remote has been deprecated and marked for removal 1830: public ErrorHandler(ErrorCodes codes, boolean includeServerErrors) { 1831: ^ 1832: java/src/org/openqa/selenium/remote/Response.java:100: warning: [removal] ErrorCodes in org.openqa.selenium.remote has been deprecated and marked for removal 1833: ErrorCodes errorCodes = new ErrorCodes(); 1834: ^ 1835: java/src/org/openqa/selenium/remote/Response.java:100: warning: [removal] ErrorCodes in org.openqa.selenium.remote has been deprecated and marked for removal 1836: ErrorCodes errorCodes = new ErrorCodes(); 1837: ^ 1838: java/src/org/openqa/selenium/remote/ProtocolHandshake.java:181: warning: [removal] ErrorCodes in org.openqa.selenium.remote has been deprecated and marked for removal 1839: response.setStatus(ErrorCodes.SUCCESS); 1840: ^ 1841: java/src/org/openqa/selenium/remote/ProtocolHandshake.java:182: warning: [removal] ErrorCodes in org.openqa.selenium.remote has been deprecated and marked for removal 1842: response.setState(ErrorCodes.SUCCESS_STRING); 1843: ^ 1844: java/src/org/openqa/selenium/remote/W3CHandshakeResponse.java:53: warning: [removal] ErrorCodes in org.openqa.selenium.remote has been deprecated and marked for removal 1845: new ErrorCodes().toStatus((String) rawError, Optional.of(tuple.getStatusCode()))); 1846: ^ 1847: java/src/org/openqa/selenium/remote/W3CHandshakeResponse.java:56: warning: [removal] ErrorCodes in org.openqa.selenium.remote has been deprecated and marked for removal 1848: new ErrorCodes().getExceptionType((String) rawError); 1849: ^ 1850: java/src/org/openqa/selenium/remote/codec/AbstractHttpResponseCodec.java:44: warning: [removal] ErrorCodes in org.openqa.selenium.remote has been deprecated and marked for removal 1851: private final ErrorCodes errorCodes = new ErrorCodes(); 1852: ^ 1853: java/src/org/openqa/selenium/remote/codec/AbstractHttpResponseCodec.java:44: warning: [removal] ErrorCodes in org.openqa.selenium.remote has been deprecated and marked for removal 1854: private final ErrorCodes errorCodes = new ErrorCodes(); 1855: ^ 1856: java/src/org/openqa/selenium/remote/codec/AbstractHttpResponseCodec.java:55: warning: [removal] ErrorCodes in org.openqa.selenium.remote has been deprecated and marked for removal 1857: int status = response.getStatus() == ErrorCodes.SUCCESS ? HTTP_OK : HTTP_INTERNAL_ERROR; 1858: ^ 1859: java/src/org/openqa/selenium/remote/codec/AbstractHttpResponseCodec.java:101: warning: [removal] ErrorCodes in org.openqa.selenium.remote has been deprecated and marked for removal 1860: response.setStatus(ErrorCodes.UNKNOWN_COMMAND); 1861: ^ 1862: java/src/org/openqa/selenium/remote/codec/AbstractHttpResponseCodec.java:103: warning: [removal] ErrorCodes in org.openqa.selenium.remote has been deprecated and marked for removal 1863: response.setStatus(ErrorCodes.UNHANDLED_ERROR); 1864: ^ 1865: java/src/org/openqa/selenium/remote/codec/AbstractHttpResponseCodec.java:117: warning: [removal] ErrorCodes in org.openqa.selenium.remote has been deprecated and marked for removal 1866: response.setStatus(ErrorCodes.SUCCESS); 1867: ^ 1868: java/src/org/openqa/selenium/remote/codec/AbstractHttpResponseCodec.java:118: warning: [removal] ErrorCodes in org.openqa.selenium.remote has been deprecated and marked for removal 1869: response.setState(errorCodes.toState(ErrorCodes.SUCCESS)); 1870: ^ 1871: java/src/org/openqa/selenium/remote/codec/AbstractHttpResponseCodec.java:124: warning: [removal] ErrorCodes in org.openqa.selenium.remote has been deprecated and marked for removal 1872: response.setState(errorCodes.toState(ErrorCodes.SUCCESS)); 1873: ^ 1874: java/src/org/openqa/selenium/remote/codec/w3c/W3CHttpResponseCodec.java:70: warning: [removal] ErrorCodes in org.openqa.selenium.remote has been deprecated and marked for removal 1875: private final ErrorCodes errorCodes = new ErrorCodes(); 1876: ^ 1877: java/src/org/openqa/selenium/remote/codec/w3c/W3CHttpResponseCodec.java:70: warning: [removal] ErrorCodes in org.openqa.selenium.remote has been deprecated and marked for removal 1878: private final ErrorCodes errorCodes = new ErrorCodes(); 1879: ^ 1880: java/src/org/openqa/selenium/remote/codec/w3c/W3CHttpResponseCodec.java:93: warning: [removal] ErrorCodes in org.openqa.selenium.remote has been deprecated and marked for removal 1881: response.setStatus(ErrorCodes.UNKNOWN_COMMAND); 1882: ^ 1883: java/src/org/openqa/selenium/remote/codec/w3c/W3CHttpResponseCodec.java:98: warning: [removal] ErrorCodes in org.openqa.selenium.remote has been deprecated and marked for removal 1884: response.setStatus(ErrorCodes.UNHANDLED_ERROR); 1885: ^ 1886: java/src/org/openqa/selenium/remote/codec/w3c/W3CHttpResponseCodec.java:145: warning: [removal] ErrorCodes in org.openqa.selenium.remote has been deprecated and marked for removal 1887: response.setStatus(ErrorCodes.SUCCESS); 1888: ^ ... 1893: AccessController.doPrivileged( 1894: ^ 1895: (00:21:03) �[35mWARNING: �[0m/home/runner/work/selenium/selenium/javascript/atoms/BUILD.bazel:397:19: runfiles symlink javascript/atoms/test/action_test.html -> javascript/atoms/test/action_test.html obscured by javascript/atoms/test -> bazel-out/k8-fastbuild/bin/javascript/atoms/test 1896: (00:21:03) �[35mWARNING: �[0m/home/runner/work/selenium/selenium/javascript/atoms/BUILD.bazel:397:19: runfiles symlink javascript/atoms/test/attribute_test.html -> javascript/atoms/test/attribute_test.html obscured by javascript/atoms/test -> bazel-out/k8-fastbuild/bin/javascript/atoms/test 1897: (00:21:03) �[35mWARNING: �[0m/home/runner/work/selenium/selenium/javascript/atoms/BUILD.bazel:397:19: runfiles symlink javascript/atoms/test/child_locator_test.html -> javascript/atoms/test/child_locator_test.html obscured by javascript/atoms/test -> bazel-out/k8-fastbuild/bin/javascript/atoms/test 1898: (00:21:03) �[35mWARNING: �[0m/home/runner/work/selenium/selenium/javascript/atoms/BUILD.bazel:397:19: runfiles symlink javascript/atoms/test/click_link_test.html -> javascript/atoms/test/click_link_test.html obscured by javascript/atoms/test -> bazel-out/k8-fastbuild/bin/javascript/atoms/test 1899: (00:21:03) �[35mWARNING: �[0m/home/runner/work/selenium/selenium/javascript/atoms/BUILD.bazel:397:19: runfiles symlink javascript/atoms/test/click_submit_test.html -> javascript/atoms/test/click_submit_test.html obscured by javascript/atoms/test -> bazel-out/k8-fastbuild/bin/javascript/atoms/test 1900: (00:21:03) �[35mWARNING: �[0m/home/runner/work/selenium/selenium/javascript/atoms/BUILD.bazel:397:19: runfiles symlink javascript/atoms/test/click_test.html -> javascript/atoms/test/click_test.html obscured by javascript/atoms/test -> bazel-out/k8-fastbuild/bin/javascript/atoms/test 1901: (00:21:03) �[35mWARNING: �[0m/home/runner/work/selenium/selenium/javascript/atoms/BUILD.bazel:397:19: runfiles symlink javascript/atoms/test/clientrect_test.html -> javascript/atoms/test/clientrect_test.html obscured by javascript/atoms/test -> bazel-out/k8-fastbuild/bin/javascript/atoms/test 1902: (00:21:03) �[35mWARNING: �[0m/home/runner/work/selenium/selenium/javascript/atoms/BUILD.bazel:397:19: runfiles symlink javascript/atoms/test/color_test.html -> javascript/atoms/test/color_test.html obscured by javascript/atoms/test -> bazel-out/k8-fastbuild/bin/javascript/atoms/test 1903: (00:21:03) �[35mWARNING: �[0m/home/runner/work/selenium/selenium/javascript/atoms/BUILD.bazel:397:19: runfiles symlink javascript/atoms/test/deps.js -> javascript/atoms/test/deps.js obscured by javascript/atoms/test -> bazel-out/k8-fastbuild/bin/javascript/atoms/test 1904: (00:21:03) �[35mWARNING: �[0m/home/runner/work/selenium/selenium/javascript/atoms/BUILD.bazel:397:19: runfiles symlink javascript/atoms/test/dom_test.html -> javascript/atoms/test/dom_test.html obscured by javascript/atoms/test -> bazel-out/k8-fastbuild/bin/javascript/atoms/test 1905: (00:21:03) �[35mWARNING: �[0m/home/runner/work/selenium/selenium/javascript/atoms/BUILD.bazel:397:19: runfiles symlink javascript/atoms/test/drag_test.html -> javascript/atoms/test/drag_test.html obscured by javascript/atoms/test -> bazel-out/k8-fastbuild/bin/javascript/atoms/test 1906: (00:21:03) �[35mWARNING: �[0m/home/runner/work/selenium/selenium/javascript/atoms/BUILD.bazel:397:19: runfiles symlink javascript/atoms/test/enabled_test.html -> javascript/atoms/test/enabled_test.html obscured by javascript/atoms/test -> bazel-out/k8-fastbuild/bin/javascript/atoms/test 1907: (00:21:03) �[35mWARNING: �[0m/home/runner/work/selenium/selenium/javascript/atoms/BUILD.bazel:397:19: runfiles symlink javascript/atoms/test/enter_submit_test.html -> javascript/atoms/test/enter_submit_test.html obscured by javascript/atoms/test -> bazel-out/k8-fastbuild/bin/javascript/atoms/test 1908: (00:21:03) �[35mWARNING: �[0m/home/runner/work/selenium/selenium/javascript/atoms/BUILD.bazel:397:19: runfiles symlink javascript/atoms/test/error_test.html -> javascript/atoms/test/error_test.html obscured by javascript/atoms/test -> bazel-out/k8-fastbuild/bin/javascript/atoms/test 1909: (00:21:03) �[35mWARNING: �[0m/home/runner/work/selenium/selenium/javascript/atoms/BUILD.bazel:397:19: runfiles symlink javascript/atoms/test/events_test.html -> javascript/atoms/test/events_test.html obscured by javascript/atoms/test -> bazel-out/k8-fastbuild/bin/javascript/atoms/test ... 2162: �[0m�[1m�[33mwarning�[0m�[0m�[1m: 1 warning emitted�[0m 2163: (00:21:27) �[32mAnalyzing:�[0m 2403 targets (1747 packages loaded, 68972 targets configured) 2164: �[32m[11,666 / 13,508]�[0m 106 / 2101 tests;�[0m [Prepa] Testing //py:unit-test/unit/selenium/webdriver/common/common_options_tests.py ... (11 actions, 0 running) 2165: (00:21:32) �[32mAnalyzing:�[0m 2403 targets (1747 packages loaded, 68972 targets configured) 2166: �[32m[11,735 / 13,636]�[0m 133 / 2101 tests;�[0m [Prepa] Testing //py:common-chrome-test/selenium/webdriver/common/selenium_manager_tests.py ... (40 actions, 0 running) 2167: (00:21:37) �[32mAnalyzing:�[0m 2403 targets (1748 packages loaded, 69257 targets configured) 2168: �[32m[11,787 / 13,761]�[0m 153 / 2101 tests;�[0m Testing //py:common-firefox-bidi-test/selenium/webdriver/common/implicit_waits_tests.py; 3s remote, remote-cache ... (50 actions, 0 running) 2169: (00:21:42) �[32mAnalyzing:�[0m 2403 targets (1748 packages loaded, 69285 targets configured) 2170: �[32m[11,809 / 13,839]�[0m 161 / 2101 tests;�[0m Testing //py:common-firefox-bidi-test/selenium/webdriver/common/bidi_browsing_context_tests.py; 6s remote, remote-cache ... (50 actions, 0 running) 2171: (00:21:47) �[32mAnalyzing:�[0m 2403 targets (1748 packages loaded, 69314 targets configured) 2172: �[32m[11,855 / 14,044]�[0m 181 / 2164 tests;�[0m Testing //py:common-firefox-bidi-test/selenium/webdriver/common/bidi_network_tests.py; 6s remote, remote-cache ... (50 actions, 0 running) 2173: (00:21:52) �[32mAnalyzing:�[0m 2403 targets (1748 packages loaded, 69477 targets configured) 2174: �[32m[12,046 / 14,250]�[0m 273 / 2328 tests;�[0m Testing //py:common-chrome-beta-test/selenium/webdriver/common/driver_element_finding_tests.py; 0s remote, remote-cache ... (50 actions, 0 running) 2175: (00:21:54) �[32mINFO: �[0mAnalyzed 2403 targets (1748 packages loaded, 69551 targets configured). 2176: (00:21:57) �[32m[12,297 / 14,364]�[0m 405 / 2403 tests;�[0m Testing //py:common-chrome-test/selenium/webdriver/common/web_components_tests.py; 0s remote, remote-cache ... (50 actions, 0 running) 2177: (00:21:58) �[32mINFO: �[0mFrom Building java/test/org/openqa/selenium/remote/ErrorHandlerTest.jar (1 source file) and running annotation processors (AutoServiceProcessor): 2178: java/test/org/openqa/selenium/remote/ErrorHandlerTest.java:79: warning: [removal] ErrorCodes in org.openqa.selenium.remote has been deprecated and marked for removal 2179: handler.throwIfResponseFailed(createResponse(ErrorCodes.SUCCESS), 100); 2180: ^ 2181: java/test/org/openqa/selenium/remote/ErrorHandlerTest.java:85: warning: [removal] ErrorCodes in org.openqa.selenium.remote has been deprecated and marked for removal 2182: assertThrowsCorrectExceptionType(ErrorCodes.NO_SUCH_WINDOW, NoSuchWindowException.class); 2183: ^ 2184: java/test/org/openqa/selenium/remote/ErrorHandlerTest.java:86: warning: [removal] ErrorCodes in org.openqa.selenium.remote has been deprecated and marked for removal 2185: assertThrowsCorrectExceptionType(ErrorCodes.NO_SUCH_FRAME, NoSuchFrameException.class); 2186: ^ 2187: java/test/org/openqa/selenium/remote/ErrorHandlerTest.java:87: warning: [removal] ErrorCodes in org.openqa.selenium.remote has been deprecated and marked for removal 2188: assertThrowsCorrectExceptionType(ErrorCodes.NO_SUCH_ELEMENT, NoSuchElementException.class); 2189: ^ 2190: java/test/org/openqa/selenium/remote/ErrorHandlerTest.java:88: warning: [removal] ErrorCodes in org.openqa.selenium.remote has been deprecated and marked for removal 2191: assertThrowsCorrectExceptionType(ErrorCodes.UNKNOWN_COMMAND, UnsupportedCommandException.class); 2192: ^ 2193: java/test/org/openqa/selenium/remote/ErrorHandlerTest.java:90: warning: [removal] ErrorCodes in org.openqa.selenium.remote has been deprecated and marked for removal 2194: ErrorCodes.METHOD_NOT_ALLOWED, UnsupportedCommandException.class); 2195: ^ 2196: java/test/org/openqa/selenium/remote/ErrorHandlerTest.java:92: warning: [removal] ErrorCodes in org.openqa.selenium.remote has been deprecated and marked for removal 2197: ErrorCodes.STALE_ELEMENT_REFERENCE, StaleElementReferenceException.class); 2198: ^ 2199: java/test/org/openqa/selenium/remote/ErrorHandlerTest.java:94: warning: [removal] ErrorCodes in org.openqa.selenium.remote has been deprecated and marked for removal 2200: ErrorCodes.INVALID_ELEMENT_STATE, InvalidElementStateException.class); 2201: ^ 2202: java/test/org/openqa/selenium/remote/ErrorHandlerTest.java:95: warning: [removal] ErrorCodes in org.openqa.selenium.remote has been deprecated and marked for removal 2203: assertThrowsCorrectExceptionType(ErrorCodes.XPATH_LOOKUP_ERROR, InvalidSelectorException.class); 2204: ^ 2205: java/test/org/openqa/selenium/remote/ErrorHandlerTest.java:107: warning: [removal] ErrorCodes in org.openqa.selenium.remote has been deprecated and marked for removal 2206: Response response = createResponse(ErrorCodes.UNHANDLED_ERROR); 2207: ^ 2208: java/test/org/openqa/selenium/remote/ErrorHandlerTest.java:120: warning: [removal] ErrorCodes in org.openqa.selenium.remote has been deprecated and marked for removal 2209: createResponse(ErrorCodes.UNHANDLED_ERROR, "boom"), 123)) 2210: ^ 2211: java/test/org/openqa/selenium/remote/ErrorHandlerTest.java:133: warning: [removal] ErrorCodes in org.openqa.selenium.remote has been deprecated and marked for removal 2212: createResponse(ErrorCodes.UNHANDLED_ERROR, ImmutableMap.of("message", "boom")), 2213: ^ 2214: java/test/org/openqa/selenium/remote/ErrorHandlerTest.java:147: warning: [removal] ErrorCodes in org.openqa.selenium.remote has been deprecated and marked for removal 2215: ErrorCodes.UNHANDLED_ERROR, 2216: ^ 2217: java/test/org/openqa/selenium/remote/ErrorHandlerTest.java:167: warning: [removal] ErrorCodes in org.openqa.selenium.remote has been deprecated and marked for removal 2218: ErrorCodes.UNHANDLED_ERROR, 2219: ^ 2220: java/test/org/openqa/selenium/remote/ErrorHandlerTest.java:193: warning: [removal] ErrorCodes in org.openqa.selenium.remote has been deprecated and marked for removal 2221: createResponse(ErrorCodes.UNHANDLED_ERROR, toMap(serverError)), 123)) 2222: ^ 2223: java/test/org/openqa/selenium/remote/ErrorHandlerTest.java:214: warning: [removal] ErrorCodes in org.openqa.selenium.remote has been deprecated and marked for removal 2224: createResponse(ErrorCodes.UNHANDLED_ERROR, data), 123)) 2225: ^ 2226: java/test/org/openqa/selenium/remote/ErrorHandlerTest.java:248: warning: [removal] ErrorCodes in org.openqa.selenium.remote has been deprecated and marked for removal 2227: createResponse(ErrorCodes.UNHANDLED_ERROR, data), 123)) 2228: ^ 2229: java/test/org/openqa/selenium/remote/ErrorHandlerTest.java:280: warning: [removal] ErrorCodes in org.openqa.selenium.remote has been deprecated and marked for removal 2230: createResponse(ErrorCodes.UNHANDLED_ERROR, data), 123)) 2231: ^ 2232: java/test/org/openqa/selenium/remote/ErrorHandlerTest.java:308: warning: [removal] ErrorCodes in org.openqa.selenium.remote has been deprecated and marked for removal 2233: createResponse(ErrorCodes.UNHANDLED_ERROR, data), 123)) 2234: ^ 2235: java/test/org/openqa/selenium/remote/ErrorHandlerTest.java:327: warning: [removal] ErrorCodes in org.openqa.selenium.remote has been deprecated and marked for removal 2236: createResponse(ErrorCodes.UNHANDLED_ERROR, data), 123)) 2237: ^ 2238: java/test/org/openqa/selenium/remote/ErrorHandlerTest.java:355: warning: [removal] ErrorCodes in org.openqa.selenium.remote has been deprecated and marked for removal 2239: createResponse(ErrorCodes.UNHANDLED_ERROR, data), 123)) 2240: ^ 2241: java/test/org/openqa/selenium/remote/ErrorHandlerTest.java:394: warning: [removal] ErrorCodes in org.openqa.selenium.remote has been deprecated and marked for removal 2242: createResponse(ErrorCodes.UNHANDLED_ERROR, data), 123)) 2243: ^ 2244: java/test/org/openqa/selenium/remote/ErrorHandlerTest.java:426: warning: [removal] ErrorCodes in org.openqa.selenium.remote has been deprecated and marked for removal 2245: createResponse(ErrorCodes.UNHANDLED_ERROR, toMap(serverError)), 123)) 2246: ^ 2247: java/test/org/openqa/selenium/remote/ErrorHandlerTest.java:435: warning: [removal] ErrorCodes in org.openqa.selenium.remote has been deprecated and marked for removal 2248: exceptions.put(ErrorCodes.NO_SUCH_SESSION, NoSuchSessionException.class); 2249: ^ 2250: java/test/org/openqa/selenium/remote/ErrorHandlerTest.java:436: warning: [removal] ErrorCodes in org.openqa.selenium.remote has been deprecated and marked for removal 2251: exceptions.put(ErrorCodes.NO_SUCH_ELEMENT, NoSuchElementException.class); 2252: ^ 2253: java/test/org/openqa/selenium/remote/ErrorHandlerTest.java:437: warning: [removal] ErrorCodes in org.openqa.selenium.remote has been deprecated and marked for removal 2254: exceptions.put(ErrorCodes.NO_SUCH_FRAME, NoSuchFrameException.class); 2255: ^ 2256: java/test/org/openqa/selenium/remote/ErrorHandlerTest.java:438: warning: [removal] ErrorCodes in org.openqa.selenium.remote has been deprecated and marked for removal 2257: exceptions.put(ErrorCodes.UNKNOWN_COMMAND, UnsupportedCommandException.class); 2258: ^ 2259: java/test/org/openqa/selenium/remote/ErrorHandlerTest.java:439: warning: [removal] ErrorCodes in org.openqa.selenium.remote has been deprecated and marked for removal 2260: exceptions.put(ErrorCodes.STALE_ELEMENT_REFERENCE, StaleElementReferenceException.class); 2261: ^ 2262: java/test/org/openqa/selenium/remote/ErrorHandlerTest.java:440: warning: [removal] ErrorCodes in org.openqa.selenium.remote has been deprecated and marked for removal 2263: exceptions.put(ErrorCodes.INVALID_ELEMENT_STATE, InvalidElementStateException.class); 2264: ^ 2265: java/test/org/openqa/selenium/remote/ErrorHandlerTest.java:441: warning: [removal] ErrorCodes in org.openqa.selenium.remote has been deprecated and marked for removal 2266: exceptions.put(ErrorCodes.UNHANDLED_ERROR, WebDriverException.class); 2267: ^ 2268: java/test/org/openqa/selenium/remote/ErrorHandlerTest.java:442: warning: [removal] ErrorCodes in org.openqa.selenium.remote has been deprecated and marked for removal 2269: exceptions.put(ErrorCodes.JAVASCRIPT_ERROR, JavascriptException.class); 2270: ^ 2271: java/test/org/openqa/selenium/remote/ErrorHandlerTest.java:443: warning: [removal] ErrorCodes in org.openqa.selenium.remote has been deprecated and marked for removal 2272: exceptions.put(ErrorCodes.XPATH_LOOKUP_ERROR, InvalidSelectorException.class); 2273: ^ 2274: java/test/org/openqa/selenium/remote/ErrorHandlerTest.java:444: warning: [removal] ErrorCodes in org.openqa.selenium.remote has been deprecated and marked for removal 2275: exceptions.put(ErrorCodes.TIMEOUT, TimeoutException.class); 2276: ^ 2277: java/test/org/openqa/selenium/remote/ErrorHandlerTest.java:445: warning: [removal] ErrorCodes in org.openqa.selenium.remote has been deprecated and marked for removal 2278: exceptions.put(ErrorCodes.NO_SUCH_WINDOW, NoSuchWindowException.class); 2279: ^ 2280: java/test/org/openqa/selenium/remote/ErrorHandlerTest.java:446: warning: [removal] ErrorCodes in org.openqa.selenium.remote has been deprecated and marked for removal 2281: exceptions.put(ErrorCodes.INVALID_COOKIE_DOMAIN, InvalidCookieDomainException.class); 2282: ^ 2283: java/test/org/openqa/selenium/remote/ErrorHandlerTest.java:447: warning: [removal] ErrorCodes in org.openqa.selenium.remote has been deprecated and marked for removal 2284: exceptions.put(ErrorCodes.UNABLE_TO_SET_COOKIE, UnableToSetCookieException.class); 2285: ^ 2286: java/test/org/openqa/selenium/remote/ErrorHandlerTest.java:448: warning: [removal] ErrorCodes in org.openqa.selenium.remote has been deprecated and marked for removal 2287: exceptions.put(ErrorCodes.UNEXPECTED_ALERT_PRESENT, UnhandledAlertException.class); 2288: ^ 2289: java/test/org/openqa/selenium/remote/ErrorHandlerTest.java:449: warning: [removal] ErrorCodes in org.openqa.selenium.remote has been deprecated and marked for removal 2290: exceptions.put(ErrorCodes.NO_ALERT_PRESENT, NoAlertPresentException.class); 2291: ^ 2292: java/test/org/openqa/selenium/remote/ErrorHandlerTest.java:450: warning: [removal] ErrorCodes in org.openqa.selenium.remote has been deprecated and marked for removal 2293: exceptions.put(ErrorCodes.ASYNC_SCRIPT_TIMEOUT, ScriptTimeoutException.class); 2294: ^ 2295: java/test/org/openqa/selenium/remote/ErrorHandlerTest.java:451: warning: [removal] ErrorCodes in org.openqa.selenium.remote has been deprecated and marked for removal 2296: exceptions.put(ErrorCodes.INVALID_SELECTOR_ERROR, InvalidSelectorException.class); 2297: ^ 2298: java/test/org/openqa/selenium/remote/ErrorHandlerTest.java:452: warning: [removal] ErrorCodes in org.openqa.selenium.remote has been deprecated and marked for removal 2299: exceptions.put(ErrorCodes.SESSION_NOT_CREATED, SessionNotCreatedException.class); 2300: ^ 2301: java/test/org/openqa/selenium/remote/ErrorHandlerTest.java:453: warning: [removal] ErrorCodes in org.openqa.selenium.remote has been deprecated and marked for removal 2302: exceptions.put(ErrorCodes.MOVE_TARGET_OUT_OF_BOUNDS, MoveTargetOutOfBoundsException.class); 2303: ^ 2304: java/test/org/openqa/selenium/remote/ErrorHandlerTest.java:454: warning: [removal] ErrorCodes in org.openqa.selenium.remote has been deprecated and marked for removal 2305: exceptions.put(ErrorCodes.INVALID_XPATH_SELECTOR, InvalidSelectorException.class); 2306: ^ 2307: java/test/org/openqa/selenium/remote/ErrorHandlerTest.java:455: warning: [removal] ErrorCodes in org.openqa.selenium.remote has been deprecated and marked for removal 2308: exceptions.put(ErrorCodes.INVALID_XPATH_SELECTOR_RETURN_TYPER, InvalidSelectorException.class); 2309: ^ 2310: java/test/org/openqa/selenium/remote/ErrorHandlerTest.java:469: warning: [removal] ErrorCodes in org.openqa.selenium.remote has been deprecated and marked for removal 2311: ? ErrorCodes.INVALID_SELECTOR_ERROR 2312: ^ 2313: java/test/org/openqa/selenium/remote/ErrorHandlerTest.java:471: warning: [removal] ErrorCodes in org.openqa.selenium.remote has been deprecated and marked for removal 2314: assertThat(new ErrorCodes().toStatusCode(e)).isEqualTo(expected); 2315: ^ 2316: java/test/org/openqa/selenium/remote/ErrorHandlerTest.java:483: warning: [removal] ErrorCodes in org.openqa.selenium.remote has been deprecated and marked for removal 2317: response.setState(new ErrorCodes().toState(status)); 2318: ^ 2319: (00:22:00) �[32mINFO: �[0mFrom Building java/test/org/openqa/selenium/json/JsonTest.jar (1 source file): 2320: java/test/org/openqa/selenium/json/JsonTest.java:430: warning: [removal] ErrorCodes in org.openqa.selenium.remote has been deprecated and marked for removal 2321: assertThat(response.getState()).isEqualTo(new ErrorCodes().toState(0)); 2322: ^ 2323: java/test/org/openqa/selenium/json/JsonTest.java:441: warning: [removal] ErrorCodes in org.openqa.selenium.remote has been deprecated and marked for removal 2324: assertThat(response.getState()).isEqualTo(new ErrorCodes().toState(0)); 2325: ^ 2326: java/test/org/openqa/selenium/json/JsonTest.java:454: warning: [removal] ErrorCodes in org.openqa.selenium.remote has been deprecated and marked for removal 2327: assertThat(response.getState()).isEqualTo(new ErrorCodes().toState(32)); 2328: ^ 2329: (00:22:02) �[32mINFO: �[0mFrom Building java/test/org/openqa/selenium/remote/RemotableByTest.jar (1 source file) and running annotation processors (AutoServiceProcessor): 2330: java/test/org/openqa/selenium/remote/RemotableByTest.java:23: warning: [removal] ErrorCodes in org.openqa.selenium.remote has been deprecated and marked for removal 2331: import static org.openqa.selenium.remote.ErrorCodes.SUCCESS_STRING; 2332: ^ 2333: java/test/org/openqa/selenium/remote/RemotableByTest.java:23: warning: [removal] ErrorCodes in org.openqa.selenium.remote has been deprecated and marked for removal 2334: import static org.openqa.selenium.remote.ErrorCodes.SUCCESS_STRING; 2335: ^ 2336: java/test/org/openqa/selenium/remote/RemotableByTest.java:23: warning: [removal] ErrorCodes in org.openqa.selenium.remote has been deprecated and marked for removal 2337: import static org.openqa.selenium.remote.ErrorCodes.SUCCESS_STRING; 2338: ^ 2339: java/test/org/openqa/selenium/remote/RemotableByTest.java:45: warning: [removal] ErrorCodes in org.openqa.selenium.remote has been deprecated and marked for removal 2340: private final ErrorCodes errorCodes = new ErrorCodes(); 2341: ^ 2342: java/test/org/openqa/selenium/remote/RemotableByTest.java:45: warning: [removal] ErrorCodes in org.openqa.selenium.remote has been deprecated and marked for removal 2343: private final ErrorCodes errorCodes = new ErrorCodes(); 2344: ^ 2345: java/test/org/openqa/selenium/remote/RemotableByTest.java:45: warning: [removal] ErrorCodes in org.openqa.selenium.remote has been deprecated and marked for removal 2346: private final ErrorCodes errorCodes = new ErrorCodes(); 2347: ^ 2348: java/test/org/openqa/selenium/remote/RemotableByTest.java:45: warning: [removal] ErrorCodes in org.openqa.selenium.remote has been deprecated and marked for removal 2349: private final ErrorCodes errorCodes = new ErrorCodes(); 2350: ^ 2351: (00:22:02) �[32m[12,641 / 14,436]�[0m 586 / 2403 tests;�[0m Testing //rb/spec/unit/selenium/webdriver/edge:options; 0s remote, remote-cache ... (50 actions, 0 running) 2352: (00:22:07) �[32m[13,071 / 14,646]�[0m 753 / 2403 tests;�[0m Testing //py:common-edge-bidi-test/selenium/webdriver/common/clear_tests.py; 0s remote, remote-cache ... (43 actions, 6 running) 2353: (00:22:08) �[32mINFO: �[0mFrom Building java/test/org/openqa/selenium/remote/codec/w3c/W3CHttpResponseCodecTest.jar (1 source file): 2354: java/test/org/openqa/selenium/remote/codec/w3c/W3CHttpResponseCodecTest.java:26: warning: [removal] ErrorCodes in org.openqa.selenium.remote has been deprecated and marked for removal 2355: import static org.openqa.selenium.remote.ErrorCodes.METHOD_NOT_ALLOWED; 2356: ^ 2357: java/test/org/openqa/selenium/remote/codec/w3c/W3CHttpResponseCodecTest.java:55: warning: [removal] ErrorCodes in org.openqa.selenium.remote has been deprecated and marked for removal 2358: assertThat(decoded.getStatus()).isEqualTo(ErrorCodes.SUCCESS); 2359: ^ 2360: java/test/org/openqa/selenium/remote/codec/w3c/W3CHttpResponseCodecTest.java:81: warning: [removal] ErrorCodes in org.openqa.selenium.remote has been deprecated and marked for removal 2361: assertThat(decoded.getStatus()).isEqualTo(ErrorCodes.UNHANDLED_ERROR); 2362: ^ 2363: java/test/org/openqa/selenium/remote/codec/w3c/W3CHttpResponseCodecTest.java:107: warning: [removal] ErrorCodes in org.openqa.selenium.remote has been deprecated and marked for removal 2364: assertThat(decoded.getStatus()).isEqualTo(ErrorCodes.UNHANDLED_ERROR); 2365: ^ 2366: (00:22:09) �[32mINFO: �[0mFrom Building java/test/org/openqa/selenium/remote/libsmall-tests-test-lib.jar (5 source files) and running annotation processors (AutoServiceProcessor): 2367: java/test/org/openqa/selenium/remote/WebDriverFixture.java:170: warning: [removal] ErrorCodes in org.openqa.selenium.remote has been deprecated and marked for removal 2368: response.setStatus(new ErrorCodes().toStatus(state, Optional.of(400))); 2369: ^ ... 2527: (00:22:52) �[32m[17,083 / 17,202]�[0m 2209 / 2403 tests;�[0m Testing //dotnet/test/common:DevTools/DevToolsNetworkTest-chrome; 7s remote, remote-cache ... (46 actions, 4 running) 2528: (00:23:02) �[32m[17,222 / 17,229]�[0m 2326 / 2403 tests;�[0m Testing //dotnet/test/common:DevTools/DevToolsNetworkTest-chrome; 17s remote, remote-cache ... (7 actions, 4 running) 2529: (00:23:07) �[32m[17,222 / 17,229]�[0m 2326 / 2403 tests;�[0m Testing //dotnet/test/common:DevTools/DevToolsNetworkTest-chrome; 22s remote, remote-cache ... (7 actions, 5 running) 2530: (00:23:14) �[32m[17,222 / 17,229]�[0m 2326 / 2403 tests;�[0m Testing //dotnet/test/common:DevTools/DevToolsNetworkTest-chrome; 29s remote, remote-cache ... (7 actions, 6 running) 2531: (00:23:18) �[31m�[1mFAIL: �[0m//dotnet/test/common:DevTools/DevToolsTargetTest-chrome (see /home/runner/.bazel/execroot/_main/bazel-out/k8-fastbuild-ST-7636bdc63bf0/testlogs/dotnet/test/common/DevTools/DevToolsTargetTest-chrome/test_attempts/attempt_1.log) 2532: (00:23:18) �[31m�[1mFAIL: �[0m//dotnet/test/common:DevTools/DevToolsNetworkTest-chrome (see /home/runner/.bazel/execroot/_main/bazel-out/k8-fastbuild-ST-7636bdc63bf0/testlogs/dotnet/test/common/DevTools/DevToolsNetworkTest-chrome/test_attempts/attempt_1.log) 2533: (00:23:19) �[31m�[1mFAIL: �[0m//dotnet/test/common:DevTools/DevToolsConsoleTest-chrome (see /home/runner/.bazel/execroot/_main/bazel-out/k8-fastbuild-ST-7636bdc63bf0/testlogs/dotnet/test/common/DevTools/DevToolsConsoleTest-chrome/test_attempts/attempt_1.log) 2534: (00:23:19) �[31m�[1mFAIL: �[0m//dotnet/test/common:DevTools/DevToolsTabsTest-chrome (see /home/runner/.bazel/execroot/_main/bazel-out/k8-fastbuild-ST-7636bdc63bf0/testlogs/dotnet/test/common/DevTools/DevToolsTabsTest-chrome/test_attempts/attempt_1.log) 2535: (00:23:19) �[32m[17,222 / 17,229]�[0m 2326 / 2403 tests;�[0m Testing //dotnet/test/common:DevTools/DevToolsNetworkTest-chrome; 34s remote, remote-cache ... (7 actions running) 2536: (00:23:27) �[32m[17,222 / 17,229]�[0m 2326 / 2403 tests;�[0m Testing //dotnet/test/common:DevTools/DevToolsNetworkTest-chrome; 42s remote, remote-cache ... (7 actions running) 2537: (00:23:32) �[32m[17,222 / 17,229]�[0m 2326 / 2403 tests;�[0m Testing //dotnet/test/common:DevTools/DevToolsNetworkTest-chrome; 47s remote, remote-cache ... (7 actions running) 2538: (00:23:33) �[31m�[1mFAIL: �[0m//dotnet/test/common:DevTools/DevToolsPerformanceTest-chrome (see /home/runner/.bazel/execroot/_main/bazel-out/k8-fastbuild-ST-7636bdc63bf0/testlogs/dotnet/test/common/DevTools/DevToolsPerformanceTest-chrome/test_attempts/attempt_1.log) 2539: (00:23:33) �[31m�[1mFAIL: �[0m//dotnet/test/common:DevTools/DevToolsSecurityTest-chrome (see /home/runner/.bazel/execroot/_main/bazel-out/k8-fastbuild-ST-7636bdc63bf0/testlogs/dotnet/test/common/DevTools/DevToolsSecurityTest-chrome/test_attempts/attempt_1.log) 2540: (00:23:33) �[31m�[1mFAIL: �[0m//dotnet/test/common:DevTools/DevToolsProfilerTest-chrome (see /home/runner/.bazel/execroot/_main/bazel-out/k8-fastbuild-ST-7636bdc63bf0/testlogs/dotnet/test/common/DevTools/DevToolsProfilerTest-chrome/test_attempts/attempt_1.log) 2541: (00:23:34) �[31m�[1mFAIL: �[0m//dotnet/test/common:DevTools/DevToolsTargetTest-chrome (see /home/runner/.bazel/execroot/_main/bazel-out/k8-fastbuild-ST-7636bdc63bf0/testlogs/dotnet/test/common/DevTools/DevToolsTargetTest-chrome/test.log) 2542: �[31m�[1mFAILED: �[0m//dotnet/test/common:DevTools/DevToolsTargetTest-chrome (Summary) 2543: /home/runner/.bazel/execroot/_main/bazel-out/k8-fastbuild-ST-7636bdc63bf0/testlogs/dotnet/test/common/DevTools/DevToolsTargetTest-chrome/test.log ... 2611: 00:23:01.481 TRACE DevToolsSession: CDP RCV << {"id":4,"result":{},"sessionId":"1817256659FDA8E000EA06CCDAC2F80C"} 2612: 00:23:01.504 DEBUG HttpCommandExecutor: Executing command: [6fc238d9f69c9672bc4e9d8e5a55f6b9]: quit 2613: 00:23:01.504 TRACE HttpCommandExecutor: >> DELETE http://localhost:41137/session/6fc238d9f69c9672bc4e9d8e5a55f6b9 2614: 00:23:01.669 TRACE HttpCommandExecutor: << 200 OK 2615: 00:23:01.671 DEBUG HttpCommandExecutor: Response: ( Success: ) 2616: 00:23:01.784 DEBUG HttpCommandExecutor: Executing command: []: newSession 2617: 00:23:01.785 TRACE HttpCommandExecutor: >> POST http://localhost:41811/session 2618: {"capabilities":{"firstMatch":[{"browserName":"chrome","goog:chromeOptions":{"args":["--no-sandbox","--disable-dev-shm-usage"],"binary":"external/\u002Bpin_browsers_extension\u002Blinux_chrome/chrome-linux64/chrome"}}]}} 2619: 00:23:03.463 TRACE HttpCommandExecutor: << 200 OK 2620: 00:23:03.464 DEBUG HttpCommandExecutor: Response: (199b26cb6cc59b77db133ee0a6260bb7 Success: System.Collections.Generic.Dictionary`2[System.String,System.Object]) 2621: => OpenQA.Selenium.AssemblyFixture 2622: 00:23:03.470 DEBUG HttpCommandExecutor: Executing command: [199b26cb6cc59b77db133ee0a6260bb7]: quit 2623: 00:23:03.470 TRACE HttpCommandExecutor: >> DELETE http://localhost:41811/session/199b26cb6cc59b77db133ee0a6260bb7 2624: 00:23:03.574 TRACE HttpCommandExecutor: << 200 OK 2625: 00:23:03.575 DEBUG HttpCommandExecutor: Response: ( Success: ) 2626: Errors, Failures and Warnings 2627: 1) Error : OpenQA.Selenium.DevTools.DevToolsTargetTest.CreateAndContentLifeCycle 2628: System.InvalidOperationException : The type is invalid for conversion. You requested domains of type 'OpenQA.Selenium.DevTools.V142.DevToolsSessionDomains', but the version-specific domains for this session are 'OpenQA.Selenium.DevTools.V141.V141Domains' 2629: at OpenQA.Selenium.DevTools.DevToolsSession.GetVersionSpecificDomains[T]() 2630: at OpenQA.Selenium.DevTools.DevToolsTargetTest.CreateAndContentLifeCycle() 2631: at NUnit.Framework.Internal.TaskAwaitAdapter.GenericAdapter`1.GetResult() 2632: at NUnit.Framework.Internal.AsyncToSyncAdapter.Await(Func`1 invoke) 2633: at NUnit.Framework.Internal.Commands.TestMethodCommand.RunTestMethod(TestExecutionContext context) 2634: at NUnit.Framework.Internal.Commands.TestMethodCommand.Execute(TestExecutionContext context) 2635: at NUnit.Framework.Internal.Commands.BeforeAndAfterTestCommand.<>c__DisplayClass1_0.<Execute>b__0() 2636: at NUnit.Framework.Internal.Commands.BeforeAndAfterTestCommand.RunTestMethodInThreadAbortSafeZone(TestExecutionContext context, Action action) 2637: 2) Error : OpenQA.Selenium.DevTools.DevToolsTargetTest.GetTargetActivateAndAttach 2638: System.InvalidOperationException : The type is invalid for conversion. You requested domains of type 'OpenQA.Selenium.DevTools.V142.DevToolsSessionDomains', but the version-specific domains for this session are 'OpenQA.Selenium.DevTools.V141.V141Domains' 2639: at OpenQA.Selenium.DevTools.DevToolsSession.GetVersionSpecificDomains[T]() 2640: at OpenQA.Selenium.DevTools.DevToolsTargetTest.GetTargetActivateAndAttach() 2641: at NUnit.Framework.Internal.TaskAwaitAdapter.GenericAdapter`1.GetResult() 2642: at NUnit.Framework.Internal.AsyncToSyncAdapter.Await(Func`1 invoke) 2643: at NUnit.Framework.Internal.Commands.TestMethodCommand.RunTestMethod(TestExecutionContext context) 2644: at NUnit.Framework.Internal.Commands.TestMethodCommand.Execute(TestExecutionContext context) 2645: at NUnit.Framework.Internal.Commands.BeforeAndAfterTestCommand.<>c__DisplayClass1_0.<Execute>b__0() 2646: at NUnit.Framework.Internal.Commands.BeforeAndAfterTestCommand.RunTestMethodInThreadAbortSafeZone(TestExecutionContext context, Action action) 2647: 3) Error : OpenQA.Selenium.DevTools.DevToolsTargetTest.GetTargetAndSendMessageToTarget 2648: System.InvalidOperationException : The type is invalid for conversion. You requested domains of type 'OpenQA.Selenium.DevTools.V142.DevToolsSessionDomains', but the version-specific domains for this session are 'OpenQA.Selenium.DevTools.V141.V141Domains' 2649: at OpenQA.Selenium.DevTools.DevToolsSession.GetVersionSpecificDomains[T]() 2650: at OpenQA.Selenium.DevTools.DevToolsTargetTest.GetTargetAndSendMessageToTarget() 2651: at NUnit.Framework.Internal.TaskAwaitAdapter.GenericAdapter`1.GetResult() 2652: at NUnit.Framework.Internal.AsyncToSyncAdapter.Await(Func`1 invoke) 2653: at NUnit.Framework.Internal.Commands.TestMethodCommand.RunTestMethod(TestExecutionContext context) 2654: at NUnit.Framework.Internal.Commands.TestMethodCommand.Execute(TestExecutionContext context) 2655: at NUnit.Framework.Internal.Commands.BeforeAndAfterTestCommand.<>c__DisplayClass1_0.<Execute>b__0() 2656: at NUnit.Framework.Internal.Commands.BeforeAndAfterTestCommand.RunTestMethodInThreadAbortSafeZone(TestExecutionContext context, Action action) 2657: Run Settings 2658: Number of Test Workers: 2 2659: Work Directory: /mnt/engflow/worker/work/1/exec/bazel-out/k8-fastbuild-ST-7636bdc63bf0/bin/dotnet/test/common/DevTools/DevToolsTargetTest-chrome/net8.0/WebDriver.Common.Tests.dll.sh.runfiles/_main 2660: Internal Trace: Off 2661: Test Run Summary 2662: Overall result: Failed 2663: Test Count: 3, Passed: 0, Failed: 3, Warnings: 0, Inconclusive: 0, Skipped: 0 2664: Failed Tests - Failures: 0, Errors: 3, Invalid: 0 2665: Start time: 2025-10-25 00:22:48Z ... 2736: 00:23:30.531 TRACE DevToolsSession: CDP RCV << {"id":4,"result":{},"sessionId":"9E0E227404BE2104FB4FE6388E256801"} 2737: 00:23:30.550 DEBUG HttpCommandExecutor: Executing command: [3c3ce260b1063fa1d4634628f0bf0732]: quit 2738: 00:23:30.550 TRACE HttpCommandExecutor: >> DELETE http://localhost:33577/session/3c3ce260b1063fa1d4634628f0bf0732 2739: 00:23:30.657 TRACE HttpCommandExecutor: << 200 OK 2740: 00:23:30.658 DEBUG HttpCommandExecutor: Response: ( Success: ) 2741: 00:23:30.728 DEBUG HttpCommandExecutor: Executing command: []: newSession 2742: 00:23:30.729 TRACE HttpCommandExecutor: >> POST http://localhost:38959/session 2743: {"capabilities":{"firstMatch":[{"browserName":"chrome","goog:chromeOptions":{"args":["--no-sandbox","--disable-dev-shm-usage"],"binary":"external/\u002Bpin_browsers_extension\u002Blinux_chrome/chrome-linux64/chrome"}}]}} 2744: 00:23:31.995 TRACE HttpCommandExecutor: << 200 OK 2745: 00:23:31.996 DEBUG HttpCommandExecutor: Response: (effe37c0741c05ba365309efcf7e58d8 Success: System.Collections.Generic.Dictionary`2[System.String,System.Object]) 2746: => OpenQA.Selenium.AssemblyFixture 2747: 00:23:32.001 DEBUG HttpCommandExecutor: Executing command: [effe37c0741c05ba365309efcf7e58d8]: quit 2748: 00:23:32.002 TRACE HttpCommandExecutor: >> DELETE http://localhost:38959/session/effe37c0741c05ba365309efcf7e58d8 2749: 00:23:32.106 TRACE HttpCommandExecutor: << 200 OK 2750: 00:23:32.107 DEBUG HttpCommandExecutor: Response: ( Success: ) 2751: Errors, Failures and Warnings 2752: 1) Error : OpenQA.Selenium.DevTools.DevToolsTargetTest.CreateAndContentLifeCycle 2753: System.InvalidOperationException : The type is invalid for conversion. You requested domains of type 'OpenQA.Selenium.DevTools.V142.DevToolsSessionDomains', but the version-specific domains for this session are 'OpenQA.Selenium.DevTools.V141.V141Domains' 2754: at OpenQA.Selenium.DevTools.DevToolsSession.GetVersionSpecificDomains[T]() 2755: at OpenQA.Selenium.DevTools.DevToolsTargetTest.CreateAndContentLifeCycle() 2756: at NUnit.Framework.Internal.TaskAwaitAdapter.GenericAdapter`1.GetResult() 2757: at NUnit.Framework.Internal.AsyncToSyncAdapter.Await(Func`1 invoke) 2758: at NUnit.Framework.Internal.Commands.TestMethodCommand.RunTestMethod(TestExecutionContext context) 2759: at NUnit.Framework.Internal.Commands.TestMethodCommand.Execute(TestExecutionContext context) 2760: at NUnit.Framework.Internal.Commands.BeforeAndAfterTestCommand.<>c__DisplayClass1_0.<Execute>b__0() 2761: at NUnit.Framework.Internal.Commands.BeforeAndAfterTestCommand.RunTestMethodInThreadAbortSafeZone(TestExecutionContext context, Action action) 2762: 2) Error : OpenQA.Selenium.DevTools.DevToolsTargetTest.GetTargetActivateAndAttach 2763: System.InvalidOperationException : The type is invalid for conversion. You requested domains of type 'OpenQA.Selenium.DevTools.V142.DevToolsSessionDomains', but the version-specific domains for this session are 'OpenQA.Selenium.DevTools.V141.V141Domains' 2764: at OpenQA.Selenium.DevTools.DevToolsSession.GetVersionSpecificDomains[T]() 2765: at OpenQA.Selenium.DevTools.DevToolsTargetTest.GetTargetActivateAndAttach() 2766: at NUnit.Framework.Internal.TaskAwaitAdapter.GenericAdapter`1.GetResult() 2767: at NUnit.Framework.Internal.AsyncToSyncAdapter.Await(Func`1 invoke) 2768: at NUnit.Framework.Internal.Commands.TestMethodCommand.RunTestMethod(TestExecutionContext context) 2769: at NUnit.Framework.Internal.Commands.TestMethodCommand.Execute(TestExecutionContext context) 2770: at NUnit.Framework.Internal.Commands.BeforeAndAfterTestCommand.<>c__DisplayClass1_0.<Execute>b__0() 2771: at NUnit.Framework.Internal.Commands.BeforeAndAfterTestCommand.RunTestMethodInThreadAbortSafeZone(TestExecutionContext context, Action action) 2772: 3) Error : OpenQA.Selenium.DevTools.DevToolsTargetTest.GetTargetAndSendMessageToTarget 2773: System.InvalidOperationException : The type is invalid for conversion. You requested domains of type 'OpenQA.Selenium.DevTools.V142.DevToolsSessionDomains', but the version-specific domains for this session are 'OpenQA.Selenium.DevTools.V141.V141Domains' 2774: at OpenQA.Selenium.DevTools.DevToolsSession.GetVersionSpecificDomains[T]() 2775: at OpenQA.Selenium.DevTools.DevToolsTargetTest.GetTargetAndSendMessageToTarget() 2776: at NUnit.Framework.Internal.TaskAwaitAdapter.GenericAdapter`1.GetResult() 2777: at NUnit.Framework.Internal.AsyncToSyncAdapter.Await(Func`1 invoke) 2778: at NUnit.Framework.Internal.Commands.TestMethodCommand.RunTestMethod(TestExecutionContext context) 2779: at NUnit.Framework.Internal.Commands.TestMethodCommand.Execute(TestExecutionContext context) 2780: at NUnit.Framework.Internal.Commands.BeforeAndAfterTestCommand.<>c__DisplayClass1_0.<Execute>b__0() 2781: at NUnit.Framework.Internal.Commands.BeforeAndAfterTestCommand.RunTestMethodInThreadAbortSafeZone(TestExecutionContext context, Action action) 2782: Run Settings 2783: Number of Test Workers: 2 2784: Work Directory: /mnt/engflow/worker/work/1/exec/bazel-out/k8-fastbuild-ST-7636bdc63bf0/bin/dotnet/test/common/DevTools/DevToolsTargetTest-chrome/net8.0/WebDriver.Common.Tests.dll.sh.runfiles/_main 2785: Internal Trace: Off 2786: Test Run Summary 2787: Overall result: Failed 2788: Test Count: 3, Passed: 0, Failed: 3, Warnings: 0, Inconclusive: 0, Skipped: 0 2789: Failed Tests - Failures: 0, Errors: 3, Invalid: 0 2790: Start time: 2025-10-25 00:23:21Z 2791: End time: 2025-10-25 00:23:32Z 2792: Duration: 11.229 seconds 2793: Results (nunit3) saved as /mnt/engflow/worker/work/1/exec/bazel-out/k8-fastbuild-ST-7636bdc63bf0/bin/dotnet/test/common/DevTools/DevToolsTargetTest-chrome/net8.0/WebDriver.Common.Tests.dll.sh.runfiles/_main/TestResult.xml 2794: Execution result: https://gypsum.cluster.engflow.com/actions/executions/ChB9bKJVvg9WvIP42j-cznKbEgdkZWZhdWx0GiUKICMYE3eYGAZoWxjXbzNORB8IEC3VSfcXw8wG9UPBfLZCELwD 2795: ================================================================================ 2796: (00:23:39) �[32m[17,223 / 17,229]�[0m 2327 / 2403 tests, �[31m�[1m1 failed�[0m;�[0m Testing //dotnet/test/common:DevTools/DevToolsNetworkTest-chrome; 53s remote, remote-cache ... (6 actions running) 2797: (00:23:45) �[32m[17,223 / 17,229]�[0m 2327 / 2403 tests, �[31m�[1m1 failed�[0m;�[0m Testing //dotnet/test/common:DevTools/DevToolsNetworkTest-chrome; 60s remote, remote-cache ... (6 actions running) 2798: (00:23:49) �[31m�[1mFAIL: �[0m//dotnet/test/common:DevTools/DevToolsConsoleTest-chrome (see /home/runner/.bazel/execroot/_main/bazel-out/k8-fastbuild-ST-7636bdc63bf0/testlogs/dotnet/test/common/DevTools/DevToolsConsoleTest-chrome/test.log) 2799: �[31m�[1mFAILED: �[0m//dotnet/test/common:DevTools/DevToolsConsoleTest-chrome (Summary) 2800: /home/runner/.bazel/execroot/_main/bazel-out/k8-fastbuild-ST-7636bdc63bf0/testlogs/dotnet/test/common/DevTools/DevToolsConsoleTest-chrome/test.log ... 2830: 00:23:13.639 TRACE DevToolsSession: CDP RCV << {"id":4,"result":{},"sessionId":"2F29177E0FBD285B189114D39BABAA92"} 2831: 00:23:13.670 DEBUG HttpCommandExecutor: Executing command: [6b5cbf8fafd526d8d56c9d11c3e67e7f]: quit 2832: 00:23:13.671 TRACE HttpCommandExecutor: >> DELETE http://localhost:40243/session/6b5cbf8fafd526d8d56c9d11c3e67e7f 2833: 00:23:13.776 TRACE HttpCommandExecutor: << 200 OK 2834: 00:23:13.777 DEBUG HttpCommandExecutor: Response: ( Success: ) 2835: 00:23:13.909 DEBUG HttpCommandExecutor: Executing command: []: newSession 2836: 00:23:13.910 TRACE HttpCommandExecutor: >> POST http://localhost:42275/session 2837: {"capabilities":{"firstMatch":[{"browserName":"chrome","goog:chromeOptions":{"args":["--no-sandbox","--disable-dev-shm-usage"],"binary":"external/\u002Bpin_browsers_extension\u002Blinux_chrome/chrome-linux64/chrome"}}]}} 2838: 00:23:15.241 TRACE HttpCommandExecutor: << 200 OK 2839: 00:23:15.243 DEBUG HttpCommandExecutor: Response: (dbb41592e804a3594498714280f2f673 Success: System.Collections.Generic.Dictionary`2[System.String,System.Object]) 2840: => OpenQA.Selenium.AssemblyFixture 2841: 00:23:15.260 DEBUG HttpCommandExecutor: Executing command: [dbb41592e804a3594498714280f2f673]: quit 2842: 00:23:15.261 TRACE HttpCommandExecutor: >> DELETE http://localhost:42275/session/dbb41592e804a3594498714280f2f673 2843: 00:23:15.367 TRACE HttpCommandExecutor: << 200 OK 2844: 00:23:15.367 DEBUG HttpCommandExecutor: Response: ( Success: ) 2845: Errors, Failures and Warnings 2846: 1) Error : OpenQA.Selenium.DevTools.DevToolsConsoleTest.VerifyMessageAdded 2847: System.InvalidOperationException : The type is invalid for conversion. You requested domains of type 'OpenQA.Selenium.DevTools.V142.DevToolsSessionDomains', but the version-specific domains for this session are 'OpenQA.Selenium.DevTools.V141.V141Domains' 2848: at OpenQA.Selenium.DevTools.DevToolsSession.GetVersionSpecificDomains[T]() 2849: at OpenQA.Selenium.DevTools.DevToolsConsoleTest.VerifyMessageAdded() 2850: at NUnit.Framework.Internal.TaskAwaitAdapter.GenericAdapter`1.GetResult() 2851: at NUnit.Framework.Internal.AsyncToSyncAdapter.Await(Func`1 invoke) 2852: at NUnit.Framework.Internal.Commands.TestMethodCommand.RunTestMethod(TestExecutionContext context) 2853: at NUnit.Framework.Internal.Commands.TestMethodCommand.Execute(TestExecutionContext context) 2854: at NUnit.Framework.Internal.Commands.BeforeAndAfterTestCommand.<>c__DisplayClass1_0.<Execute>b__0() 2855: at NUnit.Framework.Internal.Commands.BeforeAndAfterTestCommand.RunTestMethodInThreadAbortSafeZone(TestExecutionContext context, Action action) 2856: Run Settings 2857: Number of Test Workers: 2 2858: Work Directory: /mnt/engflow/worker/work/1/exec/bazel-out/k8-fastbuild-ST-7636bdc63bf0/bin/dotnet/test/common/DevTools/DevToolsConsoleTest-chrome/net8.0/WebDriver.Common.Tests.dll.sh.runfiles/_main 2859: Internal Trace: Off 2860: Test Run Summary 2861: Overall result: Failed 2862: Test Count: 1, Passed: 0, Failed: 1, Warnings: 0, Inconclusive: 0, Skipped: 0 2863: Failed Tests - Failures: 0, Errors: 1, Invalid: 0 2864: Start time: 2025-10-25 00:23:06Z ... 2897: 00:23:36.878 TRACE DevToolsSession: CDP RCV << {"id":4,"result":{},"sessionId":"A46579EE530060214C049E360EC51741"} 2898: 00:23:36.911 DEBUG HttpCommandExecutor: Executing command: [867261ef7236644feed8b2b7f485109e]: quit 2899: 00:23:36.912 TRACE HttpCommandExecutor: >> DELETE http://localhost:35923/session/867261ef7236644feed8b2b7f485109e 2900: 00:23:37.016 TRACE HttpCommandExecutor: << 200 OK 2901: 00:23:37.017 DEBUG HttpCommandExecutor: Response: ( Success: ) 2902: 00:23:37.084 DEBUG HttpCommandExecutor: Executing command: []: newSession 2903: 00:23:37.085 TRACE HttpCommandExecutor: >> POST http://localhost:34899/session 2904: {"capabilities":{"firstMatch":[{"browserName":"chrome","goog:chromeOptions":{"args":["--no-sandbox","--disable-dev-shm-usage"],"binary":"external/\u002Bpin_browsers_extension\u002Blinux_chrome/chrome-linux64/chrome"}}]}} 2905: 00:23:38.381 TRACE HttpCommandExecutor: << 200 OK 2906: 00:23:38.382 DEBUG HttpCommandExecutor: Response: (068bdc95225661b9c0d8a1374f4539ad Success: System.Collections.Generic.Dictionary`2[System.String,System.Object]) 2907: => OpenQA.Selenium.AssemblyFixture 2908: 00:23:38.396 DEBUG HttpCommandExecutor: Executing command: [068bdc95225661b9c0d8a1374f4539ad]: quit 2909: 00:23:38.396 TRACE HttpCommandExecutor: >> DELETE http://localhost:34899/session/068bdc95225661b9c0d8a1374f4539ad 2910: 00:23:38.500 TRACE HttpCommandExecutor: << 200 OK 2911: 00:23:38.501 DEBUG HttpCommandExecutor: Response: ( Success: ) 2912: Errors, Failures and Warnings 2913: 1) Error : OpenQA.Selenium.DevTools.DevToolsConsoleTest.VerifyMessageAdded 2914: System.InvalidOperationException : The type is invalid for conversion. You requested domains of type 'OpenQA.Selenium.DevTools.V142.DevToolsSessionDomains', but the version-specific domains for this session are 'OpenQA.Selenium.DevTools.V141.V141Domains' 2915: at OpenQA.Selenium.DevTools.DevToolsSession.GetVersionSpecificDomains[T]() 2916: at OpenQA.Selenium.DevTools.DevToolsConsoleTest.VerifyMessageAdded() 2917: at NUnit.Framework.Internal.TaskAwaitAdapter.GenericAdapter`1.GetResult() 2918: at NUnit.Framework.Internal.AsyncToSyncAdapter.Await(Func`1 invoke) 2919: at NUnit.Framework.Internal.Commands.TestMethodCommand.RunTestMethod(TestExecutionContext context) 2920: at NUnit.Framework.Internal.Commands.TestMethodCommand.Execute(TestExecutionContext context) 2921: at NUnit.Framework.Internal.Commands.BeforeAndAfterTestCommand.<>c__DisplayClass1_0.<Execute>b__0() 2922: at NUnit.Framework.Internal.Commands.BeforeAndAfterTestCommand.RunTestMethodInThreadAbortSafeZone(TestExecutionContext context, Action action) 2923: Run Settings 2924: Number of Test Workers: 2 2925: Work Directory: /mnt/engflow/worker/work/1/exec/bazel-out/k8-fastbuild-ST-7636bdc63bf0/bin/dotnet/test/common/DevTools/DevToolsConsoleTest-chrome/net8.0/WebDriver.Common.Tests.dll.sh.runfiles/_main 2926: Internal Trace: Off 2927: Test Run Summary 2928: Overall result: Failed 2929: Test Count: 1, Passed: 0, Failed: 1, Warnings: 0, Inconclusive: 0, Skipped: 0 2930: Failed Tests - Failures: 0, Errors: 1, Invalid: 0 2931: Start time: 2025-10-25 00:23:30Z 2932: End time: 2025-10-25 00:23:38Z 2933: Duration: 8.494 seconds 2934: Results (nunit3) saved as /mnt/engflow/worker/work/1/exec/bazel-out/k8-fastbuild-ST-7636bdc63bf0/bin/dotnet/test/common/DevTools/DevToolsConsoleTest-chrome/net8.0/WebDriver.Common.Tests.dll.sh.runfiles/_main/TestResult.xml 2935: Execution result: https://gypsum.cluster.engflow.com/actions/executions/ChANhL3FdXlaJJ42LeaGBedxEgdkZWZhdWx0GiUKICvFh4pngt6Lb_VOGnihrDY_mpSjLaSUtyi4TdpWw5CKELwD 2936: ================================================================================ 2937: (00:23:49) �[31m�[1mFAIL: �[0m//dotnet/test/common:DevTools/DevToolsTabsTest-chrome (see /home/runner/.bazel/execroot/_main/bazel-out/k8-fastbuild-ST-7636bdc63bf0/testlogs/dotnet/test/common/DevTools/DevToolsTabsTest-chrome/test.log) 2938: �[31m�[1mFAILED: �[0m//dotnet/test/common:DevTools/DevToolsTabsTest-chrome (Summary) 2939: /home/runner/.bazel/execroot/_main/bazel-out/k8-fastbuild-ST-7636bdc63bf0/testlogs/dotnet/test/common/DevTools/DevToolsTabsTest-chrome/test.log ... 2969: 00:23:15.619 TRACE DevToolsSession: CDP RCV << {"id":4,"result":{},"sessionId":"0211D84A87D5C7CD77D1378D05CFAC4C"} 2970: 00:23:15.655 DEBUG HttpCommandExecutor: Executing command: [c8f84fa20110038a8a72a8855a2f57f1]: quit 2971: 00:23:15.656 TRACE HttpCommandExecutor: >> DELETE http://localhost:39025/session/c8f84fa20110038a8a72a8855a2f57f1 2972: 00:23:15.762 TRACE HttpCommandExecutor: << 200 OK 2973: 00:23:15.762 DEBUG HttpCommandExecutor: Response: ( Success: ) 2974: 00:23:15.861 DEBUG HttpCommandExecutor: Executing command: []: newSession 2975: 00:23:15.862 TRACE HttpCommandExecutor: >> POST http://localhost:35443/session 2976: {"capabilities":{"firstMatch":[{"browserName":"chrome","goog:chromeOptions":{"args":["--no-sandbox","--disable-dev-shm-usage"],"binary":"external/\u002Bpin_browsers_extension\u002Blinux_chrome/chrome-linux64/chrome"}}]}} 2977: 00:23:17.236 TRACE HttpCommandExecutor: << 200 OK 2978: 00:23:17.237 DEBUG HttpCommandExecutor: Response: (cbd54a85ef8f7297ee50173805d1a9b2 Success: System.Collections.Generic.Dictionary`2[System.String,System.Object]) 2979: => OpenQA.Selenium.AssemblyFixture 2980: 00:23:17.252 DEBUG HttpCommandExecutor: Executing command: [cbd54a85ef8f7297ee50173805d1a9b2]: quit 2981: 00:23:17.252 TRACE HttpCommandExecutor: >> DELETE http://localhost:35443/session/cbd54a85ef8f7297ee50173805d1a9b2 2982: 00:23:17.357 TRACE HttpCommandExecutor: << 200 OK 2983: 00:23:17.358 DEBUG HttpCommandExecutor: Response: ( Success: ) 2984: Errors, Failures and Warnings 2985: 1) Error : OpenQA.Selenium.DevTools.DevToolsTabsTest.ClosingTabDoesNotBreakDevToolsSession 2986: System.InvalidOperationException : The type is invalid for conversion. You requested domains of type 'OpenQA.Selenium.DevTools.V142.DevToolsSessionDomains', but the version-specific domains for this session are 'OpenQA.Selenium.DevTools.V141.V141Domains' 2987: at OpenQA.Selenium.DevTools.DevToolsSession.GetVersionSpecificDomains[T]() 2988: at OpenQA.Selenium.DevTools.DevToolsTabsTest.ClosingTabDoesNotBreakDevToolsSession() 2989: at NUnit.Framework.Internal.TaskAwaitAdapter.GenericAdapter`1.GetResult() 2990: at NUnit.Framework.Internal.AsyncToSyncAdapter.Await(Func`1 invoke) 2991: at NUnit.Framework.Internal.Commands.TestMethodCommand.RunTestMethod(TestExecutionContext context) 2992: at NUnit.Framework.Internal.Commands.TestMethodCommand.Execute(TestExecutionContext context) 2993: at NUnit.Framework.Internal.Commands.BeforeAndAfterTestCommand.<>c__DisplayClass1_0.<Execute>b__0() 2994: at NUnit.Framework.Internal.Commands.BeforeAndAfterTestCommand.RunTestMethodInThreadAbortSafeZone(TestExecutionContext context, Action action) 2995: Run Settings 2996: Number of Test Workers: 2 2997: Work Directory: /mnt/engflow/worker/work/1/exec/bazel-out/k8-fastbuild-ST-7636bdc63bf0/bin/dotnet/test/common/DevTools/DevToolsTabsTest-chrome/net8.0/WebDriver.Common.T...
@titusfortner titusfortner merged commit 6b412e8 into trunk Oct 25, 2025
20 of 21 checks passed
@titusfortner titusfortner deleted the build_docs2 branch October 25, 2025 00:44
This was referenced Oct 25, 2025
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

3 participants