Skip to content
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

Bump follow-redirects from 1.15.4 to 1.15.6 in /javascript/grid-ui #13696

Conversation

dependabot[bot]
Copy link
Contributor

@dependabot dependabot bot commented on behalf of github Mar 15, 2024

User description

Bumps follow-redirects from 1.15.4 to 1.15.6.

Commits
  • 35a517c Release version 1.15.6 of the npm package.
  • c4f847f Drop Proxy-Authorization across hosts.
  • 8526b4a Use GitHub for disclosure.
  • b1677ce Release version 1.15.5 of the npm package.
  • d8914f7 Preserve fragment in responseUrl.
  • See full diff in compare view

Dependabot compatibility score

Dependabot will resolve any conflicts with this PR as long as you don't alter it yourself. You can also trigger a rebase manually by commenting @dependabot rebase.


Dependabot commands and options

You can trigger Dependabot actions by commenting on this PR:

  • @dependabot rebase will rebase this PR
  • @dependabot recreate will recreate this PR, overwriting any edits that have been made to it
  • @dependabot merge will merge this PR after your CI passes on it
  • @dependabot squash and merge will squash and merge this PR after your CI passes on it
  • @dependabot cancel merge will cancel a previously requested merge and block automerging
  • @dependabot reopen will reopen this PR if it is closed
  • @dependabot close will close this PR and stop Dependabot recreating it. You can achieve the same result by closing it manually
  • @dependabot show <dependency name> ignore conditions will show all of the ignore conditions of the specified dependency
  • @dependabot ignore this major version will close this PR and stop Dependabot creating any more for this major version (unless you reopen the PR or upgrade to it yourself)
  • @dependabot ignore this minor version will close this PR and stop Dependabot creating any more for this minor version (unless you reopen the PR or upgrade to it yourself)
  • @dependabot ignore this dependency will close this PR and stop Dependabot creating any more for this dependency (unless you reopen the PR or upgrade to it yourself)
    You can disable automated security fix PRs for this repo from the Security Alerts page.

Type

enhancement


Description

  • Updated the follow-redirects dependency in package-lock.json to version 1.15.6 to include the latest fixes and improvements.
  • This update includes changes such as dropping Proxy-Authorization across hosts and preserving fragment in responseUrl.

Changes walkthrough

Relevant files
Dependencies
package-lock.json
Update follow-redirects dependency to 1.15.6                         

javascript/grid-ui/package-lock.json

  • Updated follow-redirects dependency from version 1.15.4 to 1.15.6.
  • Updated the integrity checksum for follow-redirects.
  • +6/-6     

    PR-Agent usage:
    Comment /help on the PR to get a list of all available PR-Agent tools and their descriptions

    @dependabot dependabot bot added dependencies Pull requests that update a dependency file javascript Pull requests that update Javascript code labels Mar 15, 2024
    Copy link
    Contributor

    PR Description updated to latest commit (7c06536)

    Copy link
    Contributor

    PR Review

    ⏱️ Estimated effort to review [1-5]

    1, because the PR consists solely of dependency version updates in a package-lock.json file, which typically does not require in-depth code review. The changes are straightforward and involve updating the version numbers and integrity hashes for the follow-redirects package.

    🧪 Relevant tests

    No

    🔍 Possible issues

    No

    🔒 Security concerns

    No


    ✨ Review tool usage guide:

    Overview:
    The review tool scans the PR code changes, and generates a PR review. The tool can be triggered automatically every time a new PR is opened, or can be invoked manually by commenting on any PR.
    When commenting, to edit configurations related to the review tool (pr_reviewer section), use the following template:

    /review --pr_reviewer.some_config1=... --pr_reviewer.some_config2=...
    

    With a configuration file, use the following template:

    [pr_reviewer]
    some_config1=...
    some_config2=...
    
    Utilizing extra instructions

    The review tool can be configured with extra instructions, which can be used to guide the model to a feedback tailored to the needs of your project.

    Be specific, clear, and concise in the instructions. With extra instructions, you are the prompter. Specify the relevant sub-tool, and the relevant aspects of the PR that you want to emphasize.

    Examples for extra instructions:

    [pr_reviewer] # /review #
    extra_instructions="""
    In the 'possible issues' section, emphasize the following:
    - Does the code logic cover relevant edge cases?
    - Is the code logic clear and easy to understand?
    - Is the code logic efficient?
    ...
    """
    

    Use triple quotes to write multi-line instructions. Use bullet points to make the instructions more readable.

    How to enable\disable automation
    • When you first install PR-Agent app, the default mode for the review tool is:
    pr_commands = ["/review", ...]
    

    meaning the review tool will run automatically on every PR, with the default configuration.
    Edit this field to enable/disable the tool, or to change the used configurations

    Auto-labels

    The review tool can auto-generate two specific types of labels for a PR:

    • a possible security issue label, that detects possible security issues (enable_review_labels_security flag)
    • a Review effort [1-5]: x label, where x is the estimated effort to review the PR (enable_review_labels_effort flag)
    Extra sub-tools

    The review tool provides a collection of possible feedbacks about a PR.
    It is recommended to review the possible options, and choose the ones relevant for your use case.
    Some of the feature that are disabled by default are quite useful, and should be considered for enabling. For example:
    require_score_review, require_soc2_ticket, and more.

    Auto-approve PRs

    By invoking:

    /review auto_approve
    

    The tool will automatically approve the PR, and add a comment with the approval.

    To ensure safety, the auto-approval feature is disabled by default. To enable auto-approval, you need to actively set in a pre-defined configuration file the following:

    [pr_reviewer]
    enable_auto_approval = true
    

    (this specific flag cannot be set with a command line argument, only in the configuration file, committed to the repository)

    You can also enable auto-approval only if the PR meets certain requirements, such as that the estimated_review_effort is equal or below a certain threshold, by adjusting the flag:

    [pr_reviewer]
    maximal_review_effort = 5
    
    More PR-Agent commands

    To invoke the PR-Agent, add a comment using one of the following commands:

    • /review: Request a review of your Pull Request.
    • /describe: Update the PR title and description based on the contents of the PR.
    • /improve [--extended]: Suggest code improvements. Extended mode provides a higher quality feedback.
    • /ask <QUESTION>: Ask a question about the PR.
    • /update_changelog: Update the changelog based on the PR's contents.
    • /add_docs 💎: Generate docstring for new components introduced in the PR.
    • /generate_labels 💎: Generate labels for the PR based on the PR's contents.
    • /analyze 💎: Automatically analyzes the PR, and presents changes walkthrough for each component.

    See the tools guide for more details.
    To list the possible configuration parameters, add a /config comment.

    See the review usage page for a comprehensive guide on using this tool.

    Copy link
    Contributor

    codiumai-pr-agent-pro bot commented Mar 15, 2024

    PR Code Suggestions

    No code suggestions found for PR.

    Copy link
    Contributor

    CI Failure Feedback

    Action: Test / All RBE tests

    Failed stage: Run Bazel [❌]

    Failed test name: NetworkEventsTest

    Failure summary:

    The action failed due to the test NetworkEventsTest and its remote variant failing. The failure was
    caused by an attempt to listen to an invalid event name network.fetchError in the BiDi protocol,
    which resulted in a BiDiException with the error message indicating invalid argument and specifying
    that network.fetchError is not a valid event name. This indicates a possible issue with the test's
    assumptions about available events in the BiDi protocol or a misunderstanding of the protocol's
    current capabilities.

    Relevant error logs:
    1:  ##[group]Operating System
    2:  Ubuntu
    ...
    
    295:  After this operation, 1616 MB disk space will be freed.
    296:  Get:1 file:/etc/apt/apt-mirrors.txt Mirrorlist [142 B]
    297:  Get:2 http://azure.archive.ubuntu.com/ubuntu jammy-updates/universe amd64 aspnetcore-targeting-pack-6.0 amd64 6.0.127-0ubuntu1~22.04.1 [1458 kB]
    298:  Ign:3 http://azure.archive.ubuntu.com/ubuntu jammy-updates/universe amd64 aspnetcore-targeting-pack-7.0 amd64 7.0.116-0ubuntu1~22.04.1
    299:  Ign:3 http://archive.ubuntu.com/ubuntu jammy-updates/universe amd64 aspnetcore-targeting-pack-7.0 amd64 7.0.116-0ubuntu1~22.04.1
    300:  Ign:3 http://security.ubuntu.com/ubuntu jammy-updates/universe amd64 aspnetcore-targeting-pack-7.0 amd64 7.0.116-0ubuntu1~22.04.1
    301:  Err:3 mirror+file:/etc/apt/apt-mirrors.txt jammy-updates/universe amd64 aspnetcore-targeting-pack-7.0 amd64 7.0.116-0ubuntu1~22.04.1
    302:  404  Not Found [IP: 52.252.163.49 80]
    303:  E: Failed to fetch mirror+file:/etc/apt/apt-mirrors.txt/pool/universe/d/dotnet7/aspnetcore-targeting-pack-7.0_7.0.116-0ubuntu1%7e22.04.1_amd64.deb  404  Not Found [IP: 52.252.163.49 80]
    ...
    
    826:  Package 'php-symfony-debug-bundle' is not installed, so not removed
    827:  Package 'php-symfony-dependency-injection' is not installed, so not removed
    828:  Package 'php-symfony-deprecation-contracts' is not installed, so not removed
    829:  Package 'php-symfony-discord-notifier' is not installed, so not removed
    830:  Package 'php-symfony-doctrine-bridge' is not installed, so not removed
    831:  Package 'php-symfony-doctrine-messenger' is not installed, so not removed
    832:  Package 'php-symfony-dom-crawler' is not installed, so not removed
    833:  Package 'php-symfony-dotenv' is not installed, so not removed
    834:  Package 'php-symfony-error-handler' is not installed, so not removed
    ...
    
    1542:  (11:38:51) �[35mWARNING: �[0m/home/runner/work/selenium/selenium/javascript/atoms/BUILD.bazel:350: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
    1543:  (11:38:51) �[35mWARNING: �[0m/home/runner/work/selenium/selenium/javascript/atoms/BUILD.bazel:350: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
    1544:  (11:38:51) �[35mWARNING: �[0m/home/runner/work/selenium/selenium/javascript/atoms/BUILD.bazel:350: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
    1545:  (11:38:51) �[35mWARNING: �[0m/home/runner/work/selenium/selenium/javascript/atoms/BUILD.bazel:350: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
    1546:  (11:38:51) �[35mWARNING: �[0m/home/runner/work/selenium/selenium/javascript/atoms/BUILD.bazel:350: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
    1547:  (11:38:51) �[35mWARNING: �[0m/home/runner/work/selenium/selenium/javascript/atoms/BUILD.bazel:350: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
    1548:  (11:38:51) �[35mWARNING: �[0m/home/runner/work/selenium/selenium/javascript/atoms/BUILD.bazel:350: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
    1549:  (11:38:51) �[35mWARNING: �[0m/home/runner/work/selenium/selenium/javascript/atoms/BUILD.bazel:350: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
    1550:  (11:38:51) �[35mWARNING: �[0m/home/runner/work/selenium/selenium/javascript/atoms/BUILD.bazel:350: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
    ...
    
    1649:  (11:38:51) �[35mWARNING: �[0m/home/runner/work/selenium/selenium/javascript/atoms/BUILD.bazel:350:19: runfiles symlink javascript/atoms/test/type_test.html -> javascript/atoms/test/type_test.html obscured by javascript/atoms/test -> bazel-out/k8-fastbuild/bin/javascript/atoms/test
    1650:  (11:38:51) �[35mWARNING: �[0m/home/runner/work/selenium/selenium/javascript/atoms/BUILD.bazel:350:19: runfiles symlink javascript/atoms/test/useragent_quirks_test.html -> javascript/atoms/test/useragent_quirks_test.html obscured by javascript/atoms/test -> bazel-out/k8-fastbuild/bin/javascript/atoms/test
    1651:  (11:38:51) �[35mWARNING: �[0m/home/runner/work/selenium/selenium/javascript/atoms/BUILD.bazel:350:19: runfiles symlink javascript/atoms/test/useragent_test.html -> javascript/atoms/test/useragent_test.html obscured by javascript/atoms/test -> bazel-out/k8-fastbuild/bin/javascript/atoms/test
    1652:  (11:38:51) �[35mWARNING: �[0m/home/runner/work/selenium/selenium/javascript/atoms/BUILD.bazel:350:19: runfiles symlink javascript/atoms/test/useragent_test.js -> javascript/atoms/test/useragent_test.js obscured by javascript/atoms/test -> bazel-out/k8-fastbuild/bin/javascript/atoms/test
    1653:  (11:38:51) �[35mWARNING: �[0m/home/runner/work/selenium/selenium/javascript/atoms/BUILD.bazel:350:19: runfiles symlink javascript/atoms/test/window_scroll_into_view_test.html -> javascript/atoms/test/window_scroll_into_view_test.html obscured by javascript/atoms/test -> bazel-out/k8-fastbuild/bin/javascript/atoms/test
    1654:  (11:38:51) �[35mWARNING: �[0m/home/runner/work/selenium/selenium/javascript/atoms/BUILD.bazel:350:19: runfiles symlink javascript/atoms/test/window_scroll_test.html -> javascript/atoms/test/window_scroll_test.html obscured by javascript/atoms/test -> bazel-out/k8-fastbuild/bin/javascript/atoms/test
    1655:  (11:38:51) �[35mWARNING: �[0m/home/runner/work/selenium/selenium/javascript/atoms/BUILD.bazel:350:19: runfiles symlink javascript/atoms/test/window_size_test.html -> javascript/atoms/test/window_size_test.html obscured by javascript/atoms/test -> bazel-out/k8-fastbuild/bin/javascript/atoms/test
    1656:  (11:38:53) �[32mINFO: �[0mFrom Building java/src/org/openqa/selenium/remote/libapi-class.jar (65 source files):
    1657:  java/src/org/openqa/selenium/remote/ErrorHandler.java:46: warning: [removal] ErrorCodes in org.openqa.selenium.remote has been deprecated and marked for removal
    1658:  private final ErrorCodes errorCodes;
    1659:  ^
    1660:  java/src/org/openqa/selenium/remote/ErrorHandler.java:60: warning: [removal] ErrorCodes in org.openqa.selenium.remote has been deprecated and marked for removal
    1661:  this.errorCodes = new ErrorCodes();
    1662:  ^
    1663:  java/src/org/openqa/selenium/remote/ErrorHandler.java:68: warning: [removal] ErrorCodes in org.openqa.selenium.remote has been deprecated and marked for removal
    1664:  public ErrorHandler(ErrorCodes codes, boolean includeServerErrors) {
    1665:  ^
    1666:  java/src/org/openqa/selenium/remote/Response.java:97: warning: [removal] ErrorCodes in org.openqa.selenium.remote has been deprecated and marked for removal
    1667:  ErrorCodes errorCodes = new ErrorCodes();
    1668:  ^
    1669:  java/src/org/openqa/selenium/remote/Response.java:97: warning: [removal] ErrorCodes in org.openqa.selenium.remote has been deprecated and marked for removal
    1670:  ErrorCodes errorCodes = new ErrorCodes();
    1671:  ^
    1672:  java/src/org/openqa/selenium/remote/ProtocolHandshake.java:206: warning: [removal] ErrorCodes in org.openqa.selenium.remote has been deprecated and marked for removal
    1673:  response.setStatus(ErrorCodes.SUCCESS);
    1674:  ^
    1675:  java/src/org/openqa/selenium/remote/ProtocolHandshake.java:207: warning: [removal] ErrorCodes in org.openqa.selenium.remote has been deprecated and marked for removal
    1676:  response.setState(ErrorCodes.SUCCESS_STRING);
    1677:  ^
    1678:  java/src/org/openqa/selenium/remote/W3CHandshakeResponse.java:53: warning: [removal] ErrorCodes in org.openqa.selenium.remote has been deprecated and marked for removal
    1679:  new ErrorCodes().toStatus((String) rawError, Optional.of(tuple.getStatusCode())));
    1680:  ^
    1681:  java/src/org/openqa/selenium/remote/W3CHandshakeResponse.java:56: warning: [removal] ErrorCodes in org.openqa.selenium.remote has been deprecated and marked for removal
    1682:  new ErrorCodes().getExceptionType((String) rawError);
    1683:  ^
    1684:  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
    1685:  private final ErrorCodes errorCodes = new ErrorCodes();
    1686:  ^
    1687:  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
    1688:  private final ErrorCodes errorCodes = new ErrorCodes();
    1689:  ^
    1690:  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
    1691:  int status = response.getStatus() == ErrorCodes.SUCCESS ? HTTP_OK : HTTP_INTERNAL_ERROR;
    1692:  ^
    1693:  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
    1694:  response.setStatus(ErrorCodes.UNKNOWN_COMMAND);
    1695:  ^
    1696:  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
    1697:  response.setStatus(ErrorCodes.UNHANDLED_ERROR);
    1698:  ^
    1699:  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
    1700:  response.setStatus(ErrorCodes.SUCCESS);
    1701:  ^
    1702:  java/src/org/openqa/selenium/remote/codec/AbstractHttpResponseCodec.java:125: warning: [removal] ErrorCodes in org.openqa.selenium.remote has been deprecated and marked for removal
    1703:  response.setState(errorCodes.toState(ErrorCodes.SUCCESS));
    1704:  ^
    1705:  java/src/org/openqa/selenium/remote/codec/AbstractHttpResponseCodec.java:131: warning: [removal] ErrorCodes in org.openqa.selenium.remote has been deprecated and marked for removal
    1706:  response.setState(errorCodes.toState(ErrorCodes.SUCCESS));
    1707:  ^
    1708:  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
    1709:  private final ErrorCodes errorCodes = new ErrorCodes();
    1710:  ^
    1711:  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
    1712:  private final ErrorCodes errorCodes = new ErrorCodes();
    1713:  ^
    1714:  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
    1715:  response.setStatus(ErrorCodes.UNKNOWN_COMMAND);
    1716:  ^
    1717:  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
    1718:  response.setStatus(ErrorCodes.UNHANDLED_ERROR);
    1719:  ^
    1720:  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
    1721:  response.setStatus(ErrorCodes.SUCCESS);
    ...
    
    1776:  * `Zip::OutputStream`
    1777:  Please ensure that your Gemfiles and .gemspecs are suitably restrictive
    1778:  to avoid an unexpected breakage when 3.0 is released (e.g. ~> 2.3.0).
    1779:  See https://github.com/rubyzip/rubyzip for details. The Changelog also
    1780:  lists other enhancements and bugfixes that have been implemented since
    1781:  version 2.3.0.
    1782:  (11:38:55) �[32m[7,360 / 9,996]�[0m 33 / 1283 tests;�[0m Running bundle install (@bundle//:bundle); 0s remote ... (50 actions, 22 running)
    1783:  (11:38:56) �[32mINFO: �[0mFrom Building java/src/org/openqa/selenium/remote/libapi-class.jar (65 source files):
    1784:  java/src/org/openqa/selenium/remote/ErrorHandler.java:46: warning: [removal] ErrorCodes in org.openqa.selenium.remote has been deprecated and marked for removal
    1785:  private final ErrorCodes errorCodes;
    1786:  ^
    1787:  java/src/org/openqa/selenium/remote/ErrorHandler.java:60: warning: [removal] ErrorCodes in org.openqa.selenium.remote has been deprecated and marked for removal
    1788:  this.errorCodes = new ErrorCodes();
    1789:  ^
    1790:  java/src/org/openqa/selenium/remote/ErrorHandler.java:68: warning: [removal] ErrorCodes in org.openqa.selenium.remote has been deprecated and marked for removal
    1791:  public ErrorHandler(ErrorCodes codes, boolean includeServerErrors) {
    1792:  ^
    1793:  java/src/org/openqa/selenium/remote/Response.java:97: warning: [removal] ErrorCodes in org.openqa.selenium.remote has been deprecated and marked for removal
    1794:  ErrorCodes errorCodes = new ErrorCodes();
    1795:  ^
    1796:  java/src/org/openqa/selenium/remote/Response.java:97: warning: [removal] ErrorCodes in org.openqa.selenium.remote has been deprecated and marked for removal
    1797:  ErrorCodes errorCodes = new ErrorCodes();
    1798:  ^
    1799:  java/src/org/openqa/selenium/remote/ProtocolHandshake.java:206: warning: [removal] ErrorCodes in org.openqa.selenium.remote has been deprecated and marked for removal
    1800:  response.setStatus(ErrorCodes.SUCCESS);
    1801:  ^
    1802:  java/src/org/openqa/selenium/remote/ProtocolHandshake.java:207: warning: [removal] ErrorCodes in org.openqa.selenium.remote has been deprecated and marked for removal
    1803:  response.setState(ErrorCodes.SUCCESS_STRING);
    1804:  ^
    1805:  java/src/org/openqa/selenium/remote/W3CHandshakeResponse.java:53: warning: [removal] ErrorCodes in org.openqa.selenium.remote has been deprecated and marked for removal
    1806:  new ErrorCodes().toStatus((String) rawError, Optional.of(tuple.getStatusCode())));
    1807:  ^
    1808:  java/src/org/openqa/selenium/remote/W3CHandshakeResponse.java:56: warning: [removal] ErrorCodes in org.openqa.selenium.remote has been deprecated and marked for removal
    1809:  new ErrorCodes().getExceptionType((String) rawError);
    1810:  ^
    1811:  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
    1812:  private final ErrorCodes errorCodes = new ErrorCodes();
    1813:  ^
    1814:  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
    1815:  private final ErrorCodes errorCodes = new ErrorCodes();
    1816:  ^
    1817:  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
    1818:  int status = response.getStatus() == ErrorCodes.SUCCESS ? HTTP_OK : HTTP_INTERNAL_ERROR;
    1819:  ^
    1820:  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
    1821:  response.setStatus(ErrorCodes.UNKNOWN_COMMAND);
    1822:  ^
    1823:  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
    1824:  response.setStatus(ErrorCodes.UNHANDLED_ERROR);
    1825:  ^
    1826:  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
    1827:  response.setStatus(ErrorCodes.SUCCESS);
    1828:  ^
    1829:  java/src/org/openqa/selenium/remote/codec/AbstractHttpResponseCodec.java:125: warning: [removal] ErrorCodes in org.openqa.selenium.remote has been deprecated and marked for removal
    1830:  response.setState(errorCodes.toState(ErrorCodes.SUCCESS));
    1831:  ^
    1832:  java/src/org/openqa/selenium/remote/codec/AbstractHttpResponseCodec.java:131: warning: [removal] ErrorCodes in org.openqa.selenium.remote has been deprecated and marked for removal
    1833:  response.setState(errorCodes.toState(ErrorCodes.SUCCESS));
    1834:  ^
    1835:  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
    1836:  private final ErrorCodes errorCodes = new ErrorCodes();
    1837:  ^
    1838:  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
    1839:  private final ErrorCodes errorCodes = new ErrorCodes();
    1840:  ^
    1841:  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
    1842:  response.setStatus(ErrorCodes.UNKNOWN_COMMAND);
    1843:  ^
    1844:  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
    1845:  response.setStatus(ErrorCodes.UNHANDLED_ERROR);
    1846:  ^
    1847:  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
    1848:  response.setStatus(ErrorCodes.SUCCESS);
    1849:  ^
    1850:  (11:38:59) �[32mINFO: �[0mFrom Building java/src/org/openqa/selenium/grid/web/libweb.jar (19 source files):
    1851:  java/src/org/openqa/selenium/grid/web/NoHandler.java:23: warning: [removal] ErrorCodes in org.openqa.selenium.remote has been deprecated and marked for removal
    1852:  import static org.openqa.selenium.remote.ErrorCodes.UNKNOWN_COMMAND;
    1853:  ^
    1854:  (11:39:00) �[32m[9,350 / 10,657]�[0m 73 / 1283 tests;�[0m Copying directory external/npm/_/node_modules/@mui/icons-material; 1s local ... (50 actions, 42 running)
    1855:  (11:39:05) �[32m[10,016 / 11,055]�[0m 89 / 1283 tests;�[0m Copying directory external/npm/_/node_modules/@mui/icons-material; 6s local ... (50 actions, 29 running)
    1856:  (11:39:10) �[32m[10,102 / 11,096]�[0m 100 / 1283 tests;�[0m Copying directory external/npm/_/node_modules/@mui/icons-material; 11s local ... (50 actions, 1 running)
    1857:  (11:39:15) �[32m[10,196 / 11,153]�[0m 157 / 1283 tests;�[0m Testing //dotnet/test/common:CorrectEventFiringTest-chrome; 4s remote ... (49 actions, 0 running)
    1858:  (11:39:16) �[32mINFO: �[0mFrom Building java/src/org/openqa/selenium/grid/web/libweb.jar (19 source files):
    1859:  java/src/org/openqa/selenium/grid/web/NoHandler.java:23: warning: [removal] ErrorCodes in org.openqa.selenium.remote has been deprecated and marked for removal
    1860:  import static org.openqa.selenium.remote.ErrorCodes.UNKNOWN_COMMAND;
    ...
    
    1904:  ^
    1905:  java/test/org/openqa/selenium/remote/http/FormEncodedDataTest.java:102: warning: [removal] FormEncodedData in org.openqa.selenium.remote.http has been deprecated and marked for removal
    1906:  Optional<Map<String, List<String>>> data = FormEncodedData.getData(request);
    1907:  ^
    1908:  java/test/org/openqa/selenium/remote/http/FormEncodedDataTest.java:114: warning: [removal] FormEncodedData in org.openqa.selenium.remote.http has been deprecated and marked for removal
    1909:  Optional<Map<String, List<String>>> data = FormEncodedData.getData(request);
    1910:  ^
    1911:  (11:40:39) �[32mINFO: �[0mFrom Building java/test/org/openqa/selenium/json/JsonTest.jar (1 source file):
    1912:  java/test/org/openqa/selenium/json/JsonTest.java:430: warning: [removal] ErrorCodes in org.openqa.selenium.remote has been deprecated and marked for removal
    1913:  assertThat(response.getState()).isEqualTo(new ErrorCodes().toState(0));
    1914:  ^
    1915:  java/test/org/openqa/selenium/json/JsonTest.java:441: warning: [removal] ErrorCodes in org.openqa.selenium.remote has been deprecated and marked for removal
    1916:  assertThat(response.getState()).isEqualTo(new ErrorCodes().toState(0));
    1917:  ^
    1918:  java/test/org/openqa/selenium/json/JsonTest.java:454: warning: [removal] ErrorCodes in org.openqa.selenium.remote has been deprecated and marked for removal
    1919:  assertThat(response.getState()).isEqualTo(new ErrorCodes().toState(32));
    1920:  ^
    1921:  (11:40:39) �[32mINFO: �[0mFrom Building java/test/org/openqa/selenium/remote/libsmall-tests-test-lib.jar (5 source files) and running annotation processors (AutoServiceProcessor):
    1922:  java/test/org/openqa/selenium/remote/WebDriverFixture.java:170: warning: [removal] ErrorCodes in org.openqa.selenium.remote has been deprecated and marked for removal
    1923:  response.setStatus(new ErrorCodes().toStatus(state, Optional.of(400)));
    1924:  ^
    1925:  (11:40:40) �[32mINFO: �[0mFrom Building java/test/org/openqa/selenium/remote/codec/w3c/W3CHttpResponseCodecTest.jar (1 source file):
    1926:  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
    1927:  import static org.openqa.selenium.remote.ErrorCodes.METHOD_NOT_ALLOWED;
    1928:  ^
    1929:  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
    1930:  assertThat(decoded.getStatus().intValue()).isEqualTo(ErrorCodes.SUCCESS);
    1931:  ^
    1932:  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
    1933:  assertThat(decoded.getStatus().intValue()).isEqualTo(ErrorCodes.UNHANDLED_ERROR);
    1934:  ^
    1935:  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
    1936:  assertThat(decoded.getStatus().intValue()).isEqualTo(ErrorCodes.UNHANDLED_ERROR);
    1937:  ^
    1938:  (11:40:40) �[32mINFO: �[0mFrom Building java/test/org/openqa/selenium/remote/ErrorHandlerTest.jar (1 source file) and running annotation processors (AutoServiceProcessor):
    1939:  java/test/org/openqa/selenium/remote/ErrorHandlerTest.java:79: warning: [removal] ErrorCodes in org.openqa.selenium.remote has been deprecated and marked for removal
    1940:  handler.throwIfResponseFailed(createResponse(ErrorCodes.SUCCESS), 100);
    1941:  ^
    1942:  java/test/org/openqa/selenium/remote/ErrorHandlerTest.java:85: warning: [removal] ErrorCodes in org.openqa.selenium.remote has been deprecated and marked for removal
    1943:  assertThrowsCorrectExceptionType(ErrorCodes.NO_SUCH_WINDOW, NoSuchWindowException.class);
    1944:  ^
    1945:  java/test/org/openqa/selenium/remote/ErrorHandlerTest.java:86: warning: [removal] ErrorCodes in org.openqa.selenium.remote has been deprecated and marked for removal
    1946:  assertThrowsCorrectExceptionType(ErrorCodes.NO_SUCH_FRAME, NoSuchFrameException.class);
    1947:  ^
    1948:  java/test/org/openqa/selenium/remote/ErrorHandlerTest.java:87: warning: [removal] ErrorCodes in org.openqa.selenium.remote has been deprecated and marked for removal
    1949:  assertThrowsCorrectExceptionType(ErrorCodes.NO_SUCH_ELEMENT, NoSuchElementException.class);
    1950:  ^
    1951:  java/test/org/openqa/selenium/remote/ErrorHandlerTest.java:88: warning: [removal] ErrorCodes in org.openqa.selenium.remote has been deprecated and marked for removal
    1952:  assertThrowsCorrectExceptionType(ErrorCodes.UNKNOWN_COMMAND, UnsupportedCommandException.class);
    1953:  ^
    1954:  java/test/org/openqa/selenium/remote/ErrorHandlerTest.java:90: warning: [removal] ErrorCodes in org.openqa.selenium.remote has been deprecated and marked for removal
    1955:  ErrorCodes.METHOD_NOT_ALLOWED, UnsupportedCommandException.class);
    1956:  ^
    1957:  java/test/org/openqa/selenium/remote/ErrorHandlerTest.java:92: warning: [removal] ErrorCodes in org.openqa.selenium.remote has been deprecated and marked for removal
    1958:  ErrorCodes.STALE_ELEMENT_REFERENCE, StaleElementReferenceException.class);
    1959:  ^
    1960:  java/test/org/openqa/selenium/remote/ErrorHandlerTest.java:94: warning: [removal] ErrorCodes in org.openqa.selenium.remote has been deprecated and marked for removal
    1961:  ErrorCodes.INVALID_ELEMENT_STATE, InvalidElementStateException.class);
    1962:  ^
    1963:  java/test/org/openqa/selenium/remote/ErrorHandlerTest.java:95: warning: [removal] ErrorCodes in org.openqa.selenium.remote has been deprecated and marked for removal
    1964:  assertThrowsCorrectExceptionType(ErrorCodes.XPATH_LOOKUP_ERROR, InvalidSelectorException.class);
    1965:  ^
    1966:  java/test/org/openqa/selenium/remote/ErrorHandlerTest.java:107: warning: [removal] ErrorCodes in org.openqa.selenium.remote has been deprecated and marked for removal
    1967:  Response response = createResponse(ErrorCodes.UNHANDLED_ERROR);
    1968:  ^
    1969:  java/test/org/openqa/selenium/remote/ErrorHandlerTest.java:120: warning: [removal] ErrorCodes in org.openqa.selenium.remote has been deprecated and marked for removal
    1970:  createResponse(ErrorCodes.UNHANDLED_ERROR, "boom"), 123))
    1971:  ^
    1972:  java/test/org/openqa/selenium/remote/ErrorHandlerTest.java:133: warning: [removal] ErrorCodes in org.openqa.selenium.remote has been deprecated and marked for removal
    1973:  createResponse(ErrorCodes.UNHANDLED_ERROR, ImmutableMap.of("message", "boom")),
    1974:  ^
    1975:  java/test/org/openqa/selenium/remote/ErrorHandlerTest.java:147: warning: [removal] ErrorCodes in org.openqa.selenium.remote has been deprecated and marked for removal
    1976:  ErrorCodes.UNHANDLED_ERROR,
    1977:  ^
    1978:  java/test/org/openqa/selenium/remote/ErrorHandlerTest.java:167: warning: [removal] ErrorCodes in org.openqa.selenium.remote has been deprecated and marked for removal
    1979:  ErrorCodes.UNHANDLED_ERROR,
    1980:  ^
    1981:  java/test/org/openqa/selenium/remote/ErrorHandlerTest.java:193: warning: [removal] ErrorCodes in org.openqa.selenium.remote has been deprecated and marked for removal
    1982:  createResponse(ErrorCodes.UNHANDLED_ERROR, toMap(serverError)), 123))
    1983:  ^
    1984:  java/test/org/openqa/selenium/remote/ErrorHandlerTest.java:214: warning: [removal] ErrorCodes in org.openqa.selenium.remote has been deprecated and marked for removal
    1985:  createResponse(ErrorCodes.UNHANDLED_ERROR, data), 123))
    1986:  ^
    1987:  java/test/org/openqa/selenium/remote/ErrorHandlerTest.java:248: warning: [removal] ErrorCodes in org.openqa.selenium.remote has been deprecated and marked for removal
    1988:  createResponse(ErrorCodes.UNHANDLED_ERROR, data), 123))
    1989:  ^
    1990:  java/test/org/openqa/selenium/remote/ErrorHandlerTest.java:280: warning: [removal] ErrorCodes in org.openqa.selenium.remote has been deprecated and marked for removal
    1991:  createResponse(ErrorCodes.UNHANDLED_ERROR, data), 123))
    1992:  ^
    1993:  java/test/org/openqa/selenium/remote/ErrorHandlerTest.java:308: warning: [removal] ErrorCodes in org.openqa.selenium.remote has been deprecated and marked for removal
    1994:  createResponse(ErrorCodes.UNHANDLED_ERROR, data), 123))
    1995:  ^
    1996:  java/test/org/openqa/selenium/remote/ErrorHandlerTest.java:327: warning: [removal] ErrorCodes in org.openqa.selenium.remote has been deprecated and marked for removal
    1997:  createResponse(ErrorCodes.UNHANDLED_ERROR, data), 123))
    1998:  ^
    1999:  java/test/org/openqa/selenium/remote/ErrorHandlerTest.java:355: warning: [removal] ErrorCodes in org.openqa.selenium.remote has been deprecated and marked for removal
    2000:  createResponse(ErrorCodes.UNHANDLED_ERROR, data), 123))
    2001:  ^
    2002:  java/test/org/openqa/selenium/remote/ErrorHandlerTest.java:394: warning: [removal] ErrorCodes in org.openqa.selenium.remote has been deprecated and marked for removal
    2003:  createResponse(ErrorCodes.UNHANDLED_ERROR, data), 123))
    2004:  ^
    2005:  java/test/org/openqa/selenium/remote/ErrorHandlerTest.java:426: warning: [removal] ErrorCodes in org.openqa.selenium.remote has been deprecated and marked for removal
    2006:  createResponse(ErrorCodes.UNHANDLED_ERROR, toMap(serverError)), 123))
    2007:  ^
    2008:  java/test/org/openqa/selenium/remote/ErrorHandlerTest.java:435: warning: [removal] ErrorCodes in org.openqa.selenium.remote has been deprecated and marked for removal
    2009:  exceptions.put(ErrorCodes.NO_SUCH_SESSION, NoSuchSessionException.class);
    2010:  ^
    2011:  java/test/org/openqa/selenium/remote/ErrorHandlerTest.java:436: warning: [removal] ErrorCodes in org.openqa.selenium.remote has been deprecated and marked for removal
    2012:  exceptions.put(ErrorCodes.NO_SUCH_ELEMENT, NoSuchElementException.class);
    2013:  ^
    2014:  java/test/org/openqa/selenium/remote/ErrorHandlerTest.java:437: warning: [removal] ErrorCodes in org.openqa.selenium.remote has been deprecated and marked for removal
    2015:  exceptions.put(ErrorCodes.NO_SUCH_FRAME, NoSuchFrameException.class);
    2016:  ^
    2017:  java/test/org/openqa/selenium/remote/ErrorHandlerTest.java:438: warning: [removal] ErrorCodes in org.openqa.selenium.remote has been deprecated and marked for removal
    2018:  exceptions.put(ErrorCodes.UNKNOWN_COMMAND, UnsupportedCommandException.class);
    2019:  ^
    2020:  java/test/org/openqa/selenium/remote/ErrorHandlerTest.java:439: warning: [removal] ErrorCodes in org.openqa.selenium.remote has been deprecated and marked for removal
    2021:  exceptions.put(ErrorCodes.STALE_ELEMENT_REFERENCE, StaleElementReferenceException.class);
    2022:  ^
    2023:  java/test/org/openqa/selenium/remote/ErrorHandlerTest.java:440: warning: [removal] ErrorCodes in org.openqa.selenium.remote has been deprecated and marked for removal
    2024:  exceptions.put(ErrorCodes.INVALID_ELEMENT_STATE, InvalidElementStateException.class);
    2025:  ^
    2026:  java/test/org/openqa/selenium/remote/ErrorHandlerTest.java:441: warning: [removal] ErrorCodes in org.openqa.selenium.remote has been deprecated and marked for removal
    2027:  exceptions.put(ErrorCodes.UNHANDLED_ERROR, WebDriverException.class);
    2028:  ^
    2029:  java/test/org/openqa/selenium/remote/ErrorHandlerTest.java:442: warning: [removal] ErrorCodes in org.openqa.selenium.remote has been deprecated and marked for removal
    2030:  exceptions.put(ErrorCodes.JAVASCRIPT_ERROR, JavascriptException.class);
    2031:  ^
    2032:  java/test/org/openqa/selenium/remote/ErrorHandlerTest.java:443: warning: [removal] ErrorCodes in org.openqa.selenium.remote has been deprecated and marked for removal
    2033:  exceptions.put(ErrorCodes.XPATH_LOOKUP_ERROR, InvalidSelectorException.class);
    2034:  ^
    2035:  java/test/org/openqa/selenium/remote/ErrorHandlerTest.java:444: warning: [removal] ErrorCodes in org.openqa.selenium.remote has been deprecated and marked for removal
    2036:  exceptions.put(ErrorCodes.TIMEOUT, TimeoutException.class);
    2037:  ^
    2038:  java/test/org/openqa/selenium/remote/ErrorHandlerTest.java:445: warning: [removal] ErrorCodes in org.openqa.selenium.remote has been deprecated and marked for removal
    2039:  exceptions.put(ErrorCodes.NO_SUCH_WINDOW, NoSuchWindowException.class);
    2040:  ^
    2041:  java/test/org/openqa/selenium/remote/ErrorHandlerTest.java:446: warning: [removal] ErrorCodes in org.openqa.selenium.remote has been deprecated and marked for removal
    2042:  exceptions.put(ErrorCodes.INVALID_COOKIE_DOMAIN, InvalidCookieDomainException.class);
    2043:  ^
    2044:  java/test/org/openqa/selenium/remote/ErrorHandlerTest.java:447: warning: [removal] ErrorCodes in org.openqa.selenium.remote has been deprecated and marked for removal
    2045:  exceptions.put(ErrorCodes.UNABLE_TO_SET_COOKIE, UnableToSetCookieException.class);
    2046:  ^
    2047:  java/test/org/openqa/selenium/remote/ErrorHandlerTest.java:448: warning: [removal] ErrorCodes in org.openqa.selenium.remote has been deprecated and marked for removal
    2048:  exceptions.put(ErrorCodes.UNEXPECTED_ALERT_PRESENT, UnhandledAlertException.class);
    2049:  ^
    2050:  java/test/org/openqa/selenium/remote/ErrorHandlerTest.java:449: warning: [removal] ErrorCodes in org.openqa.selenium.remote has been deprecated and marked for removal
    2051:  exceptions.put(ErrorCodes.NO_ALERT_PRESENT, NoAlertPresentException.class);
    2052:  ^
    2053:  java/test/org/openqa/selenium/remote/ErrorHandlerTest.java:450: warning: [removal] ErrorCodes in org.openqa.selenium.remote has been deprecated and marked for removal
    2054:  exceptions.put(ErrorCodes.ASYNC_SCRIPT_TIMEOUT, ScriptTimeoutException.class);
    2055:  ^
    2056:  java/test/org/openqa/selenium/remote/ErrorHandlerTest.java:451: warning: [removal] ErrorCodes in org.openqa.selenium.remote has been deprecated and marked for removal
    2057:  exceptions.put(ErrorCodes.INVALID_SELECTOR_ERROR, InvalidSelectorException.class);
    2058:  ^
    2059:  java/test/org/openqa/selenium/remote/ErrorHandlerTest.java:452: warning: [removal] ErrorCodes in org.openqa.selenium.remote has been deprecated and marked for removal
    2060:  exceptions.put(ErrorCodes.SESSION_NOT_CREATED, SessionNotCreatedException.class);
    2061:  ^
    2062:  java/test/org/openqa/selenium/remote/ErrorHandlerTest.java:453: warning: [removal] ErrorCodes in org.openqa.selenium.remote has been deprecated and marked for removal
    2063:  exceptions.put(ErrorCodes.MOVE_TARGET_OUT_OF_BOUNDS, MoveTargetOutOfBoundsException.class);
    2064:  ^
    2065:  java/test/org/openqa/selenium/remote/ErrorHandlerTest.java:454: warning: [removal] ErrorCodes in org.openqa.selenium.remote has been deprecated and marked for removal
    2066:  exceptions.put(ErrorCodes.INVALID_XPATH_SELECTOR, InvalidSelectorException.class);
    2067:  ^
    2068:  java/test/org/openqa/selenium/remote/ErrorHandlerTest.java:455: warning: [removal] ErrorCodes in org.openqa.selenium.remote has been deprecated and marked for removal
    2069:  exceptions.put(ErrorCodes.INVALID_XPATH_SELECTOR_RETURN_TYPER, InvalidSelectorException.class);
    2070:  ^
    2071:  java/test/org/openqa/selenium/remote/ErrorHandlerTest.java:469: warning: [removal] ErrorCodes in org.openqa.selenium.remote has been deprecated and marked for removal
    2072:  ? ErrorCodes.INVALID_SELECTOR_ERROR
    2073:  ^
    2074:  java/test/org/openqa/selenium/remote/ErrorHandlerTest.java:471: warning: [removal] ErrorCodes in org.openqa.selenium.remote has been deprecated and marked for removal
    2075:  assertThat(new ErrorCodes().toStatusCode(e)).isEqualTo(expected);
    2076:  ^
    2077:  java/test/org/openqa/selenium/remote/ErrorHandlerTest.java:483: warning: [removal] ErrorCodes in org.openqa.selenium.remote has been deprecated and marked for removal
    2078:  response.setState(new ErrorCodes().toState(status));
    2079:  ^
    2080:  (11:40:40) �[32mINFO: �[0mFrom Building java/test/org/openqa/selenium/remote/RemotableByTest.jar (1 source file) and running annotation processors (AutoServiceProcessor):
    2081:  java/test/org/openqa/selenium/remote/RemotableByTest.java:23: warning: [removal] ErrorCodes in org.openqa.selenium.remote has been deprecated and marked for removal
    2082:  import static org.openqa.selenium.remote.ErrorCodes.SUCCESS_STRING;
    2083:  ^
    2084:  java/test/org/openqa/selenium/remote/RemotableByTest.java:23: warning: [removal] ErrorCodes in org.openqa.selenium.remote has been deprecated and marked for removal
    2085:  import static org.openqa.selenium.remote.ErrorCodes.SUCCESS_STRING;
    2086:  ^
    2087:  java/test/org/openqa/selenium/remote/RemotableByTest.java:23: warning: [removal] ErrorCodes in org.openqa.selenium.remote has been deprecated and marked for removal
    2088:  import static org.openqa.selenium.remote.ErrorCodes.SUCCESS_STRING;
    2089:  ^
    2090:  java/test/org/openqa/selenium/remote/RemotableByTest.java:45: warning: [removal] ErrorCodes in org.openqa.selenium.remote has been deprecated and marked for removal
    2091:  private final ErrorCodes errorCodes = new ErrorCodes();
    2092:  ^
    2093:  java/test/org/openqa/selenium/remote/RemotableByTest.java:45: warning: [removal] ErrorCodes in org.openqa.selenium.remote has been deprecated and marked for removal
    2094:  private final ErrorCodes errorCodes = new ErrorCodes();
    2095:  ^
    2096:  java/test/org/openqa/selenium/remote/RemotableByTest.java:45: warning: [removal] ErrorCodes in org.openqa.selenium.remote has been deprecated and marked for removal
    2097:  private final ErrorCodes errorCodes = new ErrorCodes();
    2098:  ^
    2099:  java/test/org/openqa/selenium/remote/RemotableByTest.java:45: warning: [removal] ErrorCodes in org.openqa.selenium.remote has been deprecated and marked for removal
    2100:  private final ErrorCodes errorCodes = new ErrorCodes();
    ...
    
    2106:  (11:41:12) �[32m[12,238 / 12,240]�[0m 1281 / 1283 tests;�[0m [Sched] Testing //java/test/org/openqa/selenium/bidi/network:NetworkEventsTest-remote; 22s ... (2 actions, 1 running)
    2107:  (11:41:36) �[32m[12,238 / 12,240]�[0m 1281 / 1283 tests;�[0m [Sched] Testing //java/test/org/openqa/selenium/bidi/network:NetworkEventsTest-remote; 47s ... (2 actions, 1 running)
    2108:  (11:42:21) �[32m[12,238 / 12,240]�[0m 1281 / 1283 tests;�[0m Testing //java/test/org/openqa/selenium/bidi/network:NetworkEventsTest; 92s remote ... (2 actions running)
    2109:  (11:42:22) �[31m�[1mFAIL: �[0m//java/test/org/openqa/selenium/bidi/network:NetworkEventsTest (see /home/runner/.bazel/execroot/selenium/bazel-out/k8-fastbuild/testlogs/java/test/org/openqa/selenium/bidi/network/NetworkEventsTest/test_attempts/attempt_1.log)
    2110:  (11:42:27) �[32m[12,238 / 12,240]�[0m 1281 / 1283 tests;�[0m Testing //java/test/org/openqa/selenium/bidi/network:NetworkEventsTest-remote; 5s remote ... (2 actions running)
    2111:  (11:42:36) �[32m[12,238 / 12,240]�[0m 1281 / 1283 tests;�[0m Testing //java/test/org/openqa/selenium/bidi/network:NetworkEventsTest-remote; 14s remote ... (2 actions running)
    2112:  (11:43:36) �[32m[12,238 / 12,240]�[0m 1281 / 1283 tests;�[0m Testing //java/test/org/openqa/selenium/bidi/network:NetworkEventsTest-remote; 74s remote ... (2 actions running)
    2113:  (11:43:58) �[31m�[1mFAIL: �[0m//java/test/org/openqa/selenium/bidi/network:NetworkEventsTest (see /home/runner/.bazel/execroot/selenium/bazel-out/k8-fastbuild/testlogs/java/test/org/openqa/selenium/bidi/network/NetworkEventsTest/test.log)
    2114:  �[31m�[1mFAILED: �[0m//java/test/org/openqa/selenium/bidi/network:NetworkEventsTest (Summary)
    2115:  /home/runner/.bazel/execroot/selenium/bazel-out/k8-fastbuild/testlogs/java/test/org/openqa/selenium/bidi/network/NetworkEventsTest/test.log
    2116:  ==================== Test output for //java/test/org/openqa/selenium/bidi/network:NetworkEventsTest:
    2117:  Failures: 1
    2118:  /home/runner/.bazel/execroot/selenium/bazel-out/k8-fastbuild/testlogs/java/test/org/openqa/selenium/bidi/network/NetworkEventsTest/test_attempts/attempt_1.log
    2119:  1) canListenToFetchError() (org.openqa.selenium.bidi.network.NetworkEventsTest)
    2120:  org.openqa.selenium.bidi.BiDiException: {"type":"error","id":4,"error":"invalid argument","message":"network.fetchError is not a valid event name","stacktrace":"RemoteError@chrome://remote/content/shared/RemoteError.sys.mjs:8:8\nWebDriverError@chrome://remote/content/shared/webdriver/Errors.sys.mjs:191:5\nInvalidArgumentError@chrome://remote/content/shared/webdriver/Errors.sys.mjs:382:5\n#assertModuleSupportsEvent@chrome://remote/content/webdriver-bidi/modules/root/session.sys.mjs:136:13\n#obtainEvents@chrome://remote/content/webdriver-bidi/modules/root/session.sys.mjs:205:38\n#updateEventMap/<@chrome://remote/content/webdriver-bidi/modules/root/session.sys.mjs:278:25\n#updateEventMap@chrome://remote/content/webdriver-bidi/modules/root/session.sys.mjs:277:25\nsubscribe@chrome://remote/content/webdriver-bidi/modules/root/session.sys.mjs:91:43\nhandleCommand@chrome://remote/content/shared/messagehandler/MessageHandler.sys.mjs:255:33\nexecute@chrome://remote/content/shared/webdriver/Session.sys.mjs:274:32\nonPacket@chrome://remote/content/webdriver-bidi/WebDriverBiDiConnection.sys.mjs:211:37\nonMessage@chrome://remote/content/server/WebSocketTransport.sys.mjs:127:18\nhandleEvent@chrome://remote/content/server/WebSocketTransport.sys.mjs:109:14\n"}
    2121:  Build info: version: '4.19.0-SNAPSHOT', revision: 'Unknown'
    2122:  System info: os.name: 'Linux', os.arch: 'amd64', os.version: '6.1.0-17-cloud-amd64', java.version: '17.0.5'
    2123:  Driver info: driver.version: unknown
    2124:  at org.openqa.selenium.bidi.Connection.sendAndWait(Connection.java:177)
    2125:  at org.openqa.selenium.bidi.BiDi.send(BiDi.java:51)
    2126:  at org.openqa.selenium.bidi.BiDi.addListener(BiDi.java:58)
    2127:  at org.openqa.selenium.bidi.module.Network.onFetchError(Network.java:135)
    2128:  at org.openqa.selenium.bidi.network.NetworkEventsTest.canListenToFetchError(NetworkEventsTest.java:178)
    2129:  Caused by: org.openqa.selenium.WebDriverException: {"type":"error","id":4,"error":"invalid argument","message":"network.fetchError is not a valid event name","stacktrace":"RemoteError@chrome://remote/content/shared/RemoteError.sys.mjs:8:8\nWebDriverError@chrome://remote/content/shared/webdriver/Errors.sys.mjs:191:5\nInvalidArgumentError@chrome://remote/content/shared/webdriver/Errors.sys.mjs:382:5\n#assertModuleSupportsEvent@chrome://remote/content/webdriver-bidi/modules/root/session.sys.mjs:136:13\n#obtainEvents@chrome://remote/content/webdriver-bidi/modules/root/session.sys.mjs:205:38\n#updateEventMap/<@chrome://remote/content/webdriver-bidi/modules/root/session.sys.mjs:278:25\n#updateEventMap@chrome://remote/content/webdriver-bidi/modules/root/session.sys.mjs:277:25\nsubscribe@chrome://remote/content/webdriver-bidi/modules/root/session.sys.mjs:91:43\nhandleCommand@chrome://remote/content/shared/messagehandler/MessageHandler.sys.mjs:255:33\nexecute@chrome://remote/content/shared/webdriver/Session.sys.mjs:274:32\nonPacket@chrome://remote/content/webdriver-bidi/WebDriverBiDiConnection.sys.mjs:211:37\nonMessage@chrome://remote/content/server/WebSocketTransport.sys.mjs:127:18\nhandleEvent@chrome://remote/content/server/WebSocketTransport.sys.mjs:109:14\n"}
    ...
    
    2135:  at org.openqa.selenium.bidi.Connection$Listener.lambda$onText$0(Connection.java:254)
    2136:  at java.base/java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1136)
    2137:  at java.base/java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:635)
    2138:  at java.base/java.lang.Thread.run(Thread.java:833)
    2139:  Execution result: https://gypsum.cluster.engflow.com/actions/executions/ChDt42YyP5NBso2TDhNLd-bXEgdkZWZhdWx0GiUKIPYjUJwwNlzAY3cXes12d5TQhSRTx_qC3i7ebZiDuGSwEJ8D
    2140:  ================================================================================
    2141:  ==================== Test output for //java/test/org/openqa/selenium/bidi/network:NetworkEventsTest:
    2142:  Failures: 1
    2143:  1) canListenToFetchError() (org.openqa.selenium.bidi.network.NetworkEventsTest)
    2144:  org.openqa.selenium.bidi.BiDiException: {"type":"error","id":4,"error":"invalid argument","message":"network.fetchError is not a valid event name","stacktrace":"RemoteError@chrome://remote/content/shared/RemoteError.sys.mjs:8:8\nWebDriverError@chrome://remote/content/shared/webdriver/Errors.sys.mjs:191:5\nInvalidArgumentError@chrome://remote/content/shared/webdriver/Errors.sys.mjs:382:5\n#assertModuleSupportsEvent@chrome://remote/content/webdriver-bidi/modules/root/session.sys.mjs:136:13\n#obtainEvents@chrome://remote/content/webdriver-bidi/modules/root/session.sys.mjs:205:38\n#updateEventMap/<@chrome://remote/content/webdriver-bidi/modules/root/session.sys.mjs:278:25\n#updateEventMap@chrome://remote/content/webdriver-bidi/modules/root/session.sys.mjs:277:25\nsubscribe@chrome://remote/content/webdriver-bidi/modules/root/session.sys.mjs:91:43\nhandleCommand@chrome://remote/content/shared/messagehandler/MessageHandler.sys.mjs:255:33\nexecute@chrome://remote/content/shared/webdriver/Session.sys.mjs:274:32\nonPacket@chrome://remote/content/webdriver-bidi/WebDriverBiDiConnection.sys.mjs:211:37\nonMessage@chrome://remote/content/server/WebSocketTransport.sys.mjs:127:18\nhandleEvent@chrome://remote/content/server/WebSocketTransport.sys.mjs:109:14\n"}
    2145:  Build info: version: '4.19.0-SNAPSHOT', revision: 'Unknown'
    2146:  System info: os.name: 'Linux', os.arch: 'amd64', os.version: '6.1.0-17-cloud-amd64', java.version: '17.0.5'
    2147:  Driver info: driver.version: unknown
    2148:  at org.openqa.selenium.bidi.Connection.sendAndWait(Connection.java:177)
    2149:  at org.openqa.selenium.bidi.BiDi.send(BiDi.java:51)
    2150:  at org.openqa.selenium.bidi.BiDi.addListener(BiDi.java:58)
    2151:  at org.openqa.selenium.bidi.module.Network.onFetchError(Network.java:135)
    2152:  at org.openqa.selenium.bidi.network.NetworkEventsTest.canListenToFetchError(NetworkEventsTest.java:178)
    2153:  Caused by: org.openqa.selenium.WebDriverException: {"type":"error","id":4,"error":"invalid argument","message":"network.fetchError is not a valid event name","stacktrace":"RemoteError@chrome://remote/content/shared/RemoteError.sys.mjs:8:8\nWebDriverError@chrome://remote/content/shared/webdriver/Errors.sys.mjs:191:5\nInvalidArgumentError@chrome://remote/content/shared/webdriver/Errors.sys.mjs:382:5\n#assertModuleSupportsEvent@chrome://remote/content/webdriver-bidi/modules/root/session.sys.mjs:136:13\n#obtainEvents@chrome://remote/content/webdriver-bidi/modules/root/session.sys.mjs:205:38\n#updateEventMap/<@chrome://remote/content/webdriver-bidi/modules/root/session.sys.mjs:278:25\n#updateEventMap@chrome://remote/content/webdriver-bidi/modules/root/session.sys.mjs:277:25\nsubscribe@chrome://remote/content/webdriver-bidi/modules/root/session.sys.mjs:91:43\nhandleCommand@chrome://remote/content/shared/messagehandler/MessageHandler.sys.mjs:255:33\nexecute@chrome://remote/content/shared/webdriver/Session.sys.mjs:274:32\nonPacket@chrome://remote/content/webdriver-bidi/WebDriverBiDiConnection.sys.mjs:211:37\nonMessage@chrome://remote/content/server/WebSocketTransport.sys.mjs:127:18\nhandleEvent@chrome://remote/content/server/WebSocketTransport.sys.mjs:109:14\n"}
    ...
    
    2158:  at org.openqa.selenium.bidi.Connection.handle(Connection.java:279)
    2159:  at org.openqa.selenium.bidi.Connection$Listener.lambda$onText$0(Connection.java:254)
    2160:  at java.base/java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1136)
    2161:  at java.base/java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:635)
    2162:  at java.base/java.lang.Thread.run(Thread.java:833)
    2163:  Execution result: https://gypsum.cluster.engflow.com/actions/executions/ChAFMfr2vOVOHKpMUv99icp9EgdkZWZhdWx0GiUKIPYjUJwwNlzAY3cXes12d5TQhSRTx_qC3i7ebZiDuGSwEJ8D
    2164:  ================================================================================
    2165:  (11:43:58) �[32mINFO: �[0mFrom Testing //java/test/org/openqa/selenium/bidi/network:NetworkEventsTest:
    2166:  (11:44:02) �[32m[12,239 / 12,240]�[0m 1282 / 1283 tests, �[31m�[1m1 failed�[0m;�[0m Testing //java/test/org/openqa/selenium/bidi/network:NetworkEventsTest-remote; 100s remote
    2167:  (11:44:09) �[32m[12,239 / 12,240]�[0m 1282 / 1283 tests, �[31m�[1m1 failed�[0m;�[0m Testing //java/test/org/openqa/selenium/bidi/network:NetworkEventsTest-remote; 107s remote
    2168:  (11:44:39) �[32m[12,239 / 12,240]�[0m 1282 / 1283 tests, �[31m�[1m1 failed�[0m;�[0m Testing //java/test/org/openqa/selenium/bidi/network:NetworkEventsTest-remote; 137s remote
    2169:  (11:44:40) �[31m�[1mFAIL: �[0m//java/test/org/openqa/selenium/bidi/network:NetworkEventsTest-remote (see /home/runner/.bazel/execroot/selenium/bazel-out/k8-fastbuild/testlogs/java/test/org/openqa/selenium/bidi/network/NetworkEventsTest-remote/test_attempts/attempt_1.log)
    2170:  (11:44:47) �[32m[12,239 / 12,240]�[0m 1282 / 1283 tests, �[31m�[1m1 failed�[0m;�[0m Testing //java/test/org/openqa/selenium/bidi/network:NetworkEventsTest-remote; 6s remote
    2171:  (11:45:39) �[32m[12,239 / 12,240]�[0m 1282 / 1283 tests, �[31m�[1m1 failed�[0m;�[0m Testing //java/test/org/openqa/selenium/bidi/network:NetworkEventsTest-remote; 59s remote
    2172:  (11:46:11) �[31m�[1mFAIL: �[0m//java/test/org/openqa/selenium/bidi/network:NetworkEventsTest-remote (see /home/runner/.bazel/execroot/selenium/bazel-out/k8-fastbuild/testlogs/java/test/org/openqa/selenium/bidi/network/NetworkEventsTest-remote/test.log)
    2173:  ==================== Test output for //java/test/org/openqa/selenium/bidi/network:NetworkEventsTest-remote:
    2174:  �[31m�[1mFAILED: �[0m//java/test/org/openqa/selenium/bidi/network:NetworkEventsTest-remote (Summary)
    2175:  /home/runner/.bazel/execroot/selenium/bazel-out/k8-fastbuild/testlogs/java/test/org/openqa/selenium/bidi/network/NetworkEventsTest-remote/test.log
    2176:  /home/runner/.bazel/execroot/selenium/bazel-out/k8-fastbuild/testlogs/java/test/org/openqa/selenium/bidi/network/NetworkEventsTest-remote/test_attempts/attempt_1.log
    2177:  (11:46:11) �[32mINFO: �[0mFrom Testing //java/test/org/openqa/selenium/bidi/network:NetworkEventsTest-remote:
    2178:  11:43:16.161 INFO [LoggingOptions.configureLogEncoding] - Using the system default encoding
    2179:  11:43:16.179 INFO [OpenTelemetryTracer.createTracer] - Using OpenTelemetry for tracing
    2180:  11:43:17.930 INFO [NodeOptions.getSessionFactories] - Detected 1 available processors
    2181:  11:43:17.932 INFO [NodeOptions.discoverDrivers] - Looking for existing drivers on the PATH.
    2182:  (11:46:11) �[32m[12,240 / 12,240]�[0m 1283 / 1283 tests, �[31m�[1m2 failed�[0m;�[0m checking cached actions
    ...
    
    2244:  11:44:29.580 INFO [LocalDistributor.newSession] - Session created by the Distributor. Id: d71731c9-c0f5-4651-8e4e-0bbb3dd12942 
    2245:  Caps: Capabilities {acceptInsecureCerts: true, browserName: firefox, browserVersion: 122.0.1, moz:accessibilityChecks: false, moz:buildID: 20240205133611, moz:debuggerAddress: 127.0.0.1:25515, moz:firefoxOptions: {binary: external/linux_firefox/fire...}, moz:geckodriverVersion: 0.34.0, moz:headless: false, moz:platformVersion: 6.1.0-17-cloud-amd64, moz:processID: 1324, moz:profile: /tmp/rust_mozprofilenkOerJ, moz:shutdownTimeout: 60000, moz:webdriverClick: true, moz:windowless: false, pageLoadStrategy: normal, platformName: linux, proxy: Proxy(), se:bidi: ws://127.0.0.1:3635/session..., se:cdp: ws://127.0.0.1:3635/session..., se:cdpVersion: 85.0, setWindowRect: true, strictFileInteractability: false, timeouts: {implicit: 0, pageLoad: 300000, script: 30000}, unhandledPromptBehavior: dismiss and notify, webSocketUrl: ws://127.0.0.1:25515/sessio...}
    2246:  11:44:29.638 INFO [ProxyNodeWebsockets.createWsEndPoint] - Establishing connection to ws://127.0.0.1:25515/devtools/browser/5a136020-b89a-421e-84d7-c76696806bc0
    2247:  11:44:29.661 INFO [ProxyNodeWebsockets.createWsEndPoint] - Establishing connection to ws://127.0.0.1:25515/session/d71731c9-c0f5-4651-8e4e-0bbb3dd12942
    2248:  11:44:31.303 INFO [LocalSessionMap.lambda$new$0] - Deleted session from local Session Map, Id: d71731c9-c0f5-4651-8e4e-0bbb3dd12942
    2249:  11:44:31.303 INFO [GridModel.release] - Releasing slot for session id d71731c9-c0f5-4651-8e4e-0bbb3dd12942
    2250:  11:44:31.303 INFO [SessionSlot.stop] - Stopping session d71731c9-c0f5-4651-8e4e-0bbb3dd12942
    2251:  Failures: 1
    2252:  1) canListenToFetchError() (org.openqa.selenium.bidi.network.NetworkEventsTest)
    2253:  org.openqa.selenium.bidi.BiDiException: {"type":"error","id":4,"error":"invalid argument","message":"network.fetchError is not a valid event name","stacktrace":"RemoteError@chrome://remote/content/shared/RemoteError.sys.mjs:8:8\nWebDriverError@chrome://remote/content/shared/webdriver/Errors.sys.mjs:191:5\nInvalidArgumentError@chrome://remote/content/shared/webdriver/Errors.sys.mjs:382:5\n#assertModuleSupportsEvent@chrome://remote/content/webdriver-bidi/modules/root/session.sys.mjs:136:13\n#obtainEvents@chrome://remote/content/webdriver-bidi/modules/root/session.sys.mjs:205:38\n#updateEventMap/<@chrome://remote/content/webdriver-bidi/modules/root/session.sys.mjs:278:25\n#updateEventMap@chrome://remote/content/webdriver-bidi/modules/root/session.sys.mjs:277:25\nsubscribe@chrome://remote/content/webdriver-bidi/modules/root/session.sys.mjs:91:43\nhandleCommand@chrome://remote/content/shared/messagehandler/MessageHandler.sys.mjs:255:33\nexecute@chrome://remote/content/shared/webdriver/Session.sys.mjs:274:32\nonPacket@chrome://remote/content/webdriver-bidi/WebDriverBiDiConnection.sys.mjs:211:37\nonMessage@chrome://remote/content/server/WebSocketTransport.sys.mjs:127:18\nhandleEvent@chrome://remote/content/server/WebSocketTransport.sys.mjs:109:14\n"}
    2254:  Build info: version: '4.19.0-SNAPSHOT', revision: 'Unknown'
    2255:  System info: os.name: 'Linux', os.arch: 'amd64', os.version: '6.1.0-17-cloud-amd64', java.version: '17.0.5'
    2256:  Driver info: driver.version: unknown
    2257:  at org.openqa.selenium.bidi.Connection.sendAndWait(Connection.java:177)
    2258:  at org.openqa.selenium.bidi.BiDi.send(BiDi.java:51)
    2259:  at org.openqa.selenium.bidi.BiDi.addListener(BiDi.java:58)
    2260:  at org.openqa.selenium.bidi.module.Network.onFetchError(Network.java:135)
    2261:  at org.openqa.selenium.bidi.network.NetworkEventsTest.canListenToFetchError(NetworkEventsTest.java:178)
    2262:  Caused by: org.openqa.selenium.WebDriverException: {"type":"error","id":4,"error":"invalid argument","message":"network.fetchError is not a valid event name","stacktrace":"RemoteError@chrome://remote/content/shared/RemoteError.sys.mjs:8:8\nWebDriverError@chrome://remote/content/shared/webdriver/Errors.sys.mjs:191:5\nInvalidArgumentError@chrome://remote/content/shared/webdriver/Errors.sys.mjs:382:5\n#assertModuleSupportsEvent@chrome://remote/content/webdriver-bidi/modules/root/session.sys.mjs:136:13\n#obtainEvents@chrome://remote/content/webdriver-bidi/modules/root/session.sys.mjs:205:38\n#updateEventMap/<@chrome://remote/content/webdriver-bidi/modules/root/session.sys.mjs:278:25\n#updateEventMap@chrome://remote/content/webdriver-bidi/modules/root/session.sys.mjs:277:25\nsubscribe@chrome://remote/content/webdriver-bidi/modules/root/session.sys.mjs:91:43\nhandleCommand@chrome://remote/content/shared/messagehandler/MessageHandler.sys.mjs:255:33\nexecute@chrome://remote/content/shared/webdriver/Session.sys.mjs:274:32\nonPacket@chrome://remote/content/webdriver-bidi/WebDriverBiDiConnection.sys.mjs:211:37\nonMessage@chrome://remote/content/server/WebSocketTransport.sys.mjs:127:18\nhandleEvent@chrome://remote/content/server/WebSocketTransport.sys.mjs:109:14\n"}
    ...
    
    2340:  11:46:00.544 INFO [LocalDistributor.newSession] - Session created by the Distributor. Id: 5d7f785a-e504-4886-aed6-dd6dab67a919 
    2341:  Caps: Capabilities {acceptInsecureCerts: true, browserName: firefox, browserVersion: 122.0.1, moz:accessibilityChecks: false, moz:buildID: 20240205133611, moz:debuggerAddress: 127.0.0.1:13743, moz:firefoxOptions: {binary: external/linux_firefox/fire...}, moz:geckodriverVersion: 0.34.0, moz:headless: false, moz:platformVersion: 6.1.0-17-cloud-amd64, moz:processID: 2898, moz:profile: /tmp/rust_mozprofile09TATI, moz:shutdownTimeout: 60000, moz:webdriverClick: true, moz:windowless: false, pageLoadStrategy: normal, platformName: linux, proxy: Proxy(), se:bidi: ws://127.0.0.1:30162/sessio..., se:cdp: ws://127.0.0.1:30162/sessio..., se:cdpVersion: 85.0, setWindowRect: true, strictFileInteractability: false, timeouts: {implicit: 0, pageLoad: 300000, script: 30000}, unhandledPromptBehavior: dismiss and notify, webSocketUrl: ws://127.0.0.1:13743/sessio...}
    2342:  11:46:00.610 INFO [ProxyNodeWebsockets.createWsEndPoint] - Establishing connection to ws://127.0.0.1:13743/devtools/browser/41c0f45d-5b61-4a45-8b69-9b1ed8b9b86e
    2343:  11:46:00.649 INFO [ProxyNodeWebsockets.createWsEndPoint] - Establishing connection to ws://127.0.0.1:13743/session/5d7f785a-e504-4886-aed6-dd6dab67a919
    2344:  11:46:02.373 INFO [LocalSessionMap.lambda$new$0] - Deleted session from local Session Map, Id: 5d7f785a-e504-4886-aed6-dd6dab67a919
    2345:  11:46:02.373 INFO [GridModel.release] - Releasing slot for session id 5d7f785a-e504-4886-aed6-dd6dab67a919
    2346:  11:46:02.373 INFO [SessionSlot.stop] - Stopping session 5d7f785a-e504-4886-aed6-dd6dab67a919
    2347:  Failures: 1
    2348:  1) canListenToFetchError() (org.openqa.selenium.bidi.network.NetworkEventsTest)
    2349:  org.openqa.selenium.bidi.BiDiException: {"type":"error","id":4,"error":"invalid argument","message":"network.fetchError is not a valid event name","stacktrace":"RemoteError@chrome://remote/content/shared/RemoteError.sys.mjs:8:8\nWebDriverError@chrome://remote/content/shared/webdriver/Errors.sys.mjs:191:5\nInvalidArgumentError@chrome://remote/content/shared/webdriver/Errors.sys.mjs:382:5\n#assertModuleSupportsEvent@chrome://remote/content/webdriver-bidi/modules/root/session.sys.mjs:136:13\n#obtainEvents@chrome://remote/content/webdriver-bidi/modules/root/session.sys.mjs:205:38\n#updateEventMap/<@chrome://remote/content/webdriver-bidi/modules/root/session.sys.mjs:278:25\n#updateEventMap@chrome://remote/content/webdriver-bidi/modules/root/session.sys.mjs:277:25\nsubscribe@chrome://remote/content/webdriver-bidi/modules/root/session.sys.mjs:91:43\nhandleCommand@chrome://remote/content/shared/messagehandler/MessageHandler.sys.mjs:255:33\nexecute@chrome://remote/content/shared/webdriver/Session.sys.mjs:274:32\nonPacket@chrome://remote/content/webdriver-bidi/WebDriverBiDiConnection.sys.mjs:211:37\nonMessage@chrome://remote/content/server/WebSocketTransport.sys.mjs:127:18\nhandleEvent@chrome://remote/content/server/WebSocketTransport.sys.mjs:109:14\n"}
    2350:  Build info: version: '4.19.0-SNAPSHOT', revision: 'Unknown'
    2351:  System info: os.name: 'Linux', os.arch: 'amd64', os.version: '6.1.0-17-cloud-amd64', java.version: '17.0.5'
    2352:  Driver info: driver.version: unknown
    2353:  at org.openqa.selenium.bidi.Connection.sendAndWait(Connection.java:177)
    2354:  at org.openqa.selenium.bidi.BiDi.send(BiDi.java:51)
    2355:  at org.openqa.selenium.bidi.BiDi.addListener(BiDi.java:58)
    2356:  at org.openqa.selenium.bidi.module.Network.onFetchError(Network.java:135)
    2357:  at org.openqa.selenium.bidi.network.NetworkEventsTest.canListenToFetchError(NetworkEventsTest.java:178)
    2358:  Caused by: org.openqa.selenium.WebDriverException: {"type":"error","id":4,"error":"invalid argument","message":"network.fetchError is not a valid event name","stacktrace":"RemoteError@chrome://remote/content/shared/RemoteError.sys.mjs:8:8\nWebDriverError@chrome://remote/content/shared/webdriver/Errors.sys.mjs:191:5\nInvalidArgumentError@chrome://remote/content/shared/webdriver/Errors.sys.mjs:382:5\n#assertModuleSupportsEvent@chrome://remote/content/webdriver-bidi/modules/root/session.sys.mjs:136:13\n#obtainEvents@chrome://remote/content/webdriver-bidi/modules/root/session.sys.mjs:205:38\n#updateEventMap/<@chrome://remote/content/webdriver-bidi/modules/root/session.sys.mjs:278:25\n#updateEventMap@chrome://remote/content/webdriver-bidi/modules/root/session.sys.mjs:277:25\nsubscribe@chrome://remote/content/webdriver-bidi/modules/root/session.sys.mjs:91:43\nhandleCommand@chrome://remote/content/shared/messagehandler/MessageHandler.sys.mjs:255:33\nexecute@chrome://remote/content/shared/webdriver/Session.sys.mjs:274:32\nonPacket@chrome://remote/content/webdriver-bidi/WebDriverBiDiConnection.sys.mjs:211:37\nonMessage@chrome://remote/content/server/WebSocketTransport.sys.mjs:127:18\nhandleEvent@chrome://remote/content/server/WebSocketTransport.sys.mjs:109:14\n"}
    ...
    
    2364:  at org.openqa.selenium.bidi.Connection$Listener.lambda$onText$0(Connection.java:254)
    2365:  at java.base/java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1136)
    2366:  at java.base/java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:635)
    2367:  at java.base/java.lang.Thread.run(Thread.java:833)
    2368:  Execution result: https://gypsum.cluster.engflow.com/actions/executions/ChBlVW2YNxBKAIFuNWCDFWLNEgdkZWZhdWx0GiUKIF7EvajgUlhG8Up8TmT6JU9DdA3IezKB4QJhoME8rYWDEJ8D
    2369:  ================================================================================
    2370:  (11:46:11) �[32mINFO: �[0mElapsed time: 520.283s, Critical Path: 404.31s
    2371:  (11:46:11) �[32mINFO: �[0m12240 processes: 6341 remote cache hit, 4550 internal, 1345 local, 4 remote.
    2372:  (11:46:11) �[32mINFO:�[0m Build completed, 2 tests FAILED, 12240 total actions
    ...
    
    2414:  //dotnet/test/common:ElementEqualityTest-chrome                 �[0m�[32m(cached) PASSED�[0m in 8.7s
    2415:  //dotnet/test/common:ElementEqualityTest-firefox                �[0m�[32m(cached) PASSED�[0m in 16.0s
    2416:  //dotnet/test/common:ElementFindingTest-chrome                  �[0m�[32m(cached) PASSED�[0m in 26.4s
    2417:  //dotnet/test/common:ElementFindingTest-firefox                 �[0m�[32m(cached) PASSED�[0m in 38.8s
    2418:  //dotnet/test/common:ElementPropertyTest-chrome                 �[0m�[32m(cached) PASSED�[0m in 8.0s
    2419:  //dotnet/test/common:ElementPropertyTest-firefox                �[0m�[32m(cached) PASSED�[0m in 14.8s
    2420:  //dotnet/test/common:ElementSelectingTest-chrome                �[0m�[32m(cached) PASSED�[0m in 9.1s
    2421:  //dotnet/test/common:ElementSelectingTest-firefox               �[0m�[32m(cached) PASSED�[0m in 23.6s
    2422:  //dotnet/test/common:ErrorsTest-chrome                          �[0m�[32m(cached) PASSED�[0m in 5.6s
    2423:  //dotnet/test/common:ErrorsTest-firefox                         �[0m�[32m(cached) PASSED�[0m in 11.8s
    ...
    
    2693:  //java/test/org/openqa/selenium:ElementFindingTest-firefox-beta �[0m�[32m(cached) PASSED�[0m in 48.5s
    2694:  //java/test/org/openqa/selenium:ElementFindingTest-firefox-dev  �[0m�[32m(cached) PASSED�[0m in 47.2s
    2695:  //java/test/org/openqa/selenium:ElementFindingTest-spotbugs     �[0m�[32m(cached) PASSED�[0m in 13.0s
    2696:  //java/test/org/openqa/selenium:ElementSelectingTest            �[0m�[32m(cached) PASSED�[0m in 33.2s
    2697:  //java/test/org/openqa/selenium:ElementSelectingTest-chrome     �[0m�[32m(cached) PASSED�[0m in 19.0s
    2698:  //java/test/org/openqa/selenium:ElementSelectingTest-firefox-beta �[0m�[32m(cached) PASSED�[0m in 32.4s
    2699:  //java/test/org/openqa/selenium:ElementSelectingTest-firefox-dev �[0m�[32m(cached) PASSED�[0m in 30.5s
    2700:  //java/test/org/openqa/selenium:ElementSelectingTest-spotbugs   �[0m�[32m(cached) PASSED�[0m in 8.8s
    2701:  //java/test/org/openqa/selenium:ErrorsTest                      �[0m�[32m(cached) PASSED�[0m in 17.1s
    2702:  //java/test/org/openqa/selenium:ErrorsTest-chrome               �[0m�[32m(cached) PASSED�[0m in 14.1s
    2703:  //java/test/org/openqa/selenium:ErrorsTest-firefox-beta         �[0m�[32m(cached) PASSED�[0m in 16.8s
    2704:  //java/test/org/openqa/selenium:ErrorsTest-firefox-dev          �[0m�[32m(cached) PASSED�[0m in 18.7s
    2705:  //java/test/org/openqa/selenium:ErrorsTest-spotbugs             �[0m�[32m(cached) PASSED�[0m in 7.8s
    ...
    
    3285:  //java/test/org/openqa/selenium/os:ExternalProcessTest          �[0m�[32m(cached) PASSED�[0m in 2.9s
    3286:  //java/test/org/openqa/selenium/os:ExternalProcessTest-spotbugs �[0m�[32m(cached) PASSED�[0m in 9.5s
    3287:  //java/test/org/openqa/selenium/os:OsProcessTest                �[0m�[32m(cached) PASSED�[0m in 4.8s
    3288:  //java/test/org/openqa/selenium/os:OsProcessTest-spotbugs       �[0m�[32m(cached) PASSED�[0m in 8.1s
    3289:  //java/test/org/openqa/selenium/remote:AugmenterTest            �[0m�[32m(cached) PASSED�[0m in 6.1s
    3290:  //java/test/org/openqa/selenium/remote:AugmenterTest-spotbugs   �[0m�[32m(cached) PASSED�[0m in 12.7s
    3291:  //java/test/org/openqa/selenium/remote:DesiredCapabilitiesTest  �[0m�[32m(cached) PASSED�[0m in 2.4s
    3292:  //java/test/org/openqa/selenium/remote:DesiredCapabilitiesTest-spotbugs �[0m�[32m(cached) PASSED�[0m in 10.9s
    3293:  //java/test/org/openqa/selenium/remote:ErrorCodecTest           �[0m�[32m(cached) PASSED�[0m in 2.1s
    3294:  //java/test/org/openqa/selenium/remote:ErrorCodecTest-spotbugs  �[0m�[32m(cached) PASSED�[0m in 10.4s
    3295:  //java/test/org/openqa/selenium/remote:ErrorHandlerTest         �[0m�[32m(cached) PASSED�[0m in 2.7s
    3296:  //java/test/org/openqa/selenium/remote:ErrorHandlerTest-spotbugs �[0m�[32m(cached) PASSED�[0m in 11.6s
    ...
    
    3547:  //py:common-firefox-test/selenium/webdriver/support/expected_conditions_tests.py �[0m�[32m(cached) PASSED�[0m in 16.0s
    3548:  //py:common-firefox-test/selenium/webdriver/support/relative_by_tests.py �[0m�[32m(cached) PASSED�[0m in 8.2s
    3549:  //py:test-chrome-test/selenium/webdriver/chrome/chrome_network_emulation_tests.py �[0m�[32m(cached) PASSED�[0m in 4.7s
    3550:  //py:unit-test/unit/selenium/webdriver/chrome/chrome_options_tests.py �[0m�[32m(cached) PASSED�[0m in 3.8s
    3551:  //py:unit-test/unit/selenium/webdriver/common/common_options_tests.py �[0m�[32m(cached) PASSED�[0m in 2.1s
    3552:  //py:unit-test/unit/selenium/webdriver/common/print_page_options_tests.py �[0m�[32m(cached) PASSED�[0m in 2.8s
    3553:  //py:unit-test/unit/selenium/webdriver/edge/edge_options_tests.py �[0m�[32m(cached) PASSED�[0m in 2.0s
    3554:  //py:unit-test/unit/selenium/webdriver/firefox/firefox_options_tests.py �[0m�[32m(cached) PASSED�[0m in 2.8s
    3555:  //py:unit-test/unit/selenium/webdriver/remote/error_handler_tests.py �[0m�[32m(cached) PASSED�[0m in 2.5s
    ...
    
    3559:  //py:unit-test/unit/selenium/webdriver/safari/safari_options_tests.py �[0m�[32m(cached) PASSED�[0m in 3.5s
    3560:  //py:unit-test/unit/selenium/webdriver/support/color_tests.py   �[0m�[32m(cached) PASSED�[0m in 3.4s
    3561:  //py:unit-test/unit/selenium/webdriver/virtual_authenticator/virtual_authenticator_options_tests.py �[0m�[32m(cached) PASSED�[0m in 3.0s
    3562:  //py:unit-test/unit/selenium/webdriver/webkitgtk/webkitgtk_options_tests.py �[0m�[32m(cached) PASSED�[0m in 2.9s
    3563:  //py:unit-test/unit/selenium/webdriver/wpewebkit/wpewebkit_options_tests.py �[0m�[32m(cached) PASSED�[0m in 3.2s
    3564:  //rb/spec/integration/selenium/webdriver:action_builder         �[0m�[32m(cached) PASSED�[0m in 27.9s
    3565:  //rb/spec/integration/selenium/webdriver:driver                 �[0m�[32m(cached) PASSED�[0m in 27.7s
    3566:  //rb/spec/integration/selenium/webdriver:element                �[0m�[32m(cached) PASSED�[0m in 39.4s
    3567:  //rb/spec/integration/selenium/webdriver:error                  �[0m�[32m(cached) PASSED�[0m in 17.8s
    ...
    
    3646:  //rb/spec/unit/selenium/webdriver/remote/http:common            �[0m�[32m(cached) PASSED�[0m in 12.8s
    3647:  //rb/spec/unit/selenium/webdriver/remote/http:default           �[0m�[32m(cached) PASSED�[0m in 17.8s
    3648:  //rb/spec/unit/selenium/webdriver/safari:driver                 �[0m�[32m(cached) PASSED�[0m in 14.9s
    3649:  //rb/spec/unit/selenium/webdriver/safari:options                �[0m�[32m(cached) PASSED�[0m in 14.1s
    3650:  //rb/spec/unit/selenium/webdriver/safari:service                �[0m�[32m(cached) PASSED�[0m in 13.7s
    3651:  //rb/spec/unit/selenium/webdriver/support:color                 �[0m�[32m(cached) PASSED�[0m in 17.0s
    3652:  //rb/spec/unit/selenium/webdriver/support:event_firing          �[0m�[32m(cached) PASSED�[0m in 14.4s
    3653:  //rb/spec/unit/selenium/webdriver/support:select                �[0m�[32m(cached) PASSED�[0m in 13.3s
    3654:  //java/test/org/openqa/selenium/bidi/network:NetworkEventsTest           �[0m�[31m�[1mFAILED�[0m in 2 out of 2 in 90.6s
    3655:  Stats over 2 runs: max = 90.6s, min = 90.4s, avg = 90.5s, dev = 0.1s
    3656:  /home/runner/.bazel/execroot/selenium/bazel-out/k8-fastbuild/testlogs/java/test/org/openqa/selenium/bidi/network/NetworkEventsTest/test.log
    3657:  /home/runner/.bazel/execroot/selenium/bazel-out/k8-fastbuild/testlogs/java/test/org/openqa/selenium/bidi/network/NetworkEventsTest/test_attempts/attempt_1.log
    3658:  //java/test/org/openqa/selenium/bidi/network:NetworkEventsTest-remote    �[0m�[31m�[1mFAILED�[0m in 2 out of 2 in 92.2s
    3659:  Stats over 2 runs: max = 92.2s, min = 90.1s, avg = 91.2s, dev = 1.1s
    3660:  /home/runner/.bazel/execroot/selenium/bazel-out/k8-fastbuild/testlogs/java/test/org/openqa/selenium/bidi/network/NetworkEventsTest-remote/test.log
    3661:  /home/runner/.bazel/execroot/selenium/bazel-out/k8-fastbuild/testlogs/java/test/org/openqa/selenium/bidi/network/NetworkEventsTest-remote/test_attempts/attempt_1.log
    3662:  Executed 2 out of 1283 tests: 1281 tests pass and �[0m�[31m�[1m2 fail remotely�[0m.
    3663:  There were tests whose specified size is too big. Use the --test_verbose_timeout_warnings command line option to see which ones these are.
    3664:  (11:46:12) �[32mINFO: �[0mStreaming build results to: https://gypsum.cluster.engflow.com/invocation/24484006-19c2-458b-9f2f-7278afc0b5ec
    3665:  �[0m
    3666:  ##[error]Process completed with exit code 3.
    

    ✨ CI feedback usage guide:

    The CI feedback tool (/checks) automatically triggers when a PR has a failed check.
    The tool analyzes the failed checks and provides several feedbacks:

    • Failed stage
    • Failed test name
    • Failure summary
    • Relevant error logs

    In addition to being automatically triggered, the tool can also be invoked manually by commenting on a PR:

    /checks "https://github.com/{repo_name}/actions/runs/{run_number}/job/{job_number}"
    

    where {repo_name} is the name of the repository, {run_number} is the run number of the failed check, and {job_number} is the job number of the failed check.

    Configuration options

    • enable_auto_checks_feedback - if set to true, the tool will automatically provide feedback when a check is failed. Default is true.
    • excluded_checks_list - a list of checks to exclude from the feedback, for example: ["check1", "check2"]. Default is an empty list.
    • enable_help_text - if set to true, the tool will provide a help message with the feedback. Default is true.
    • persistent_comment - if set to true, the tool will overwrite a previous checks comment with the new feedback. Default is true.
    • final_update_message - if persistent_comment is true and updating a previous checks message, the tool will also create a new message: "Persistent checks updated to latest commit". Default is true.

    See more information about the checks tool in the docs.

    @diemol
    Copy link
    Member

    diemol commented Mar 18, 2024

    @dependabot rebase

    Bumps [follow-redirects](https://github.com/follow-redirects/follow-redirects) from 1.15.4 to 1.15.6.
    - [Release notes](https://github.com/follow-redirects/follow-redirects/releases)
    - [Commits](follow-redirects/follow-redirects@v1.15.4...v1.15.6)
    
    ---
    updated-dependencies:
    - dependency-name: follow-redirects
      dependency-type: indirect
    ...
    
    Signed-off-by: dependabot[bot] <[email protected]>
    @dependabot dependabot bot force-pushed the dependabot/npm_and_yarn/javascript/grid-ui/follow-redirects-1.15.6 branch from 7c06536 to 0aa1009 Compare March 18, 2024 13:35
    @diemol diemol merged commit f54b068 into trunk Mar 18, 2024
    10 checks passed
    @diemol diemol deleted the dependabot/npm_and_yarn/javascript/grid-ui/follow-redirects-1.15.6 branch March 18, 2024 13:55
    Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
    Labels
    dependencies Pull requests that update a dependency file enhancement javascript Pull requests that update Javascript code Review effort [1-5]: 1
    Projects
    None yet
    Development

    Successfully merging this pull request may close these issues.

    1 participant