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 #13697

Merged
merged 1 commit into from
Mar 18, 2024

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 package from version 1.15.4 to 1.15.6 to include the latest fixes and improvements.
  • This update includes changes to the package integrity hash and the resolved URL, ensuring the use of the latest version.

Changes walkthrough

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

package-lock.json

  • Updated follow-redirects package from version 1.15.4 to 1.15.6.
  • Updated package integrity hash and resolved URL 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 C-nodejs dependencies Pull requests that update a dependency file labels Mar 15, 2024
    Copy link
    Contributor

    PR Description updated to latest commit (2671dad)

    Copy link
    Contributor

    PR Review

    ⏱️ Estimated effort to review [1-5]

    1, because the PR involves a straightforward dependency version bump in the package-lock.json file. The changes are minimal and only involve version numbers and integrity hashes, which are automatically managed by package managers like npm.

    🧪 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: //java/test/org/openqa/selenium/bidi/network:NetworkEventsTest

    Failure summary:

    The action failed because the test //java/test/org/openqa/selenium/bidi/network:NetworkEventsTest
    and its remote counterpart failed. The failure was due to an invalid argument exception when trying
    to listen to the network.fetchError event, which is not recognized as a valid event name. This
    indicates a potential issue with the implementation or understanding of the WebDriver BiDi protocol
    in the test or the WebDriver implementation being tested.

    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: 40.81.13.82 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: 40.81.13.82 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
    ...
    
    1546:  (11:38:48) �[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
    1547:  (11:38:48) �[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
    1548:  (11:38:48) �[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
    1549:  (11:38:48) �[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
    1550:  (11:38:48) �[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
    1551:  (11:38:48) �[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
    1552:  (11:38:48) �[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
    1553:  (11:38:48) �[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
    1554:  (11:38:48) �[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
    ...
    
    1716:  * `Zip::OutputStream`
    1717:  Please ensure that your Gemfiles and .gemspecs are suitably restrictive
    1718:  to avoid an unexpected breakage when 3.0 is released (e.g. ~> 2.3.0).
    1719:  See https://github.com/rubyzip/rubyzip for details. The Changelog also
    1720:  lists other enhancements and bugfixes that have been implemented since
    1721:  version 2.3.0.
    1722:  (11:38:58) �[32m[6,818 / 10,203]�[0m 21 / 1283 tests;�[0m Copying directory external/npm/_/node_modules/@mui/icons-material; 3s local ... (49 actions, 40 running)
    1723:  (11:39:02) �[32mINFO: �[0mFrom Building java/src/org/openqa/selenium/remote/libapi-class.jar (65 source files):
    1724:  java/src/org/openqa/selenium/remote/ErrorHandler.java:46: warning: [removal] ErrorCodes in org.openqa.selenium.remote has been deprecated and marked for removal
    1725:  private final ErrorCodes errorCodes;
    1726:  ^
    1727:  java/src/org/openqa/selenium/remote/ErrorHandler.java:60: warning: [removal] ErrorCodes in org.openqa.selenium.remote has been deprecated and marked for removal
    1728:  this.errorCodes = new ErrorCodes();
    1729:  ^
    1730:  java/src/org/openqa/selenium/remote/ErrorHandler.java:68: warning: [removal] ErrorCodes in org.openqa.selenium.remote has been deprecated and marked for removal
    1731:  public ErrorHandler(ErrorCodes codes, boolean includeServerErrors) {
    1732:  ^
    1733:  java/src/org/openqa/selenium/remote/Response.java:97: warning: [removal] ErrorCodes in org.openqa.selenium.remote has been deprecated and marked for removal
    1734:  ErrorCodes errorCodes = new ErrorCodes();
    1735:  ^
    1736:  java/src/org/openqa/selenium/remote/Response.java:97: warning: [removal] ErrorCodes in org.openqa.selenium.remote has been deprecated and marked for removal
    1737:  ErrorCodes errorCodes = new ErrorCodes();
    1738:  ^
    1739:  java/src/org/openqa/selenium/remote/ProtocolHandshake.java:206: warning: [removal] ErrorCodes in org.openqa.selenium.remote has been deprecated and marked for removal
    1740:  response.setStatus(ErrorCodes.SUCCESS);
    1741:  ^
    1742:  java/src/org/openqa/selenium/remote/ProtocolHandshake.java:207: warning: [removal] ErrorCodes in org.openqa.selenium.remote has been deprecated and marked for removal
    1743:  response.setState(ErrorCodes.SUCCESS_STRING);
    1744:  ^
    1745:  java/src/org/openqa/selenium/remote/W3CHandshakeResponse.java:53: warning: [removal] ErrorCodes in org.openqa.selenium.remote has been deprecated and marked for removal
    1746:  new ErrorCodes().toStatus((String) rawError, Optional.of(tuple.getStatusCode())));
    1747:  ^
    1748:  java/src/org/openqa/selenium/remote/W3CHandshakeResponse.java:56: warning: [removal] ErrorCodes in org.openqa.selenium.remote has been deprecated and marked for removal
    1749:  new ErrorCodes().getExceptionType((String) rawError);
    1750:  ^
    1751:  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
    1752:  private final ErrorCodes errorCodes = new ErrorCodes();
    1753:  ^
    1754:  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
    1755:  private final ErrorCodes errorCodes = new ErrorCodes();
    1756:  ^
    1757:  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
    1758:  int status = response.getStatus() == ErrorCodes.SUCCESS ? HTTP_OK : HTTP_INTERNAL_ERROR;
    1759:  ^
    1760:  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
    1761:  response.setStatus(ErrorCodes.UNKNOWN_COMMAND);
    1762:  ^
    1763:  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
    1764:  response.setStatus(ErrorCodes.UNHANDLED_ERROR);
    1765:  ^
    1766:  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
    1767:  response.setStatus(ErrorCodes.SUCCESS);
    1768:  ^
    1769:  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
    1770:  response.setState(errorCodes.toState(ErrorCodes.SUCCESS));
    1771:  ^
    1772:  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
    1773:  response.setState(errorCodes.toState(ErrorCodes.SUCCESS));
    1774:  ^
    1775:  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
    1776:  private final ErrorCodes errorCodes = new ErrorCodes();
    1777:  ^
    1778:  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
    1779:  private final ErrorCodes errorCodes = new ErrorCodes();
    1780:  ^
    1781:  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
    1782:  response.setStatus(ErrorCodes.UNKNOWN_COMMAND);
    1783:  ^
    1784:  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
    1785:  response.setStatus(ErrorCodes.UNHANDLED_ERROR);
    1786:  ^
    1787:  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
    1788:  response.setStatus(ErrorCodes.SUCCESS);
    1789:  ^
    1790:  (11:39:02) �[32mINFO: �[0mFrom Building java/src/org/openqa/selenium/remote/libapi-class.jar (65 source files):
    1791:  java/src/org/openqa/selenium/remote/ErrorHandler.java:46: warning: [removal] ErrorCodes in org.openqa.selenium.remote has been deprecated and marked for removal
    1792:  private final ErrorCodes errorCodes;
    1793:  ^
    1794:  java/src/org/openqa/selenium/remote/ErrorHandler.java:60: warning: [removal] ErrorCodes in org.openqa.selenium.remote has been deprecated and marked for removal
    1795:  this.errorCodes = new ErrorCodes();
    1796:  ^
    1797:  java/src/org/openqa/selenium/remote/ErrorHandler.java:68: warning: [removal] ErrorCodes in org.openqa.selenium.remote has been deprecated and marked for removal
    1798:  public ErrorHandler(ErrorCodes codes, boolean includeServerErrors) {
    1799:  ^
    1800:  java/src/org/openqa/selenium/remote/Response.java:97: warning: [removal] ErrorCodes in org.openqa.selenium.remote has been deprecated and marked for removal
    1801:  ErrorCodes errorCodes = new ErrorCodes();
    1802:  ^
    1803:  java/src/org/openqa/selenium/remote/Response.java:97: warning: [removal] ErrorCodes in org.openqa.selenium.remote has been deprecated and marked for removal
    1804:  ErrorCodes errorCodes = new ErrorCodes();
    1805:  ^
    1806:  java/src/org/openqa/selenium/remote/ProtocolHandshake.java:206: warning: [removal] ErrorCodes in org.openqa.selenium.remote has been deprecated and marked for removal
    1807:  response.setStatus(ErrorCodes.SUCCESS);
    1808:  ^
    1809:  java/src/org/openqa/selenium/remote/ProtocolHandshake.java:207: warning: [removal] ErrorCodes in org.openqa.selenium.remote has been deprecated and marked for removal
    1810:  response.setState(ErrorCodes.SUCCESS_STRING);
    1811:  ^
    1812:  java/src/org/openqa/selenium/remote/W3CHandshakeResponse.java:53: warning: [removal] ErrorCodes in org.openqa.selenium.remote has been deprecated and marked for removal
    1813:  new ErrorCodes().toStatus((String) rawError, Optional.of(tuple.getStatusCode())));
    1814:  ^
    1815:  java/src/org/openqa/selenium/remote/W3CHandshakeResponse.java:56: warning: [removal] ErrorCodes in org.openqa.selenium.remote has been deprecated and marked for removal
    1816:  new ErrorCodes().getExceptionType((String) rawError);
    1817:  ^
    1818:  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
    1819:  private final ErrorCodes errorCodes = new ErrorCodes();
    1820:  ^
    1821:  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
    1822:  private final ErrorCodes errorCodes = new ErrorCodes();
    1823:  ^
    1824:  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
    1825:  int status = response.getStatus() == ErrorCodes.SUCCESS ? HTTP_OK : HTTP_INTERNAL_ERROR;
    1826:  ^
    1827:  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
    1828:  response.setStatus(ErrorCodes.UNKNOWN_COMMAND);
    1829:  ^
    1830:  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
    1831:  response.setStatus(ErrorCodes.UNHANDLED_ERROR);
    1832:  ^
    1833:  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
    1834:  response.setStatus(ErrorCodes.SUCCESS);
    1835:  ^
    1836:  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
    1837:  response.setState(errorCodes.toState(ErrorCodes.SUCCESS));
    1838:  ^
    1839:  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
    1840:  response.setState(errorCodes.toState(ErrorCodes.SUCCESS));
    1841:  ^
    1842:  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
    1843:  private final ErrorCodes errorCodes = new ErrorCodes();
    1844:  ^
    1845:  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
    1846:  private final ErrorCodes errorCodes = new ErrorCodes();
    1847:  ^
    1848:  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
    1849:  response.setStatus(ErrorCodes.UNKNOWN_COMMAND);
    1850:  ^
    1851:  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
    1852:  response.setStatus(ErrorCodes.UNHANDLED_ERROR);
    1853:  ^
    1854:  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
    1855:  response.setStatus(ErrorCodes.SUCCESS);
    1856:  ^
    1857:  (11:39:03) �[32m[8,396 / 10,675]�[0m 61 / 1283 tests;�[0m Copying directory external/npm/_/node_modules/@mui/icons-material; 8s local ... (50 actions, 28 running)
    1858:  (11:39:08) �[32m[9,974 / 11,031]�[0m 73 / 1283 tests;�[0m NpmPackageBin javascript/grid-ui/build; 0s remote ... (48 actions, 2 running)
    1859:  (11:39:13) �[32m[10,209 / 11,041]�[0m 79 / 1283 tests;�[0m NpmPackageBin javascript/grid-ui/build; 5s remote ... (50 actions, 0 running)
    1860:  (11:39:15) �[32mINFO: �[0mFrom Building java/src/org/openqa/selenium/grid/web/libweb.jar (19 source files):
    1861:  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
    1862:  import static org.openqa.selenium.remote.ErrorCodes.UNKNOWN_COMMAND;
    1863:  ^
    1864:  (11:39:17) �[32mINFO: �[0mFrom Building java/src/org/openqa/selenium/grid/web/libweb.jar (19 source files):
    1865:  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
    1866:  import static org.openqa.selenium.remote.ErrorCodes.UNKNOWN_COMMAND;
    ...
    
    1869:  (11:39:23) �[32m[10,440 / 11,173]�[0m 182 / 1283 tests;�[0m NpmPackageBin javascript/grid-ui/build; 15s remote ... (50 actions, 0 running)
    1870:  (11:39:31) �[32m[10,440 / 11,173]�[0m 182 / 1283 tests;�[0m NpmPackageBin javascript/grid-ui/build; 23s remote ... (50 actions, 0 running)
    1871:  (11:39:41) �[32m[10,440 / 11,173]�[0m 182 / 1283 tests;�[0m NpmPackageBin javascript/grid-ui/build; 33s remote ... (50 actions, 0 running)
    1872:  (11:40:04) �[32m[10,440 / 11,173]�[0m 182 / 1283 tests;�[0m NpmPackageBin javascript/grid-ui/build; 56s remote ... (50 actions, 0 running)
    1873:  (11:40:29) �[32m[10,442 / 11,173]�[0m 182 / 1283 tests;�[0m NpmPackageBin javascript/grid-ui/build; 81s remote ... (50 actions, 0 running)
    1874:  (11:40:34) �[32m[10,599 / 11,279]�[0m 283 / 1283 tests;�[0m NpmPackageBin javascript/grid-ui/build; 3s remote ... (50 actions, 1 running)
    1875:  (11:40:39) �[32m[10,750 / 11,393]�[0m 393 / 1283 tests;�[0m NpmPackageBin javascript/grid-ui/build; 8s remote ... (49 actions, 1 running)
    1876:  (11:40:43) �[32mINFO: �[0mFrom Building java/test/org/openqa/selenium/remote/libsmall-tests-test-lib.jar (5 source files) and running annotation processors (AutoServiceProcessor):
    1877:  java/test/org/openqa/selenium/remote/WebDriverFixture.java:170: warning: [removal] ErrorCodes in org.openqa.selenium.remote has been deprecated and marked for removal
    1878:  response.setStatus(new ErrorCodes().toStatus(state, Optional.of(400)));
    1879:  ^
    1880:  (11:40:43) �[32mINFO: �[0mFrom Building java/test/org/openqa/selenium/json/JsonTest.jar (1 source file):
    1881:  java/test/org/openqa/selenium/json/JsonTest.java:430: warning: [removal] ErrorCodes in org.openqa.selenium.remote has been deprecated and marked for removal
    1882:  assertThat(response.getState()).isEqualTo(new ErrorCodes().toState(0));
    1883:  ^
    1884:  java/test/org/openqa/selenium/json/JsonTest.java:441: warning: [removal] ErrorCodes in org.openqa.selenium.remote has been deprecated and marked for removal
    1885:  assertThat(response.getState()).isEqualTo(new ErrorCodes().toState(0));
    1886:  ^
    1887:  java/test/org/openqa/selenium/json/JsonTest.java:454: warning: [removal] ErrorCodes in org.openqa.selenium.remote has been deprecated and marked for removal
    1888:  assertThat(response.getState()).isEqualTo(new ErrorCodes().toState(32));
    ...
    
    1908:  ^
    1909:  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
    1910:  Optional<Map<String, List<String>>> data = FormEncodedData.getData(request);
    1911:  ^
    1912:  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
    1913:  Optional<Map<String, List<String>>> data = FormEncodedData.getData(request);
    1914:  ^
    1915:  (11:40:44) �[32mINFO: �[0mFrom Building java/test/org/openqa/selenium/remote/codec/w3c/W3CHttpResponseCodecTest.jar (1 source file):
    1916:  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
    1917:  import static org.openqa.selenium.remote.ErrorCodes.METHOD_NOT_ALLOWED;
    1918:  ^
    1919:  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
    1920:  assertThat(decoded.getStatus().intValue()).isEqualTo(ErrorCodes.SUCCESS);
    1921:  ^
    1922:  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
    1923:  assertThat(decoded.getStatus().intValue()).isEqualTo(ErrorCodes.UNHANDLED_ERROR);
    1924:  ^
    1925:  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
    1926:  assertThat(decoded.getStatus().intValue()).isEqualTo(ErrorCodes.UNHANDLED_ERROR);
    1927:  ^
    1928:  (11:40:44) �[32mINFO: �[0mFrom Building java/test/org/openqa/selenium/remote/ErrorHandlerTest.jar (1 source file) and running annotation processors (AutoServiceProcessor):
    1929:  java/test/org/openqa/selenium/remote/ErrorHandlerTest.java:79: warning: [removal] ErrorCodes in org.openqa.selenium.remote has been deprecated and marked for removal
    1930:  handler.throwIfResponseFailed(createResponse(ErrorCodes.SUCCESS), 100);
    1931:  ^
    1932:  java/test/org/openqa/selenium/remote/ErrorHandlerTest.java:85: warning: [removal] ErrorCodes in org.openqa.selenium.remote has been deprecated and marked for removal
    1933:  assertThrowsCorrectExceptionType(ErrorCodes.NO_SUCH_WINDOW, NoSuchWindowException.class);
    1934:  ^
    1935:  java/test/org/openqa/selenium/remote/ErrorHandlerTest.java:86: warning: [removal] ErrorCodes in org.openqa.selenium.remote has been deprecated and marked for removal
    1936:  assertThrowsCorrectExceptionType(ErrorCodes.NO_SUCH_FRAME, NoSuchFrameException.class);
    1937:  ^
    1938:  java/test/org/openqa/selenium/remote/ErrorHandlerTest.java:87: warning: [removal] ErrorCodes in org.openqa.selenium.remote has been deprecated and marked for removal
    1939:  assertThrowsCorrectExceptionType(ErrorCodes.NO_SUCH_ELEMENT, NoSuchElementException.class);
    1940:  ^
    1941:  java/test/org/openqa/selenium/remote/ErrorHandlerTest.java:88: warning: [removal] ErrorCodes in org.openqa.selenium.remote has been deprecated and marked for removal
    1942:  assertThrowsCorrectExceptionType(ErrorCodes.UNKNOWN_COMMAND, UnsupportedCommandException.class);
    1943:  ^
    1944:  java/test/org/openqa/selenium/remote/ErrorHandlerTest.java:90: warning: [removal] ErrorCodes in org.openqa.selenium.remote has been deprecated and marked for removal
    1945:  ErrorCodes.METHOD_NOT_ALLOWED, UnsupportedCommandException.class);
    1946:  ^
    1947:  java/test/org/openqa/selenium/remote/ErrorHandlerTest.java:92: warning: [removal] ErrorCodes in org.openqa.selenium.remote has been deprecated and marked for removal
    1948:  ErrorCodes.STALE_ELEMENT_REFERENCE, StaleElementReferenceException.class);
    1949:  ^
    1950:  java/test/org/openqa/selenium/remote/ErrorHandlerTest.java:94: warning: [removal] ErrorCodes in org.openqa.selenium.remote has been deprecated and marked for removal
    1951:  ErrorCodes.INVALID_ELEMENT_STATE, InvalidElementStateException.class);
    1952:  ^
    1953:  java/test/org/openqa/selenium/remote/ErrorHandlerTest.java:95: warning: [removal] ErrorCodes in org.openqa.selenium.remote has been deprecated and marked for removal
    1954:  assertThrowsCorrectExceptionType(ErrorCodes.XPATH_LOOKUP_ERROR, InvalidSelectorException.class);
    1955:  ^
    1956:  java/test/org/openqa/selenium/remote/ErrorHandlerTest.java:107: warning: [removal] ErrorCodes in org.openqa.selenium.remote has been deprecated and marked for removal
    1957:  Response response = createResponse(ErrorCodes.UNHANDLED_ERROR);
    1958:  ^
    1959:  java/test/org/openqa/selenium/remote/ErrorHandlerTest.java:120: warning: [removal] ErrorCodes in org.openqa.selenium.remote has been deprecated and marked for removal
    1960:  createResponse(ErrorCodes.UNHANDLED_ERROR, "boom"), 123))
    1961:  ^
    1962:  java/test/org/openqa/selenium/remote/ErrorHandlerTest.java:133: warning: [removal] ErrorCodes in org.openqa.selenium.remote has been deprecated and marked for removal
    1963:  createResponse(ErrorCodes.UNHANDLED_ERROR, ImmutableMap.of("message", "boom")),
    1964:  ^
    1965:  java/test/org/openqa/selenium/remote/ErrorHandlerTest.java:147: warning: [removal] ErrorCodes in org.openqa.selenium.remote has been deprecated and marked for removal
    1966:  ErrorCodes.UNHANDLED_ERROR,
    1967:  ^
    1968:  java/test/org/openqa/selenium/remote/ErrorHandlerTest.java:167: warning: [removal] ErrorCodes in org.openqa.selenium.remote has been deprecated and marked for removal
    1969:  ErrorCodes.UNHANDLED_ERROR,
    1970:  ^
    1971:  java/test/org/openqa/selenium/remote/ErrorHandlerTest.java:193: warning: [removal] ErrorCodes in org.openqa.selenium.remote has been deprecated and marked for removal
    1972:  createResponse(ErrorCodes.UNHANDLED_ERROR, toMap(serverError)), 123))
    1973:  ^
    1974:  java/test/org/openqa/selenium/remote/ErrorHandlerTest.java:214: warning: [removal] ErrorCodes in org.openqa.selenium.remote has been deprecated and marked for removal
    1975:  createResponse(ErrorCodes.UNHANDLED_ERROR, data), 123))
    1976:  ^
    1977:  java/test/org/openqa/selenium/remote/ErrorHandlerTest.java:248: warning: [removal] ErrorCodes in org.openqa.selenium.remote has been deprecated and marked for removal
    1978:  createResponse(ErrorCodes.UNHANDLED_ERROR, data), 123))
    1979:  ^
    1980:  java/test/org/openqa/selenium/remote/ErrorHandlerTest.java:280: warning: [removal] ErrorCodes in org.openqa.selenium.remote has been deprecated and marked for removal
    1981:  createResponse(ErrorCodes.UNHANDLED_ERROR, data), 123))
    1982:  ^
    1983:  java/test/org/openqa/selenium/remote/ErrorHandlerTest.java:308: warning: [removal] ErrorCodes in org.openqa.selenium.remote has been deprecated and marked for removal
    1984:  createResponse(ErrorCodes.UNHANDLED_ERROR, data), 123))
    1985:  ^
    1986:  java/test/org/openqa/selenium/remote/ErrorHandlerTest.java:327: warning: [removal] ErrorCodes in org.openqa.selenium.remote has been deprecated and marked for removal
    1987:  createResponse(ErrorCodes.UNHANDLED_ERROR, data), 123))
    1988:  ^
    1989:  java/test/org/openqa/selenium/remote/ErrorHandlerTest.java:355: warning: [removal] ErrorCodes in org.openqa.selenium.remote has been deprecated and marked for removal
    1990:  createResponse(ErrorCodes.UNHANDLED_ERROR, data), 123))
    1991:  ^
    1992:  java/test/org/openqa/selenium/remote/ErrorHandlerTest.java:394: warning: [removal] ErrorCodes in org.openqa.selenium.remote has been deprecated and marked for removal
    1993:  createResponse(ErrorCodes.UNHANDLED_ERROR, data), 123))
    1994:  ^
    1995:  java/test/org/openqa/selenium/remote/ErrorHandlerTest.java:426: warning: [removal] ErrorCodes in org.openqa.selenium.remote has been deprecated and marked for removal
    1996:  createResponse(ErrorCodes.UNHANDLED_ERROR, toMap(serverError)), 123))
    1997:  ^
    1998:  java/test/org/openqa/selenium/remote/ErrorHandlerTest.java:435: warning: [removal] ErrorCodes in org.openqa.selenium.remote has been deprecated and marked for removal
    1999:  exceptions.put(ErrorCodes.NO_SUCH_SESSION, NoSuchSessionException.class);
    2000:  ^
    2001:  java/test/org/openqa/selenium/remote/ErrorHandlerTest.java:436: warning: [removal] ErrorCodes in org.openqa.selenium.remote has been deprecated and marked for removal
    2002:  exceptions.put(ErrorCodes.NO_SUCH_ELEMENT, NoSuchElementException.class);
    2003:  ^
    2004:  java/test/org/openqa/selenium/remote/ErrorHandlerTest.java:437: warning: [removal] ErrorCodes in org.openqa.selenium.remote has been deprecated and marked for removal
    2005:  exceptions.put(ErrorCodes.NO_SUCH_FRAME, NoSuchFrameException.class);
    2006:  ^
    2007:  java/test/org/openqa/selenium/remote/ErrorHandlerTest.java:438: warning: [removal] ErrorCodes in org.openqa.selenium.remote has been deprecated and marked for removal
    2008:  exceptions.put(ErrorCodes.UNKNOWN_COMMAND, UnsupportedCommandException.class);
    2009:  ^
    2010:  java/test/org/openqa/selenium/remote/ErrorHandlerTest.java:439: warning: [removal] ErrorCodes in org.openqa.selenium.remote has been deprecated and marked for removal
    2011:  exceptions.put(ErrorCodes.STALE_ELEMENT_REFERENCE, StaleElementReferenceException.class);
    2012:  ^
    2013:  java/test/org/openqa/selenium/remote/ErrorHandlerTest.java:440: warning: [removal] ErrorCodes in org.openqa.selenium.remote has been deprecated and marked for removal
    2014:  exceptions.put(ErrorCodes.INVALID_ELEMENT_STATE, InvalidElementStateException.class);
    2015:  ^
    2016:  java/test/org/openqa/selenium/remote/ErrorHandlerTest.java:441: warning: [removal] ErrorCodes in org.openqa.selenium.remote has been deprecated and marked for removal
    2017:  exceptions.put(ErrorCodes.UNHANDLED_ERROR, WebDriverException.class);
    2018:  ^
    2019:  java/test/org/openqa/selenium/remote/ErrorHandlerTest.java:442: warning: [removal] ErrorCodes in org.openqa.selenium.remote has been deprecated and marked for removal
    2020:  exceptions.put(ErrorCodes.JAVASCRIPT_ERROR, JavascriptException.class);
    2021:  ^
    2022:  java/test/org/openqa/selenium/remote/ErrorHandlerTest.java:443: warning: [removal] ErrorCodes in org.openqa.selenium.remote has been deprecated and marked for removal
    2023:  exceptions.put(ErrorCodes.XPATH_LOOKUP_ERROR, InvalidSelectorException.class);
    2024:  ^
    2025:  java/test/org/openqa/selenium/remote/ErrorHandlerTest.java:444: warning: [removal] ErrorCodes in org.openqa.selenium.remote has been deprecated and marked for removal
    2026:  exceptions.put(ErrorCodes.TIMEOUT, TimeoutException.class);
    2027:  ^
    2028:  java/test/org/openqa/selenium/remote/ErrorHandlerTest.java:445: warning: [removal] ErrorCodes in org.openqa.selenium.remote has been deprecated and marked for removal
    2029:  exceptions.put(ErrorCodes.NO_SUCH_WINDOW, NoSuchWindowException.class);
    2030:  ^
    2031:  java/test/org/openqa/selenium/remote/ErrorHandlerTest.java:446: warning: [removal] ErrorCodes in org.openqa.selenium.remote has been deprecated and marked for removal
    2032:  exceptions.put(ErrorCodes.INVALID_COOKIE_DOMAIN, InvalidCookieDomainException.class);
    2033:  ^
    2034:  java/test/org/openqa/selenium/remote/ErrorHandlerTest.java:447: warning: [removal] ErrorCodes in org.openqa.selenium.remote has been deprecated and marked for removal
    2035:  exceptions.put(ErrorCodes.UNABLE_TO_SET_COOKIE, UnableToSetCookieException.class);
    2036:  ^
    2037:  java/test/org/openqa/selenium/remote/ErrorHandlerTest.java:448: warning: [removal] ErrorCodes in org.openqa.selenium.remote has been deprecated and marked for removal
    2038:  exceptions.put(ErrorCodes.UNEXPECTED_ALERT_PRESENT, UnhandledAlertException.class);
    2039:  ^
    2040:  java/test/org/openqa/selenium/remote/ErrorHandlerTest.java:449: warning: [removal] ErrorCodes in org.openqa.selenium.remote has been deprecated and marked for removal
    2041:  exceptions.put(ErrorCodes.NO_ALERT_PRESENT, NoAlertPresentException.class);
    2042:  ^
    2043:  java/test/org/openqa/selenium/remote/ErrorHandlerTest.java:450: warning: [removal] ErrorCodes in org.openqa.selenium.remote has been deprecated and marked for removal
    2044:  exceptions.put(ErrorCodes.ASYNC_SCRIPT_TIMEOUT, ScriptTimeoutException.class);
    2045:  ^
    2046:  java/test/org/openqa/selenium/remote/ErrorHandlerTest.java:451: warning: [removal] ErrorCodes in org.openqa.selenium.remote has been deprecated and marked for removal
    2047:  exceptions.put(ErrorCodes.INVALID_SELECTOR_ERROR, InvalidSelectorException.class);
    2048:  ^
    2049:  java/test/org/openqa/selenium/remote/ErrorHandlerTest.java:452: warning: [removal] ErrorCodes in org.openqa.selenium.remote has been deprecated and marked for removal
    2050:  exceptions.put(ErrorCodes.SESSION_NOT_CREATED, SessionNotCreatedException.class);
    2051:  ^
    2052:  java/test/org/openqa/selenium/remote/ErrorHandlerTest.java:453: warning: [removal] ErrorCodes in org.openqa.selenium.remote has been deprecated and marked for removal
    2053:  exceptions.put(ErrorCodes.MOVE_TARGET_OUT_OF_BOUNDS, MoveTargetOutOfBoundsException.class);
    2054:  ^
    2055:  java/test/org/openqa/selenium/remote/ErrorHandlerTest.java:454: warning: [removal] ErrorCodes in org.openqa.selenium.remote has been deprecated and marked for removal
    2056:  exceptions.put(ErrorCodes.INVALID_XPATH_SELECTOR, InvalidSelectorException.class);
    2057:  ^
    2058:  java/test/org/openqa/selenium/remote/ErrorHandlerTest.java:455: warning: [removal] ErrorCodes in org.openqa.selenium.remote has been deprecated and marked for removal
    2059:  exceptions.put(ErrorCodes.INVALID_XPATH_SELECTOR_RETURN_TYPER, InvalidSelectorException.class);
    2060:  ^
    2061:  java/test/org/openqa/selenium/remote/ErrorHandlerTest.java:469: warning: [removal] ErrorCodes in org.openqa.selenium.remote has been deprecated and marked for removal
    2062:  ? ErrorCodes.INVALID_SELECTOR_ERROR
    2063:  ^
    2064:  java/test/org/openqa/selenium/remote/ErrorHandlerTest.java:471: warning: [removal] ErrorCodes in org.openqa.selenium.remote has been deprecated and marked for removal
    2065:  assertThat(new ErrorCodes().toStatusCode(e)).isEqualTo(expected);
    2066:  ^
    2067:  java/test/org/openqa/selenium/remote/ErrorHandlerTest.java:483: warning: [removal] ErrorCodes in org.openqa.selenium.remote has been deprecated and marked for removal
    2068:  response.setState(new ErrorCodes().toState(status));
    2069:  ^
    2070:  (11:40:44) �[32mINFO: �[0mFrom Building java/test/org/openqa/selenium/remote/RemotableByTest.jar (1 source file) and running annotation processors (AutoServiceProcessor):
    2071:  java/test/org/openqa/selenium/remote/RemotableByTest.java:23: warning: [removal] ErrorCodes in org.openqa.selenium.remote has been deprecated and marked for removal
    2072:  import static org.openqa.selenium.remote.ErrorCodes.SUCCESS_STRING;
    2073:  ^
    2074:  java/test/org/openqa/selenium/remote/RemotableByTest.java:23: warning: [removal] ErrorCodes in org.openqa.selenium.remote has been deprecated and marked for removal
    2075:  import static org.openqa.selenium.remote.ErrorCodes.SUCCESS_STRING;
    2076:  ^
    2077:  java/test/org/openqa/selenium/remote/RemotableByTest.java:23: warning: [removal] ErrorCodes in org.openqa.selenium.remote has been deprecated and marked for removal
    2078:  import static org.openqa.selenium.remote.ErrorCodes.SUCCESS_STRING;
    2079:  ^
    2080:  java/test/org/openqa/selenium/remote/RemotableByTest.java:45: warning: [removal] ErrorCodes in org.openqa.selenium.remote has been deprecated and marked for removal
    2081:  private final ErrorCodes errorCodes = new ErrorCodes();
    2082:  ^
    2083:  java/test/org/openqa/selenium/remote/RemotableByTest.java:45: warning: [removal] ErrorCodes in org.openqa.selenium.remote has been deprecated and marked for removal
    2084:  private final ErrorCodes errorCodes = new ErrorCodes();
    2085:  ^
    2086:  java/test/org/openqa/selenium/remote/RemotableByTest.java:45: warning: [removal] ErrorCodes in org.openqa.selenium.remote has been deprecated and marked for removal
    2087:  private final ErrorCodes errorCodes = new ErrorCodes();
    2088:  ^
    2089:  java/test/org/openqa/selenium/remote/RemotableByTest.java:45: warning: [removal] ErrorCodes in org.openqa.selenium.remote has been deprecated and marked for removal
    2090:  private final ErrorCodes errorCodes = new ErrorCodes();
    ...
    
    2119:  npx update-browserslist-db@latest
    2120:  Why you should do it regularly: https://github.com/browserslist/update-db#readme
    2121:  (11:44:28) �[32m[12,093 / 12,141]�[0m 1183 / 1283 tests;�[0m Testing //java/test/org/openqa/selenium/bidi/network:NetworkEventsTest; 36s remote ... (2 actions, 1 running)
    2122:  (11:44:33) �[32m[12,237 / 12,240]�[0m 1280 / 1283 tests;�[0m Testing //java/test/org/openqa/selenium/bidi/network:NetworkEventsTest; 41s remote ... (3 actions, 2 running)
    2123:  (11:44:41) �[32m[12,238 / 12,240]�[0m 1281 / 1283 tests;�[0m Testing //java/test/org/openqa/selenium/bidi/network:NetworkEventsTest; 50s remote ... (2 actions running)
    2124:  (11:44:51) �[32m[12,238 / 12,240]�[0m 1281 / 1283 tests;�[0m Testing //java/test/org/openqa/selenium/bidi/network:NetworkEventsTest; 60s remote ... (2 actions running)
    2125:  (11:45:14) �[32m[12,238 / 12,240]�[0m 1281 / 1283 tests;�[0m Testing //java/test/org/openqa/selenium/bidi/network:NetworkEventsTest; 82s remote ... (2 actions running)
    2126:  (11:45:21) �[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)
    2127:  �[31m�[1mFAILED: �[0m//java/test/org/openqa/selenium/bidi/network:NetworkEventsTest (Summary)
    2128:  ==================== Test output for //java/test/org/openqa/selenium/bidi/network:NetworkEventsTest:
    2129:  /home/runner/.bazel/execroot/selenium/bazel-out/k8-fastbuild/testlogs/java/test/org/openqa/selenium/bidi/network/NetworkEventsTest/test.log
    2130:  Failures: 1
    2131:  /home/runner/.bazel/execroot/selenium/bazel-out/k8-fastbuild/testlogs/java/test/org/openqa/selenium/bidi/network/NetworkEventsTest/test_attempts/attempt_1.log
    2132:  (11:45:21) �[32mINFO: �[0mFrom Testing //java/test/org/openqa/selenium/bidi/network:NetworkEventsTest:
    2133:  1) canListenToFetchError() (org.openqa.selenium.bidi.network.NetworkEventsTest)
    2134:  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"}
    2135:  Build info: version: '4.19.0-SNAPSHOT', revision: 'Unknown'
    2136:  System info: os.name: 'Linux', os.arch: 'amd64', os.version: '6.1.0-17-cloud-amd64', java.version: '17.0.5'
    2137:  Driver info: driver.version: unknown
    2138:  at org.openqa.selenium.bidi.Connection.sendAndWait(Connection.java:177)
    2139:  at org.openqa.selenium.bidi.BiDi.send(BiDi.java:51)
    2140:  at org.openqa.selenium.bidi.BiDi.addListener(BiDi.java:58)
    2141:  at org.openqa.selenium.bidi.module.Network.onFetchError(Network.java:135)
    2142:  at org.openqa.selenium.bidi.network.NetworkEventsTest.canListenToFetchError(NetworkEventsTest.java:178)
    2143:  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"}
    ...
    
    2149:  at org.openqa.selenium.bidi.Connection$Listener.lambda$onText$0(Connection.java:254)
    2150:  at java.base/java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1136)
    2151:  at java.base/java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:635)
    2152:  at java.base/java.lang.Thread.run(Thread.java:833)
    2153:  Execution result: https://gypsum.cluster.engflow.com/actions/executions/ChB-dFQs8N1BwoGW2sFk4v44EgdkZWZhdWx0GiUKIPYjUJwwNlzAY3cXes12d5TQhSRTx_qC3i7ebZiDuGSwEJ8D
    2154:  ================================================================================
    2155:  ==================== Test output for //java/test/org/openqa/selenium/bidi/network:NetworkEventsTest:
    2156:  Failures: 1
    2157:  1) canListenToFetchError() (org.openqa.selenium.bidi.network.NetworkEventsTest)
    2158:  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"}
    2159:  Build info: version: '4.19.0-SNAPSHOT', revision: 'Unknown'
    2160:  System info: os.name: 'Linux', os.arch: 'amd64', os.version: '6.1.0-17-cloud-amd64', java.version: '17.0.5'
    2161:  Driver info: driver.version: unknown
    2162:  at org.openqa.selenium.bidi.Connection.sendAndWait(Connection.java:177)
    2163:  at org.openqa.selenium.bidi.BiDi.send(BiDi.java:51)
    2164:  at org.openqa.selenium.bidi.BiDi.addListener(BiDi.java:58)
    2165:  at org.openqa.selenium.bidi.module.Network.onFetchError(Network.java:135)
    2166:  at org.openqa.selenium.bidi.network.NetworkEventsTest.canListenToFetchError(NetworkEventsTest.java:178)
    2167:  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"}
    ...
    
    2171:  at org.openqa.selenium.bidi.Connection.handleResponse(Connection.java:304)
    2172:  at org.openqa.selenium.bidi.Connection.handle(Connection.java:279)
    2173:  at org.openqa.selenium.bidi.Connection$Listener.lambda$onText$0(Connection.java:254)
    2174:  at java.base/java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1136)
    2175:  at java.base/java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:635)
    2176:  at java.base/java.lang.Thread.run(Thread.java:833)
    2177:  Execution result: https://gypsum.cluster.engflow.com/actions/executions/ChCjZ1xdt_xFL5z2AABZwaJ8EgdkZWZhdWx0GiUKIPYjUJwwNlzAY3cXes12d5TQhSRTx_qC3i7ebZiDuGSwEJ8D
    2178:  ================================================================================
    2179:  (11:45:21) �[32m[12,239 / 12,240]�[0m 1282 / 1283 tests, �[31m�[1m1 failed�[0m;�[0m Testing //java/test/org/openqa/selenium/bidi/network:NetworkEventsTest-remote; 52s remote
    2180:  (11:45:32) �[32m[12,239 / 12,240]�[0m 1282 / 1283 tests, �[31m�[1m1 failed�[0m;�[0m Testing //java/test/org/openqa/selenium/bidi/network:NetworkEventsTest-remote; 62s remote
    2181:  (11:46:01) �[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)
    2182:  (11:46:01) �[32m[12,239 / 12,240]�[0m 1282 / 1283 tests, �[31m�[1m1 failed�[0m;�[0m Testing //java/test/org/openqa/selenium/bidi/network:NetworkEventsTest-remote; 91s remote
    2183:  (11:46:06) �[32m[12,239 / 12,240]�[0m 1282 / 1283 tests, �[31m�[1m1 failed�[0m;�[0m Testing //java/test/org/openqa/selenium/bidi/network:NetworkEventsTest-remote; 5s remote
    2184:  (11:47: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; 61s remote
    2185:  (11:47:33) �[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)
    2186:  �[31m�[1mFAILED: �[0m//java/test/org/openqa/selenium/bidi/network:NetworkEventsTest-remote (Summary)
    ...
    
    2256:  11:45:49.950 INFO [LocalDistributor.newSession] - Session created by the Distributor. Id: 922a2097-3d1a-47f0-9674-e7e6608d7868 
    2257:  Caps: Capabilities {acceptInsecureCerts: true, browserName: firefox, browserVersion: 122.0.1, moz:accessibilityChecks: false, moz:buildID: 20240205133611, moz:debuggerAddress: 127.0.0.1:26067, 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: 3294, moz:profile: /tmp/rust_mozprofileaVGGwd, moz:shutdownTimeout: 60000, moz:webdriverClick: true, moz:windowless: false, pageLoadStrategy: normal, platformName: linux, proxy: Proxy(), se:bidi: ws://127.0.0.1:2967/session..., se:cdp: ws://127.0.0.1:2967/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:26067/sessio...}
    2258:  11:45:50.006 INFO [ProxyNodeWebsockets.createWsEndPoint] - Establishing connection to ws://127.0.0.1:26067/session/922a2097-3d1a-47f0-9674-e7e6608d7868
    2259:  11:45:50.098 INFO [ProxyNodeWebsockets.createWsEndPoint] - Establishing connection to ws://127.0.0.1:26067/devtools/browser/93040cb3-97e5-4997-8ef8-72f988f0ddb4
    2260:  11:45:51.743 INFO [LocalSessionMap.lambda$new$0] - Deleted session from local Session Map, Id: 922a2097-3d1a-47f0-9674-e7e6608d7868
    2261:  11:45:51.744 INFO [GridModel.release] - Releasing slot for session id 922a2097-3d1a-47f0-9674-e7e6608d7868
    2262:  11:45:51.744 INFO [SessionSlot.stop] - Stopping session 922a2097-3d1a-47f0-9674-e7e6608d7868
    2263:  Failures: 1
    2264:  1) canListenToFetchError() (org.openqa.selenium.bidi.network.NetworkEventsTest)
    2265:  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"}
    2266:  Build info: version: '4.19.0-SNAPSHOT', revision: 'Unknown'
    2267:  System info: os.name: 'Linux', os.arch: 'amd64', os.version: '6.1.0-17-cloud-amd64', java.version: '17.0.5'
    2268:  Driver info: driver.version: unknown
    2269:  at org.openqa.selenium.bidi.Connection.sendAndWait(Connection.java:177)
    2270:  at org.openqa.selenium.bidi.BiDi.send(BiDi.java:51)
    2271:  at org.openqa.selenium.bidi.BiDi.addListener(BiDi.java:58)
    2272:  at org.openqa.selenium.bidi.module.Network.onFetchError(Network.java:135)
    2273:  at org.openqa.selenium.bidi.network.NetworkEventsTest.canListenToFetchError(NetworkEventsTest.java:178)
    2274:  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"}
    ...
    
    2352:  11:47:21.862 INFO [LocalDistributor.newSession] - Session created by the Distributor. Id: 414ef559-00e6-4b62-b485-4981eb3c7e1f 
    2353:  Caps: Capabilities {acceptInsecureCerts: true, browserName: firefox, browserVersion: 122.0.1, moz:accessibilityChecks: false, moz:buildID: 20240205133611, moz:debuggerAddress: 127.0.0.1:12300, 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: 2734, moz:profile: /tmp/rust_mozprofilesLbHjB, moz:shutdownTimeout: 60000, moz:webdriverClick: true, moz:windowless: false, pageLoadStrategy: normal, platformName: linux, proxy: Proxy(), se:bidi: ws://127.0.0.1:10072/sessio..., se:cdp: ws://127.0.0.1:10072/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:12300/sessio...}
    2354:  11:47:21.901 INFO [ProxyNodeWebsockets.createWsEndPoint] - Establishing connection to ws://127.0.0.1:12300/session/414ef559-00e6-4b62-b485-4981eb3c7e1f
    2355:  11:47:21.949 INFO [ProxyNodeWebsockets.createWsEndPoint] - Establishing connection to ws://127.0.0.1:12300/devtools/browser/43fa6353-50cd-4baa-9c35-374d51bed15a
    2356:  11:47:23.687 INFO [LocalSessionMap.lambda$new$0] - Deleted session from local Session Map, Id: 414ef559-00e6-4b62-b485-4981eb3c7e1f
    2357:  11:47:23.687 INFO [GridModel.release] - Releasing slot for session id 414ef559-00e6-4b62-b485-4981eb3c7e1f
    2358:  11:47:23.688 INFO [SessionSlot.stop] - Stopping session 414ef559-00e6-4b62-b485-4981eb3c7e1f
    2359:  Failures: 1
    2360:  1) canListenToFetchError() (org.openqa.selenium.bidi.network.NetworkEventsTest)
    2361:  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"}
    2362:  Build info: version: '4.19.0-SNAPSHOT', revision: 'Unknown'
    2363:  System info: os.name: 'Linux', os.arch: 'amd64', os.version: '6.1.0-17-cloud-amd64', java.version: '17.0.5'
    2364:  Driver info: driver.version: unknown
    2365:  at org.openqa.selenium.bidi.Connection.sendAndWait(Connection.java:177)
    2366:  at org.openqa.selenium.bidi.BiDi.send(BiDi.java:51)
    2367:  at org.openqa.selenium.bidi.BiDi.addListener(BiDi.java:58)
    2368:  at org.openqa.selenium.bidi.module.Network.onFetchError(Network.java:135)
    2369:  at org.openqa.selenium.bidi.network.NetworkEventsTest.canListenToFetchError(NetworkEventsTest.java:178)
    2370:  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"}
    ...
    
    2376:  at org.openqa.selenium.bidi.Connection$Listener.lambda$onText$0(Connection.java:254)
    2377:  at java.base/java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1136)
    2378:  at java.base/java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:635)
    2379:  at java.base/java.lang.Thread.run(Thread.java:833)
    2380:  Execution result: https://gypsum.cluster.engflow.com/actions/executions/ChAtwp8SgK5OSJC7FrdedWeEEgdkZWZhdWx0GiUKIF7EvajgUlhG8Up8TmT6JU9DdA3IezKB4QJhoME8rYWDEJ8D
    2381:  ================================================================================
    2382:  (11:47:33) �[32mINFO: �[0mElapsed time: 602.919s, Critical Path: 515.73s
    2383:  (11:47:33) �[32mINFO: �[0m12240 processes: 6340 remote cache hit, 4550 internal, 1345 local, 5 remote.
    2384:  (11:47:33) �[32mINFO:�[0m Build completed, 2 tests FAILED, 12240 total actions
    ...
    
    2426:  //dotnet/test/common:ElementEqualityTest-chrome                 �[0m�[32m(cached) PASSED�[0m in 8.7s
    2427:  //dotnet/test/common:ElementEqualityTest-firefox                �[0m�[32m(cached) PASSED�[0m in 16.0s
    2428:  //dotnet/test/common:ElementFindingTest-chrome                  �[0m�[32m(cached) PASSED�[0m in 26.4s
    2429:  //dotnet/test/common:ElementFindingTest-firefox                 �[0m�[32m(cached) PASSED�[0m in 38.8s
    2430:  //dotnet/test/common:ElementPropertyTest-chrome                 �[0m�[32m(cached) PASSED�[0m in 8.0s
    2431:  //dotnet/test/common:ElementPropertyTest-firefox                �[0m�[32m(cached) PASSED�[0m in 14.8s
    2432:  //dotnet/test/common:ElementSelectingTest-chrome                �[0m�[32m(cached) PASSED�[0m in 9.1s
    2433:  //dotnet/test/common:ElementSelectingTest-firefox               �[0m�[32m(cached) PASSED�[0m in 23.6s
    2434:  //dotnet/test/common:ErrorsTest-chrome                          �[0m�[32m(cached) PASSED�[0m in 5.6s
    2435:  //dotnet/test/common:ErrorsTest-firefox                         �[0m�[32m(cached) PASSED�[0m in 11.8s
    ...
    
    2705:  //java/test/org/openqa/selenium:ElementFindingTest-firefox-beta �[0m�[32m(cached) PASSED�[0m in 48.5s
    2706:  //java/test/org/openqa/selenium:ElementFindingTest-firefox-dev  �[0m�[32m(cached) PASSED�[0m in 47.2s
    2707:  //java/test/org/openqa/selenium:ElementFindingTest-spotbugs     �[0m�[32m(cached) PASSED�[0m in 13.0s
    2708:  //java/test/org/openqa/selenium:ElementSelectingTest            �[0m�[32m(cached) PASSED�[0m in 33.2s
    2709:  //java/test/org/openqa/selenium:ElementSelectingTest-chrome     �[0m�[32m(cached) PASSED�[0m in 19.0s
    2710:  //java/test/org/openqa/selenium:ElementSelectingTest-firefox-beta �[0m�[32m(cached) PASSED�[0m in 32.4s
    2711:  //java/test/org/openqa/selenium:ElementSelectingTest-firefox-dev �[0m�[32m(cached) PASSED�[0m in 30.5s
    2712:  //java/test/org/openqa/selenium:ElementSelectingTest-spotbugs   �[0m�[32m(cached) PASSED�[0m in 8.8s
    2713:  //java/test/org/openqa/selenium:ErrorsTest                      �[0m�[32m(cached) PASSED�[0m in 17.1s
    2714:  //java/test/org/openqa/selenium:ErrorsTest-chrome               �[0m�[32m(cached) PASSED�[0m in 14.1s
    2715:  //java/test/org/openqa/selenium:ErrorsTest-firefox-beta         �[0m�[32m(cached) PASSED�[0m in 16.8s
    2716:  //java/test/org/openqa/selenium:ErrorsTest-firefox-dev          �[0m�[32m(cached) PASSED�[0m in 18.7s
    2717:  //java/test/org/openqa/selenium:ErrorsTest-spotbugs             �[0m�[32m(cached) PASSED�[0m in 7.8s
    ...
    
    3297:  //java/test/org/openqa/selenium/os:ExternalProcessTest          �[0m�[32m(cached) PASSED�[0m in 2.9s
    3298:  //java/test/org/openqa/selenium/os:ExternalProcessTest-spotbugs �[0m�[32m(cached) PASSED�[0m in 9.5s
    3299:  //java/test/org/openqa/selenium/os:OsProcessTest                �[0m�[32m(cached) PASSED�[0m in 4.8s
    3300:  //java/test/org/openqa/selenium/os:OsProcessTest-spotbugs       �[0m�[32m(cached) PASSED�[0m in 8.1s
    3301:  //java/test/org/openqa/selenium/remote:AugmenterTest            �[0m�[32m(cached) PASSED�[0m in 6.1s
    3302:  //java/test/org/openqa/selenium/remote:AugmenterTest-spotbugs   �[0m�[32m(cached) PASSED�[0m in 12.7s
    3303:  //java/test/org/openqa/selenium/remote:DesiredCapabilitiesTest  �[0m�[32m(cached) PASSED�[0m in 2.4s
    3304:  //java/test/org/openqa/selenium/remote:DesiredCapabilitiesTest-spotbugs �[0m�[32m(cached) PASSED�[0m in 10.9s
    3305:  //java/test/org/openqa/selenium/remote:ErrorCodecTest           �[0m�[32m(cached) PASSED�[0m in 2.1s
    3306:  //java/test/org/openqa/selenium/remote:ErrorCodecTest-spotbugs  �[0m�[32m(cached) PASSED�[0m in 10.4s
    3307:  //java/test/org/openqa/selenium/remote:ErrorHandlerTest         �[0m�[32m(cached) PASSED�[0m in 2.7s
    3308:  //java/test/org/openqa/selenium/remote:ErrorHandlerTest-spotbugs �[0m�[32m(cached) PASSED�[0m in 11.6s
    ...
    
    3559:  //py:common-firefox-test/selenium/webdriver/support/expected_conditions_tests.py �[0m�[32m(cached) PASSED�[0m in 16.0s
    3560:  //py:common-firefox-test/selenium/webdriver/support/relative_by_tests.py �[0m�[32m(cached) PASSED�[0m in 8.2s
    3561:  //py:test-chrome-test/selenium/webdriver/chrome/chrome_network_emulation_tests.py �[0m�[32m(cached) PASSED�[0m in 4.7s
    3562:  //py:unit-test/unit/selenium/webdriver/chrome/chrome_options_tests.py �[0m�[32m(cached) PASSED�[0m in 3.8s
    3563:  //py:unit-test/unit/selenium/webdriver/common/common_options_tests.py �[0m�[32m(cached) PASSED�[0m in 2.1s
    3564:  //py:unit-test/unit/selenium/webdriver/common/print_page_options_tests.py �[0m�[32m(cached) PASSED�[0m in 2.8s
    3565:  //py:unit-test/unit/selenium/webdriver/edge/edge_options_tests.py �[0m�[32m(cached) PASSED�[0m in 2.0s
    3566:  //py:unit-test/unit/selenium/webdriver/firefox/firefox_options_tests.py �[0m�[32m(cached) PASSED�[0m in 2.8s
    3567:  //py:unit-test/unit/selenium/webdriver/remote/error_handler_tests.py �[0m�[32m(cached) PASSED�[0m in 2.5s
    ...
    
    3571:  //py:unit-test/unit/selenium/webdriver/safari/safari_options_tests.py �[0m�[32m(cached) PASSED�[0m in 3.5s
    3572:  //py:unit-test/unit/selenium/webdriver/support/color_tests.py   �[0m�[32m(cached) PASSED�[0m in 3.4s
    3573:  //py:unit-test/unit/selenium/webdriver/virtual_authenticator/virtual_authenticator_options_tests.py �[0m�[32m(cached) PASSED�[0m in 3.0s
    3574:  //py:unit-test/unit/selenium/webdriver/webkitgtk/webkitgtk_options_tests.py �[0m�[32m(cached) PASSED�[0m in 2.9s
    3575:  //py:unit-test/unit/selenium/webdriver/wpewebkit/wpewebkit_options_tests.py �[0m�[32m(cached) PASSED�[0m in 3.2s
    3576:  //rb/spec/integration/selenium/webdriver:action_builder         �[0m�[32m(cached) PASSED�[0m in 27.9s
    3577:  //rb/spec/integration/selenium/webdriver:driver                 �[0m�[32m(cached) PASSED�[0m in 27.7s
    3578:  //rb/spec/integration/selenium/webdriver:element                �[0m�[32m(cached) PASSED�[0m in 39.4s
    3579:  //rb/spec/integration/selenium/webdriver:error                  �[0m�[32m(cached) PASSED�[0m in 17.8s
    ...
    
    3658:  //rb/spec/unit/selenium/webdriver/remote/http:common            �[0m�[32m(cached) PASSED�[0m in 12.8s
    3659:  //rb/spec/unit/selenium/webdriver/remote/http:default           �[0m�[32m(cached) PASSED�[0m in 17.8s
    3660:  //rb/spec/unit/selenium/webdriver/safari:driver                 �[0m�[32m(cached) PASSED�[0m in 14.9s
    3661:  //rb/spec/unit/selenium/webdriver/safari:options                �[0m�[32m(cached) PASSED�[0m in 14.1s
    3662:  //rb/spec/unit/selenium/webdriver/safari:service                �[0m�[32m(cached) PASSED�[0m in 13.7s
    3663:  //rb/spec/unit/selenium/webdriver/support:color                 �[0m�[32m(cached) PASSED�[0m in 17.0s
    3664:  //rb/spec/unit/selenium/webdriver/support:event_firing          �[0m�[32m(cached) PASSED�[0m in 14.4s
    3665:  //rb/spec/unit/selenium/webdriver/support:select                �[0m�[32m(cached) PASSED�[0m in 13.3s
    3666:  //java/test/org/openqa/selenium/bidi/network:NetworkEventsTest           �[0m�[31m�[1mFAILED�[0m in 2 out of 2 in 90.9s
    3667:  Stats over 2 runs: max = 90.9s, min = 88.6s, avg = 89.7s, dev = 1.1s
    3668:  /home/runner/.bazel/execroot/selenium/bazel-out/k8-fastbuild/testlogs/java/test/org/openqa/selenium/bidi/network/NetworkEventsTest/test.log
    3669:  /home/runner/.bazel/execroot/selenium/bazel-out/k8-fastbuild/testlogs/java/test/org/openqa/selenium/bidi/network/NetworkEventsTest/test_attempts/attempt_1.log
    3670:  //java/test/org/openqa/selenium/bidi/network:NetworkEventsTest-remote    �[0m�[31m�[1mFAILED�[0m in 2 out of 2 in 90.4s
    3671:  Stats over 2 runs: max = 90.4s, min = 88.8s, avg = 89.6s, dev = 0.8s
    3672:  /home/runner/.bazel/execroot/selenium/bazel-out/k8-fastbuild/testlogs/java/test/org/openqa/selenium/bidi/network/NetworkEventsTest-remote/test.log
    3673:  /home/runner/.bazel/execroot/selenium/bazel-out/k8-fastbuild/testlogs/java/test/org/openqa/selenium/bidi/network/NetworkEventsTest-remote/test_attempts/attempt_1.log
    3674:  Executed 2 out of 1283 tests: 1281 tests pass and �[0m�[31m�[1m2 fail remotely�[0m.
    3675:  There were tests whose specified size is too big. Use the --test_verbose_timeout_warnings command line option to see which ones these are.
    3676:  (11:47:35) �[32mINFO:�[0m Build completed, 2 tests FAILED, 12240 total actions
    3677:  (11:47:35) �[32mINFO: �[0mStreaming build results to: https://gypsum.cluster.engflow.com/invocation/f09d9c99-f649-4772-a80c-2b6cea25a2e5
    3678:  �[0m
    3679:  ##[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/follow-redirects-1.15.6 branch from 2671dad to 747712c Compare March 18, 2024 13:17
    @diemol diemol merged commit ca4f3c3 into trunk Mar 18, 2024
    10 checks passed
    @diemol diemol deleted the dependabot/npm_and_yarn/follow-redirects-1.15.6 branch March 18, 2024 13:33
    Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
    Labels
    C-nodejs dependencies Pull requests that update a dependency file enhancement Review effort [1-5]: 1
    Projects
    None yet
    Development

    Successfully merging this pull request may close these issues.

    1 participant