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

[JS] Add websocket port option in Firefox ServiceBuilder when '--connect-existing' is not passed #15557

Merged
merged 2 commits into from
Apr 3, 2025

Conversation

harsha509
Copy link
Member

@harsha509 harsha509 commented Apr 3, 2025

User description

Fixes #15451

🔗 Related Issues

💥 What does this PR do?

🔧 Implementation Notes

💡 Additional Considerations

🔄 Types of changes

  • Cleanup (formatting, renaming)
  • Bug fix (backwards compatible)
  • New feature (non-breaking change which adds functionality and tests!)
  • Breaking change (fix or feature that would cause existing functionality to change)

PR Type

Bug fix, Enhancement


Description

  • Added support for --websocket-port argument in Firefox ServiceBuilder.

  • Ensured the websocket port is only added when --connect-existing is not passed.

  • Integrated logic to dynamically find free ports for both service and websocket.


Changes walkthrough 📝

Relevant files
Enhancement
firefox.js
Added websocket port logic in Firefox ServiceBuilder         

javascript/selenium-webdriver/firefox.js

  • Imported findFreePort for dynamic port allocation.
  • Modified ServiceBuilder to include --websocket-port argument.
  • Ensured --websocket-port is added only when --connect-existing is
    absent.
  • Updated build() method to handle dynamic port assignment for both
    service and websocket.
  • +26/-0   

    Need help?
  • Type /help how to ... in the comments thread for any questions about Qodo Merge usage.
  • Check out the documentation for more information.
  • @titusfortner titusfortner added the C-nodejs JavaScript Bindings label Apr 3, 2025
    Copy link
    Contributor

    qodo-merge-pro bot commented Apr 3, 2025

    PR Reviewer Guide 🔍

    Here are some key observations to aid the review process:

    🎫 Ticket compliance analysis ✅

    15451 - PR Code Verified

    Compliant requirements:

    • Add support for the websocket-port argument in Firefox driver
    • Address the issue with Mozilla's handling of multiple sessions on the same geckodriver
    • Avoid hiding the functionality behind a reuse flag

    Requires further human verification:

    • Verify that the implementation works similarly to the Python and .NET implementations

    ⏱️ Estimated effort to review: 2 🔵🔵⚪⚪⚪
    🧪 No relevant tests
    🔒 No security concerns identified
    ⚡ Recommended focus areas for review

    Promise Handling

    The implementation creates a promise chain for argument building but doesn't handle potential promise rejection. Consider adding error handling for the promise chain.

    let argsPromise = Promise.resolve(port).then((port) => {
      // Start with the default --port argument.
      let args = this.options_.args.concat(`--port=${port}`);
      // If the "--connect-existing" flag is not set, add the websocket port.
      if (!this.options_.args.some(arg => arg === '--connect-existing')) {
        return findFreePort().then(wsPort => {
          args.push(`--websocket-port=${wsPort}`);
          return args;
        });
      }
      return args;
    });
    Port Allocation

    The code finds a free port for the websocket but doesn't handle potential port conflicts that might occur between finding the port and actually using it.

    return findFreePort().then(wsPort => {
      args.push(`--websocket-port=${wsPort}`);
      return args;
    });

    Copy link
    Contributor

    qodo-merge-pro bot commented Apr 3, 2025

    PR Code Suggestions ✨

    Explore these optional code suggestions:

    CategorySuggestion                                                                                                                                    Impact
    Possible issue
    Fix Promise handling

    The findFreePort() function returns a Promise, but it's being assigned directly
    to port without awaiting its resolution. This will cause port to be a Promise
    object rather than a port number, leading to incorrect behavior when used in the
    string template.

    javascript/selenium-webdriver/firefox.js [517-529]

    -let port = this.options_.port || findFreePort();
    -let argsPromise = Promise.resolve(port).then((port) => {
    +let portPromise = this.options_.port ? Promise.resolve(this.options_.port) : findFreePort();
    +let argsPromise = portPromise.then((port) => {
       // Start with the default --port argument.
       let args = this.options_.args.concat(`--port=${port}`);
       // If the "--connect-existing" flag is not set, add the websocket port.
       if (!this.options_.args.some(arg => arg === '--connect-existing')) {
         return findFreePort().then(wsPort => {
           args.push(`--websocket-port=${wsPort}`);
           return args;
         });
       }
       return args;
     });
    • Apply this suggestion
    Suggestion importance[1-10]: 10

    __

    Why: The suggestion correctly identifies a critical bug where findFreePort() returns a Promise but is being used directly without awaiting resolution. This would cause the port variable to be a Promise object instead of a number, leading to runtime errors when concatenating with strings and incorrect behavior in the driver service.

    High
    Learned
    best practice
    Add null checks for object properties before accessing them to prevent potential null reference exceptions

    Add null checks for this.options_ and this.options_.args before accessing them
    to prevent potential null reference exceptions. The code assumes these
    properties exist and are not null, which could lead to runtime errors if they're
    undefined.

    javascript/selenium-webdriver/firefox.js [517-529]

    -let port = this.options_.port || findFreePort();
    +let port = (this.options_ && this.options_.port) || findFreePort();
     let argsPromise = Promise.resolve(port).then((port) => {
       // Start with the default --port argument.
    -  let args = this.options_.args.concat(`--port=${port}`);
    +  let args = (this.options_ && this.options_.args || []).concat(`--port=${port}`);
       // If the "--connect-existing" flag is not set, add the websocket port.
    -  if (!this.options_.args.some(arg => arg === '--connect-existing')) {
    +  if (!(this.options_ && this.options_.args && this.options_.args.some(arg => arg === '--connect-existing'))) {
         return findFreePort().then(wsPort => {
           args.push(`--websocket-port=${wsPort}`);
           return args;
         });
       }
       return args;
     });
    • Apply this suggestion
    Suggestion importance[1-10]: 6
    Low
    • Update

    Copy link
    Contributor

    qodo-merge-pro bot commented Apr 3, 2025

    CI Feedback 🧐

    (Feedback updated until commit 4f8488c)

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

    Action: Test / All RBE tests

    Failed stage: Run Bazel [❌]

    Failed test name: DefaultKeyboardTest.testSelectionSelectByWord, Selenium::WebDriver::Firefox::Driver can get and set context

    Failure summary:

    The action failed because 4 tests failed:

    1. Two instances of DefaultKeyboardTest-chrome and DefaultKeyboardTest-chrome-remote failed with the
    same error:
    - Error:
    "org.openqa.selenium.bidi.input.DefaultKeyboardTest.testSelectionSelectByWord is marked as not yet
    implemented with CHROME but already works!"
    - This is a test that was marked as expected to fail
    with Chrome, but it's actually working now.

    2. Two Ruby tests for Firefox (driver-firefox-beta and driver-firefox-beta-remote) failed with the
    same error:
    - Error: "System access is required to switch to chrome scope. Start Firefox with
    '-remote-allow-system-access' to enable it."
    - This occurs when trying to set the context to
    'chrome' in the Firefox driver tests.

    Relevant error logs:
    1:  ##[group]Operating System
    2:  Ubuntu
    ...
    
    945:  Package 'php-sql-formatter' is not installed, so not removed
    946:  Package 'php8.3-ssh2' is not installed, so not removed
    947:  Package 'php-ssh2-all-dev' is not installed, so not removed
    948:  Package 'php8.3-stomp' is not installed, so not removed
    949:  Package 'php-stomp-all-dev' is not installed, so not removed
    950:  Package 'php-swiftmailer' is not installed, so not removed
    951:  Package 'php-symfony' is not installed, so not removed
    952:  Package 'php-symfony-asset' is not installed, so not removed
    953:  Package 'php-symfony-asset-mapper' is not installed, so not removed
    954:  Package 'php-symfony-browser-kit' is not installed, so not removed
    955:  Package 'php-symfony-clock' is not installed, so not removed
    956:  Package 'php-symfony-debug-bundle' is not installed, so not removed
    957:  Package 'php-symfony-doctrine-bridge' is not installed, so not removed
    958:  Package 'php-symfony-dom-crawler' is not installed, so not removed
    959:  Package 'php-symfony-dotenv' is not installed, so not removed
    960:  Package 'php-symfony-error-handler' is not installed, so not removed
    961:  Package 'php-symfony-event-dispatcher' is not installed, so not removed
    ...
    
    1139:  Package 'php-twig-html-extra' is not installed, so not removed
    1140:  Package 'php-twig-i18n-extension' is not installed, so not removed
    1141:  Package 'php-twig-inky-extra' is not installed, so not removed
    1142:  Package 'php-twig-intl-extra' is not installed, so not removed
    1143:  Package 'php-twig-markdown-extra' is not installed, so not removed
    1144:  Package 'php-twig-string-extra' is not installed, so not removed
    1145:  Package 'php8.3-uopz' is not installed, so not removed
    1146:  Package 'php-uopz-all-dev' is not installed, so not removed
    1147:  Package 'php8.3-uploadprogress' is not installed, so not removed
    1148:  Package 'php-uploadprogress-all-dev' is not installed, so not removed
    1149:  Package 'php8.3-uuid' is not installed, so not removed
    1150:  Package 'php-uuid-all-dev' is not installed, so not removed
    1151:  Package 'php-validate' is not installed, so not removed
    1152:  Package 'php-vlucas-phpdotenv' is not installed, so not removed
    1153:  Package 'php-voku-portable-ascii' is not installed, so not removed
    1154:  Package 'php-wmerrors' is not installed, so not removed
    1155:  Package 'php-xdebug-all-dev' is not installed, so not removed
    ...
    
    1814:  (00:40:32) �[32mAnalyzing:�[0m 2192 targets (1590 packages loaded, 51020 targets configured)
    1815:  �[32m[5,044 / 7,006]�[0m Extracting npm package @mui/[email protected]_60647716; 1s remote, remote-cache ... (22 actions, 7 running)
    1816:  (00:40:35) �[35mWARNING: �[0m/home/runner/work/selenium/selenium/javascript/atoms/BUILD.bazel:397:19: runfiles symlink javascript/atoms/test/action_test.html -> javascript/atoms/test/action_test.html obscured by javascript/atoms/test -> bazel-out/k8-fastbuild/bin/javascript/atoms/test
    1817:  (00:40:35) �[35mWARNING: �[0m/home/runner/work/selenium/selenium/javascript/atoms/BUILD.bazel:397:19: runfiles symlink javascript/atoms/test/attribute_test.html -> javascript/atoms/test/attribute_test.html obscured by javascript/atoms/test -> bazel-out/k8-fastbuild/bin/javascript/atoms/test
    1818:  (00:40:35) �[35mWARNING: �[0m/home/runner/work/selenium/selenium/javascript/atoms/BUILD.bazel:397:19: runfiles symlink javascript/atoms/test/child_locator_test.html -> javascript/atoms/test/child_locator_test.html obscured by javascript/atoms/test -> bazel-out/k8-fastbuild/bin/javascript/atoms/test
    1819:  (00:40:35) �[35mWARNING: �[0m/home/runner/work/selenium/selenium/javascript/atoms/BUILD.bazel:397:19: runfiles symlink javascript/atoms/test/click_link_test.html -> javascript/atoms/test/click_link_test.html obscured by javascript/atoms/test -> bazel-out/k8-fastbuild/bin/javascript/atoms/test
    1820:  (00:40:35) �[35mWARNING: �[0m/home/runner/work/selenium/selenium/javascript/atoms/BUILD.bazel:397:19: runfiles symlink javascript/atoms/test/click_submit_test.html -> javascript/atoms/test/click_submit_test.html obscured by javascript/atoms/test -> bazel-out/k8-fastbuild/bin/javascript/atoms/test
    1821:  (00:40:35) �[35mWARNING: �[0m/home/runner/work/selenium/selenium/javascript/atoms/BUILD.bazel:397:19: runfiles symlink javascript/atoms/test/click_test.html -> javascript/atoms/test/click_test.html obscured by javascript/atoms/test -> bazel-out/k8-fastbuild/bin/javascript/atoms/test
    1822:  (00:40:35) �[35mWARNING: �[0m/home/runner/work/selenium/selenium/javascript/atoms/BUILD.bazel:397:19: runfiles symlink javascript/atoms/test/clientrect_test.html -> javascript/atoms/test/clientrect_test.html obscured by javascript/atoms/test -> bazel-out/k8-fastbuild/bin/javascript/atoms/test
    1823:  (00:40:35) �[35mWARNING: �[0m/home/runner/work/selenium/selenium/javascript/atoms/BUILD.bazel:397:19: runfiles symlink javascript/atoms/test/color_test.html -> javascript/atoms/test/color_test.html obscured by javascript/atoms/test -> bazel-out/k8-fastbuild/bin/javascript/atoms/test
    1824:  (00:40:35) �[35mWARNING: �[0m/home/runner/work/selenium/selenium/javascript/atoms/BUILD.bazel:397:19: runfiles symlink javascript/atoms/test/deps.js -> javascript/atoms/test/deps.js obscured by javascript/atoms/test -> bazel-out/k8-fastbuild/bin/javascript/atoms/test
    1825:  (00:40:35) �[35mWARNING: �[0m/home/runner/work/selenium/selenium/javascript/atoms/BUILD.bazel:397:19: runfiles symlink javascript/atoms/test/dom_test.html -> javascript/atoms/test/dom_test.html obscured by javascript/atoms/test -> bazel-out/k8-fastbuild/bin/javascript/atoms/test
    1826:  (00:40:35) �[35mWARNING: �[0m/home/runner/work/selenium/selenium/javascript/atoms/BUILD.bazel:397:19: runfiles symlink javascript/atoms/test/drag_test.html -> javascript/atoms/test/drag_test.html obscured by javascript/atoms/test -> bazel-out/k8-fastbuild/bin/javascript/atoms/test
    1827:  (00:40:35) �[35mWARNING: �[0m/home/runner/work/selenium/selenium/javascript/atoms/BUILD.bazel:397:19: runfiles symlink javascript/atoms/test/enabled_test.html -> javascript/atoms/test/enabled_test.html obscured by javascript/atoms/test -> bazel-out/k8-fastbuild/bin/javascript/atoms/test
    1828:  (00:40:35) �[35mWARNING: �[0m/home/runner/work/selenium/selenium/javascript/atoms/BUILD.bazel:397:19: runfiles symlink javascript/atoms/test/enter_submit_test.html -> javascript/atoms/test/enter_submit_test.html obscured by javascript/atoms/test -> bazel-out/k8-fastbuild/bin/javascript/atoms/test
    1829:  (00:40:35) �[35mWARNING: �[0m/home/runner/work/selenium/selenium/javascript/atoms/BUILD.bazel:397:19: runfiles symlink javascript/atoms/test/error_test.html -> javascript/atoms/test/error_test.html obscured by javascript/atoms/test -> bazel-out/k8-fastbuild/bin/javascript/atoms/test
    1830:  (00:40:35) �[35mWARNING: �[0m/home/runner/work/selenium/selenium/javascript/atoms/BUILD.bazel:397:19: runfiles symlink javascript/atoms/test/events_test.html -> javascript/atoms/test/events_test.html obscured by javascript/atoms/test -> bazel-out/k8-fastbuild/bin/javascript/atoms/test
    ...
    
    1923:  (00:40:36) �[35mWARNING: �[0m/home/runner/work/selenium/selenium/javascript/webdriver/BUILD.bazel:66:19: runfiles symlink javascript/webdriver/test/atoms/inject/sql_database_test.html -> javascript/webdriver/test/atoms/inject/sql_database_test.html obscured by javascript/webdriver/test -> bazel-out/k8-fastbuild/bin/javascript/webdriver/test
    1924:  (00:40:36) �[35mWARNING: �[0m/home/runner/work/selenium/selenium/javascript/webdriver/BUILD.bazel:66:19: runfiles symlink javascript/webdriver/test/atoms/kitten.jpg -> javascript/webdriver/test/atoms/kitten.jpg obscured by javascript/webdriver/test -> bazel-out/k8-fastbuild/bin/javascript/webdriver/test
    1925:  (00:40:36) �[35mWARNING: �[0m/home/runner/work/selenium/selenium/javascript/webdriver/BUILD.bazel:66:19: runfiles symlink javascript/webdriver/test/atoms/storage/local_storage_test.html -> javascript/webdriver/test/atoms/storage/local_storage_test.html obscured by javascript/webdriver/test -> bazel-out/k8-fastbuild/bin/javascript/webdriver/test
    1926:  (00:40:36) �[35mWARNING: �[0m/home/runner/work/selenium/selenium/javascript/webdriver/BUILD.bazel:66:19: runfiles symlink javascript/webdriver/test/atoms/storage/session_storage_test.html -> javascript/webdriver/test/atoms/storage/session_storage_test.html obscured by javascript/webdriver/test -> bazel-out/k8-fastbuild/bin/javascript/webdriver/test
    1927:  (00:40:36) �[35mWARNING: �[0m/home/runner/work/selenium/selenium/javascript/webdriver/BUILD.bazel:66:19: runfiles symlink javascript/webdriver/test/http/corsclient_test.js -> javascript/webdriver/test/http/corsclient_test.js obscured by javascript/webdriver/test -> bazel-out/k8-fastbuild/bin/javascript/webdriver/test
    1928:  (00:40:36) �[35mWARNING: �[0m/home/runner/work/selenium/selenium/javascript/webdriver/BUILD.bazel:66:19: runfiles symlink javascript/webdriver/test/http/http_test.js -> javascript/webdriver/test/http/http_test.js obscured by javascript/webdriver/test -> bazel-out/k8-fastbuild/bin/javascript/webdriver/test
    1929:  (00:40:36) �[35mWARNING: �[0m/home/runner/work/selenium/selenium/javascript/webdriver/BUILD.bazel:66:19: runfiles symlink javascript/webdriver/test/http/xhrclient_test.js -> javascript/webdriver/test/http/xhrclient_test.js obscured by javascript/webdriver/test -> bazel-out/k8-fastbuild/bin/javascript/webdriver/test
    1930:  (00:40:36) �[35mWARNING: �[0m/home/runner/work/selenium/selenium/javascript/webdriver/BUILD.bazel:66:19: runfiles symlink javascript/webdriver/test/logging_test.js -> javascript/webdriver/test/logging_test.js obscured by javascript/webdriver/test -> bazel-out/k8-fastbuild/bin/javascript/webdriver/test
    1931:  (00:40:36) �[35mWARNING: �[0m/home/runner/work/selenium/selenium/javascript/webdriver/BUILD.bazel:66:19: runfiles symlink javascript/webdriver/test/stacktrace_test.js -> javascript/webdriver/test/stacktrace_test.js obscured by javascript/webdriver/test -> bazel-out/k8-fastbuild/bin/javascript/webdriver/test
    1932:  (00:40:36) �[35mWARNING: �[0m/home/runner/work/selenium/selenium/javascript/webdriver/BUILD.bazel:66:19: runfiles symlink javascript/webdriver/test/test_bootstrap.js -> javascript/webdriver/test/test_bootstrap.js obscured by javascript/webdriver/test -> bazel-out/k8-fastbuild/bin/javascript/webdriver/test
    1933:  (00:40:36) �[35mWARNING: �[0m/home/runner/work/selenium/selenium/javascript/webdriver/BUILD.bazel:66:19: runfiles symlink javascript/webdriver/test/testutil.js -> javascript/webdriver/test/testutil.js obscured by javascript/webdriver/test -> bazel-out/k8-fastbuild/bin/javascript/webdriver/test
    1934:  (00:40:36) �[35mWARNING: �[0m/home/runner/work/selenium/selenium/javascript/webdriver/BUILD.bazel:66:19: runfiles symlink javascript/webdriver/test/testutil_test.js -> javascript/webdriver/test/testutil_test.js obscured by javascript/webdriver/test -> bazel-out/k8-fastbuild/bin/javascript/webdriver/test
    1935:  (00:40:37) �[32mAnalyzing:�[0m 2192 targets (1599 packages loaded, 52550 targets configured)
    1936:  �[32m[7,132 / 10,043]�[0m Creating source manifest for //java/test/org/openqa/selenium:ElementSelectingTest-firefox-beta; 0s local ... (30 actions, 18 running)
    1937:  (00:40:37) �[32mINFO: �[0mFrom Building java/src/org/openqa/selenium/remote/libapi-class.jar (70 source files):
    1938:  java/src/org/openqa/selenium/remote/ErrorHandler.java:46: warning: [removal] ErrorCodes in org.openqa.selenium.remote has been deprecated and marked for removal
    1939:  private final ErrorCodes errorCodes;
    1940:  ^
    1941:  java/src/org/openqa/selenium/remote/ErrorHandler.java:60: warning: [removal] ErrorCodes in org.openqa.selenium.remote has been deprecated and marked for removal
    1942:  this.errorCodes = new ErrorCodes();
    1943:  ^
    1944:  java/src/org/openqa/selenium/remote/ErrorHandler.java:68: warning: [removal] ErrorCodes in org.openqa.selenium.remote has been deprecated and marked for removal
    1945:  public ErrorHandler(ErrorCodes codes, boolean includeServerErrors) {
    1946:  ^
    1947:  java/src/org/openqa/selenium/remote/Response.java:97: warning: [removal] ErrorCodes in org.openqa.selenium.remote has been deprecated and marked for removal
    1948:  ErrorCodes errorCodes = new ErrorCodes();
    1949:  ^
    1950:  java/src/org/openqa/selenium/remote/Response.java:97: warning: [removal] ErrorCodes in org.openqa.selenium.remote has been deprecated and marked for removal
    1951:  ErrorCodes errorCodes = new ErrorCodes();
    1952:  ^
    1953:  java/src/org/openqa/selenium/remote/ProtocolHandshake.java:181: warning: [removal] ErrorCodes in org.openqa.selenium.remote has been deprecated and marked for removal
    1954:  response.setStatus(ErrorCodes.SUCCESS);
    1955:  ^
    1956:  java/src/org/openqa/selenium/remote/ProtocolHandshake.java:182: warning: [removal] ErrorCodes in org.openqa.selenium.remote has been deprecated and marked for removal
    1957:  response.setState(ErrorCodes.SUCCESS_STRING);
    1958:  ^
    1959:  java/src/org/openqa/selenium/remote/W3CHandshakeResponse.java:53: warning: [removal] ErrorCodes in org.openqa.selenium.remote has been deprecated and marked for removal
    1960:  new ErrorCodes().toStatus((String) rawError, Optional.of(tuple.getStatusCode())));
    1961:  ^
    1962:  java/src/org/openqa/selenium/remote/W3CHandshakeResponse.java:56: warning: [removal] ErrorCodes in org.openqa.selenium.remote has been deprecated and marked for removal
    1963:  new ErrorCodes().getExceptionType((String) rawError);
    1964:  ^
    1965:  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
    1966:  private final ErrorCodes errorCodes = new ErrorCodes();
    1967:  ^
    1968:  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
    1969:  private final ErrorCodes errorCodes = new ErrorCodes();
    1970:  ^
    1971:  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
    1972:  int status = response.getStatus() == ErrorCodes.SUCCESS ? HTTP_OK : HTTP_INTERNAL_ERROR;
    1973:  ^
    1974:  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
    1975:  response.setStatus(ErrorCodes.UNKNOWN_COMMAND);
    1976:  ^
    1977:  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
    1978:  response.setStatus(ErrorCodes.UNHANDLED_ERROR);
    1979:  ^
    1980:  java/src/org/openqa/selenium/remote/codec/AbstractHttpResponseCodec.java:117: warning: [removal] ErrorCodes in org.openqa.selenium.remote has been deprecated and marked for removal
    1981:  response.setStatus(ErrorCodes.SUCCESS);
    1982:  ^
    1983:  java/src/org/openqa/selenium/remote/codec/AbstractHttpResponseCodec.java:118: warning: [removal] ErrorCodes in org.openqa.selenium.remote has been deprecated and marked for removal
    1984:  response.setState(errorCodes.toState(ErrorCodes.SUCCESS));
    1985:  ^
    1986:  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
    1987:  response.setState(errorCodes.toState(ErrorCodes.SUCCESS));
    1988:  ^
    1989:  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
    1990:  private final ErrorCodes errorCodes = new ErrorCodes();
    1991:  ^
    1992:  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
    1993:  private final ErrorCodes errorCodes = new ErrorCodes();
    1994:  ^
    1995:  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
    1996:  response.setStatus(ErrorCodes.UNKNOWN_COMMAND);
    1997:  ^
    1998:  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
    1999:  response.setStatus(ErrorCodes.UNHANDLED_ERROR);
    2000:  ^
    2001:  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
    2002:  response.setStatus(ErrorCodes.SUCCESS);
    2003:  ^
    ...
    
    2157:  (00:40:52) �[32mAnalyzing:�[0m 2192 targets (1653 packages loaded, 60204 targets configured)
    2158:  �[32m[9,678 / 10,535]�[0m 105 / 1553 tests;�[0m Testing //javascript/selenium-webdriver:prettier-test; 9s remote, remote-cache ... (47 actions, 2 running)
    2159:  (00:40:57) �[32mAnalyzing:�[0m 2192 targets (1653 packages loaded, 60463 targets configured)
    2160:  �[32m[9,742 / 10,587]�[0m 124 / 1553 tests;�[0m Testing //javascript/selenium-webdriver:eslint-test; 12s remote, remote-cache ... (50 actions, 1 running)
    2161:  (00:41:02) �[32mAnalyzing:�[0m 2192 targets (1653 packages loaded, 60513 targets configured)
    2162:  �[32m[9,773 / 10,642]�[0m 138 / 1555 tests;�[0m Testing //javascript/selenium-webdriver:eslint-test; 17s remote, remote-cache ... (50 actions, 1 running)
    2163:  (00:41:07) �[32mAnalyzing:�[0m 2192 targets (1653 packages loaded, 60513 targets configured)
    2164:  �[32m[9,798 / 11,236]�[0m 154 / 1798 tests;�[0m Testing //javascript/selenium-webdriver:eslint-test; 22s remote, remote-cache ... (50 actions, 1 running)
    2165:  (00:41:12) �[32mAnalyzing:�[0m 2192 targets (1653 packages loaded, 63626 targets configured)
    2166:  �[32m[9,866 / 11,504]�[0m 188 / 1909 tests;�[0m Testing //javascript/selenium-webdriver:eslint-test; 27s remote, remote-cache ... (50 actions, 2 running)
    2167:  (00:41:17) �[32mAnalyzing:�[0m 2192 targets (1653 packages loaded, 63713 targets configured)
    2168:  �[32m[10,084 / 11,673]�[0m 241 / 1996 tests;�[0m Testing //javascript/selenium-webdriver:eslint-test; 32s remote, remote-cache ... (50 actions, 2 running)
    2169:  (00:41:22) �[32mAnalyzing:�[0m 2192 targets (1653 packages loaded, 63789 targets configured)
    2170:  �[32m[10,998 / 12,364]�[0m 340 / 2071 tests;�[0m Testing //javascript/selenium-webdriver:eslint-test; 37s remote, remote-cache ... (47 actions, 27 running)
    2171:  (00:41:23) �[32mINFO: �[0mFrom Building java/test/org/openqa/selenium/json/JsonTest.jar (1 source file):
    2172:  java/test/org/openqa/selenium/json/JsonTest.java:430: warning: [removal] ErrorCodes in org.openqa.selenium.remote has been deprecated and marked for removal
    2173:  assertThat(response.getState()).isEqualTo(new ErrorCodes().toState(0));
    2174:  ^
    2175:  java/test/org/openqa/selenium/json/JsonTest.java:441: warning: [removal] ErrorCodes in org.openqa.selenium.remote has been deprecated and marked for removal
    2176:  assertThat(response.getState()).isEqualTo(new ErrorCodes().toState(0));
    2177:  ^
    2178:  java/test/org/openqa/selenium/json/JsonTest.java:454: warning: [removal] ErrorCodes in org.openqa.selenium.remote has been deprecated and marked for removal
    2179:  assertThat(response.getState()).isEqualTo(new ErrorCodes().toState(32));
    2180:  ^
    2181:  (00:41:23) �[32mINFO: �[0mFrom Building java/test/org/openqa/selenium/remote/codec/w3c/W3CHttpResponseCodecTest.jar (1 source file):
    2182:  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
    2183:  import static org.openqa.selenium.remote.ErrorCodes.METHOD_NOT_ALLOWED;
    2184:  ^
    2185:  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
    2186:  assertThat(decoded.getStatus()).isEqualTo(ErrorCodes.SUCCESS);
    2187:  ^
    2188:  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
    2189:  assertThat(decoded.getStatus()).isEqualTo(ErrorCodes.UNHANDLED_ERROR);
    2190:  ^
    2191:  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
    2192:  assertThat(decoded.getStatus()).isEqualTo(ErrorCodes.UNHANDLED_ERROR);
    2193:  ^
    2194:  (00:41:27) �[32mINFO: �[0mFrom Building java/test/org/openqa/selenium/remote/libsmall-tests-test-lib.jar (5 source files) and running annotation processors (AutoServiceProcessor):
    2195:  java/test/org/openqa/selenium/remote/WebDriverFixture.java:170: warning: [removal] ErrorCodes in org.openqa.selenium.remote has been deprecated and marked for removal
    2196:  response.setStatus(new ErrorCodes().toStatus(state, Optional.of(400)));
    2197:  ^
    2198:  (00:41:27) �[32mAnalyzing:�[0m 2192 targets (1653 packages loaded, 63852 targets configured)
    2199:  �[32m[11,927 / 13,102]�[0m 417 / 2135 tests;�[0m Testing //javascript/selenium-webdriver:eslint-test; 42s remote, remote-cache ... (44 actions, 21 running)
    2200:  (00:41:28) �[32mINFO: �[0mFrom Building java/test/org/openqa/selenium/remote/ErrorHandlerTest.jar (1 source file) and running annotation processors (AutoServiceProcessor):
    2201:  java/test/org/openqa/selenium/remote/ErrorHandlerTest.java:79: warning: [removal] ErrorCodes in org.openqa.selenium.remote has been deprecated and marked for removal
    2202:  handler.throwIfResponseFailed(createResponse(ErrorCodes.SUCCESS), 100);
    2203:  ^
    2204:  java/test/org/openqa/selenium/remote/ErrorHandlerTest.java:85: warning: [removal] ErrorCodes in org.openqa.selenium.remote has been deprecated and marked for removal
    2205:  assertThrowsCorrectExceptionType(ErrorCodes.NO_SUCH_WINDOW, NoSuchWindowException.class);
    2206:  ^
    2207:  java/test/org/openqa/selenium/remote/ErrorHandlerTest.java:86: warning: [removal] ErrorCodes in org.openqa.selenium.remote has been deprecated and marked for removal
    2208:  assertThrowsCorrectExceptionType(ErrorCodes.NO_SUCH_FRAME, NoSuchFrameException.class);
    2209:  ^
    2210:  java/test/org/openqa/selenium/remote/ErrorHandlerTest.java:87: warning: [removal] ErrorCodes in org.openqa.selenium.remote has been deprecated and marked for removal
    2211:  assertThrowsCorrectExceptionType(ErrorCodes.NO_SUCH_ELEMENT, NoSuchElementException.class);
    2212:  ^
    2213:  java/test/org/openqa/selenium/remote/ErrorHandlerTest.java:88: warning: [removal] ErrorCodes in org.openqa.selenium.remote has been deprecated and marked for removal
    2214:  assertThrowsCorrectExceptionType(ErrorCodes.UNKNOWN_COMMAND, UnsupportedCommandException.class);
    2215:  ^
    2216:  java/test/org/openqa/selenium/remote/ErrorHandlerTest.java:90: warning: [removal] ErrorCodes in org.openqa.selenium.remote has been deprecated and marked for removal
    2217:  ErrorCodes.METHOD_NOT_ALLOWED, UnsupportedCommandException.class);
    2218:  ^
    2219:  java/test/org/openqa/selenium/remote/ErrorHandlerTest.java:92: warning: [removal] ErrorCodes in org.openqa.selenium.remote has been deprecated and marked for removal
    2220:  ErrorCodes.STALE_ELEMENT_REFERENCE, StaleElementReferenceException.class);
    2221:  ^
    2222:  java/test/org/openqa/selenium/remote/ErrorHandlerTest.java:94: warning: [removal] ErrorCodes in org.openqa.selenium.remote has been deprecated and marked for removal
    2223:  ErrorCodes.INVALID_ELEMENT_STATE, InvalidElementStateException.class);
    2224:  ^
    2225:  java/test/org/openqa/selenium/remote/ErrorHandlerTest.java:95: warning: [removal] ErrorCodes in org.openqa.selenium.remote has been deprecated and marked for removal
    2226:  assertThrowsCorrectExceptionType(ErrorCodes.XPATH_LOOKUP_ERROR, InvalidSelectorException.class);
    2227:  ^
    2228:  java/test/org/openqa/selenium/remote/ErrorHandlerTest.java:107: warning: [removal] ErrorCodes in org.openqa.selenium.remote has been deprecated and marked for removal
    2229:  Response response = createResponse(ErrorCodes.UNHANDLED_ERROR);
    2230:  ^
    2231:  java/test/org/openqa/selenium/remote/ErrorHandlerTest.java:120: warning: [removal] ErrorCodes in org.openqa.selenium.remote has been deprecated and marked for removal
    2232:  createResponse(ErrorCodes.UNHANDLED_ERROR, "boom"), 123))
    2233:  ^
    2234:  java/test/org/openqa/selenium/remote/ErrorHandlerTest.java:133: warning: [removal] ErrorCodes in org.openqa.selenium.remote has been deprecated and marked for removal
    2235:  createResponse(ErrorCodes.UNHANDLED_ERROR, ImmutableMap.of("message", "boom")),
    2236:  ^
    2237:  java/test/org/openqa/selenium/remote/ErrorHandlerTest.java:147: warning: [removal] ErrorCodes in org.openqa.selenium.remote has been deprecated and marked for removal
    2238:  ErrorCodes.UNHANDLED_ERROR,
    2239:  ^
    2240:  java/test/org/openqa/selenium/remote/ErrorHandlerTest.java:167: warning: [removal] ErrorCodes in org.openqa.selenium.remote has been deprecated and marked for removal
    2241:  ErrorCodes.UNHANDLED_ERROR,
    2242:  ^
    2243:  java/test/org/openqa/selenium/remote/ErrorHandlerTest.java:193: warning: [removal] ErrorCodes in org.openqa.selenium.remote has been deprecated and marked for removal
    2244:  createResponse(ErrorCodes.UNHANDLED_ERROR, toMap(serverError)), 123))
    2245:  ^
    2246:  java/test/org/openqa/selenium/remote/ErrorHandlerTest.java:214: warning: [removal] ErrorCodes in org.openqa.selenium.remote has been deprecated and marked for removal
    2247:  createResponse(ErrorCodes.UNHANDLED_ERROR, data), 123))
    2248:  ^
    2249:  java/test/org/openqa/selenium/remote/ErrorHandlerTest.java:248: warning: [removal] ErrorCodes in org.openqa.selenium.remote has been deprecated and marked for removal
    2250:  createResponse(ErrorCodes.UNHANDLED_ERROR, data), 123))
    2251:  ^
    2252:  java/test/org/openqa/selenium/remote/ErrorHandlerTest.java:280: warning: [removal] ErrorCodes in org.openqa.selenium.remote has been deprecated and marked for removal
    2253:  createResponse(ErrorCodes.UNHANDLED_ERROR, data), 123))
    2254:  ^
    2255:  java/test/org/openqa/selenium/remote/ErrorHandlerTest.java:308: warning: [removal] ErrorCodes in org.openqa.selenium.remote has been deprecated and marked for removal
    2256:  createResponse(ErrorCodes.UNHANDLED_ERROR, data), 123))
    2257:  ^
    2258:  java/test/org/openqa/selenium/remote/ErrorHandlerTest.java:327: warning: [removal] ErrorCodes in org.openqa.selenium.remote has been deprecated and marked for removal
    2259:  createResponse(ErrorCodes.UNHANDLED_ERROR, data), 123))
    2260:  ^
    2261:  java/test/org/openqa/selenium/remote/ErrorHandlerTest.java:355: warning: [removal] ErrorCodes in org.openqa.selenium.remote has been deprecated and marked for removal
    2262:  createResponse(ErrorCodes.UNHANDLED_ERROR, data), 123))
    2263:  ^
    2264:  java/test/org/openqa/selenium/remote/ErrorHandlerTest.java:394: warning: [removal] ErrorCodes in org.openqa.selenium.remote has been deprecated and marked for removal
    2265:  createResponse(ErrorCodes.UNHANDLED_ERROR, data), 123))
    2266:  ^
    2267:  java/test/org/openqa/selenium/remote/ErrorHandlerTest.java:426: warning: [removal] ErrorCodes in org.openqa.selenium.remote has been deprecated and marked for removal
    2268:  createResponse(ErrorCodes.UNHANDLED_ERROR, toMap(serverError)), 123))
    2269:  ^
    2270:  java/test/org/openqa/selenium/remote/ErrorHandlerTest.java:435: warning: [removal] ErrorCodes in org.openqa.selenium.remote has been deprecated and marked for removal
    2271:  exceptions.put(ErrorCodes.NO_SUCH_SESSION, NoSuchSessionException.class);
    2272:  ^
    2273:  java/test/org/openqa/selenium/remote/ErrorHandlerTest.java:436: warning: [removal] ErrorCodes in org.openqa.selenium.remote has been deprecated and marked for removal
    2274:  exceptions.put(ErrorCodes.NO_SUCH_ELEMENT, NoSuchElementException.class);
    2275:  ^
    2276:  java/test/org/openqa/selenium/remote/ErrorHandlerTest.java:437: warning: [removal] ErrorCodes in org.openqa.selenium.remote has been deprecated and marked for removal
    2277:  exceptions.put(ErrorCodes.NO_SUCH_FRAME, NoSuchFrameException.class);
    2278:  ^
    2279:  java/test/org/openqa/selenium/remote/ErrorHandlerTest.java:438: warning: [removal] ErrorCodes in org.openqa.selenium.remote has been deprecated and marked for removal
    2280:  exceptions.put(ErrorCodes.UNKNOWN_COMMAND, UnsupportedCommandException.class);
    2281:  ^
    2282:  java/test/org/openqa/selenium/remote/ErrorHandlerTest.java:439: warning: [removal] ErrorCodes in org.openqa.selenium.remote has been deprecated and marked for removal
    2283:  exceptions.put(ErrorCodes.STALE_ELEMENT_REFERENCE, StaleElementReferenceException.class);
    2284:  ^
    2285:  java/test/org/openqa/selenium/remote/ErrorHandlerTest.java:440: warning: [removal] ErrorCodes in org.openqa.selenium.remote has been deprecated and marked for removal
    2286:  exceptions.put(ErrorCodes.INVALID_ELEMENT_STATE, InvalidElementStateException.class);
    2287:  ^
    2288:  java/test/org/openqa/selenium/remote/ErrorHandlerTest.java:441: warning: [removal] ErrorCodes in org.openqa.selenium.remote has been deprecated and marked for removal
    2289:  exceptions.put(ErrorCodes.UNHANDLED_ERROR, WebDriverException.class);
    2290:  ^
    2291:  java/test/org/openqa/selenium/remote/ErrorHandlerTest.java:442: warning: [removal] ErrorCodes in org.openqa.selenium.remote has been deprecated and marked for removal
    2292:  exceptions.put(ErrorCodes.JAVASCRIPT_ERROR, JavascriptException.class);
    2293:  ^
    2294:  java/test/org/openqa/selenium/remote/ErrorHandlerTest.java:443: warning: [removal] ErrorCodes in org.openqa.selenium.remote has been deprecated and marked for removal
    2295:  exceptions.put(ErrorCodes.XPATH_LOOKUP_ERROR, InvalidSelectorException.class);
    2296:  ^
    2297:  java/test/org/openqa/selenium/remote/ErrorHandlerTest.java:444: warning: [removal] ErrorCodes in org.openqa.selenium.remote has been deprecated and marked for removal
    2298:  exceptions.put(ErrorCodes.TIMEOUT, TimeoutException.class);
    2299:  ^
    2300:  java/test/org/openqa/selenium/remote/ErrorHandlerTest.java:445: warning: [removal] ErrorCodes in org.openqa.selenium.remote has been deprecated and marked for removal
    2301:  exceptions.put(ErrorCodes.NO_SUCH_WINDOW, NoSuchWindowException.class);
    2302:  ^
    2303:  java/test/org/openqa/selenium/remote/ErrorHandlerTest.java:446: warning: [removal] ErrorCodes in org.openqa.selenium.remote has been deprecated and marked for removal
    2304:  exceptions.put(ErrorCodes.INVALID_COOKIE_DOMAIN, InvalidCookieDomainException.class);
    2305:  ^
    2306:  java/test/org/openqa/selenium/remote/ErrorHandlerTest.java:447: warning: [removal] ErrorCodes in org.openqa.selenium.remote has been deprecated and marked for removal
    2307:  exceptions.put(ErrorCodes.UNABLE_TO_SET_COOKIE, UnableToSetCookieException.class);
    2308:  ^
    2309:  java/test/org/openqa/selenium/remote/ErrorHandlerTest.java:448: warning: [removal] ErrorCodes in org.openqa.selenium.remote has been deprecated and marked for removal
    2310:  exceptions.put(ErrorCodes.UNEXPECTED_ALERT_PRESENT, UnhandledAlertException.class);
    2311:  ^
    2312:  java/test/org/openqa/selenium/remote/ErrorHandlerTest.java:449: warning: [removal] ErrorCodes in org.openqa.selenium.remote has been deprecated and marked for removal
    2313:  exceptions.put(ErrorCodes.NO_ALERT_PRESENT, NoAlertPresentException.class);
    2314:  ^
    2315:  java/test/org/openqa/selenium/remote/ErrorHandlerTest.java:450: warning: [removal] ErrorCodes in org.openqa.selenium.remote has been deprecated and marked for removal
    2316:  exceptions.put(ErrorCodes.ASYNC_SCRIPT_TIMEOUT, ScriptTimeoutException.class);
    2317:  ^
    2318:  java/test/org/openqa/selenium/remote/ErrorHandlerTest.java:451: warning: [removal] ErrorCodes in org.openqa.selenium.remote has been deprecated and marked for removal
    2319:  exceptions.put(ErrorCodes.INVALID_SELECTOR_ERROR, InvalidSelectorException.class);
    2320:  ^
    2321:  java/test/org/openqa/selenium/remote/ErrorHandlerTest.java:452: warning: [removal] ErrorCodes in org.openqa.selenium.remote has been deprecated and marked for removal
    2322:  exceptions.put(ErrorCodes.SESSION_NOT_CREATED, SessionNotCreatedException.class);
    2323:  ^
    2324:  java/test/org/openqa/selenium/remote/ErrorHandlerTest.java:453: warning: [removal] ErrorCodes in org.openqa.selenium.remote has been deprecated and marked for removal
    2325:  exceptions.put(ErrorCodes.MOVE_TARGET_OUT_OF_BOUNDS, MoveTargetOutOfBoundsException.class);
    2326:  ^
    2327:  java/test/org/openqa/selenium/remote/ErrorHandlerTest.java:454: warning: [removal] ErrorCodes in org.openqa.selenium.remote has been deprecated and marked for removal
    2328:  exceptions.put(ErrorCodes.INVALID_XPATH_SELECTOR, InvalidSelectorException.class);
    2329:  ^
    2330:  java/test/org/openqa/selenium/remote/ErrorHandlerTest.java:455: warning: [removal] ErrorCodes in org.openqa.selenium.remote has been deprecated and marked for removal
    2331:  exceptions.put(ErrorCodes.INVALID_XPATH_SELECTOR_RETURN_TYPER, InvalidSelectorException.class);
    2332:  ^
    2333:  java/test/org/openqa/selenium/remote/ErrorHandlerTest.java:469: warning: [removal] ErrorCodes in org.openqa.selenium.remote has been deprecated and marked for removal
    2334:  ? ErrorCodes.INVALID_SELECTOR_ERROR
    2335:  ^
    2336:  java/test/org/openqa/selenium/remote/ErrorHandlerTest.java:471: warning: [removal] ErrorCodes in org.openqa.selenium.remote has been deprecated and marked for removal
    2337:  assertThat(new ErrorCodes().toStatusCode(e)).isEqualTo(expected);
    2338:  ^
    2339:  java/test/org/openqa/selenium/remote/ErrorHandlerTest.java:483: warning: [removal] ErrorCodes in org.openqa.selenium.remote has been deprecated and marked for removal
    2340:  response.setState(new ErrorCodes().toState(status));
    2341:  ^
    2342:  (00:41:29) �[32mINFO: �[0mFrom Building java/test/org/openqa/selenium/remote/RemotableByTest.jar (1 source file) and running annotation processors (AutoServiceProcessor):
    2343:  java/test/org/openqa/selenium/remote/RemotableByTest.java:23: warning: [removal] ErrorCodes in org.openqa.selenium.remote has been deprecated and marked for removal
    2344:  import static org.openqa.selenium.remote.ErrorCodes.SUCCESS_STRING;
    2345:  ^
    2346:  java/test/org/openqa/selenium/remote/RemotableByTest.java:23: warning: [removal] ErrorCodes in org.openqa.selenium.remote has been deprecated and marked for removal
    2347:  import static org.openqa.selenium.remote.ErrorCodes.SUCCESS_STRING;
    2348:  ^
    2349:  java/test/org/openqa/selenium/remote/RemotableByTest.java:23: warning: [removal] ErrorCodes in org.openqa.selenium.remote has been deprecated and marked for removal
    2350:  import static org.openqa.selenium.remote.ErrorCodes.SUCCESS_STRING;
    2351:  ^
    2352:  java/test/org/openqa/selenium/remote/RemotableByTest.java:45: warning: [removal] ErrorCodes in org.openqa.selenium.remote has been deprecated and marked for removal
    2353:  private final ErrorCodes errorCodes = new ErrorCodes();
    2354:  ^
    2355:  java/test/org/openqa/selenium/remote/RemotableByTest.java:45: warning: [removal] ErrorCodes in org.openqa.selenium.remote has been deprecated and marked for removal
    2356:  private final ErrorCodes errorCodes = new ErrorCodes();
    2357:  ^
    2358:  java/test/org/openqa/selenium/remote/RemotableByTest.java:45: warning: [removal] ErrorCodes in org.openqa.selenium.remote has been deprecated and marked for removal
    2359:  private final ErrorCodes errorCodes = new ErrorCodes();
    2360:  ^
    2361:  java/test/org/openqa/selenium/remote/RemotableByTest.java:45: warning: [removal] ErrorCodes in org.openqa.selenium.remote has been deprecated and marked for removal
    2362:  private final ErrorCodes errorCodes = new ErrorCodes();
    2363:  ^
    ...
    
    2427:  �[32m[14,233 / 15,103]�[0m 1133 / 2174 tests;�[0m Testing //javascript/selenium-webdriver:eslint-test; 82s remote, remote-cache ... (46 actions, 2 running)
    2428:  (00:42:12) �[32mAnalyzing:�[0m 2192 targets (1653 packages loaded, 63891 targets configured)
    2429:  �[32m[14,501 / 15,255]�[0m 1288 / 2174 tests;�[0m Testing //javascript/selenium-webdriver:eslint-test; 87s remote, remote-cache ... (45 actions, 2 running)
    2430:  (00:42:17) �[32mAnalyzing:�[0m 2192 targets (1653 packages loaded, 63891 targets configured)
    2431:  �[32m[14,791 / 15,373]�[0m 1479 / 2174 tests;�[0m Testing //javascript/selenium-webdriver:eslint-test; 92s remote, remote-cache ... (48 actions, 3 running)
    2432:  (00:42:18) �[31m�[1mFAIL: �[0m//java/test/org/openqa/selenium/bidi/input:DefaultKeyboardTest-chrome-remote (see /home/runner/.bazel/execroot/_main/bazel-out/k8-fastbuild/testlogs/java/test/org/openqa/selenium/bidi/input/DefaultKeyboardTest-chrome-remote/test_attempts/attempt_1.log)
    2433:  (00:42:21) �[31m�[1mFAIL: �[0m//rb/spec/integration/selenium/webdriver/firefox:driver-firefox-beta (see /home/runner/.bazel/execroot/_main/bazel-out/k8-fastbuild/testlogs/rb/spec/integration/selenium/webdriver/firefox/driver-firefox-beta/test_attempts/attempt_1.log)
    2434:  (00:42:22) �[32mAnalyzing:�[0m 2192 targets (1653 packages loaded, 63891 targets configured)
    2435:  �[32m[15,032 / 15,408]�[0m 1688 / 2174 tests;�[0m Testing //javascript/selenium-webdriver:eslint-test; 97s remote, remote-cache ... (50 actions, 3 running)
    2436:  (00:42:24) �[32mINFO: �[0mAnalyzed 2192 targets (1654 packages loaded, 63963 targets configured).
    2437:  (00:42:28) �[32m[15,283 / 15,564]�[0m 1801 / 2192 tests;�[0m Testing //javascript/selenium-webdriver:eslint-test; 102s remote, remote-cache ... (48 actions, 3 running)
    2438:  (00:42:33) �[32m[15,502 / 15,626]�[0m 1960 / 2192 tests;�[0m Testing //javascript/selenium-webdriver:eslint-test; 107s remote, remote-cache ... (50 actions, 3 running)
    2439:  (00:42:42) �[32m[15,649 / 15,656]�[0m 2074 / 2192 tests;�[0m Testing //javascript/selenium-webdriver:eslint-test; 116s remote, remote-cache ... (6 actions, 3 running)
    2440:  (00:42:47) �[32m[15,649 / 15,656]�[0m 2074 / 2192 tests;�[0m Testing //javascript/selenium-webdriver:eslint-test; 121s remote, remote-cache ... (6 actions, 3 running)
    2441:  (00:42:47) �[31m�[1mFAIL: �[0m//java/test/org/openqa/selenium/bidi/input:DefaultKeyboardTest-chrome-remote (see /home/runner/.bazel/execroot/_main/bazel-out/k8-fastbuild/testlogs/java/test/org/openqa/selenium/bidi/input/DefaultKeyboardTest-chrome-remote/test.log)
    2442:  �[31m�[1mFAILED: �[0m//java/test/org/openqa/selenium/bidi/input:DefaultKeyboardTest-chrome-remote (Summary)
    2443:  /home/runner/.bazel/execroot/_main/bazel-out/k8-fastbuild/testlogs/java/test/org/openqa/selenium/bidi/input/DefaultKeyboardTest-chrome-remote/test.log
    ...
    
    2503:  Caps: Capabilities {acceptInsecureCerts: false, browserName: chrome, browserVersion: 135.0.7049.42, chrome: {chromedriverVersion: 135.0.7049.42 (0f351bbd2617..., userDataDir: /tmp/.org.chromium.Chromium...}, fedcm:accounts: true, goog:chromeOptions: {debuggerAddress: localhost:35427}, networkConnectionEnabled: false, pageLoadStrategy: normal, platformName: linux, proxy: Proxy(), se:cdp: ws://127.0.0.1:26398/sessio..., se:cdpVersion: 135.0.7049.42, se:gridWebSocketUrl: ws://localhost:11082/sessio..., setWindowRect: true, strictFileInteractability: false, timeouts: {implicit: 0, pageLoad: 300000, script: 30000}, unhandledPromptBehavior: ignore, webSocketUrl: ws://127.0.0.1:26398/sessio..., webauthn:extension:credBlob: true, webauthn:extension:largeBlob: true, webauthn:extension:minPinLength: true, webauthn:extension:prf: true, webauthn:virtualAuthenticators: true}
    2504:  00:42:34.587 INFO [ProxyNodeWebsockets.createWsEndPoint] - Establishing connection to ws://localhost:35427/devtools/browser/f96f7ebd-883c-4940-9628-b6e0c3d76204
    2505:  00:42:34.776 INFO [ProxyNodeWebsockets.createWsEndPoint] - Establishing connection to ws://localhost:11082/session/deb3a04218ec998e12b535ad213a9917
    2506:  Failures: 1
    2507:  1) testSelectionSelectByWord() (org.openqa.selenium.bidi.input.DefaultKeyboardTest)
    2508:  java.lang.Exception: org.openqa.selenium.bidi.input.DefaultKeyboardTest.testSelectionSelectByWord is marked as not yet implemented with CHROME but already works!
    2509:  at org.openqa.selenium.testing.SeleniumExtension.afterEach(SeleniumExtension.java:145)
    2510:  at java.base/java.util.ArrayList.forEach(ArrayList.java:1511)
    2511:  at java.base/java.util.ArrayList.forEach(ArrayList.java:1511)
    2512:  00:42:46.764 INFO [LocalNode.stopTimedOutSession] - Session id deb3a04218ec998e12b535ad213a9917 is stopping on demand...
    2513:  00:42:46.765 INFO [LocalSessionMap.remove] - Deleted session from local Session Map, Id: deb3a04218ec998e12b535ad213a9917
    2514:  00:42:46.768 INFO [GridModel.release] - Releasing slot for session id deb3a04218ec998e12b535ad213a9917
    2515:  00:42:46.769 INFO [SessionSlot.stop] - Stopping session deb3a04218ec998e12b535ad213a9917
    2516:  Execution result: https://gypsum.cluster.engflow.com/actions/executions/ChDdXf9TGstao4HD_M2EWgmNEgdkZWZhdWx0GiUKIME5mI4bXJlOQCuy3sRSDBGUvfrQE76xHobSNEJIJBa0ELwD
    2517:  ================================================================================
    2518:  (00:42:52) �[32m[15,650 / 15,656]�[0m 2075 / 2192 tests, �[31m�[1m1 failed�[0m;�[0m Testing //javascript/selenium-webdriver:eslint-test; 126s remote, remote-cache ... (5 actions, 2 running)
    2519:  (00:42:59) �[32m[15,650 / 15,656]�[0m 2075 / 2192 tests, �[31m�[1m1 failed�[0m;�[0m Testing //javascript/selenium-webdriver:eslint-test; 133s remote, remote-cache ... (5 actions, 2 running)
    2520:  (00:43:07) �[32m[15,651 / 15,656]�[0m 2075 / 2192 tests, �[31m�[1m1 failed�[0m;�[0m Testing //javascript/selenium-webdriver:eslint-test; 141s remote, remote-cache ... (5 actions, 2 running)
    2521:  (00:43:12) �[32m[15,652 / 15,656]�[0m 2076 / 2192 tests, �[31m�[1m1 failed�[0m;�[0m Testing //rb/spec/integration/selenium/webdriver/firefox:driver-firefox-beta; 122s remote, remote-cache ... (4 actions, 2 running)
    2522:  (00:43:22) �[32m[15,652 / 15,656]�[0m 2076 / 2192 tests, �[31m�[1m1 failed�[0m;�[0m Testing //rb/spec/integration/selenium/webdriver/firefox:driver-firefox-beta; 132s remote, remote-cache ... (4 actions, 3 running)
    2523:  (00:43:27) �[32m[15,652 / 15,656]�[0m 2076 / 2192 tests, �[31m�[1m1 failed�[0m;�[0m Testing //rb/spec/integration/selenium/webdriver/firefox:driver-firefox-beta; 137s remote, remote-cache ... (4 actions, 3 running)
    2524:  (00:43:38) �[31m�[1mFAIL: �[0m//java/test/org/openqa/selenium/bidi/input:DefaultKeyboardTest-chrome (see /home/runner/.bazel/execroot/_main/bazel-out/k8-fastbuild/testlogs/java/test/org/openqa/selenium/bidi/input/DefaultKeyboardTest-chrome/test_attempts/attempt_1.log)
    2525:  (00:43:38) �[32m[15,652 / 15,656]�[0m 2076 / 2192 tests, �[31m�[1m1 failed�[0m;�[0m Testing //rb/spec/integration/selenium/webdriver/firefox:driver-firefox-beta; 148s remote, remote-cache ... (4 actions, 3 running)
    2526:  (00:43:47) �[32m[15,652 / 15,656]�[0m 2076 / 2192 tests, �[31m�[1m1 failed�[0m;�[0m Testing //rb/spec/integration/selenium/webdriver/firefox:driver-firefox-beta; 157s remote, remote-cache ... (4 actions, 3 running)
    2527:  (00:43:52) �[32m[15,653 / 15,769]�[0m 2076 / 2192 tests, �[31m�[1m1 failed�[0m;�[0m Testing //rb/spec/integration/selenium/webdriver/firefox:driver-firefox-beta; 162s remote, remote-cache ... (50 actions, 3 running)
    2528:  (00:43:58) �[32m[15,653 / 15,769]�[0m 2076 / 2192 tests, �[31m�[1m1 failed�[0m;�[0m Testing //rb/spec/integration/selenium/webdriver/firefox:driver-firefox-beta; 168s remote, remote-cache ... (50 actions, 4 running)
    2529:  (00:44:07) �[32m[15,654 / 15,769]�[0m 2077 / 2192 tests, �[31m�[1m1 failed�[0m;�[0m Testing //rb/spec/integration/selenium/webdriver/firefox:driver-firefox-beta; 177s remote, remote-cache ... (50 actions, 5 running)
    2530:  (00:44:12) �[32m[15,654 / 15,769]�[0m 2077 / 2192 tests, �[31m�[1m1 failed�[0m;�[0m Testing //rb/spec/integration/selenium/webdriver/firefox:driver-firefox-beta; 182s remote, remote-cache ... (50 actions, 6 running)
    2531:  (00:44:21) �[32m[15,654 / 15,769]�[0m 2077 / 2192 tests, �[31m�[1m1 failed�[0m;�[0m Testing //rb/spec/integration/selenium/webdriver/firefox:driver-firefox-beta; 191s remote, remote-cache ... (50 actions, 9 running)
    2532:  (00:44:26) �[32m[15,655 / 15,769]�[0m 2078 / 2192 tests, �[31m�[1m1 failed�[0m;�[0m Testing //rb/spec/integration/selenium/webdriver/firefox:driver-firefox-beta; 197s remote, remote-cache ... (50 actions, 13 running)
    2533:  (00:44:31) �[32m[15,656 / 15,769]�[0m 2079 / 2192 tests, �[31m�[1m1 failed�[0m;�[0m Testing //rb/spec/integration/selenium/webdriver/firefox:driver-firefox-beta; 202s remote, remote-cache ... (50 actions, 15 running)
    2534:  (00:44:37) �[32m[15,656 / 15,769]�[0m 2079 / 2192 tests, �[31m�[1m1 failed�[0m;�[0m Testing //rb/spec/integration/selenium/webdriver/firefox:driver-firefox-beta; 207s remote, remote-cache ... (50 actions, 18 running)
    2535:  (00:44:41) �[31m�[1mFAIL: �[0m//rb/spec/integration/selenium/webdriver/firefox:driver-firefox-beta (see /home/runner/.bazel/execroot/_main/bazel-out/k8-fastbuild/testlogs/rb/spec/integration/selenium/webdriver/firefox/driver-firefox-beta/test.log)
    2536:  ==================== Test output for //rb/spec/integration/selenium/webdriver/firefox:driver-firefox-beta:
    2537:  �[31m�[1mFAILED: �[0m//rb/spec/integration/selenium/webdriver/firefox:driver-firefox-beta (Summary)
    2538:  /home/runner/.bazel/execroot/_main/bazel-out/k8-fastbuild/testlogs/rb/spec/integration/selenium/webdriver/firefox/driver-firefox-beta/test.log
    2539:  /home/runner/.bazel/execroot/_main/bazel-out/k8-fastbuild/testlogs/rb/spec/integration/selenium/webdriver/firefox/driver-firefox-beta/test_attempts/attempt_1.log
    2540:  (00:44:41) �[32mINFO: �[0mFrom Testing //rb/spec/integration/selenium/webdriver/firefox:driver-firefox-beta:
    2541:  Running Ruby specs:
    2542:  browser: firefox
    2543:  driver: firefox
    2544:  version: 138.0
    2545:  platform: linux
    2546:  ci: github
    2547:  rbe: true
    2548:  ruby: jruby 9.4.12.0 (3.1.4) 2025-02-11 f4ab75096a OpenJDK 64-Bit Server VM 17.0.11+9-LTS on 17.0.11+9-LTS [x86_64-linux]
    2549:  Selenium::WebDriver::Firefox::Driver
    2550:  can get and set context (FAILED - 1)
    2551:  #print_options
    2552:  returns base64 for print command
    2553:  prints with orientation
    2554:  prints with valid params
    2555:  prints full page
    2556:  #install_addon
    2557:  install and uninstall xpi file
    2558:  install and uninstall signed zip file
    2559:  install and uninstall unsigned zip file
    2560:  install and uninstall signed directory
    2561:  install and uninstall unsigned directory
    2562:  Failures:
    2563:  1) Selenium::WebDriver::Firefox::Driver can get and set context
    2564:  Failure/Error: driver.context = 'chrome'
    2565:  Selenium::WebDriver::Error::UnsupportedOperationError:
    2566:  System access is required to switch to chrome scope. Start Firefox with "-remote-allow-system-access" to enable it.
    2567:  # ./rb/lib/selenium/webdriver/remote/response.rb:63:in `add_cause'
    2568:  # ./rb/lib/selenium/webdriver/remote/response.rb:41:in `error'
    2569:  # ./rb/lib/selenium/webdriver/remote/response.rb:52:in `assert_ok'
    2570:  # ./rb/lib/selenium/webdriver/remote/response.rb:34:in `initialize'
    2571:  # ./rb/lib/selenium/webdriver/remote/http/common.rb:103:in `create_response'
    2572:  # ./rb/lib/selenium/webdriver/remote/http/default.rb:103:in `request'
    2573:  # ./rb/lib/selenium/webdriver/remote/http/common.rb:68:in `call'
    2574:  # ./rb/lib/selenium/webdriver/remote/bridge.rb:625:in `execute'
    2575:  # ./rb/lib/selenium/webdriver/firefox/features.rb:61:in `context='
    2576:  # ./rb/lib/selenium/webdriver/common/driver_extensions/has_context.rb:33:in `context='
    2577:  # ./rb/spec/integration/selenium/webdriver/firefox/driver_spec.rb:149:in `block in Firefox'
    2578:  # ./rb/spec/integration/selenium/webdriver/spec_support/test_environment.rb:178:in `create_driver!'
    2579:  # ./rb/spec/integration/selenium/webdriver/spec_support/test_environment.rb:61:in `driver_instance'
    2580:  # ./rb/spec/integration/selenium/webdriver/spec_support/test_environment.rb:70:in `reset_driver!'
    2581:  # ./rb/spec/integration/selenium/webdriver/spec_support/helpers.rb:29:in `reset_driver!'
    2582:  # ./rb/spec/integration/selenium/webdriver/firefox/driver_spec.rb:146:in `block in Firefox'
    2583:  # ------------------
    2584:  # --- Caused by: ---
    2585:  # Selenium::WebDriver::Error::WebDriverError:
    2586:  #   RemoteError@chrome://remote/content/shared/RemoteError.sys.mjs:8:8
    2587:  WebDriverError@chrome://remote/content/shared/webdriver/Errors.sys.mjs:199:5
    2588:  UnsupportedOperationError@chrome://remote/content/shared/webdriver/Errors.sys.mjs:927:5
    2589:  set@chrome://remote/content/marionette/driver.sys.mjs:338:13
    2590:  GeckoDriver.prototype.setContext@chrome://remote/content/marionette/driver.sys.mjs:811:3
    2591:  despatch@chrome://remote/content/marionette/server.sys.mjs:318:40
    2592:  execute@chrome://remote/content/marionette/server.sys.mjs:289:16
    2593:  onPacket/<@chrome://remote/content/marionette/server.sys.mjs:262:20
    2594:  onPacket@chrome://remote/content/marionette/server.sys.mjs:263:9
    2595:  _onJSONObjectReady/<@chrome://remote/content/marionette/transport.sys.mjs:494:20
    2596:  Finished in 35.78 seconds (files took 2.53 seconds to load)
    2597:  10 examples, 1 failure
    2598:  Failed examples:
    2599:  rspec ./rb/spec/integration/selenium/webdriver/firefox/driver_spec.rb:145 # Selenium::WebDriver::Firefox::Driver can get and set context
    2600:  Execution result: https://gypsum.cluster.engflow.com/actions/executions/ChBeSmU5iHFV9rPEE0Bmqxu1EgdkZWZhdWx0GiUKIAgUnyEPuhCJrZhKbbi3u24y5OvNy4zWNFKc0E3oG9JJELwD
    2601:  ================================================================================
    2602:  ==================== Test output for //rb/spec/integration/selenium/webdriver/firefox:driver-firefox-beta:
    2603:  Running Ruby specs:
    2604:  browser: firefox
    2605:  driver: firefox
    2606:  version: 138.0
    2607:  platform: linux
    2608:  ci: github
    2609:  rbe: true
    2610:  ruby: jruby 9.4.12.0 (3.1.4) 2025-02-11 f4ab75096a OpenJDK 64-Bit Server VM 17.0.11+9-LTS on 17.0.11+9-LTS [x86_64-linux]
    2611:  Selenium::WebDriver::Firefox::Driver
    2612:  can get and set context (FAILED - 1)
    2613:  #print_options
    2614:  returns base64 for print command
    2615:  prints with orientation
    2616:  prints with valid params
    2617:  prints full page
    2618:  #install_addon
    2619:  install and uninstall xpi file
    2620:  install and uninstall signed zip file
    2621:  install and uninstall unsigned zip file
    2622:  install and uninstall signed directory
    2623:  install and uninstall unsigned directory
    2624:  Failures:
    2625:  1) Selenium::WebDriver::Firefox::Driver can get and set context
    2626:  Failure/Error: driver.context = 'chrome'
    2627:  Selenium::WebDriver::Error::UnsupportedOperationError:
    2628:  System access is required to switch to chrome scope. Start Firefox with "-remote-allow-system-access" to enable it.
    2629:  # ./rb/lib/selenium/webdriver/remote/response.rb:63:in `add_cause'
    2630:  # ./rb/lib/selenium/webdriver/remote/response.rb:41:in `error'
    2631:  # ./rb/lib/selenium/webdriver/remote/response.rb:52:in `assert_ok'
    2632:  # ./rb/lib/selenium/webdriver/remote/response.rb:34:in `initialize'
    2633:  # ./rb/lib/selenium/webdriver/remote/http/common.rb:103:in `create_response'
    2634:  # ./rb/lib/selenium/webdriver/remote/http/default.rb:103:in `request'
    2635:  # ./rb/lib/selenium/webdriver/remote/http/common.rb:68:in `call'
    2636:  # ./rb/lib/selenium/webdriver/remote/bridge.rb:625:in `execute'
    2637:  # ./rb/lib/selenium/webdriver/firefox/features.rb:61:in `context='
    2638:  # ./rb/lib/selenium/webdriver/common/driver_extensions/has_context.rb:33:in `context='
    2639:  # ./rb/spec/integration/selenium/webdriver/firefox/driver_spec.rb:149:in `block in Firefox'
    2640:  # ./rb/spec/integration/selenium/webdriver/spec_support/test_environment.rb:178:in `create_driver!'
    2641:  # ./rb/spec/integration/selenium/webdriver/spec_support/test_environment.rb:61:in `driver_instance'
    2642:  # ./rb/spec/integration/selenium/webdriver/spec_support/test_environment.rb:70:in `reset_driver!'
    2643:  # ./rb/spec/integration/selenium/webdriver/spec_support/helpers.rb:29:in `reset_driver!'
    2644:  # ./rb/spec/integration/selenium/webdriver/firefox/driver_spec.rb:146:in `block in Firefox'
    2645:  # ------------------
    2646:  # --- Caused by: ---
    2647:  # Selenium::WebDriver::Error::WebDriverError:
    2648:  #   RemoteError@chrome://remote/content/shared/RemoteError.sys.mjs:8:8
    2649:  WebDriverError@chrome://remote/content/shared/webdriver/Errors.sys.mjs:199:5
    2650:  UnsupportedOperationError@chrome://remote/content/shared/webdriver/Errors.sys.mjs:927:5
    2651:  set@chrome://remote/content/marionette/driver.sys.mjs:338:13
    2652:  GeckoDriver.prototype.setContext@chrome://remote/content/marionette/driver.sys.mjs:811:3
    2653:  despatch@chrome://remote/content/marionette/server.sys.mjs:318:40
    2654:  execute@chrome://remote/content/marionette/server.sys.mjs:289:16
    2655:  onPacket/<@chrome://remote/content/marionette/server.sys.mjs:262:20
    2656:  onPacket@chrome://remote/content/marionette/server.sys.mjs:263:9
    2657:  _onJSONObjectReady/<@chrome://remote/content/marionette/transport.sys.mjs:494:20
    2658:  Finished in 34.13 seconds (files took 2.63 seconds to load)
    2659:  10 examples, 1 failure
    2660:  Failed examples:
    2661:  rspec ./rb/spec/integration/selenium/webdriver/firefox/driver_spec.rb:145 # Selenium::WebDriver::Firefox::Driver can get and set context
    2662:  Execution result: https://gypsum.cluster.engflow.com/actions/executions/ChBeSmU5iHFV9rPEE0Bmqxu1EgdkZWZhdWx0GiUKIAgUnyEPuhCJrZhKbbi3u24y5OvNy4zWNFKc0E3oG9JJELwD
    2663:  ================================================================================
    2664:  (00:44:42) �[32m[15,660 / 15,769]�[0m 2083 / 2192 tests, �[31m�[1m2 failed�[0m;�[0m Testing //java/test/org/openqa/selenium/bidi/input:DefaultKeyboardTest-chrome; 90s remote, remote-cache ... (50 actions, 21 running)
    2665:  (00:44:42) �[31m�[1mFAIL: �[0m//java/test/org/openqa/selenium/bidi/input:DefaultKeyboardTest-chrome (see /home/runner/.bazel/execroot/_main/bazel-out/k8-fastbuild/testlogs/java/test/org/openqa/selenium/bidi/input/DefaultKeyboardTest-chrome/test.log)
    2666:  �[31m�[1mFAILED: �[0m//java/test/org/openqa/selenium/bidi/input:DefaultKeyboardTest-chrome (Summary)
    2667:  /home/runner/.bazel/execroot/_main/bazel-out/k8-fastbuild/testlogs/java/test/org/openqa/selenium/bidi/input/DefaultKeyboardTest-chrome/test.log
    ...
    
    2673:  java.lang.Exception: org.openqa.selenium.bidi.input.DefaultKeyboardTest.testSelectionSelectByWord is marked as not yet implemented with CHROME but already works!
    2674:  at org.openqa.selenium.testing.SeleniumExtension.afterEach(SeleniumExtension.java:145)
    2675:  at java.base/java.util.ArrayList.forEach(ArrayList.java:1511)
    2676:  at java.base/java.util.ArrayList.forEach(ArrayList.java:1511)
    2677:  Execution result: https://gypsum.cluster.engflow.com/actions/executions/ChD3RGHOnMZV2KtMin_CW4XhEgdkZWZhdWx0GiUKIFE9fKB998gBP4jJ5wq5ODgIP_KjTnHD-u0VIMes6BDmELwD
    2678:  ================================================================================
    2679:  ==================== Test output for //java/test/org/openqa/selenium/bidi/input:DefaultKeyboardTest-chrome:
    2680:  Failures: 1
    2681:  1) testSelectionSelectByWord() (org.openqa.selenium.bidi.input.DefaultKeyboardTest)
    2682:  java.lang.Exception: org.openqa.selenium.bidi.input.DefaultKeyboardTest.testSelectionSelectByWord is marked as not yet implemented with CHROME but already works!
    2683:  at org.openqa.selenium.testing.SeleniumExtension.afterEach(SeleniumExtension.java:145)
    2684:  at java.base/java.util.ArrayList.forEach(ArrayList.java:1511)
    2685:  at java.base/java.util.ArrayList.forEach(ArrayList.java:1511)
    2686:  Execution result: https://gypsum.cluster.engflow.com/actions/executions/ChD3RGHOnMZV2KtMin_CW4XhEgdkZWZhdWx0GiUKIFE9fKB998gBP4jJ5wq5ODgIP_KjTnHD-u0VIMes6BDmELwD
    2687:  ================================================================================
    2688:  (00:44:47) �[32m[15,663 / 15,769]�[0m 2086 / 2192 tests, �[31m�[1m3 failed�[0m;�[0m Testing //rb/spec/integration/selenium/webdriver/firefox:driver-firefox-beta-remote; 92s remote, remote-cache ... (50 actions, 24 running)
    2689:  (00:44:52) �[32m[15,663 / 15,769]�[0m 2086 / 2192 tests, �[31m�[1m3 failed�[0m;�[0m Testing //rb/spec/integration/selenium/webdriver/firefox:driver-firefox-beta-remote; 97s remote, remote-cache ... (50 actions, 27 running)
    2690:  (00:44:57) �[32m[15,663 / 15,769]�[0m 2086 / 2192 tests, �[31m�[1m3 failed�[0m;�[0m Testing //rb/spec/integration/selenium/webdriver/firefox:driver-firefox-beta-remote; 103s remote, remote-cache ... (50 actions, 32 running)
    2691:  (00:45:02) �[32m[15,664 / 15,769]�[0m 2087 / 2192 tests, �[31m�[1m3 failed�[0m;�[0m Testing //rb/spec/integration/selenium/webdriver/firefox:driver-firefox-beta-remote; 108s remote, remote-cache ... (50 actions, 33 running)
    2692:  (00:45:08) �[32m[15,668 / 15,769]�[0m 2091 / 2192 tests, �[31m�[1m3 failed�[0m;�[0m Testing //rb/spec/integration/selenium/webdriver/firefox:driver-firefox-beta-remote; 113s remote, remote-cache ... (50 actions, 35 running)
    2693:  (00:45:13) �[32m[15,668 / 15,769]�[0m 2091 / 2192 tests, �[31m�[1m3 failed�[0m;�[0m Testing //rb/spec/integration/selenium/webdriver/firefox:driver-firefox-beta-remote; 118s remote, remote-cache ... (50 actions, 38 running)
    2694:  (00:45:15) �[31m�[1mFAIL: �[0m//rb/spec/integration/selenium/webdriver/firefox:driver-firefox-beta-remote (see /home/runner/.bazel/execroot/_main/bazel-out/k8-fastbuild/testlogs/rb/spec/integration/selenium/webdriver/firefox/driver-firefox-beta-remote/test_attempts/attempt_1.log)
    2695:  (00:45:18) �[32m[15,676 / 15,769]�[0m 2100 / 2192 tests, �[31m�[1m3 failed�[0m;�[0m Testing //rb/spec/integration/selenium/webdriver/firefox:driver-firefox-beta-remote; 123s remote, remote-cache ... (50 actions, 37 running)
    2696:  (00:45:24) �[32m[15,677 / 15,769]�[0m 2100 / 2192 tests, �[31m�[1m3 failed�[0m;�[0m Testing //rb/spec/integration/selenium/webdriver/firefox:driver-firefox-beta-remote; 130s remote, remote-cache ... (50 actions, 40 running)
    2697:  (00:45:29) �[32m[15,688 / 15,769]�[0m 2111 / 2192 tests, �[31m�[1m3 failed�[0m;�[0m Testing //rb/spec/integration/selenium/webdriver/firefox:driver-firefox-beta-remote; 135s remote, remote-cache ... (50 actions, 32 running)
    2698:  (00:45:34) �[32m[15,699 / 15,769]�[0m 2122 / 2192 tests, �[31m�[1m3 failed�[0m;�[0m Testing //rb/spec/integration/selenium/webdriver/firefox:driver-firefox-beta-remote; 140s remote, remote-cache ... (50 actions, 27 running)
    2699:  (00:45:39) �[32m[15,707 / 15,769]�[0m 2130 / 2192 tests, �[31m�[1m3 failed�[0m;�[0m Testing //rb/spec/integration/selenium/webdriver/firefox:driver-firefox-beta-remote; 145s remote, remote-cache ... (50 actions, 23 running)
    2700:  (00:45:45) �[32m[15,711 / 15,769]�[0m 2134 / 2192 tests, �[31m�[1m3 failed�[0m;�[0m Testing //rb/spec/integration/selenium/webdriver/firefox:driver-firefox-beta-remote; 151s remote, remote-cache ... (50 actions, 23 running)
    2701:  (00:45:50) �[32m[15,716 / 15,769]�[0m 2139 / 2192 tests, �[31m�[1m3 failed�[0m;�[0m Testing //rb/spec/integration/selenium/webdriver/firefox:driver-firefox-beta-remote; 156s remote, remote-cache ... (50 actions, 25 running)
    2702:  (00:45:55) �[32m[15,721 / 15,769]�[0m 2144 / 2192 tests, �[31m�[1m3 failed�[0m;�[0m Testing //rb/spec/integration/selenium/webdriver/firefox:driver-firefox-beta-remote; 161s remote, remote-cache ... (48 actions, 25 running)
    2703:  (00:46:01) �[32m[15,723 / 15,769]�[0m 2146 / 2192 tests, �[31m�[1m3 failed�[0m;�[0m Testing //rb/spec/integration/selenium/webdriver/firefox:driver-firefox-beta-remote; 166s remote, remote-cache ... (46 actions, 30 running)
    2704:  (00:46:06) �[32m[15,725 / 15,769]�[0m 2148 / 2192 tests, �[31m�[1m3 failed�[0m;�[0m Testing //rb/spec/integration/selenium/webdriver/firefox:driver-firefox-beta-remote; 171s remote, remote-cache ... (44 actions, 35 running)
    2705:  (00:46:11) �[32m[15,739 / 15,769]�[0m 2162 / 2192 tests, �[31m�[1m3 failed�[0m;�[0m Testing //rb/spec/integration/selenium/webdriver/firefox:driver-firefox-beta-remote; 176s remote, remote-cache ... (30 actions running)
    2706:  (00:46:17) �[32m[15,749 / 15,769]�[0m 2172 / 2192 tests, �[31m�[1m3 failed�[0m;�[0m Testing //rb/spec/integration/selenium/webdriver/firefox:driver-firefox-beta-remote; 182s remote, remote-cache ... (20 actions running)
    2707:  (00:46:20) �[31m�[1mFAIL: �[0m//rb/spec/integration/selenium/webdriver/firefox:driver-firefox-beta-remote (see /home/runner/.bazel/execroot/_main/bazel-out/k8-fastbuild/testlogs/rb/spec/integration/selenium/webdriver/firefox/driver-firefox-beta-remote/test.log)
    2708:  �[31m�[1mFAILED: �[0m//rb/spec/integration/selenium/webdriver/firefox:driver-firefox-beta-remote (Summary)
    2709:  /home/runner/.bazel/execroot/_main/bazel-out/k8-fastbuild/testlogs/rb/spec/integration/selenium/webdriver/firefox/driver-firefox-beta-remote/test.log
    2710:  ==================== Test output for //rb/spec/integration/selenium/webdriver/firefox:driver-firefox-beta-remote:
    2711:  /home/runner/.bazel/execroot/_main/bazel-out/k8-fastbuild/testlogs/rb/spec/integration/selenium/webdriver/firefox/driver-firefox-beta-remote/test_attempts/attempt_1.log
    2712:  (00:46:20) �[32mINFO: �[0mFrom Testing //rb/spec/integration/selenium/webdriver/firefox:driver-firefox-beta-remote:
    2713:  2025-04-03 00:43:49 INFO Selenium Server Location: /mnt/engflow/worker/work/1/exec/bazel-out/k8-fastbuild/bin/rb/spec/integration/selenium/webdriver/firefox/driver-firefox-beta-remote.sh.runfiles/_main/java/src/org/openqa/selenium/grid/selenium_server_deploy.jar
    2714:  Running Ruby specs:
    2715:  browser: firefox
    2716:  driver: remote
    2717:  version: 138.0
    2718:  platform: linux
    2719:  ci: github
    2720:  rbe: true
    2721:  ruby: jruby 9.4.12.0 (3.1.4) 2025-02-11 f4ab75096a OpenJDK 64-Bit Server VM 17.0.11+9-LTS on 17.0.11+9-LTS [x86_64-linux]
    2722:  Selenium::WebDriver::Firefox::Driver
    2723:  can get and set context (FAILED - 1)
    2724:  #print_options
    2725:  returns base64 for print command
    2726:  prints with orientation
    2727:  prints with valid params
    2728:  prints full page
    2729:  #install_addon
    2730:  install and uninstall xpi file
    2731:  install and uninstall signed zip file
    2732:  install and uninstall unsigned zip file
    2733:  install and uninstall signed directory
    2734:  install and uninstall unsigned directory
    2735:  Failures:
    2736:  1) Selenium::WebDriver::Firefox::Driver can get and set context
    2737:  Failure/Error: driver.context = 'chrome'
    2738:  Selenium::WebDriver::Error::UnsupportedOperationError:
    2739:  System access is required to switch to chrome scope. Start Firefox with "-remote-allow-system-access" to enable it.
    2740:  # ./rb/lib/selenium/webdriver/remote/response.rb:63:in `add_cause'
    2741:  # ./rb/lib/selenium/webdriver/remote/response.rb:41:in `error'
    2742:  # ./rb/lib/selenium/webdriver/remote/response.rb:52:in `assert_ok'
    2743:  # ./rb/lib/selenium/webdriver/remote/response.rb:34:in `initialize'
    2744:  # ./rb/lib/selenium/webdriver/remote/http/common.rb:103:in `create_response'
    2745:  # ./rb/lib/selenium/webdriver/remote/http/default.rb:103:in `request'
    2746:  # ./rb/lib/selenium/webdriver/remote/http/common.rb:68:in `call'
    2747:  # ./rb/lib/selenium/webdriver/remote/bridge.rb:625:in `execute'
    2748:  # ./rb/lib/selenium/webdriver/firefox/featur...

    Copy link
    Member Author

    @harsha509 harsha509 left a comment

    Choose a reason for hiding this comment

    The reason will be displayed to describe this comment to others. Learn more.

    LGTM!

    Test failures are not related to the changes in this PR.

    @harsha509 harsha509 merged commit c7e096b into trunk Apr 3, 2025
    10 of 11 checks passed
    @harsha509 harsha509 deleted the ws_port branch April 3, 2025 01:06
    Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
    Labels
    Projects
    None yet
    Development

    Successfully merging this pull request may close these issues.

    [🐛 Bug]: Add argument for websocket-port
    2 participants