Skip to content

[grid] Ignored options when they are prefixed, safari specif as well#15574

Merged
VietND96 merged 3 commits intotrunkfrom
ignore-prefixed-options
Apr 8, 2025
Merged

[grid] Ignored options when they are prefixed, safari specif as well#15574
VietND96 merged 3 commits intotrunkfrom
ignore-prefixed-options

Conversation

@diemol
Copy link
Copy Markdown
Member

@diemol diemol commented Apr 4, 2025

User description

🔗 Related Issues

Fixes #15481
Fixes #14485

💥 What does this PR do?

This will ignore any prefixed options capability in the DefaultSlotMatcher. This was wrongly considered during the matching process, and it should not be. It needs to be passed along so the remote end deals with it.

🔧 Implementation Notes

This resolves the core problem of the linked issues. It is true that options should not be handled as they are.

💡 Additional Considerations

No.

🔄 Types of changes

  • Bug fix (backward compatible)

PR Type

Bug fix, Tests


Description

  • Added "safari:" to ignored extension capability prefixes in DefaultSlotMatcher.

  • Excluded "options" capabilities from matching in DefaultSlotMatcher.

  • Introduced a new test to verify "options" capabilities are ignored for matching.


Changes walkthrough 📝

Relevant files
Bug fix
DefaultSlotMatcher.java
Update DefaultSlotMatcher to ignore specific capabilities

java/src/org/openqa/selenium/grid/data/DefaultSlotMatcher.java

  • Added "safari:" to the list of ignored extension capability prefixes.
  • Excluded "options" capabilities from matching logic.
  • Updated comments to clarify handling of extension capabilities.
  • +4/-1     
    Tests
    DefaultSlotMatcherTest.java
    Add test for ignoring "options" capabilities in matching 

    java/test/org/openqa/selenium/grid/data/DefaultSlotMatcherTest.java

  • Added a new test to verify "options" capabilities are ignored for
    matching.
  • Ensured existing tests validate the updated matching logic.
  • +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 B-grid Everything grid and server related C-java Java Bindings labels Apr 4, 2025
    @qodo-code-review
    Copy link
    Copy Markdown
    Contributor

    PR Reviewer Guide 🔍

    Here are some key observations to aid the review process:

    🎫 Ticket compliance analysis ❌

    5678 - Not compliant

    Non-compliant requirements:

    • Fix "Error: ConnectFailure (Connection refused)" when instantiating ChromeDriver multiple times

    Requires further human verification:

    • Need to verify if the PR's changes to DefaultSlotMatcher address the ChromeDriver connection issues
    • Need to test with the specific environment mentioned (Ubuntu 16.04.4, Chrome 65.0.3325.181, ChromeDriver 2.35)

    1234 - Not compliant

    Non-compliant requirements:

    • Fix issue where Firefox 42.0 doesn't trigger JavaScript in link's href on click() in Selenium 2.48.0/2.48.2

    Requires further human verification:

    • Need to verify if the PR's changes to DefaultSlotMatcher address the Firefox JavaScript triggering issue

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

    Ticket Mismatch

    The PR description mentions fixing issues #15481 and #14485, but these don't match the tickets provided in the PR info. Need to verify if this PR actually addresses the provided tickets.

    private static final List<String> EXTENSION_CAPABILITIES_PREFIXES =
        Arrays.asList("goog:", "moz:", "ms:", "safari:", "se:");

    @qodo-code-review
    Copy link
    Copy Markdown
    Contributor

    qodo-code-review bot commented Apr 4, 2025

    PR Code Suggestions ✨

    Explore these optional code suggestions:

    CategorySuggestion                                                                                                                                    Impact
    Possible issue
    More precise options filtering

    The current implementation will filter out any capability name containing
    "options" anywhere in the string. This is too broad and might unintentionally
    exclude valid capabilities. Consider using a more precise check that
    specifically targets capability names ending with ":options".

    java/src/org/openqa/selenium/grid/data/DefaultSlotMatcher.java [162]

    -.filter(name -> !name.toLowerCase().contains("options"))
    +.filter(name -> !name.endsWith(":options"))
    • Apply this suggestion
    Suggestion importance[1-10]: 8

    __

    Why: The suggestion correctly identifies an overly broad filter that could unintentionally exclude valid capabilities. Using .endsWith(":options") instead of .toLowerCase().contains("options") is more precise and aligns better with the intended behavior of only filtering out extension capabilities that are specifically options.

    Medium
    • Update

    @qodo-code-review
    Copy link
    Copy Markdown
    Contributor

    qodo-code-review bot commented Apr 4, 2025

    CI Feedback 🧐

    (Feedback updated until commit a2057a8)

    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: grid_version_test::case_4

    Failure summary:

    The action failed because two tests in the Python test suite failed:

    1. The test grid_version_test::case_4 in the Rust integration tests failed with error code 65. The
    error message was "selenium-server release not available" when running the command
    "rust/selenium-manager" "--grid" "nightly" "--output" "json".

    2. Two tests in the Python FedCM test suite failed with timeout exceptions:
    -
    TestFedCM.test_trigger_and_verify_dialog_subtitle[chrome]
    -
    TestFedCM.test_trigger_and_verify_account_list[chrome]

    The Python test failures appear to be timing-related issues where the tests were waiting for
    elements that never appeared within the timeout period.

    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
    ...
    
    1965:  (19:53:34) �[32mINFO: �[0mFrom Compiling Rust bin integration_config_tests (2 files):
    1966:  �[0m�[1m�[33mwarning�[0m�[0m�[1m: variable does not need to be mutable�[0m
    1967:  �[0m  �[0m�[0m�[1m�[38;5;12m--> �[0m�[0mrust/tests/common.rs:31:9�[0m
    1968:  �[0m   �[0m�[0m�[1m�[38;5;12m|�[0m
    1969:  �[0m�[1m�[38;5;12m31�[0m�[0m �[0m�[0m�[1m�[38;5;12m|�[0m�[0m �[0m�[0m    let mut path = PathBuf::from(env!("CARGO_BIN_EXE_selenium-manager"));�[0m
    1970:  �[0m   �[0m�[0m�[1m�[38;5;12m|�[0m�[0m         �[0m�[0m�[1m�[38;5;12m----�[0m�[0m�[1m�[33m^^^^�[0m
    1971:  �[0m   �[0m�[0m�[1m�[38;5;12m|�[0m�[0m         �[0m�[0m�[1m�[38;5;12m|�[0m
    1972:  �[0m   �[0m�[0m�[1m�[38;5;12m|�[0m�[0m         �[0m�[0m�[1m�[38;5;12mhelp: remove this `mut`�[0m
    1973:  �[0m   �[0m�[0m�[1m�[38;5;12m|�[0m
    1974:  �[0m   �[0m�[0m�[1m�[38;5;12m= �[0m�[0m�[1mnote�[0m�[0m: `#[warn(unused_mut)]` on by default�[0m
    1975:  �[0m�[1m�[33mwarning�[0m�[0m�[1m: 1 warning emitted�[0m
    1976:  (19:53:35) �[32mAnalyzing:�[0m 2264 targets (1652 packages loaded, 60639 targets configured)
    1977:  �[32m[1,572 / 1,573]�[0m 18 / 19 tests;�[0m Testing //rust/tests:integration_grid_tests; 0s remote, remote-cache
    1978:  (19:53:36) �[31m�[1mFAIL: �[0m//rust/tests:integration_grid_tests (see /home/runner/.bazel/execroot/_main/bazel-out/k8-fastbuild/testlogs/rust/tests/integration_grid_tests/test_attempts/attempt_1.log)
    1979:  (19:53:36) �[31m�[1mFAIL: �[0m//rust/tests:integration_grid_tests (see /home/runner/.bazel/execroot/_main/bazel-out/k8-fastbuild/testlogs/rust/tests/integration_grid_tests/test.log)
    1980:  �[31m�[1mFAILED: �[0m//rust/tests:integration_grid_tests (Summary)
    1981:  /home/runner/.bazel/execroot/_main/bazel-out/k8-fastbuild/testlogs/rust/tests/integration_grid_tests/test.log
    1982:  /home/runner/.bazel/execroot/_main/bazel-out/k8-fastbuild/testlogs/rust/tests/integration_grid_tests/test_attempts/attempt_1.log
    1983:  (19:53:36) �[32mINFO: �[0mFrom Testing //rust/tests:integration_grid_tests:
    1984:  ==================== Test output for //rust/tests:integration_grid_tests:
    1985:  running 7 tests
    1986:  test grid_error_test::case_1 ... ok
    1987:  test grid_error_test::case_2 ... ok
    1988:  test grid_latest_test ... ok
    1989:  test grid_version_test::case_1 ... ok
    1990:  test grid_version_test::case_2 ... ok
    1991:  test grid_version_test::case_3 ... ok
    1992:  test grid_version_test::case_4 ... FAILED
    1993:  failures:
    1994:  ---- grid_version_test::case_4 stdout ----
    1995:  thread 'grid_version_test::case_4' panicked at /rustc/90b35a6239c3d8bdabc530a6a0816f7ff89a0aaf/library/core/src/ops/function.rs:250:5:
    1996:  Unexpected failure.
    1997:  code=65
    1998:  stderr=```""```
    1999:  command=`"rust/selenium-manager" "--grid" "nightly" "--output" "json"`
    2000:  code=65
    2001:  stdout=```
    2002:  {
    2003:  \"logs\": [
    2004:  {
    2005:  \"level\": \"ERROR\",
    2006:  \"timestamp\": 1743969215,
    2007:  \"message\": \"selenium-server release not available\"
    2008:  }
    2009:  ],
    2010:  \"result\": {
    2011:  \"code\": 65,
    2012:  \"message\": \"selenium-server release not available\",
    2013:  \"driver_path\": \"\",
    2014:  \"browser_path\": \"\"
    2015:  }
    2016:  }```
    2017:  stderr=""
    2018:  note: run with `RUST_BACKTRACE=1` environment variable to display a backtrace
    2019:  failures:
    2020:  grid_version_test::case_4
    2021:  test result: FAILED. 6 passed; 1 failed; 0 ignored; 0 measured; 0 filtered out; finished in 0.21s
    2022:  Execution result: https://gypsum.cluster.engflow.com/actions/executions/ChAqg3CuY_RWOqp4A1ZMj8esEgdkZWZhdWx0GiUKIJXQGxEu9cHIhqTez3yOfJ8FAHYlcUBwK7HXhSKxC_zYELwD
    2023:  ================================================================================
    2024:  ==================== Test output for //rust/tests:integration_grid_tests:
    2025:  running 7 tests
    2026:  test grid_error_test::case_1 ... ok
    2027:  test grid_error_test::case_2 ... ok
    2028:  test grid_latest_test ... ok
    2029:  test grid_version_test::case_1 ... ok
    2030:  test grid_version_test::case_2 ... ok
    2031:  test grid_version_test::case_3 ... ok
    2032:  test grid_version_test::case_4 ... FAILED
    2033:  failures:
    2034:  ---- grid_version_test::case_4 stdout ----
    2035:  thread 'grid_version_test::case_4' panicked at /rustc/90b35a6239c3d8bdabc530a6a0816f7ff89a0aaf/library/core/src/ops/function.rs:250:5:
    2036:  Unexpected failure.
    2037:  code=65
    2038:  stderr=```""```
    2039:  command=`"rust/selenium-manager" "--grid" "nightly" "--output" "json"`
    2040:  code=65
    2041:  stdout=```
    2042:  {
    2043:  \"logs\": [
    2044:  {
    2045:  \"level\": \"ERROR\",
    2046:  \"timestamp\": 1743969216,
    2047:  \"message\": \"selenium-server release not available\"
    2048:  }
    2049:  ],
    2050:  \"result\": {
    2051:  \"code\": 65,
    2052:  \"message\": \"selenium-server release not available\",
    2053:  \"driver_path\": \"\",
    2054:  \"browser_path\": \"\"
    2055:  }
    2056:  }```
    2057:  stderr=""
    2058:  note: run with `RUST_BACKTRACE=1` environment variable to display a backtrace
    2059:  failures:
    2060:  grid_version_test::case_4
    2061:  test result: FAILED. 6 passed; 1 failed; 0 ignored; 0 measured; 0 filtered out; finished in 0.12s
    2062:  Execution result: https://gypsum.cluster.engflow.com/actions/executions/ChAqg3CuY_RWOqp4A1ZMj8esEgdkZWZhdWx0GiUKIJXQGxEu9cHIhqTez3yOfJ8FAHYlcUBwK7HXhSKxC_zYELwD
    ...
    
    2074:  AccessController.doPrivileged(
    2075:  ^
    2076:  (19:53:39) �[32mINFO: �[0mFrom Building external/contrib_rules_jvm+/java/src/com/github/bazel_contrib/contrib_rules_jvm/junit5/libjunit5-compile-class.jar (19 source files):
    2077:  warning: [options] source value 8 is obsolete and will be removed in a future release
    2078:  warning: [options] target value 8 is obsolete and will be removed in a future release
    2079:  warning: [options] To suppress warnings about obsolete options, use -Xlint:-options.
    2080:  (19:53:40) �[32mINFO: �[0mFrom Installing external/rules_ruby++ruby+bundle/rb/vendor/cache/bundler-2.5.6.gem (@@rules_ruby++ruby+bundle//:bundler-2.5.6):
    2081:  Successfully installed bundler-2.5.6
    2082:  1 gem installed
    2083:  (19:53:40) �[32mINFO: �[0mFrom Compiling src/google/protobuf/compiler/rust/relative_path.cc [for tool]:
    2084:  external/protobuf+/src/google/protobuf/compiler/rust/relative_path.cc: In member function ‘std::string google::protobuf::compiler::rust::RelativePath::Relative(const google::protobuf::compiler::rust::RelativePath&) const’:
    2085:  external/protobuf+/src/google/protobuf/compiler/rust/relative_path.cc:65:21: warning: comparison of integer expressions of different signedness: ‘int’ and ‘std::vector<absl::lts_20240116::string_view>::size_type’ {aka ‘long unsigned int’} [-Wsign-compare]
    2086:  65 |   for (int i = 0; i < current_segments.size(); ++i) {
    2087:  |                   ~~^~~~~~~~~~~~~~~~~~~~~~~~~
    2088:  (19:53:40) �[32mAnalyzing:�[0m 2264 targets (1653 packages loaded, 61537 targets configured)
    2089:  �[32m[3,198 / 4,465]�[0m 27 / 290 tests, �[31m�[1m1 failed�[0m;�[0m Creating source manifest for //dotnet/test/common:DevTools/DevToolsTabsTest-edge; 0s local ... (45 actions, 1 running)
    2090:  (19:53:40) �[32mINFO: �[0mFrom Running bundle install (@@rules_ruby++ruby+bundle//:bundle):
    ...
    
    2145:  * `Zip::OutputStream`
    2146:  * `Zip::DOSTime`
    2147:  Run your test suite with the `RUBYZIP_V3_API_WARN` environment
    2148:  variable set to see warnings about usage of the old API. This will
    2149:  help you to identify any changes that you need to make to your code.
    2150:  See https://github.com/rubyzip/rubyzip/wiki/Updating-to-version-3.x for
    2151:  more information.
    2152:  Please ensure that your Gemfiles and .gemspecs are suitably restrictive
    2153:  to avoid an unexpected breakage when 3.0 is released (e.g. ~> 2.3.0).
    2154:  See https://github.com/rubyzip/rubyzip for details. The Changelog also
    2155:  lists other enhancements and bugfixes that have been implemented since
    2156:  version 2.3.0.
    2157:  2 installed gems you directly depend on are looking for funding.
    2158:  Run `bundle fund` for details
    2159:  (19:53:45) �[32mAnalyzing:�[0m 2264 targets (1653 packages loaded, 61942 targets configured)
    2160:  �[32m[4,633 / 5,384]�[0m 35 / 578 tests, �[31m�[1m1 failed�[0m;�[0m Creating source manifest for //dotnet/test/common:StaleElementReferenceTest-edge; 0s local ... (37 actions, 9 running)
    2161:  (19:53:47) �[32mINFO: �[0mFrom Compiling src/google/protobuf/compiler/java/full/enum.cc [for tool]:
    ...
    
    2165:  |                   ~~^~~~~~~~~~~~~~~~~~~~~~~~~~
    2166:  external/protobuf+/src/google/protobuf/compiler/java/full/enum.cc:85:21: warning: comparison of integer expressions of different signedness: ‘int’ and ‘std::vector<const google::protobuf::EnumValueDescriptor*>::size_type’ {aka ‘long unsigned int’} [-Wsign-compare]
    2167:  85 |   for (int i = 0; i < canonical_values_.size(); i++) {
    2168:  |                   ~~^~~~~~~~~~~~~~~~~~~~~~~~~~
    2169:  external/protobuf+/src/google/protobuf/compiler/java/full/enum.cc:125:21: warning: comparison of integer expressions of different signedness: ‘int’ and ‘std::vector<google::protobuf::compiler::java::EnumNonLiteGenerator::Alias>::size_type’ {aka ‘long unsigned int’} [-Wsign-compare]
    2170:  125 |   for (int i = 0; i < aliases_.size(); i++) {
    2171:  |                   ~~^~~~~~~~~~~~~~~~~
    2172:  external/protobuf+/src/google/protobuf/compiler/java/full/enum.cc:209:21: warning: comparison of integer expressions of different signedness: ‘int’ and ‘std::vector<const google::protobuf::EnumValueDescriptor*>::size_type’ {aka ‘long unsigned int’} [-Wsign-compare]
    2173:  209 |   for (int i = 0; i < canonical_values_.size(); i++) {
    2174:  |                   ~~^~~~~~~~~~~~~~~~~~~~~~~~~~
    2175:  external/protobuf+/src/google/protobuf/compiler/java/full/enum.cc: In member function ‘bool google::protobuf::compiler::java::EnumNonLiteGenerator::CanUseEnumValues()’:
    2176:  external/protobuf+/src/google/protobuf/compiler/java/full/enum.cc:383:32: warning: comparison of integer expressions of different signedness: ‘std::vector<const google::protobuf::EnumValueDescriptor*>::size_type’ {aka ‘long unsigned int’} and ‘int’ [-Wsign-compare]
    2177:  383 |   if (canonical_values_.size() != descriptor_->value_count()) {
    2178:  |       ~~~~~~~~~~~~~~~~~~~~~~~~~^~~~~~~~~~~~~~~~~~~~~~~~~~~~~
    2179:  (19:53:48) �[32mINFO: �[0mFrom Building java/src/org/openqa/selenium/remote/libapi-class.jar (70 source files):
    2180:  java/src/org/openqa/selenium/remote/ErrorHandler.java:46: warning: [removal] ErrorCodes in org.openqa.selenium.remote has been deprecated and marked for removal
    2181:  private final ErrorCodes errorCodes;
    2182:  ^
    2183:  java/src/org/openqa/selenium/remote/ErrorHandler.java:60: warning: [removal] ErrorCodes in org.openqa.selenium.remote has been deprecated and marked for removal
    2184:  this.errorCodes = new ErrorCodes();
    2185:  ^
    2186:  java/src/org/openqa/selenium/remote/ErrorHandler.java:68: warning: [removal] ErrorCodes in org.openqa.selenium.remote has been deprecated and marked for removal
    2187:  public ErrorHandler(ErrorCodes codes, boolean includeServerErrors) {
    2188:  ^
    2189:  java/src/org/openqa/selenium/remote/Response.java:97: warning: [removal] ErrorCodes in org.openqa.selenium.remote has been deprecated and marked for removal
    2190:  ErrorCodes errorCodes = new ErrorCodes();
    2191:  ^
    2192:  java/src/org/openqa/selenium/remote/Response.java:97: warning: [removal] ErrorCodes in org.openqa.selenium.remote has been deprecated and marked for removal
    2193:  ErrorCodes errorCodes = new ErrorCodes();
    2194:  ^
    2195:  java/src/org/openqa/selenium/remote/ProtocolHandshake.java:181: warning: [removal] ErrorCodes in org.openqa.selenium.remote has been deprecated and marked for removal
    2196:  response.setStatus(ErrorCodes.SUCCESS);
    2197:  ^
    2198:  java/src/org/openqa/selenium/remote/ProtocolHandshake.java:182: warning: [removal] ErrorCodes in org.openqa.selenium.remote has been deprecated and marked for removal
    2199:  response.setState(ErrorCodes.SUCCESS_STRING);
    2200:  ^
    2201:  java/src/org/openqa/selenium/remote/W3CHandshakeResponse.java:53: warning: [removal] ErrorCodes in org.openqa.selenium.remote has been deprecated and marked for removal
    2202:  new ErrorCodes().toStatus((String) rawError, Optional.of(tuple.getStatusCode())));
    2203:  ^
    2204:  java/src/org/openqa/selenium/remote/W3CHandshakeResponse.java:56: warning: [removal] ErrorCodes in org.openqa.selenium.remote has been deprecated and marked for removal
    2205:  new ErrorCodes().getExceptionType((String) rawError);
    2206:  ^
    2207:  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
    2208:  private final ErrorCodes errorCodes = new ErrorCodes();
    2209:  ^
    2210:  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
    2211:  private final ErrorCodes errorCodes = new ErrorCodes();
    2212:  ^
    2213:  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
    2214:  int status = response.getStatus() == ErrorCodes.SUCCESS ? HTTP_OK : HTTP_INTERNAL_ERROR;
    2215:  ^
    2216:  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
    2217:  response.setStatus(ErrorCodes.UNKNOWN_COMMAND);
    2218:  ^
    2219:  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
    2220:  response.setStatus(ErrorCodes.UNHANDLED_ERROR);
    2221:  ^
    2222:  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
    2223:  response.setStatus(ErrorCodes.SUCCESS);
    2224:  ^
    2225:  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
    2226:  response.setState(errorCodes.toState(ErrorCodes.SUCCESS));
    2227:  ^
    2228:  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
    2229:  response.setState(errorCodes.toState(ErrorCodes.SUCCESS));
    2230:  ^
    2231:  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
    2232:  private final ErrorCodes errorCodes = new ErrorCodes();
    2233:  ^
    2234:  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
    2235:  private final ErrorCodes errorCodes = new ErrorCodes();
    2236:  ^
    2237:  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
    2238:  response.setStatus(ErrorCodes.UNKNOWN_COMMAND);
    2239:  ^
    2240:  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
    2241:  response.setStatus(ErrorCodes.UNHANDLED_ERROR);
    2242:  ^
    2243:  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
    2244:  response.setStatus(ErrorCodes.SUCCESS);
    2245:  ^
    ...
    
    2275:  external/protobuf+/src/google/protobuf/compiler/java/lite/enum.cc:94:21: warning: comparison of integer expressions of different signedness: ‘int’ and ‘std::vector<google::protobuf::compiler::java::EnumLiteGenerator::Alias>::size_type’ {aka ‘long unsigned int’} [-Wsign-compare]
    2276:  94 |   for (int i = 0; i < aliases_.size(); i++) {
    2277:  |                   ~~^~~~~~~~~~~~~~~~~
    2278:  external/protobuf+/src/google/protobuf/compiler/java/lite/enum.cc:165:21: warning: comparison of integer expressions of different signedness: ‘int’ and ‘std::vector<const google::protobuf::EnumValueDescriptor*>::size_type’ {aka ‘long unsigned int’} [-Wsign-compare]
    2279:  165 |   for (int i = 0; i < canonical_values_.size(); i++) {
    2280:  |                   ~~^~~~~~~~~~~~~~~~~~~~~~~~~~
    2281:  (19:53:49) �[32mINFO: �[0mFrom Compiling src/google/protobuf/compiler/kotlin/generator.cc [for tool]:
    2282:  In file included from bazel-out/k8-opt-exec-ST-a934f86a68ba/bin/external/protobuf+/src/google/protobuf/compiler/java/_virtual_includes/helpers/google/protobuf/compiler/java/helpers.h:23,
    2283:  from external/protobuf+/src/google/protobuf/compiler/kotlin/generator.cc:18:
    2284:  bazel-out/k8-opt-exec-ST-a934f86a68ba/bin/external/protobuf+/src/google/protobuf/io/_virtual_includes/printer/google/protobuf/io/printer.h: In instantiation of ‘void google::protobuf::io::AnnotationProtoCollector<AnnotationProto>::AddAnnotation(size_t, size_t, const string&, const std::vector<int>&, absl::lts_20240116::optional<google::protobuf::io::AnnotationCollector::Semantic>) [with AnnotationProto = google::protobuf::GeneratedCodeInfo; size_t = long unsigned int; std::string = std::__cxx11::basic_string<char>]’:
    2285:  bazel-out/k8-opt-exec-ST-a934f86a68ba/bin/external/protobuf+/src/google/protobuf/io/_virtual_includes/printer/google/protobuf/io/printer.h:123:8:   required from here
    2286:  bazel-out/k8-opt-exec-ST-a934f86a68ba/bin/external/protobuf+/src/google/protobuf/io/_virtual_includes/printer/google/protobuf/io/printer.h:127:23: warning: comparison of integer expressions of different signedness: ‘int’ and ‘std::vector<int>::size_type’ {aka ‘long unsigned int’} [-Wsign-compare]
    2287:  127 |     for (int i = 0; i < path.size(); ++i) {
    2288:  |                     ~~^~~~~~~~~~~~~
    2289:  (19:53:50) �[32mAnalyzing:�[0m 2264 targets (1654 packages loaded, 62261 targets configured)
    2290:  �[32m[6,272 / 6,446]�[0m 98 / 700 tests, �[31m�[1m1 failed�[0m;�[0m Creating source manifest for //dotnet/test/common:TagNameTest-firefox; 0s local ... (17 actions, 12 running)
    2291:  (19:53:50) �[32mINFO: �[0mFrom Building external/protobuf+/java/core/libcore.jar (43 source files, 1 source jar) [for tool]:
    ...
    
    2329:  dotnet/src/webdriver/DevTools/v135/V135Network.cs(320,94): warning CS8601: Possible null reference assignment.
    2330:  dotnet/src/webdriver/DevTools/v134/V134Network.cs(149,29): warning CS8601: Possible null reference assignment.
    2331:  dotnet/src/webdriver/DevTools/v134/V134Network.cs(194,29): warning CS8601: Possible null reference assignment.
    2332:  dotnet/src/webdriver/DevTools/v134/V134Network.cs(235,92): warning CS8601: Possible null reference assignment.
    2333:  dotnet/src/webdriver/DevTools/v134/V134Network.cs(292,121): warning CS8601: Possible null reference assignment.
    2334:  dotnet/src/webdriver/DevTools/v134/V134Network.cs(320,94): warning CS8601: Possible null reference assignment.
    2335:  dotnet/src/webdriver/DevTools/v133/V133Network.cs(149,29): warning CS8601: Possible null reference assignment.
    2336:  dotnet/src/webdriver/DevTools/v133/V133Network.cs(194,29): warning CS8601: Possible null reference assignment.
    2337:  dotnet/src/webdriver/DevTools/v133/V133Network.cs(235,92): warning CS8601: Possible null reference assignment.
    2338:  dotnet/src/webdriver/DevTools/v133/V133Network.cs(292,121): warning CS8601: Possible null reference assignment.
    2339:  dotnet/src/webdriver/DevTools/v133/V133Network.cs(320,94): warning CS8601: Possible null reference assignment.
    2340:  dotnet/src/webdriver/BiDi/Modules/Script/RemoteValue.cs(253,31): warning CS8766: Nullability of reference types in return type of 'string? NodeRemoteValue.SharedId.get' doesn't match implicitly implemented member 'string ISharedReference.SharedId.get' (possibly because of nullability attributes).
    2341:  dotnet/src/webdriver/Response.cs(207,6): warning CS3016: Arrays as attribute arguments is not CLS-compliant
    2342:  dotnet/src/webdriver/Command.cs(171,6): warning CS3016: Arrays as attribute arguments is not CLS-compliant
    2343:  (19:53:55) �[32mAnalyzing:�[0m 2264 targets (1654 packages loaded, 62564 targets configured)
    2344:  �[32m[6,859 / 7,007]�[0m 99 / 847 tests, �[31m�[1m1 failed�[0m;�[0m [Prepa] Testing //rb/spec/integration/selenium/webdriver/edge:options-edge-bidi ... (6 actions, 0 running)
    2345:  (19:54:01) �[32mAnalyzing:�[0m 2264 targets (1654 packages loaded, 62716 targets configured)
    2346:  �[32m[6,868 / 7,121]�[0m 102 / 876 tests, �[31m�[1m1 failed�[0m;�[0m Testing //rb/spec/integration/selenium/webdriver/edge:options-edge-bidi; 4s remote, remote-cache ... (16 actions, 1 running)
    2347:  (19:54:06) �[32mAnalyzing:�[0m 2264 targets (1654 packages loaded, 62888 targets configured)
    2348:  �[32m[6,934 / 7,313]�[0m 106 / 939 tests, �[31m�[1m1 failed�[0m;�[0m Testing //rb/spec/integration/selenium/webdriver:virtual_authenticator-chrome-bidi; 8s remote, remote-cache ... (42 actions, 4 running)
    2349:  (19:54:11) �[32mAnalyzing:�[0m 2264 targets (1654 packages loaded, 63014 targets configured)
    2350:  �[32m[6,983 / 7,590]�[0m 109 / 1031 tests, �[31m�[1m1 failed�[0m;�[0m Testing //rb/spec/unit/selenium/webdriver/remote/http:curb; 10s remote, remote-cache ... (50 actions, 0 running)
    2351:  (19:54:16) �[32mAnalyzing:�[0m 2264 targets (1654 packages loaded, 63154 targets configured)
    2352:  �[32m[7,085 / 8,011]�[0m 147 / 1258 tests, �[31m�[1m1 failed�[0m;�[0m [Prepa] Testing //rb/spec/integration/selenium/webdriver:guard-chrome ... (50 actions, 0 running)
    2353:  (19:54:22) �[32mAnalyzing:�[0m 2264 targets (1654 packages loaded, 63209 targets configured)
    2354:  �[32m[7,116 / 8,341]�[0m 149 / 1353 tests, �[31m�[1m1 failed�[0m;�[0m [Prepa] Testing //rb/spec/unit/selenium/webdriver/devtools:response; 7s ... (50 actions, 1 running)
    2355:  (19:54:27) �[32mAnalyzing:�[0m 2264 targets (1654 packages loaded, 63271 targets configured)
    2356:  �[32m[7,236 / 8,927]�[0m 185 / 1562 tests, �[31m�[1m1 failed�[0m;�[0m [Prepa] Testing //py:common-chrome-test/selenium/webdriver/common/repr_tests.py ... (49 actions, 1 running)
    2357:  (19:54:32) �[32mAnalyzing:�[0m 2264 targets (1654 packages loaded, 63531 targets configured)
    2358:  �[32m[7,513 / 9,534]�[0m 258 / 1818 tests, �[31m�[1m1 failed�[0m;�[0m Testing //py:common-chrome-test/selenium/webdriver/common/fedcm_tests.py; 3s remote, remote-cache ... (50 actions, 1 running)
    2359:  (19:54:37) �[32mAnalyzing:�[0m 2264 targets (1654 packages loaded, 63792 targets configured)
    2360:  �[32m[7,834 / 10,145]�[0m 343 / 2080 tests, �[31m�[1m1 failed�[0m;�[0m Testing //py:common-chrome-test/selenium/webdriver/common/fedcm_tests.py; 8s remote, remote-cache ... (49 actions, 2 running)
    2361:  (19:54:42) �[32mAnalyzing:�[0m 2264 targets (1654 packages loaded, 63902 targets configured)
    2362:  �[32m[8,776 / 11,311]�[0m 418 / 2181 tests, �[31m�[1m1 failed�[0m;�[0m Testing //py:common-chrome-test/selenium/webdriver/common/fedcm_tests.py; 13s remote, remote-cache ... (50 actions, 2 running)
    2363:  (19:54:46) �[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
    2364:  (19:54:46) �[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
    2365:  (19:54:46) �[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
    2366:  (19:54:46) �[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
    2367:  (19:54:46) �[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
    2368:  (19:54:46) �[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
    2369:  (19:54:46) �[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
    2370:  (19:54:46) �[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
    2371:  (19:54:46) �[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
    2372:  (19:54:46) �[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
    2373:  (19:54:46) �[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
    2374:  (19:54:46) �[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
    2375:  (19:54:46) �[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
    2376:  (19:54:46) �[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
    2377:  (19:54:46) �[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
    ...
    
    2468:  (19:54:46) �[35mWARNING: �[0m/home/runner/work/selenium/selenium/javascript/webdriver/BUILD.bazel:66:19: runfiles symlink javascript/webdriver/test/atoms/inject/nested_iframes.html -> javascript/webdriver/test/atoms/inject/nested_iframes.html obscured by javascript/webdriver/test -> bazel-out/k8-fastbuild/bin/javascript/webdriver/test
    2469:  (19:54:46) �[35mWARNING: �[0m/home/runner/work/selenium/selenium/javascript/webdriver/BUILD.bazel:66:19: runfiles symlink javascript/webdriver/test/atoms/inject/single_iframe.html -> javascript/webdriver/test/atoms/inject/single_iframe.html obscured by javascript/webdriver/test -> bazel-out/k8-fastbuild/bin/javascript/webdriver/test
    2470:  (19:54:46) �[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
    2471:  (19:54:46) �[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
    2472:  (19:54:46) �[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
    2473:  (19:54:46) �[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
    2474:  (19:54:46) �[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
    2475:  (19:54:46) �[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
    2476:  (19:54:46) �[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
    2477:  (19:54:46) �[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
    2478:  (19:54:46) �[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
    2479:  (19:54:46) �[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
    2480:  (19:54:46) �[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
    2481:  (19:54:46) �[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
    2482:  (19:54:47) �[32mAnalyzing:�[0m 2264 targets (1654 packages loaded, 63939 targets configured)
    2483:  �[32m[9,641 / 11,985]�[0m 511 / 2219 tests, �[31m�[1m1 failed�[0m;�[0m Testing //py:common-chrome-test/selenium/webdriver/common/fedcm_tests.py; 18s remote, remote-cache ... (50 actions, 3 running)
    2484:  (19:54:51) �[32mINFO: �[0mAnalyzed 2264 targets (1654 packages loaded, 64038 targets configured).
    2485:  (19:54:52) �[32m[10,287 / 12,461]�[0m 605 / 2264 tests, �[31m�[1m1 failed�[0m;�[0m Testing //py:common-chrome-test/selenium/webdriver/common/fedcm_tests.py; 23s remote, remote-cache ... (50 actions, 2 running)
    2486:  (19:54:54) �[31m�[1mFAIL: �[0m//py:common-chrome-test/selenium/webdriver/common/fedcm_tests.py (see /home/runner/.bazel/execroot/_main/bazel-out/k8-fastbuild/testlogs/py/common-chrome-test/selenium/webdriver/common/fedcm_tests.py/test_attempts/attempt_1.log)
    2487:  (19:54:58) �[32m[10,983 / 12,929]�[0m 685 / 2264 tests, �[31m�[1m1 failed�[0m;�[0m Testing //py:common-chrome-test/selenium/webdriver/common/fedcm_tests.py; 29s remote, remote-cache ... (49 actions, 4 running)
    2488:  (19:55:03) �[32m[11,901 / 13,564]�[0m 744 / 2264 tests, �[31m�[1m1 failed�[0m;�[0m Testing //py:common-chrome-test/selenium/webdriver/common/fedcm_tests.py; 34s remote, remote-cache ... (49 actions, 8 running)
    2489:  (19:55:08) �[32m[12,535 / 13,946]�[0m 827 / 2264 tests, �[31m�[1m1 failed�[0m;�[0m Testing //py:common-chrome-test/selenium/webdriver/common/fedcm_tests.py; 39s remote, remote-cache ... (47 actions, 5 running)
    2490:  (19:55:13) �[32m[13,614 / 14,637]�[0m 871 / 2264 tests, �[31m�[1m1 failed�[0m;�[0m Testing //py:common-chrome-test/selenium/webdriver/common/fedcm_tests.py; 44s remote, remote-cache ... (40 actions, 5 running)
    2491:  (19:55:18) �[32mINFO: �[0mFrom PackageZip javascript/grid-ui/react-zip.jar:
    2492:  /mnt/engflow/worker/work/1/exec/bazel-out/k8-opt-exec-ST-a934f86a68ba/bin/external/rules_pkg+/pkg/private/zip/build_zip.runfiles/rules_python++python+python_3_9_x86_64-unknown-linux-gnu/lib/python3.9/zipfile.py:1522: UserWarning: Duplicate name: 'grid-ui/'
    2493:  return self._open_to_write(zinfo, force_zip64=force_zip64)
    2494:  (19:55:18) �[32m[13,946 / 14,924]�[0m 901 / 2264 tests, �[31m�[1m1 failed�[0m;�[0m Testing //py:common-chrome-test/selenium/webdriver/common/fedcm_tests.py; 49s remote, remote-cache ... (47 actions, 3 running)
    2495:  (19:55:22) �[32mINFO: �[0mFrom Building java/test/org/openqa/selenium/remote/libsmall-tests-test-lib.jar (5 source files) and running annotation processors (AutoServiceProcessor):
    2496:  java/test/org/openqa/selenium/remote/WebDriverFixture.java:170: warning: [removal] ErrorCodes in org.openqa.selenium.remote has been deprecated and marked for removal
    2497:  response.setStatus(new ErrorCodes().toStatus(state, Optional.of(400)));
    2498:  ^
    2499:  (19:55:22) �[32mINFO: �[0mFrom Building java/test/org/openqa/selenium/remote/ErrorHandlerTest.jar (1 source file) and running annotation processors (AutoServiceProcessor):
    2500:  java/test/org/openqa/selenium/remote/ErrorHandlerTest.java:79: warning: [removal] ErrorCodes in org.openqa.selenium.remote has been deprecated and marked for removal
    2501:  handler.throwIfResponseFailed(createResponse(ErrorCodes.SUCCESS), 100);
    2502:  ^
    2503:  java/test/org/openqa/selenium/remote/ErrorHandlerTest.java:85: warning: [removal] ErrorCodes in org.openqa.selenium.remote has been deprecated and marked for removal
    2504:  assertThrowsCorrectExceptionType(ErrorCodes.NO_SUCH_WINDOW, NoSuchWindowException.class);
    2505:  ^
    2506:  java/test/org/openqa/selenium/remote/ErrorHandlerTest.java:86: warning: [removal] ErrorCodes in org.openqa.selenium.remote has been deprecated and marked for removal
    2507:  assertThrowsCorrectExceptionType(ErrorCodes.NO_SUCH_FRAME, NoSuchFrameException.class);
    2508:  ^
    2509:  java/test/org/openqa/selenium/remote/ErrorHandlerTest.java:87: warning: [removal] ErrorCodes in org.openqa.selenium.remote has been deprecated and marked for removal
    2510:  assertThrowsCorrectExceptionType(ErrorCodes.NO_SUCH_ELEMENT, NoSuchElementException.class);
    2511:  ^
    2512:  java/test/org/openqa/selenium/remote/ErrorHandlerTest.java:88: warning: [removal] ErrorCodes in org.openqa.selenium.remote has been deprecated and marked for removal
    2513:  assertThrowsCorrectExceptionType(ErrorCodes.UNKNOWN_COMMAND, UnsupportedCommandException.class);
    2514:  ^
    2515:  java/test/org/openqa/selenium/remote/ErrorHandlerTest.java:90: warning: [removal] ErrorCodes in org.openqa.selenium.remote has been deprecated and marked for removal
    2516:  ErrorCodes.METHOD_NOT_ALLOWED, UnsupportedCommandException.class);
    2517:  ^
    2518:  java/test/org/openqa/selenium/remote/ErrorHandlerTest.java:92: warning: [removal] ErrorCodes in org.openqa.selenium.remote has been deprecated and marked for removal
    2519:  ErrorCodes.STALE_ELEMENT_REFERENCE, StaleElementReferenceException.class);
    2520:  ^
    2521:  java/test/org/openqa/selenium/remote/ErrorHandlerTest.java:94: warning: [removal] ErrorCodes in org.openqa.selenium.remote has been deprecated and marked for removal
    2522:  ErrorCodes.INVALID_ELEMENT_STATE, InvalidElementStateException.class);
    2523:  ^
    2524:  java/test/org/openqa/selenium/remote/ErrorHandlerTest.java:95: warning: [removal] ErrorCodes in org.openqa.selenium.remote has been deprecated and marked for removal
    2525:  assertThrowsCorrectExceptionType(ErrorCodes.XPATH_LOOKUP_ERROR, InvalidSelectorException.class);
    2526:  ^
    2527:  java/test/org/openqa/selenium/remote/ErrorHandlerTest.java:107: warning: [removal] ErrorCodes in org.openqa.selenium.remote has been deprecated and marked for removal
    2528:  Response response = createResponse(ErrorCodes.UNHANDLED_ERROR);
    2529:  ^
    2530:  java/test/org/openqa/selenium/remote/ErrorHandlerTest.java:120: warning: [removal] ErrorCodes in org.openqa.selenium.remote has been deprecated and marked for removal
    2531:  createResponse(ErrorCodes.UNHANDLED_ERROR, "boom"), 123))
    2532:  ^
    2533:  java/test/org/openqa/selenium/remote/ErrorHandlerTest.java:133: warning: [removal] ErrorCodes in org.openqa.selenium.remote has been deprecated and marked for removal
    2534:  createResponse(ErrorCodes.UNHANDLED_ERROR, ImmutableMap.of("message", "boom")),
    2535:  ^
    2536:  java/test/org/openqa/selenium/remote/ErrorHandlerTest.java:147: warning: [removal] ErrorCodes in org.openqa.selenium.remote has been deprecated and marked for removal
    2537:  ErrorCodes.UNHANDLED_ERROR,
    2538:  ^
    2539:  java/test/org/openqa/selenium/remote/ErrorHandlerTest.java:167: warning: [removal] ErrorCodes in org.openqa.selenium.remote has been deprecated and marked for removal
    2540:  ErrorCodes.UNHANDLED_ERROR,
    2541:  ^
    2542:  java/test/org/openqa/selenium/remote/ErrorHandlerTest.java:193: warning: [removal] ErrorCodes in org.openqa.selenium.remote has been deprecated and marked for removal
    2543:  createResponse(ErrorCodes.UNHANDLED_ERROR, toMap(serverError)), 123))
    2544:  ^
    2545:  java/test/org/openqa/selenium/remote/ErrorHandlerTest.java:214: warning: [removal] ErrorCodes in org.openqa.selenium.remote has been deprecated and marked for removal
    2546:  createResponse(ErrorCodes.UNHANDLED_ERROR, data), 123))
    2547:  ^
    2548:  java/test/org/openqa/selenium/remote/ErrorHandlerTest.java:248: warning: [removal] ErrorCodes in org.openqa.selenium.remote has been deprecated and marked for removal
    2549:  createResponse(ErrorCodes.UNHANDLED_ERROR, data), 123))
    2550:  ^
    2551:  java/test/org/openqa/selenium/remote/ErrorHandlerTest.java:280: warning: [removal] ErrorCodes in org.openqa.selenium.remote has been deprecated and marked for removal
    2552:  createResponse(ErrorCodes.UNHANDLED_ERROR, data), 123))
    2553:  ^
    2554:  java/test/org/openqa/selenium/remote/ErrorHandlerTest.java:308: warning: [removal] ErrorCodes in org.openqa.selenium.remote has been deprecated and marked for removal
    2555:  createResponse(ErrorCodes.UNHANDLED_ERROR, data), 123))
    2556:  ^
    2557:  java/test/org/openqa/selenium/remote/ErrorHandlerTest.java:327: warning: [removal] ErrorCodes in org.openqa.selenium.remote has been deprecated and marked for removal
    2558:  createResponse(ErrorCodes.UNHANDLED_ERROR, data), 123))
    2559:  ^
    2560:  java/test/org/openqa/selenium/remote/ErrorHandlerTest.java:355: warning: [removal] ErrorCodes in org.openqa.selenium.remote has been deprecated and marked for removal
    2561:  createResponse(ErrorCodes.UNHANDLED_ERROR, data), 123))
    2562:  ^
    2563:  java/test/org/openqa/selenium/remote/ErrorHandlerTest.java:394: warning: [removal] ErrorCodes in org.openqa.selenium.remote has been deprecated and marked for removal
    2564:  createResponse(ErrorCodes.UNHANDLED_ERROR, data), 123))
    2565:  ^
    2566:  java/test/org/openqa/selenium/remote/ErrorHandlerTest.java:426: warning: [removal] ErrorCodes in org.openqa.selenium.remote has been deprecated and marked for removal
    2567:  createResponse(ErrorCodes.UNHANDLED_ERROR, toMap(serverError)), 123))
    2568:  ^
    2569:  java/test/org/openqa/selenium/remote/ErrorHandlerTest.java:435: warning: [removal] ErrorCodes in org.openqa.selenium.remote has been deprecated and marked for removal
    2570:  exceptions.put(ErrorCodes.NO_SUCH_SESSION, NoSuchSessionException.class);
    2571:  ^
    2572:  java/test/org/openqa/selenium/remote/ErrorHandlerTest.java:436: warning: [removal] ErrorCodes in org.openqa.selenium.remote has been deprecated and marked for removal
    2573:  exceptions.put(ErrorCodes.NO_SUCH_ELEMENT, NoSuchElementException.class);
    2574:  ^
    2575:  java/test/org/openqa/selenium/remote/ErrorHandlerTest.java:437: warning: [removal] ErrorCodes in org.openqa.selenium.remote has been deprecated and marked for removal
    2576:  exceptions.put(ErrorCodes.NO_SUCH_FRAME, NoSuchFrameException.class);
    2577:  ^
    2578:  java/test/org/openqa/selenium/remote/ErrorHandlerTest.java:438: warning: [removal] ErrorCodes in org.openqa.selenium.remote has been deprecated and marked for removal
    2579:  exceptions.put(ErrorCodes.UNKNOWN_COMMAND, UnsupportedCommandException.class);
    2580:  ^
    2581:  java/test/org/openqa/selenium/remote/ErrorHandlerTest.java:439: warning: [removal] ErrorCodes in org.openqa.selenium.remote has been deprecated and marked for removal
    2582:  exceptions.put(ErrorCodes.STALE_ELEMENT_REFERENCE, StaleElementReferenceException.class);
    2583:  ^
    2584:  java/test/org/openqa/selenium/remote/ErrorHandlerTest.java:440: warning: [removal] ErrorCodes in org.openqa.selenium.remote has been deprecated and marked for removal
    2585:  exceptions.put(ErrorCodes.INVALID_ELEMENT_STATE, InvalidElementStateException.class);
    2586:  ^
    2587:  java/test/org/openqa/selenium/remote/ErrorHandlerTest.java:441: warning: [removal] ErrorCodes in org.openqa.selenium.remote has been deprecated and marked for removal
    2588:  exceptions.put(ErrorCodes.UNHANDLED_ERROR, WebDriverException.class);
    2589:  ^
    2590:  java/test/org/openqa/selenium/remote/ErrorHandlerTest.java:442: warning: [removal] ErrorCodes in org.openqa.selenium.remote has been deprecated and marked for removal
    2591:  exceptions.put(ErrorCodes.JAVASCRIPT_ERROR, JavascriptException.class);
    2592:  ^
    2593:  java/test/org/openqa/selenium/remote/ErrorHandlerTest.java:443: warning: [removal] ErrorCodes in org.openqa.selenium.remote has been deprecated and marked for removal
    2594:  exceptions.put(ErrorCodes.XPATH_LOOKUP_ERROR, InvalidSelectorException.class);
    2595:  ^
    2596:  java/test/org/openqa/selenium/remote/ErrorHandlerTest.java:444: warning: [removal] ErrorCodes in org.openqa.selenium.remote has been deprecated and marked for removal
    2597:  exceptions.put(ErrorCodes.TIMEOUT, TimeoutException.class);
    2598:  ^
    2599:  java/test/org/openqa/selenium/remote/ErrorHandlerTest.java:445: warning: [removal] ErrorCodes in org.openqa.selenium.remote has been deprecated and marked for removal
    2600:  exceptions.put(ErrorCodes.NO_SUCH_WINDOW, NoSuchWindowException.class);
    2601:  ^
    2602:  java/test/org/openqa/selenium/remote/ErrorHandlerTest.java:446: warning: [removal] ErrorCodes in org.openqa.selenium.remote has been deprecated and marked for removal
    2603:  exceptions.put(ErrorCodes.INVALID_COOKIE_DOMAIN, InvalidCookieDomainException.class);
    2604:  ^
    2605:  java/test/org/openqa/selenium/remote/ErrorHandlerTest.java:447: warning: [removal] ErrorCodes in org.openqa.selenium.remote has been deprecated and marked for removal
    2606:  exceptions.put(ErrorCodes.UNABLE_TO_SET_COOKIE, UnableToSetCookieException.class);
    2607:  ^
    2608:  java/test/org/openqa/selenium/remote/ErrorHandlerTest.java:448: warning: [removal] ErrorCodes in org.openqa.selenium.remote has been deprecated and marked for removal
    2609:  exceptions.put(ErrorCodes.UNEXPECTED_ALERT_PRESENT, UnhandledAlertException.class);
    2610:  ^
    2611:  java/test/org/openqa/selenium/remote/ErrorHandlerTest.java:449: warning: [removal] ErrorCodes in org.openqa.selenium.remote has been deprecated and marked for removal
    2612:  exceptions.put(ErrorCodes.NO_ALERT_PRESENT, NoAlertPresentException.class);
    2613:  ^
    2614:  java/test/org/openqa/selenium/remote/ErrorHandlerTest.java:450: warning: [removal] ErrorCodes in org.openqa.selenium.remote has been deprecated and marked for removal
    2615:  exceptions.put(ErrorCodes.ASYNC_SCRIPT_TIMEOUT, ScriptTimeoutException.class);
    2616:  ^
    2617:  java/test/org/openqa/selenium/remote/ErrorHandlerTest.java:451: warning: [removal] ErrorCodes in org.openqa.selenium.remote has been deprecated and marked for removal
    2618:  exceptions.put(ErrorCodes.INVALID_SELECTOR_ERROR, InvalidSelectorException.class);
    2619:  ^
    2620:  java/test/org/openqa/selenium/remote/ErrorHandlerTest.java:452: warning: [removal] ErrorCodes in org.openqa.selenium.remote has been deprecated and marked for removal
    2621:  exceptions.put(ErrorCodes.SESSION_NOT_CREATED, SessionNotCreatedException.class);
    2622:  ^
    2623:  java/test/org/openqa/selenium/remote/ErrorHandlerTest.java:453: warning: [removal] ErrorCodes in org.openqa.selenium.remote has been deprecated and marked for removal
    2624:  exceptions.put(ErrorCodes.MOVE_TARGET_OUT_OF_BOUNDS, MoveTargetOutOfBoundsException.class);
    2625:  ^
    2626:  java/test/org/openqa/selenium/remote/ErrorHandlerTest.java:454: warning: [removal] ErrorCodes in org.openqa.selenium.remote has been deprecated and marked for removal
    2627:  exceptions.put(ErrorCodes.INVALID_XPATH_SELECTOR, InvalidSelectorException.class);
    2628:  ^
    2629:  java/test/org/openqa/selenium/remote/ErrorHandlerTest.java:455: warning: [removal] ErrorCodes in org.openqa.selenium.remote has been deprecated and marked for removal
    2630:  exceptions.put(ErrorCodes.INVALID_XPATH_SELECTOR_RETURN_TYPER, InvalidSelectorException.class);
    2631:  ^
    2632:  java/test/org/openqa/selenium/remote/ErrorHandlerTest.java:469: warning: [removal] ErrorCodes in org.openqa.selenium.remote has been deprecated and marked for removal
    2633:  ? ErrorCodes.INVALID_SELECTOR_ERROR
    2634:  ^
    2635:  java/test/org/openqa/selenium/remote/ErrorHandlerTest.java:471: warning: [removal] ErrorCodes in org.openqa.selenium.remote has been deprecated and marked for removal
    2636:  assertThat(new ErrorCodes().toStatusCode(e)).isEqualTo(expected);
    2637:  ^
    2638:  java/test/org/openqa/selenium/remote/ErrorHandlerTest.java:483: warning: [removal] ErrorCodes in org.openqa.selenium.remote has been deprecated and marked for removal
    2639:  response.setState(new ErrorCodes().toState(status));
    2640:  ^
    2641:  (19:55:22) �[31m�[1mFAIL: �[0m//py:common-chrome-test/selenium/webdriver/common/fedcm_tests.py (see /home/runner/.bazel/execroot/_main/bazel-out/k8-fastbuild/testlogs/py/common-chrome-test/selenium/webdriver/common/fedcm_tests.py/test.log)
    2642:  �[31m�[1mFAILED: �[0m//py:common-chrome-test/selenium/webdriver/common/fedcm_tests.py (Summary)
    2643:  /home/runner/.bazel/execroot/_main/bazel-out/k8-fastbuild/testlogs/py/common-chrome-test/selenium/webdriver/common/fedcm_tests.py/test.log
    ...
    
    2646:  (19:55:22) �[32mINFO: �[0mFrom Testing //py:common-chrome-test/selenium/webdriver/common/fedcm_tests.py:
    2647:  ============================= test session starts ==============================
    2648:  platform linux -- Python 3.9.21, pytest-7.4.4, pluggy-1.3.0
    2649:  rootdir: /mnt/engflow/worker/work/0/exec/bazel-out/k8-fastbuild/bin/py/common-chrome-test/selenium/webdriver/common/fedcm_tests.py.runfiles/_main/py
    2650:  configfile: pyproject.toml
    2651:  plugins: instafail-0.5.0, trio-0.8.0, mock-3.12.0
    2652:  collected 24 items
    2653:  py/test/selenium/webdriver/common/fedcm_tests.py::TestFedCM::test_no_dialog_title[chrome] PASSED [  4%]
    2654:  py/test/selenium/webdriver/common/fedcm_tests.py::TestFedCM::test_no_dialog_subtitle[chrome] PASSED [  8%]
    2655:  py/test/selenium/webdriver/common/fedcm_tests.py::TestFedCM::test_no_dialog_type[chrome] PASSED [ 12%]
    2656:  py/test/selenium/webdriver/common/fedcm_tests.py::TestFedCM::test_no_dialog_get_accounts[chrome] PASSED [ 16%]
    2657:  py/test/selenium/webdriver/common/fedcm_tests.py::TestFedCM::test_no_dialog_select_account[chrome] PASSED [ 20%]
    2658:  py/test/selenium/webdriver/common/fedcm_tests.py::TestFedCM::test_no_dialog_cancel[chrome] PASSED [ 25%]
    2659:  py/test/selenium/webdriver/common/fedcm_tests.py::TestFedCM::test_no_dialog_click_continue[chrome] PASSED [ 29%]
    2660:  py/test/selenium/webdriver/common/fedcm_tests.py::TestFedCM::test_trigger_and_verify_dialog_title[chrome] PASSED [ 33%]
    2661:  py/test/selenium/webdriver/common/fedcm_tests.py::TestFedCM::test_trigger_and_verify_dialog_subtitle[chrome] FAILED [ 37%]
    2662:  __________ TestFedCM.test_trigger_and_verify_dialog_subtitle[chrome] ___________
    ...
    
    2708:  while True:
    2709:  try:
    2710:  value = method(self._driver)
    2711:  if value:
    2712:  return value
    2713:  except self._ignored_exceptions as exc:
    2714:  screen = getattr(exc, "screen", None)
    2715:  stacktrace = getattr(exc, "stacktrace", None)
    2716:  if time.monotonic() > end_time:
    2717:  break
    2718:  time.sleep(self._poll)
    2719:  >       raise TimeoutException(message, screen, stacktrace)
    2720:  E       selenium.common.exceptions.TimeoutException: Message:
    2721:  py/selenium/webdriver/support/wait.py:146: TimeoutException
    2722:  py/test/selenium/webdriver/common/fedcm_tests.py::TestFedCM::test_trigger_and_verify_dialog_type[chrome] PASSED [ 41%]
    2723:  py/test/selenium/webdriver/common/fedcm_tests.py::TestFedCM::test_trigger_and_verify_account_list[chrome] FAILED [ 45%]
    2724:  ____________ TestFedCM.test_trigger_and_verify_account_list[chrome] ____________
    ...
    
    2783:  py/selenium/webdriver/support/wait.py:146: TimeoutException
    2784:  py/test/selenium/webdriver/common/fedcm_tests.py::TestFedCM::test_select_account[chrome] PASSED [ 50%]
    2785:  py/test/selenium/webdriver/common/fedcm_tests.py::TestFedCM::test_dialog_cancel[chrome] PASSED [ 54%]
    2786:  py/test/selenium/webdriver/common/fedcm_tests.py::TestFedCM::test_enable_fedcm_delay[chrome] PASSED [ 58%]
    2787:  py/test/selenium/webdriver/common/fedcm_tests.py::TestFedCM::test_disable_fedcm_delay[chrome] PASSED [ 62%]
    2788:  py/test/selenium/webdriver/common/fedcm_tests.py::TestFedCM::test_fedcm_cooldown_reset[chrome] PASSED [ 66%]
    2789:  py/test/selenium/webdriver/common/fedcm_tests.py::TestFedCM::test_fedcm_no_dialog_type_present[chrome] PASSED [ 70%]
    2790:  py/test/selenium/webdriver/common/fedcm_tests.py::TestFedCM::test_fedcm_no_title_present[chrome] PASSED [ 75%]
    2791:  py/test/selenium/webdriver/common/fedcm_tests.py::TestFedCM::test_fedcm_no_subtitle_present[chrome] PASSED [ 79%]
    2792:  py/test/selenium/webdriver/common/fedcm_tests.py::TestFedCM::test_fedcm_no_account_list_present[chrome] PASSED [ 83%]
    2793:  py/test/selenium/webdriver/common/fedcm_tests.py::TestFedCM::test_fedcm_no_select_account_present[chrome] PASSED [ 87%]
    2794:  py/test/selenium/webdriver/common/fedcm_tests.py::TestFedCM::test_fedcm_no_cancel_dialog_present[chrome] PASSED [ 91%]
    2795:  py/test/selenium/webdriver/common/fedcm_tests.py::TestFedCM::test_fedcm_no_click_continue_present[chrome] PASSED [ 95%]
    2796:  py/test/selenium/webdriver/common/fedcm_tests.py::TestFedCM::test_verify_dialog_type_after_cooldown_reset[chrome] PASSED [100%]
    2797:  =========================== short test summary info ============================
    2798:  FAILED py/test/selenium/webdriver/common/fedcm_tests.py::TestFedCM::test_trigger_and_verify_dialog_subtitle[chrome] - selenium.common.exceptions.TimeoutException: Message:
    2799:  FAILED py/test/selenium/webdriver/common/fedcm_tests.py::TestFedCM::test_trigger_and_verify_account_list[chrome] - selenium.common.exceptions.TimeoutException: Message:
    2800:  ======================== 2 failed, 22 passed in 20.37s =========================
    2801:  Execution result: https://gypsum.cluster.engflow.com/actions/executions/ChClyfPd9glYybCBRhi9l88nEgdkZWZhdWx0GiUKINTD_2HxccwDZSFxu5AUiRGHd40Tdx7QeKJIesGCpGFCELwD
    ...
    
    2803:  ==================== Test output for //py:common-chrome-test/selenium/webdriver/common/fedcm_tests.py:
    2804:  ============================= test session starts ==============================
    2805:  platform linux -- Python 3.9.21, pytest-7.4.4, pluggy-1.3.0
    2806:  rootdir: /mnt/engflow/worker/work/0/exec/bazel-out/k8-fastbuild/bin/py/common-chrome-test/selenium/webdriver/common/fedcm_tests.py.runfiles/_main/py
    2807:  configfile: pyproject.toml
    2808:  plugins: instafail-0.5.0, trio-0.8.0, mock-3.12.0
    2809:  collected 24 items
    2810:  py/test/selenium/webdriver/common/fedcm_tests.py::TestFedCM::test_no_dialog_title[chrome] PASSED [  4%]
    2811:  py/test/selenium/webdriver/common/fedcm_tests.py::TestFedCM::test_no_dialog_subtitle[chrome] PASSED [  8%]
    2812:  py/test/selenium/webdriver/common/fedcm_tests.py::TestFedCM::test_no_dialog_type[chrome] PASSED [ 12%]
    2813:  py/test/selenium/webdriver/common/fedcm_tests.py::TestFedCM::test_no_dialog_get_accounts[chrome] PASSED [ 16%]
    2814:  py/test/selenium/webdriver/common/fedcm_tests.py::TestFedCM::test_no_dialog_select_account[chrome] PASSED [ 20%]
    2815:  py/test/selenium/webdriver/common/fedcm_tests.py::TestFedCM::test_no_dialog_cancel[chrome] PASSED [ 25%]
    2816:  py/test/selenium/webdriver/common/fedcm_tests.py::TestFedCM::test_no_dialog_click_continue[chrome] PASSED [ 29%]
    2817:  py/test/selenium/webdriver/common/fedcm_tests.py::TestFedCM::test_trigger_and_verify_dialog_title[chrome] PASSED [ 33%]
    2818:  py/test/selenium/webdriver/common/fedcm_tests.py::TestFedCM::test_trigger_and_verify_dialog_subtitle[chrome] FAILED [ 37%]
    2819:  __________ TestFedCM.test_trigger_and_verify_dialog_subtitle[chrome] ___________
    ...
    
    2865:  while True:
    2866:  try:
    2867:  value = method(self._driver)
    2868:  if value:
    2869:  return value
    2870:  except self._ignored_exceptions as exc:
    2871:  screen = getattr(exc, "screen", None)
    2872:  stacktrace = getattr(exc, "stacktrace", None)
    2873:  if time.monotonic() > end_time:
    2874:  break
    2875:  time.sleep(self._poll)
    2876:  >       raise TimeoutException(message, screen, stacktrace)
    2877:  E       selenium.common.exceptions.TimeoutException: Message:
    2878:  py/selenium/webdriver/support/wait.py:146: TimeoutException
    2879:  py/test/selenium/webdriver/common/fedcm_tests.py::TestFedCM::test_trigger_and_verify_dialog_type[chrome] PASSED [ 41%]
    2880:  py/test/selenium/webdriver/common/fedcm_tests.py::TestFedCM::test_trigger_and_verify_account_list[chrome] FAILED [ 45%]
    2881:  ____________ TestFedCM.test_trigger_and_verify_account_list[chrome] ____________
    ...
    
    2940:  py/selenium/webdriver/support/wait.py:146: TimeoutException
    2941:  py/test/selenium/webdriver/common/fedcm_tests.py::TestFedCM::test_select_account[chrome] PASSED [ 50%]
    2942:  py/test/selenium/webdriver/common/fedcm_tests.py::TestFedCM::test_dialog_cancel[chrome] PASSED [ 54%]
    2943:  py/test/selenium/webdriver/common/fedcm_tests.py::TestFedCM::test_enable_fedcm_delay[chrome] PASSED [ 58%]
    2944:  py/test/selenium/webdriver/common/fedcm_tests.py::TestFedCM::test_disable_fedcm_delay[chrome] PASSED [ 62%]
    2945:  py/test/selenium/webdriver/common/fedcm_tests.py::TestFedCM::test_fedcm_cooldown_reset[chrome] PASSED [ 66%]
    2946:  py/test/selenium/webdriver/common/fedcm_tests.py::TestFedCM::test_fedcm_no_dialog_type_present[chrome] PASSED [ 70%]
    2947:  py/test/selenium/webdriver/common/fedcm_tests.py::TestFedCM::test_fedcm_no_title_present[chrome] PASSED [ 75%]
    2948:  py/test/selenium/webdriver/common/fedcm_tests.py::TestFedCM::test_fedcm_no_subtitle_present[chrome] PASSED [ 79%]
    2949:  py/test/selenium/webdriver/common/fedcm_tests.py::TestFedCM::test_fedcm_no_account_list_present[chrome] PASSED [ 83%]
    2950:  py/test/selenium/webdriver/common/fedcm_tests.py::TestFedCM::test_fedcm_no_select_account_present[chrome] PASSED [ 87%]
    2951:  py/test/selenium/webdriver/common/fedcm_tests.py::TestFedCM::test_fedcm_no_cancel_dialog_present[chrome] PASSED [ 91%]
    2952:  py/test/selenium/webdriver/common/fedcm_tests.py::TestFedCM::test_fedcm_no_click_continue_present[chrome] PASSED [ 95%]
    2953:  py/test/selenium/webdriver/common/fedcm_tests.py::TestFedCM::test_verify_dialog_type_after_cooldown_reset[chrome] PASSED [100%]
    2954:  =========================== short test summary info ============================
    2955:  FAILED py/test/selenium/webdriver/common/fedcm_tests.py::TestFedCM::test_trigger_and_verify_dialog_subtitle[chrome] - selenium.common.exceptions.TimeoutException: Message:
    2956:  FAILED py/test/selenium/webdriver/common/fedcm_tests.py::TestFedCM::test_trigger_and_verify_account_list[chrome] - selenium.common.exceptions.TimeoutException: Message:
    2957:  ======================== 2 failed, 22 passed in 20.87s =========================
    2958:  Execution result: https://gypsum.cluster.engflow.com/actions/executions/ChClyfPd9glYybCBRhi9l88nEgdkZWZhdWx0GiUKINTD_2HxccwDZSFxu5AUiRGHd40Tdx7QeKJIesGCpGFCELwD
    2959:  ================================================================================
    2960:  (19:55:22) �[32mINFO: �[0mFrom Building java/test/org/openqa/selenium/remote/RemotableByTest.jar (1 source file) and running annotation processors (AutoServiceProcessor):
    2961:  java/test/org/openqa/selenium/remote/RemotableByTest.java:23: warning: [removal] ErrorCodes in org.openqa.selenium.remote has been deprecated and marked for removal
    2962:  import static org.openqa.selenium.remote.ErrorCodes.SUCCESS_STRING;
    2963:  ^
    2964:  java/test/org/openqa/selenium/remote/RemotableByTest.java:23: warning: [removal] ErrorCodes in org.openqa.selenium.remote has been deprecated and marked for removal
    2965:  import static org.openqa.selenium.remote.ErrorCodes.SUCCESS_STRING;
    2966:  ^
    2967:  java/test/org/openqa/selenium/remote/RemotableByTest.java:23: warning: [removal] ErrorCodes in org.openqa.selenium.remote has been deprecated and marked for removal
    2968:  import static org.openqa.selenium.remote.ErrorCodes.SUCCESS_STRING;
    2969:  ^
    2970:  java/test/org/openqa/selenium/remote/RemotableByTest.java:45: warning: [removal] ErrorCodes in org.openqa.selenium.remote has been deprecated and marked for removal
    2971:  private final ErrorCodes errorCodes = new ErrorCodes();
    2972:  ^
    2973:  java/test/org/openqa/selenium/remote/RemotableByTest.java:45: warning: [removal] ErrorCodes in org.openqa.selenium.remote has been deprecated and marked for removal
    2974:  private final ErrorCodes errorCodes = new ErrorCodes();
    2975:  ^
    2976:  java/test/org/openqa/selenium/remote/RemotableByTest.java:45: warning: [removal] ErrorCodes in org.openqa.selenium.remote has been deprecated and marked for removal
    2977:  private final ErrorCodes errorCodes = new ErrorCodes();
    2978:  ^
    2979:  java/test/org/openqa/selenium/remote/RemotableByTest.java:45: warning: [removal] ErrorCodes in org.openqa.selenium.remote has been deprecated and marked for removal
    2980:  private final ErrorCodes errorCodes = new ErrorCodes();
    2981:  ^
    2982:  (19:55:23) �[32m[14,227 / 15,074]�[0m 1064 / 2264 tests, �[31m�[1m2 failed�[0m;�[0m Building java/test/org/openqa/selenium/grid/data/DefaultSlotMatcherTest.jar (1 source file); 9s remote, remote-cache ... (50 actions, 3 running)
    2983:  (19:55:23) �[32mINFO: �[0mFrom Building java/test/org/openqa/selenium/remote/codec/w3c/W3CHttpResponseCodecTest.jar (1 source file):
    2984:  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
    2985:  import static org.openqa.selenium.remote.ErrorCodes.METHOD_NOT_ALLOWED;
    2986:  ^
    2987:  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
    2988:  assertThat(decoded.getStatus()).isEqualTo(ErrorCodes.SUCCESS);
    2989:  ^
    2990:  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
    2991:  assertThat(decoded.getStatus()).isEqualTo(ErrorCodes.UNHANDLED_ERROR);
    2992:  ^
    2993:  java/test/org/openqa/selenium/remote/codec/w3c/W3CHttpResponseCodecTest.java:107: warning: [removal] ErrorCodes in org.open...

    @VietND96 VietND96 merged commit 900bbaa into trunk Apr 8, 2025
    33 checks passed
    @VietND96 VietND96 deleted the ignore-prefixed-options branch April 8, 2025 00:53
    PhilipWoulfe pushed a commit to PhilipWoulfe/F1Competition that referenced this pull request Mar 16, 2026
    Updated [Selenium.Support](https://github.com/SeleniumHQ/selenium) from
    4.31.0 to 4.41.0.
    
    <details>
    <summary>Release notes</summary>
    
    _Sourced from [Selenium.Support's
    releases](https://github.com/SeleniumHQ/selenium/releases)._
    
    ## 4.41.0
    
    ## Detailed Changelogs by Component
    
    <img src="https://www.selenium.dev/images/programming/java.svg"
    width="20" height="20">
    **[Java](https://github.com/SeleniumHQ/selenium/blob/trunk/java/CHANGELOG)**
    &nbsp;&nbsp;&nbsp; | &nbsp;&nbsp;&nbsp;<img
    src="https://www.selenium.dev/images/programming/python.svg" width="20"
    height="20">
    **[Python](https://github.com/SeleniumHQ/selenium/blob/trunk/py/CHANGES)**
    &nbsp;&nbsp;&nbsp; | &nbsp;&nbsp;&nbsp;<img
    src="https://www.selenium.dev/images/programming/dotnet.svg" width="20"
    height="20">
    **[DotNet](https://github.com/SeleniumHQ/selenium/blob/trunk/dotnet/CHANGELOG)**
    &nbsp;&nbsp;&nbsp; | &nbsp;&nbsp;&nbsp;<img
    src="https://www.selenium.dev/images/programming/ruby.svg" width="20"
    height="20">
    **[Ruby](https://github.com/SeleniumHQ/selenium/blob/trunk/rb/CHANGES)**
    &nbsp;&nbsp;&nbsp; | &nbsp;&nbsp;&nbsp;<img
    src="https://www.selenium.dev/images/programming/javascript.svg"
    width="20" height="20">
    **[JavaScript](https://github.com/SeleniumHQ/selenium/blob/trunk/javascript/selenium-webdriver/CHANGES.md)**
    <br>
    
    <!-- Release notes generated using configuration in .github/release.yml
    at selenium-4.41.0 -->
    
    ## What's Changed
    <details>
    <summary>Click to see all the changes included in this release</summary>
    
    * [py] Remove type stub packages from runtime dependencies by
    @​cgoldberg in https://github.com/SeleniumHQ/selenium/pull/16945
    * Canonical approach to supporting AI agent directions by @​titusfortner
    in https://github.com/SeleniumHQ/selenium/pull/16735
    * [build] Pre-release workflow improvements by @​titusfortner in
    https://github.com/SeleniumHQ/selenium/pull/16946
    * [build] Prevent nightly releases during release window by
    @​titusfortner in https://github.com/SeleniumHQ/selenium/pull/16948
    * [build] Fix Bazel NuGet push implementation by @​titusfortner in
    https://github.com/SeleniumHQ/selenium/pull/16950
    * [build] Release workflow improvements by @​titusfortner in
    https://github.com/SeleniumHQ/selenium/pull/16947
    * [build] Fix Bazel JSDocs implementation by @​titusfortner in
    https://github.com/SeleniumHQ/selenium/pull/16949
    * [build] Create config files from environment variables for publishing
    by @​titusfortner in https://github.com/SeleniumHQ/selenium/pull/16951
    * [js] create task to update dependencies by @​titusfortner in
    https://github.com/SeleniumHQ/selenium/pull/16942
    * [build] Java release improvements and build verification tasks by
    @​titusfortner in https://github.com/SeleniumHQ/selenium/pull/16952
    * [py] integrate mypy type checking with Bazel by @​titusfortner in
    https://github.com/SeleniumHQ/selenium/pull/16958
    * [build] Migrate workflows to use centralized bazel.yml by
    @​titusfortner in https://github.com/SeleniumHQ/selenium/pull/16955
    * [dotnet] [bidi] Simplify context aware command options by
    @​nvborisenko in https://github.com/SeleniumHQ/selenium/pull/16954
    * [build] simplify release.yml: remove draft, build once during publish
    by @​titusfortner in https://github.com/SeleniumHQ/selenium/pull/16960
    * [dotnet] [bidi] AOT safe json converter for `Input.Origin` class by
    @​nvborisenko in https://github.com/SeleniumHQ/selenium/pull/16962
    * [dotnet] [bidi] AOT safe json converter for `OptionalConverter` by
    @​nvborisenko in https://github.com/SeleniumHQ/selenium/pull/16963
    * [dotnet] [bidi] Null guard for event handlers by @​nvborisenko in
    https://github.com/SeleniumHQ/selenium/pull/16967
    * [java] Improve error message for died grid by @​asolntsev in
    https://github.com/SeleniumHQ/selenium/pull/16938
    * [build] combine pre-release dependency updates by @​titusfortner in
    https://github.com/SeleniumHQ/selenium/pull/16973
    * [rb] remove stored atoms these get generated by build by
    @​titusfortner in https://github.com/SeleniumHQ/selenium/pull/16971
    * [dotnet] [bidi] Unignore some internal tests by @​nvborisenko in
    https://github.com/SeleniumHQ/selenium/pull/16968
    * [build] run ruff on python files outside py directory by
    @​titusfortner in https://github.com/SeleniumHQ/selenium/pull/16957
    * [py] Fix return type hint for `alert_is_present` by @​nemowang2003 in
    https://github.com/SeleniumHQ/selenium/pull/16975
    * Replace hardcoded bazel-selenium references with dynamic path
    resolution by @​titusfortner in
    https://github.com/SeleniumHQ/selenium/pull/16976
    * No More CrazyFun! by @​titusfortner in
    https://github.com/SeleniumHQ/selenium/pull/16972
    * [build] Remove update_gh_pages in favor of CI workflow by
    @​titusfortner in https://github.com/SeleniumHQ/selenium/pull/16977
    * [build] Remove legacy rake helpers and unused code by @​titusfortner
    in https://github.com/SeleniumHQ/selenium/pull/16978
    * [py] make bazel test target names consistent with other languages by
    @​titusfortner in https://github.com/SeleniumHQ/selenium/pull/16969
    * [dotnet] [bidi] Fix namespace for Permissions module by @​nvborisenko
    in https://github.com/SeleniumHQ/selenium/pull/16981
    * [dotnet] [bidi] Hide Broker as internal implementation by
    @​nvborisenko in https://github.com/SeleniumHQ/selenium/pull/16982
    * [dotnet] [bidi] Refactor BiDi module initialization to pass BiDi
    explicitly by @​nvborisenko in
    https://github.com/SeleniumHQ/selenium/pull/16983
    * [build] Add DocFX updater script by @​titusfortner in
    https://github.com/SeleniumHQ/selenium/pull/16980
    * [build] add reusable commit-changes.yml workflow by @​titusfortner in
    https://github.com/SeleniumHQ/selenium/pull/16965
    * [java] fix JSON parsing of numbers with exponent by @​joerg1985 in
    https://github.com/SeleniumHQ/selenium/pull/16961
    * [build] Skip macOS-only archive rules on unsupported platforms by
    @​titusfortner in https://github.com/SeleniumHQ/selenium/pull/16985
    * [build] Split Rakefile into per-language task files by @​titusfortner
    in https://github.com/SeleniumHQ/selenium/pull/16979
    * Implement fast bazel target lookup with index caching by
    @​titusfortner in https://github.com/SeleniumHQ/selenium/pull/16974
    * [build] Remove git.add() calls from rake tasks by @​titusfortner in
    https://github.com/SeleniumHQ/selenium/pull/16994
    * [js] Add eslint binary target for selenium-webdriver by @​titusfortner
    in https://github.com/SeleniumHQ/selenium/pull/16992
     ... (truncated)
    
    ## 4.40.0
    
    ## Detailed Changelogs by Component
    
    <img src="https://www.selenium.dev/images/programming/java.svg"
    width="20" height="20">
    **[Java](https://github.com/SeleniumHQ/selenium/blob/trunk/java/CHANGELOG)**
    &nbsp;&nbsp;&nbsp; | &nbsp;&nbsp;&nbsp;<img
    src="https://www.selenium.dev/images/programming/python.svg" width="20"
    height="20">
    **[Python](https://github.com/SeleniumHQ/selenium/blob/trunk/py/CHANGES)**
    &nbsp;&nbsp;&nbsp; | &nbsp;&nbsp;&nbsp;<img
    src="https://www.selenium.dev/images/programming/dotnet.svg" width="20"
    height="20">
    **[DotNet](https://github.com/SeleniumHQ/selenium/blob/trunk/dotnet/CHANGELOG)**
    &nbsp;&nbsp;&nbsp; | &nbsp;&nbsp;&nbsp;<img
    src="https://www.selenium.dev/images/programming/ruby.svg" width="20"
    height="20">
    **[Ruby](https://github.com/SeleniumHQ/selenium/blob/trunk/rb/CHANGES)**
    &nbsp;&nbsp;&nbsp; | &nbsp;&nbsp;&nbsp;<img
    src="https://www.selenium.dev/images/programming/javascript.svg"
    width="20" height="20">
    **[JavaScript](https://github.com/SeleniumHQ/selenium/blob/trunk/javascript/selenium-webdriver/CHANGES.md)**
    <br>
    
    
    <!-- Release notes generated using configuration in .github/release.yml
    at trunk -->
    
    ## What's Changed
    <details>
    <summary>Click to see all the changes included in this release</summary>
    
    * [dotnet] Modernize `EnvironmentManager`, standardize assembly teardown
    by @​RenderMichael in https://github.com/SeleniumHQ/selenium/pull/15551
    * [java] Refactor tests by @​asolntsev in
    https://github.com/SeleniumHQ/selenium/pull/16684
    * [ci]: bump cargo lockfile by @​navin772 in
    https://github.com/SeleniumHQ/selenium/pull/16698
    * [java][BiDi] change emulation commands return type to void by
    @​Delta456 in https://github.com/SeleniumHQ/selenium/pull/16699
    * [java] simplify strings processing by @​iampopovich in
    https://github.com/SeleniumHQ/selenium/pull/15309
    * Fix few more flaky ruby tests by @​asolntsev in
    https://github.com/SeleniumHQ/selenium/pull/16695
    * [bazel] Switch to custom `closure_js_deps` rule by @​shs96c in
    https://github.com/SeleniumHQ/selenium/pull/16571
    * [dotnet] [bidi] Support SetScreenSettingsOverrideAsync method in
    Emulation module by @​nvborisenko in
    https://github.com/SeleniumHQ/selenium/pull/16704
    * [dotnet] Modernize code patterns in test suites by @​RenderMichael in
    https://github.com/SeleniumHQ/selenium/pull/16701
    * use proper AssertJ asserts that generate a useful error message by
    @​asolntsev in https://github.com/SeleniumHQ/selenium/pull/16707
    * fix Java language level in IDEA by @​asolntsev in
    https://github.com/SeleniumHQ/selenium/pull/16708
    * [py] Properly verify Selenium Manager exists by @​cgoldberg in
    https://github.com/SeleniumHQ/selenium/pull/16711
    * fix flaky Ruby test `element_spec.rb` by @​asolntsev in
    https://github.com/SeleniumHQ/selenium/pull/16709
    * [java][BiDi] implement `emulation.setScreenOrientationOverride` by
    @​Delta456 in https://github.com/SeleniumHQ/selenium/pull/16705
    * [rb] add synchronization and error handling for socket interactions by
    @​titusfortner in https://github.com/SeleniumHQ/selenium/pull/16487
    * [rb] mark low level bidi implementation as private api by
    @​titusfortner in https://github.com/SeleniumHQ/selenium/pull/16475
    * [rb] ensure driver process is always stopped by @​titusfortner in
    https://github.com/SeleniumHQ/selenium/pull/15635
    * [rb] create user-friendly method for enabling bidi by @​titusfortner
    in https://github.com/SeleniumHQ/selenium/pull/14284
    * [dotnet] [bidi] Added missing Script.RemoteReference LocaclValue type
    by @​nvborisenko in https://github.com/SeleniumHQ/selenium/pull/16717
    * [dotnet] Standardize `IEquatable<T>` implementations across types
    overriding Equals by @​RenderMichael in
    https://github.com/SeleniumHQ/selenium/pull/16665
    * [dotnet] Fix nullability warnings in `WebDriver` by @​RenderMichael in
    https://github.com/SeleniumHQ/selenium/pull/16662
    * [py] Don't compare object identity in conftest by @​cgoldberg in
    https://github.com/SeleniumHQ/selenium/pull/16723
    * #​16720 avoid failing because of temporary Chrome internal files by
    @​asolntsev in https://github.com/SeleniumHQ/selenium/pull/16722
    * [rb] Add force encoding to remove warnings caused by json 3.0 by
    @​aguspe in https://github.com/SeleniumHQ/selenium/pull/16728
    * [py] Remove deprecated FTP proxy support by @​cgoldberg in
    https://github.com/SeleniumHQ/selenium/pull/16721
    * [py] Bump ruff and mypy versions by @​cgoldberg in
    https://github.com/SeleniumHQ/selenium/pull/16737
    * Create target directories before copying file by @​MohabMohie in
    https://github.com/SeleniumHQ/selenium/pull/16739
    * [bazel+closure]: Vendor the version of closure library we use by
    @​shs96c in https://github.com/SeleniumHQ/selenium/pull/16742
    * [closure] Fix failing `//javascript/atoms:test-*` targets by @​shs96c
    in https://github.com/SeleniumHQ/selenium/pull/16749
    * Avoid sleep in tests by @​asolntsev in
    https://github.com/SeleniumHQ/selenium/pull/16713
    * [bazel] Bump `rules_closure` and google closure libary to latest
    release by @​shs96c in https://github.com/SeleniumHQ/selenium/pull/16755
    * [refactor] call WebDriverException constructor instead of using
    reflection by @​asolntsev in
    https://github.com/SeleniumHQ/selenium/pull/16763
    * [build] Pin Browsers in Bazel by default by @​titusfortner in
    https://github.com/SeleniumHQ/selenium/pull/16743
    * [build] build selenium manager for tests by @​titusfortner in
    https://github.com/SeleniumHQ/selenium/pull/16736
    * [refactor] replace JUnit assertions by AssertJ by @​asolntsev in
    https://github.com/SeleniumHQ/selenium/pull/16765
    * [py] Add LocalWebDriver base class by @​cgoldberg in
    https://github.com/SeleniumHQ/selenium/pull/16730
    * Fix bug in FileHandler: it always failed on MacOS by @​asolntsev in
    https://github.com/SeleniumHQ/selenium/pull/16771
    * [java] add missing bazel artifacts by @​titusfortner in
    https://github.com/SeleniumHQ/selenium/pull/16773
     ... (truncated)
    
    ## 4.39.0
    
    ## Detailed Changelogs by Component
    
    <img src="https://www.selenium.dev/images/programming/java.svg"
    width="20" height="20">
    **[Java](https://github.com/SeleniumHQ/selenium/blob/trunk/java/CHANGELOG)**
    &nbsp;&nbsp;&nbsp; | &nbsp;&nbsp;&nbsp;<img
    src="https://www.selenium.dev/images/programming/python.svg" width="20"
    height="20">
    **[Python](https://github.com/SeleniumHQ/selenium/blob/trunk/py/CHANGES)**
    &nbsp;&nbsp;&nbsp; | &nbsp;&nbsp;&nbsp;<img
    src="https://www.selenium.dev/images/programming/dotnet.svg" width="20"
    height="20">
    **[DotNet](https://github.com/SeleniumHQ/selenium/blob/trunk/dotnet/CHANGELOG)**
    &nbsp;&nbsp;&nbsp; | &nbsp;&nbsp;&nbsp;<img
    src="https://www.selenium.dev/images/programming/ruby.svg" width="20"
    height="20">
    **[Ruby](https://github.com/SeleniumHQ/selenium/blob/trunk/rb/CHANGES)**
    &nbsp;&nbsp;&nbsp; | &nbsp;&nbsp;&nbsp;<img
    src="https://www.selenium.dev/images/programming/javascript.svg"
    width="20" height="20">
    **[JavaScript](https://github.com/SeleniumHQ/selenium/blob/trunk/javascript/selenium-webdriver/CHANGES.md)**
    <br>
    
    
    <!-- Release notes generated using configuration in .github/release.yml
    at trunk -->
    
    ## What's Changed
    <details>
    <summary>Click to see all the changes included in this release</summary>
    
    * [atoms] fix text node children are always considered as displayed
    #​16284 by @​joerg1985 in
    https://github.com/SeleniumHQ/selenium/pull/16329
    * [grid] Enhance UI with theme integration and improved status
    indicators by @​VietND96 in
    https://github.com/SeleniumHQ/selenium/pull/16512
    * [py][bidi]: add emulation command - `set_locale_override` by
    @​navin772 in https://github.com/SeleniumHQ/selenium/pull/16504
    * [py][bidi]: add emulation command `set_scripting_enabled` by
    @​navin772 in https://github.com/SeleniumHQ/selenium/pull/16513
    * [py] Update docstrings to google pydoc format by @​iampopovich in
    https://github.com/SeleniumHQ/selenium/pull/16511
    * [java][BiDi] implement `browsingContext.downloadEnd` event by
    @​Delta456 in https://github.com/SeleniumHQ/selenium/pull/16347
    * Fix typo and minor formatting changes in README.md by @​cgoldberg in
    https://github.com/SeleniumHQ/selenium/pull/16523
    * [py] Update docstrings (remove reST leftovers and resolve D200) by
    @​iampopovich in https://github.com/SeleniumHQ/selenium/pull/16525
    * [py] Fix docstring formatting and apply ruff linting rules by
    @​cgoldberg in https://github.com/SeleniumHQ/selenium/pull/16527
    * [py] Fix Ruff D417 warnings in docstrings by @​iampopovich in
    https://github.com/SeleniumHQ/selenium/pull/16535
    * [py] Fix ruff D415 warnings in docstrings by @​cgoldberg in
    https://github.com/SeleniumHQ/selenium/pull/16536
    * [py][bidi]: add `set_screen_orientation_override` command in Emulation
    by @​navin772 in https://github.com/SeleniumHQ/selenium/pull/16522
    * [py] Fix D205 ruff warnings for docstrings and add type hints by
    @​iampopovich in https://github.com/SeleniumHQ/selenium/pull/16537
    * [py][bidi]: add `set_download_behavior` command by @​navin772 in
    https://github.com/SeleniumHQ/selenium/pull/16556
    * [py] Bump pytest and dev dependencies by @​cgoldberg in
    https://github.com/SeleniumHQ/selenium/pull/16572
    * [bazel] Move `rules_rust` to `bzlmod` by @​shs96c in
    https://github.com/SeleniumHQ/selenium/pull/16566
    * [ci] Make a PR for updating mirror file instead of pushing directly to
    trunk by @​bonigarcia in
    https://github.com/SeleniumHQ/selenium/pull/16579
    * [ci] Update mirror info (2025-11-11T15:26:46Z) by
    @​github-actions[bot] in
    https://github.com/SeleniumHQ/selenium/pull/16578
    * [ci] Revert latest changes related to the mirror workflow by
    @​bonigarcia in https://github.com/SeleniumHQ/selenium/pull/16580
    * [java]: refactor request interception tests and handle CORS by
    @​navin772 in https://github.com/SeleniumHQ/selenium/pull/16585
    * [py][bidi]: enable download event tests for firefox by @​navin772 in
    https://github.com/SeleniumHQ/selenium/pull/16587
    * [py] Fix more type annotations by @​iampopovich in
    https://github.com/SeleniumHQ/selenium/pull/16551
    * [java][BiDi] implement `emulation.setTimezoneOverride` by @​Delta456
    in https://github.com/SeleniumHQ/selenium/pull/16530
    * [grid] Minimum Docker API 1.44 for Docker Engine v29+ in Dynamic Grid
    by @​VietND96 in https://github.com/SeleniumHQ/selenium/pull/16591
    * Show file modification time by @​asolntsev in
    https://github.com/SeleniumHQ/selenium/pull/16589
    * [py][bidi]: add emulation command `set_user_agent_override` by
    @​navin772 in https://github.com/SeleniumHQ/selenium/pull/16595
    * [grid] Improve Docker client for Dynamic Grid by @​VietND96 in
    https://github.com/SeleniumHQ/selenium/pull/16596
    * [py]: reuse driver in case of bidi tests by @​navin772 in
    https://github.com/SeleniumHQ/selenium/pull/16597
    * [grid] Improve browser container labels and naming in Dynamic Grid by
    @​VietND96 in https://github.com/SeleniumHQ/selenium/pull/16599
    * [build] Upgrade rules_dotnet to 0.20.5 by @​nvborisenko in
    https://github.com/SeleniumHQ/selenium/pull/16592
    * [dotnet] [bidi] Simplify namespace for communications by @​nvborisenko
    in https://github.com/SeleniumHQ/selenium/pull/16602
    * [py] Improve type hints with union syntax and native types by
    @​cgoldberg in https://github.com/SeleniumHQ/selenium/pull/16590
    * [py] Use double quotes in generate.py by @​Delta456 in
    https://github.com/SeleniumHQ/selenium/pull/16607
    * [ci] Use pagination in mirror workflow to get all Selenium releases by
    @​bonigarcia in https://github.com/SeleniumHQ/selenium/pull/16605
    * [dotnet] Generate atoms statically by @​nvborisenko in
    https://github.com/SeleniumHQ/selenium/pull/16608
    * [nodejs] Update dev dependencies to fix vulnerabilities by @​cgoldberg
    in https://github.com/SeleniumHQ/selenium/pull/16610
    * [java][BiDi] emulation: allow passing null to GeolocationOverride by
    @​Delta456 in https://github.com/SeleniumHQ/selenium/pull/16594
    * [grid] Update container label `compose.oneoff` in Dynamic Grid by
    @​VietND96 in https://github.com/SeleniumHQ/selenium/pull/16613
     ... (truncated)
    
    ## 4.38.0
    
    ## Detailed Changelogs by Component
    
    <img src="https://www.selenium.dev/images/programming/java.svg"
    width="20" height="20">
    **[Java](https://github.com/SeleniumHQ/selenium/blob/trunk/java/CHANGELOG)**
    &nbsp;&nbsp;&nbsp; | &nbsp;&nbsp;&nbsp;<img
    src="https://www.selenium.dev/images/programming/python.svg" width="20"
    height="20">
    **[Python](https://github.com/SeleniumHQ/selenium/blob/trunk/py/CHANGES)**
    &nbsp;&nbsp;&nbsp; | &nbsp;&nbsp;&nbsp;<img
    src="https://www.selenium.dev/images/programming/dotnet.svg" width="20"
    height="20">
    **[DotNet](https://github.com/SeleniumHQ/selenium/blob/trunk/dotnet/CHANGELOG)**
    &nbsp;&nbsp;&nbsp; | &nbsp;&nbsp;&nbsp;<img
    src="https://www.selenium.dev/images/programming/ruby.svg" width="20"
    height="20">
    **[Ruby](https://github.com/SeleniumHQ/selenium/blob/trunk/rb/CHANGES)**
    &nbsp;&nbsp;&nbsp; | &nbsp;&nbsp;&nbsp;<img
    src="https://www.selenium.dev/images/programming/javascript.svg"
    width="20" height="20">
    **[JavaScript](https://github.com/SeleniumHQ/selenium/blob/trunk/javascript/selenium-webdriver/CHANGES.md)**
    <br>
    
    
    <!-- Release notes generated using configuration in .github/release.yml
    at trunk -->
    
    ## What's Changed
    <details>
    <summary>Click to see all the changes included in this release</summary>
    
    * [dotnet] [bidi] Avoid using JsonInclude attribute to include optional
    property for DTO by @​nvborisenko in
    https://github.com/SeleniumHQ/selenium/pull/16413
    * [rb] Bump prism to 1.6.0 by @​Earlopain in
    https://github.com/SeleniumHQ/selenium/pull/16450
    * [java] JSpecify annotations for `ExecuteMethod` by @​mk868 in
    https://github.com/SeleniumHQ/selenium/pull/16464
    * [rb] Fix Network issue by removing nil values on network requests by
    @​aguspe in https://github.com/SeleniumHQ/selenium/pull/16442
    * [py] Replaced :param: and :args: from docstrings by @​iampopovich in
    https://github.com/SeleniumHQ/selenium/pull/16469
    * [java] JSpecify annotations for `org.openqa.selenium.federatedcredent…
    by @​mk868 in https://github.com/SeleniumHQ/selenium/pull/16461
    * [java] JSpecify annotations for `org.openqa.selenium.interactions` by
    @​mk868 in https://github.com/SeleniumHQ/selenium/pull/16462
    * [java][rb] Remove cruft from old Travis CI environment by @​cgoldberg
    in https://github.com/SeleniumHQ/selenium/pull/16473
    * [java] JSpecify annotations for `org.openqa.selenium.net` by @​mk868
    in https://github.com/SeleniumHQ/selenium/pull/16463
    * [rb] remove deprecated classes for previous implementation of log han…
    by @​titusfortner in https://github.com/SeleniumHQ/selenium/pull/16474
    * [build] minimize number of ruby targets run with bidi by
    @​titusfortner in https://github.com/SeleniumHQ/selenium/pull/16477
    * [java] JSpecify annotations for `Credential` and `MBean` by @​mk868 in
    https://github.com/SeleniumHQ/selenium/pull/16481
    * [java] JSpecify annotations for `ScriptKey` and `UnpinnedScriptKey` by
    @​mk868 in https://github.com/SeleniumHQ/selenium/pull/16483
    * [java] JSpecify annotations for `FileDetector` by @​mk868 in
    https://github.com/SeleniumHQ/selenium/pull/16482
    * [java] JSpecify annotations for `ExpectedCondition` by @​mk868 in
    https://github.com/SeleniumHQ/selenium/pull/16489
    * [java] JSpecify annotations for `Response` `SessionId` `HttpSessionId`
    by @​mk868 in https://github.com/SeleniumHQ/selenium/pull/16490
    * [rb][build] improve ruby local_dev generation by @​titusfortner in
    https://github.com/SeleniumHQ/selenium/pull/16495
    * [build] removing test_tag_filter tag that isn't being used anywhere by
    @​titusfortner in https://github.com/SeleniumHQ/selenium/pull/16496
    * [rb][build] disable dev shm for Chrome and Edge on RBE by
    @​titusfortner in https://github.com/SeleniumHQ/selenium/pull/16497
    * [rb] update syntax with rspec linter by @​titusfortner in
    https://github.com/SeleniumHQ/selenium/pull/16498
    * [java][bidi]: add test for `onHistoryUpdated` event by @​navin772 in
    https://github.com/SeleniumHQ/selenium/pull/16293
    * [py] Bump version of ruff formatter/linter by @​cgoldberg in
    https://github.com/SeleniumHQ/selenium/pull/16502
    * [rust] Fixe Edge version test by @​bonigarcia in
    https://github.com/SeleniumHQ/selenium/pull/16501
    * [py][bidi]: add `set_timezone_override` command in emulation by
    @​navin772 in https://github.com/SeleniumHQ/selenium/pull/16500
    * [py] Cleanup and convert more doctrings to google-style by
    @​iampopovich in https://github.com/SeleniumHQ/selenium/pull/16503
    * [build] fix update-documentation workflow by @​titusfortner in
    https://github.com/SeleniumHQ/selenium/pull/16505
    * fix workflows for updating documentation from stage release by
    @​titusfortner in https://github.com/SeleniumHQ/selenium/pull/16506
    
    </details>
    
    **Full Changelog**:
    https://github.com/SeleniumHQ/selenium/compare/selenium-4.37.0...selenium-4.38.0
    
    ## 4.37.0
    
    ## Detailed Changelogs by Component
    
    <img src="https://www.selenium.dev/images/programming/java.svg"
    width="20" height="20">
    **[Java](https://github.com/SeleniumHQ/selenium/blob/trunk/java/CHANGELOG)**
    &nbsp;&nbsp;&nbsp; | &nbsp;&nbsp;&nbsp;<img
    src="https://www.selenium.dev/images/programming/python.svg" width="20"
    height="20">
    **[Python](https://github.com/SeleniumHQ/selenium/blob/trunk/py/CHANGES)**
    &nbsp;&nbsp;&nbsp; | &nbsp;&nbsp;&nbsp;<img
    src="https://www.selenium.dev/images/programming/dotnet.svg" width="20"
    height="20">
    **[DotNet](https://github.com/SeleniumHQ/selenium/blob/trunk/dotnet/CHANGELOG)**
    &nbsp;&nbsp;&nbsp; | &nbsp;&nbsp;&nbsp;<img
    src="https://www.selenium.dev/images/programming/ruby.svg" width="20"
    height="20">
    **[Ruby](https://github.com/SeleniumHQ/selenium/blob/trunk/rb/CHANGES)**
    &nbsp;&nbsp;&nbsp; | &nbsp;&nbsp;&nbsp;<img
    src="https://www.selenium.dev/images/programming/javascript.svg"
    width="20" height="20">
    **[JavaScript](https://github.com/SeleniumHQ/selenium/blob/trunk/javascript/selenium-webdriver/CHANGES.md)**
    <br>
    
    
    <!-- Release notes generated using configuration in .github/release.yml
    at trunk -->
    
    ## What's Changed
    <details>
    <summary>Click to see all the changes included in this release</summary>
    
    * [py] Re-add defaults for Chromium kwargs by @​cgoldberg in
    https://github.com/SeleniumHQ/selenium/pull/16372
    * Splitting stress tests by @​diemol in
    https://github.com/SeleniumHQ/selenium/pull/16374
    * [rb] Update Chrome/Edge args for test environment by @​cgoldberg in
    https://github.com/SeleniumHQ/selenium/pull/16376
    * [dotnet] [bidi] Emulation module by @​nvborisenko in
    https://github.com/SeleniumHQ/selenium/pull/16380
    * [py] Remove old test xfail markers from Travis CI by @​cgoldberg in
    https://github.com/SeleniumHQ/selenium/pull/16377
    * [dotnet] [bidi] Implement browsing context download events by
    @​nvborisenko in https://github.com/SeleniumHQ/selenium/pull/16382
    * [dotnet] [bidi] Support browser SetDownloadBehaviour command by
    @​nvborisenko in https://github.com/SeleniumHQ/selenium/pull/16383
    * [dotnet] [bidi] Support network SetExtraHeaders command by
    @​nvborisenko in https://github.com/SeleniumHQ/selenium/pull/16384
    * [py][build] Python CI - add unit test job and windows integration
    tests to GH runners by @​cgoldberg in
    https://github.com/SeleniumHQ/selenium/pull/16362
    * [java] Linux ARM "os.arch" system property is "aarch64" by @​mkurz in
    https://github.com/SeleniumHQ/selenium/pull/16381
    * [dotnet] [bidi] AOT safe enums serialization by @​nvborisenko in
    https://github.com/SeleniumHQ/selenium/pull/16386
    * [dotnet] Handle negative zero BiDi response by @​RenderMichael in
    https://github.com/SeleniumHQ/selenium/pull/15898
    * [dotnet] Move JSON converter attributes from centralized options into
    their respective types by @​RenderMichael in
    https://github.com/SeleniumHQ/selenium/pull/16393
    * [py] Fix Selenium Manager tests on Windows by @​cgoldberg in
    https://github.com/SeleniumHQ/selenium/pull/16391
    * [py] Fix chromedriver/msedgedriver service tests by @​cgoldberg in
    https://github.com/SeleniumHQ/selenium/pull/16395
    * [dotnet] [bidi] Modules as extensions by @​nvborisenko in
    https://github.com/SeleniumHQ/selenium/pull/16392
    * [dotnet] [bidi] Provide type info immediately when serializing by
    @​nvborisenko in https://github.com/SeleniumHQ/selenium/pull/16397
    * [bidi] [dotnet] Use events JsonTypeInfo for deserialization by
    @​nvborisenko in https://github.com/SeleniumHQ/selenium/pull/16402
    * [dotnet] Replace lazy caching mechanism in BiDi's constructor with
    simple initialization by @​RenderMichael in
    https://github.com/SeleniumHQ/selenium/pull/16399
    * [py][build] Re-add Windows to CI workflows by @​cgoldberg in
    https://github.com/SeleniumHQ/selenium/pull/16396
    * [dotnet] Help more .NETFramework projects to copy SM binaries to
    output by @​nvborisenko in
    https://github.com/SeleniumHQ/selenium/pull/16406
    * [dotnet] [bidi] Specific result type for any command by @​nvborisenko
    in https://github.com/SeleniumHQ/selenium/pull/16405
    * [dotnet] [bidi] Deserialize message fast instead of defer it by
    @​nvborisenko in https://github.com/SeleniumHQ/selenium/pull/16403
    * [dotnet] [bidi] Remove IEnumerable of command results by @​nvborisenko
    in https://github.com/SeleniumHQ/selenium/pull/16219
    * [dotnet] Remove obsoleted FtpProxy by @​nvborisenko in
    https://github.com/SeleniumHQ/selenium/pull/16411
    * [py] Configure WebSocket timeout and wait interval via ClientConfig by
    @​cgoldberg in https://github.com/SeleniumHQ/selenium/pull/16248
    * [java] Rescuing the remote cause for session creation errors by
    @​diemol in https://github.com/SeleniumHQ/selenium/pull/16418
    * [py] Add test for BiDi request handlers with classic navigation by
    @​cgoldberg in https://github.com/SeleniumHQ/selenium/pull/16421
    * [java] NullAway added by @​mk868 in
    https://github.com/SeleniumHQ/selenium/pull/16416
    * [java] feat: Add native Java 11 HTTP client methods to HttpClient
    interface by @​manuelsblanco in
    https://github.com/SeleniumHQ/selenium/pull/16412
    * [py] Raise NotImplementedError when deleting downloads in driver
    subclass by @​cgoldberg in
    https://github.com/SeleniumHQ/selenium/pull/16423
    * [java] refactor(remote/command): Merge overload's business logic by
    @​nnnnoel in https://github.com/SeleniumHQ/selenium/pull/14469
    * [py] Fix default rpId in virtual authenticator by @​cgoldberg in
    https://github.com/SeleniumHQ/selenium/pull/16428
    * make augmentation of HasBiDi/HasDevTools lazy-loaded by @​asolntsev in
    https://github.com/SeleniumHQ/selenium/pull/16338
    * [py] Update docstrings style by @​iampopovich in
    https://github.com/SeleniumHQ/selenium/pull/16427
    * [py] Support Python 3.14 and drop Python 3.9 by @​cgoldberg in
    https://github.com/SeleniumHQ/selenium/pull/16342
    * Removing FF guard for canListenToDownloadWillBeginEvent by @​diemol in
    https://github.com/SeleniumHQ/selenium/pull/16439
    * Adapting the browser_protocol file fetching to the file structure
    change. by @​diemol in https://github.com/SeleniumHQ/selenium/pull/16440
     ... (truncated)
    
    ## 4.36.0
    
    ## Detailed Changelogs by Component
    
    <img src="https://www.selenium.dev/images/programming/java.svg"
    width="20" height="20">
    **[Java](https://github.com/SeleniumHQ/selenium/blob/trunk/java/CHANGELOG)**
    &nbsp;&nbsp;&nbsp; | &nbsp;&nbsp;&nbsp;<img
    src="https://www.selenium.dev/images/programming/python.svg" width="20"
    height="20">
    **[Python](https://github.com/SeleniumHQ/selenium/blob/trunk/py/CHANGES)**
    &nbsp;&nbsp;&nbsp; | &nbsp;&nbsp;&nbsp;<img
    src="https://www.selenium.dev/images/programming/dotnet.svg" width="20"
    height="20">
    **[DotNet](https://github.com/SeleniumHQ/selenium/blob/trunk/dotnet/CHANGELOG)**
    &nbsp;&nbsp;&nbsp; | &nbsp;&nbsp;&nbsp;<img
    src="https://www.selenium.dev/images/programming/ruby.svg" width="20"
    height="20">
    **[Ruby](https://github.com/SeleniumHQ/selenium/blob/trunk/rb/CHANGES)**
    &nbsp;&nbsp;&nbsp; | &nbsp;&nbsp;&nbsp;<img
    src="https://www.selenium.dev/images/programming/javascript.svg"
    width="20" height="20">
    **[JavaScript](https://github.com/SeleniumHQ/selenium/blob/trunk/javascript/selenium-webdriver/CHANGES.md)**
    <br>
    
    
    <!-- Release notes generated using configuration in .github/release.yml
    at trunk -->
    
    ## What's Changed
    <details>
    <summary>Click to see all the changes included in this release</summary>
    
    * [py]: close ipv6 port in case of error by @​navin772 in
    https://github.com/SeleniumHQ/selenium/pull/16165
    * [docs] Update issue label in CONTRIBUTING.md by @​pallavigitwork in
    https://github.com/SeleniumHQ/selenium/pull/16169
    * [py][docs]: update dead API docs link to API reference in `index.rst`
    by @​navin772 in https://github.com/SeleniumHQ/selenium/pull/16170
    * [grid] close the HttpClient after the session is gone by @​joerg1985
    in https://github.com/SeleniumHQ/selenium/pull/16182
    * [py] Update docstring and comments in keys.py by @​Aidoni0797 in
    https://github.com/SeleniumHQ/selenium/pull/16187
    * [dotnet] [bidi] Simplify type naming of internal command parameters by
    @​nvborisenko in https://github.com/SeleniumHQ/selenium/pull/16188
    * [py] Fix formatting by @​cgoldberg in
    https://github.com/SeleniumHQ/selenium/pull/16189
    * [dotnet] [bidi] Support WebExtension module by @​nvborisenko in
    https://github.com/SeleniumHQ/selenium/pull/15850
    * [rb][BiDi] Create browser module, added user context related methods
    by @​aguspe in https://github.com/SeleniumHQ/selenium/pull/15371
    * [docs] Update bug report section in CONTRIBUTING.md by
    @​pallavigitwork in https://github.com/SeleniumHQ/selenium/pull/16191
    * [dotnet] Adding flag to enable SafariDriver logging. by @​diemol in
    https://github.com/SeleniumHQ/selenium/pull/16196
    * [java] extend the scope of the properties of the HttpCommandExecutor
    class by @​iampopovich in
    https://github.com/SeleniumHQ/selenium/pull/16186
    * [dotnet] [bidi] Serialize base64 encoded string directly to bytes by
    @​nvborisenko in https://github.com/SeleniumHQ/selenium/pull/16203
    * [dotnet] [bidi] Make cookie expiry as TimeSpan by @​nvborisenko in
    https://github.com/SeleniumHQ/selenium/pull/16204
    * [grid] Improve readTimeout in handle session between Router and Node
    by @​VietND96 in https://github.com/SeleniumHQ/selenium/pull/16163
    * [py] Fix type annotation error and raise clearer error message by
    @​Paresh-0007 in https://github.com/SeleniumHQ/selenium/pull/16174
    * [java] Unifying select class by @​vicky-iv in
    https://github.com/SeleniumHQ/selenium/pull/16220
    * [rust] Update dependency rules_cc to v0.2.0 by @​renovate[bot] in
    https://github.com/SeleniumHQ/selenium/pull/16198
    * [js] Update testing-library monorepo by @​renovate[bot] in
    https://github.com/SeleniumHQ/selenium/pull/16173
    * [js] Update dependency tmp to ^0.2.5 by @​renovate[bot] in
    https://github.com/SeleniumHQ/selenium/pull/16172
    * [dotnet] Update dependency System.Text.Json to 8.0.6 by
    @​renovate[bot] in https://github.com/SeleniumHQ/selenium/pull/16171
    * [js] Update dependency react-router-dom to v6.30.1 by @​renovate[bot]
    in https://github.com/SeleniumHQ/selenium/pull/16076
    * [js] Update material-ui monorepo to v5.18.0 by @​renovate[bot] in
    https://github.com/SeleniumHQ/selenium/pull/16062
    * [js] Update dependency ws to ^8.18.3 by @​renovate[bot] in
    https://github.com/SeleniumHQ/selenium/pull/16009
    * [js] Update react monorepo by @​renovate[bot] in
    https://github.com/SeleniumHQ/selenium/pull/15949
    * [java] Update dependency net.bytebuddy:byte-buddy to v1.17.7 by
    @​renovate[bot] in https://github.com/SeleniumHQ/selenium/pull/16237
    * [py] Update dependency charset-normalizer to v3.4.3 by @​renovate[bot]
    in https://github.com/SeleniumHQ/selenium/pull/16239
    * [py] Update dependency cryptography to v45.0.6 by @​renovate[bot] in
    https://github.com/SeleniumHQ/selenium/pull/16240
    * Revert "[py] Update dependency charset-normalizer to v3.4.3" by
    @​cgoldberg in https://github.com/SeleniumHQ/selenium/pull/16242
    * Revert "[py] Update dependency cryptography to v45.0.6" by @​cgoldberg
    in https://github.com/SeleniumHQ/selenium/pull/16243
    * [py] Bump dependencies for dev and fix script by @​cgoldberg in
    https://github.com/SeleniumHQ/selenium/pull/16244
    * [dotnet] Help old .net framework copy selenium manager to output by
    @​nvborisenko in https://github.com/SeleniumHQ/selenium/pull/16228
    * [java] Add hooks around getScreenshotAs in WebDriverListener #​16232
    by @​giulong in https://github.com/SeleniumHQ/selenium/pull/16233
    * [py][bidi]: enable `history_updated` event test by @​navin772 in
    https://github.com/SeleniumHQ/selenium/pull/16236
    * [py] Bump ruff version for linting/formatting by @​cgoldberg in
    https://github.com/SeleniumHQ/selenium/pull/16254
    * [py][bidi]: use bidi `navigate` command in network tests by @​navin772
    in https://github.com/SeleniumHQ/selenium/pull/16251
    * [dotnet] Fix find port for IPv4 only environments by @​nvborisenko in
    https://github.com/SeleniumHQ/selenium/pull/16216
    * [dotnet] [bidi] Adjust cookie expiry type according spec (unix
    seconds) by @​nvborisenko in
    https://github.com/SeleniumHQ/selenium/pull/16218
     ... (truncated)
    
    ## 4.35.0
    
    ## Detailed Changelogs by Component
    
    <img src="https://www.selenium.dev/images/programming/java.svg"
    width="20" height="20">
    **[Java](https://github.com/SeleniumHQ/selenium/blob/trunk/java/CHANGELOG)**
    &nbsp;&nbsp;&nbsp; | &nbsp;&nbsp;&nbsp;<img
    src="https://www.selenium.dev/images/programming/python.svg" width="20"
    height="20">
    **[Python](https://github.com/SeleniumHQ/selenium/blob/trunk/py/CHANGES)**
    &nbsp;&nbsp;&nbsp; | &nbsp;&nbsp;&nbsp;<img
    src="https://www.selenium.dev/images/programming/dotnet.svg" width="20"
    height="20">
    **[DotNet](https://github.com/SeleniumHQ/selenium/blob/trunk/dotnet/CHANGELOG)**
    &nbsp;&nbsp;&nbsp; | &nbsp;&nbsp;&nbsp;<img
    src="https://www.selenium.dev/images/programming/ruby.svg" width="20"
    height="20">
    **[Ruby](https://github.com/SeleniumHQ/selenium/blob/trunk/rb/CHANGES)**
    &nbsp;&nbsp;&nbsp; | &nbsp;&nbsp;&nbsp;<img
    src="https://www.selenium.dev/images/programming/javascript.svg"
    width="20" height="20">
    **[JavaScript](https://github.com/SeleniumHQ/selenium/blob/trunk/javascript/selenium-webdriver/CHANGES.md)**
    <br>
    
    
    
    <!-- Release notes generated using configuration in .github/release.yml
    at 1c58e5028bc5eaa94b12b856c2d4a87efa5363f5 -->
    
    ## What's Changed
    <details>
    <summary>Click to see all the changes included in this release</summary>
    
    * [dotnet] [bidi] Get tree command returns GetTreeResult object by
    @​nvborisenko in https://github.com/SeleniumHQ/selenium/pull/15978
    * [dotnet] [bidi] Initialize internal modules without Lazy by
    @​nvborisenko in https://github.com/SeleniumHQ/selenium/pull/15979
    * [py] Bump dependencies for building distribution wheel by @​cgoldberg
    in https://github.com/SeleniumHQ/selenium/pull/15977
    * bump zip version 2.6.1 -> 4.2.0 by @​MRTamalampudi in
    https://github.com/SeleniumHQ/selenium/pull/15980
    * [py][bidi]: add note for `enable_webextensions = False` by @​navin772
    in https://github.com/SeleniumHQ/selenium/pull/15981
    * [py][bidi]: add high level API for script module - `pin`, `unpin` and
    `execute` by @​navin772 in
    https://github.com/SeleniumHQ/selenium/pull/15936
    * [py][java][rb][ci]: use pinned browsers in CI by @​navin772 in
    https://github.com/SeleniumHQ/selenium/pull/15987
    * [java] Remove deprecated AppCacheStatus enum from the HTML5 package by
    @​iampopovich in https://github.com/SeleniumHQ/selenium/pull/15973
    * [java] Feat 14291/jspecify nullable annotation edge driver service by
    @​iampopovich in https://github.com/SeleniumHQ/selenium/pull/15972
    * [java] Fix Unicode value for OPTION key in Keys enum by @​iampopovich
    in https://github.com/SeleniumHQ/selenium/pull/15966
    * [dotnet][java][js][py][rb][rust] Update rules_jvm_external digest to
    aca619b by @​renovate[bot] in
    https://github.com/SeleniumHQ/selenium/pull/15951
    * [java] Removing old stream collectors required by Java 8 by @​zodac in
    https://github.com/SeleniumHQ/selenium/pull/15523
    * [java] Use static Patterns for regex-matching by @​zodac in
    https://github.com/SeleniumHQ/selenium/pull/15499
    * [java] Point made as immutable by @​mk868 in
    https://github.com/SeleniumHQ/selenium/pull/15511
    * [java] Feat 14291/jspecify nullable annotation chrome driver såervice
    by @​iampopovich in https://github.com/SeleniumHQ/selenium/pull/15998
    * [py] Bump dev dependencies by @​cgoldberg in
    https://github.com/SeleniumHQ/selenium/pull/16002
    * [grid] Add "URI" to the list of sort-by choices on Overview UI by
    @​VietND96 in https://github.com/SeleniumHQ/selenium/pull/16004
    * [java] Add @​Nullable annotations to Firefox and Gecko driver service
    by @​iampopovich in https://github.com/SeleniumHQ/selenium/pull/15999
    * [java] Add JSpecify nullable annotations to SafariDriverService
    parameters by @​iampopovich in
    https://github.com/SeleniumHQ/selenium/pull/16000
    * [java] Add @​Nullable annotations to InternetExplorerDriverService
    parameters by @​iampopovich in
    https://github.com/SeleniumHQ/selenium/pull/16001
    * use generics for AbstractFindByBuilder to avoid excessive casting by
    @​asolntsev in https://github.com/SeleniumHQ/selenium/pull/15526
    * [js] Update dependency @​emotion/styled to v11.14.1 by @​renovate[bot]
    in https://github.com/SeleniumHQ/selenium/pull/15997
    * [rust] Update which from 7.0.3 to 8.0.0 by @​musicinmybrain in
    https://github.com/SeleniumHQ/selenium/pull/15965
    * Fix various typos by @​noritaka1166 in
    https://github.com/SeleniumHQ/selenium/pull/16012
    * [java] JSpecify annotations for By locators by @​mk868 in
    https://github.com/SeleniumHQ/selenium/pull/14372
    * Fix email address in .mailmap by @​cgoldberg in
    https://github.com/SeleniumHQ/selenium/pull/16017
    * Fix typos in javascript & rb by @​noritaka1166 in
    https://github.com/SeleniumHQ/selenium/pull/16019
    * [java] JSpecify annotations for capabilities by @​mk868 in
    https://github.com/SeleniumHQ/selenium/pull/14397
    * Fix various typos in comments by @​noritaka1166 in
    https://github.com/SeleniumHQ/selenium/pull/16022
    * [dotnet] Fix typos by @​noritaka1166 in
    https://github.com/SeleniumHQ/selenium/pull/16032
    * [dotnet] [bidi] Add UnhandledPromptBehavior option to create User
    Context by @​nvborisenko in
    https://github.com/SeleniumHQ/selenium/pull/16034
    * [py] Fix path in unit test so it works cross-platform by @​cgoldberg
    in https://github.com/SeleniumHQ/selenium/pull/16033
    * [py][bidi]: implement bidi module - emulation by @​navin772 in
    https://github.com/SeleniumHQ/selenium/pull/15819
    * [py] Fix API doc generation script and include BiDi Emulation docs by
    @​cgoldberg in https://github.com/SeleniumHQ/selenium/pull/16037
    * [py] Allow free_port() to bind to IPv6 if IPv4 is unavailable by
    @​cgoldberg in https://github.com/SeleniumHQ/selenium/pull/16003
    * [build] Update base URL for Edge web driver by @​nvborisenko in
    https://github.com/SeleniumHQ/selenium/pull/16057
    * [rust] Update base URL for Edge web driver by @​nvborisenko in
    https://github.com/SeleniumHQ/selenium/pull/16056
     ... (truncated)
    
    ## 4.34.0
    
    ## Detailed Changelogs by Component
    
    <img src="https://www.selenium.dev/images/programming/java.svg"
    width="20" height="20">
    **[Java](https://github.com/SeleniumHQ/selenium/blob/trunk/java/CHANGELOG)**
    &nbsp;&nbsp;&nbsp; | &nbsp;&nbsp;&nbsp;<img
    src="https://www.selenium.dev/images/programming/python.svg" width="20"
    height="20">
    **[Python](https://github.com/SeleniumHQ/selenium/blob/trunk/py/CHANGES)**
    &nbsp;&nbsp;&nbsp; | &nbsp;&nbsp;&nbsp;<img
    src="https://www.selenium.dev/images/programming/dotnet.svg" width="20"
    height="20">
    **[DotNet](https://github.com/SeleniumHQ/selenium/blob/trunk/dotnet/CHANGELOG)**
    &nbsp;&nbsp;&nbsp; | &nbsp;&nbsp;&nbsp;<img
    src="https://www.selenium.dev/images/programming/ruby.svg" width="20"
    height="20">
    **[Ruby](https://github.com/SeleniumHQ/selenium/blob/trunk/rb/CHANGES)**
    &nbsp;&nbsp;&nbsp; | &nbsp;&nbsp;&nbsp;<img
    src="https://www.selenium.dev/images/programming/javascript.svg"
    width="20" height="20">
    **[JavaScript](https://github.com/SeleniumHQ/selenium/blob/trunk/javascript/selenium-webdriver/CHANGES.md)**
    <br>
    
    
    
    <!-- Release notes generated using configuration in .github/release.yml
    at 2a4c61c498207b17cdb2f5f987c7c71dca146c2d -->
    
    ## What's Changed
    <details>
    <summary>Click to see all the changes included in this release</summary>
    
    * [ci] Clear warning from Grid UI component tests by @​VietND96 in
    https://github.com/SeleniumHQ/selenium/pull/15783
    * [py] Fix pytest_ignore_collect hook to respect --ignore by @​mgorny in
    https://github.com/SeleniumHQ/selenium/pull/15787
    * [py] Increase timeout in devtools test by @​cgoldberg in
    https://github.com/SeleniumHQ/selenium/pull/15793
    * [py] Upgrade type hints by @​cgoldberg in
    https://github.com/SeleniumHQ/selenium/pull/15784
    * [dotnet] [bidi] Add AcceptInsecureCerts and Proxy options when create
    new user context by @​nvborisenko in
    https://github.com/SeleniumHQ/selenium/pull/15795
    * [grid] Silent fail on invalid log level by @​Oxilod in
    https://github.com/SeleniumHQ/selenium/pull/15796
    * Bump setup-bazel action by @​p0deje in
    https://github.com/SeleniumHQ/selenium/pull/15802
    * Don't silence stderr in format.sh by @​cgoldberg in
    https://github.com/SeleniumHQ/selenium/pull/15804
    * [dotnet] [bidi] Declare allowed nullable objects in constructors type
    by @​nvborisenko in https://github.com/SeleniumHQ/selenium/pull/15809
    * Fix type error for attribute in remote_connection.py by @​Bradltr95 in
    https://github.com/SeleniumHQ/selenium/pull/15810
    * [py] Lint Python with ruff by @​p0deje in
    https://github.com/SeleniumHQ/selenium/pull/15811
    * fixed error in selenium/webdriver/common/bidi/common.py:19 by
    @​pallavigitwork in https://github.com/SeleniumHQ/selenium/pull/15814
    * [py] Fix import for type hint by @​cgoldberg in
    https://github.com/SeleniumHQ/selenium/pull/15817
    * [py] Bump ruff version by @​cgoldberg in
    https://github.com/SeleniumHQ/selenium/pull/15818
    * [dotnet] [bidi] Simplify modules namespace for end users (breaking
    change) by @​nvborisenko in
    https://github.com/SeleniumHQ/selenium/pull/15820
    * [dotnet] Remove unnecessary stylecop files by @​nvborisenko in
    https://github.com/SeleniumHQ/selenium/pull/15824
    * [py] Lint and format all python files by @​cgoldberg in
    https://github.com/SeleniumHQ/selenium/pull/15828
    * [py][bidi]: add `enable_webextensions` option for chromium-based
    browsers by @​navin772 in
    https://github.com/SeleniumHQ/selenium/pull/15794
    * [py] Auto-generate Python API docs from code by @​cgoldberg in
    https://github.com/SeleniumHQ/selenium/pull/15822
    * [py] Fix python API docs publishing at readthedocs by @​cgoldberg in
    https://github.com/SeleniumHQ/selenium/pull/15832
    * Change flag for Chrome/Edge headless mode in tests by @​cgoldberg in
    https://github.com/SeleniumHQ/selenium/pull/15831
    * [py] Cleanup tox config by @​cgoldberg in
    https://github.com/SeleniumHQ/selenium/pull/15833
    * [rb] Add support for beta chrome by @​aguspe in
    https://github.com/SeleniumHQ/selenium/pull/15417
    * Revert "[rb] Add support for beta chrome" by @​aguspe in
    https://github.com/SeleniumHQ/selenium/pull/15837
    * [py] Fix: Mypy type annotation errors by @​ShauryaDusht in
    https://github.com/SeleniumHQ/selenium/pull/15841
    * [py] New script to update Python dependencies by @​cgoldberg in
    https://github.com/SeleniumHQ/selenium/pull/15845
    * fixed errors in browser.py for 15697 by @​pallavigitwork in
    https://github.com/SeleniumHQ/selenium/pull/15847
    * [py][bidi]: implement bidi permissions module by @​navin772 in
    https://github.com/SeleniumHQ/selenium/pull/15830
    * [py] Regeneratee py/docs/source/api.rst by @​cgoldberg in
    https://github.com/SeleniumHQ/selenium/pull/15856
    * [dotnet] Align CS projects name to understand the editing context by
    @​nvborisenko in https://github.com/SeleniumHQ/selenium/pull/15843
    * [py][bidi]: enable edge bidi storage test - `test_get_all_cookies` by
    @​navin772 in https://github.com/SeleniumHQ/selenium/pull/15859
    * Caching the size/length in loops to slightly improve performance by
    @​LuisOsv in https://github.com/SeleniumHQ/selenium/pull/15852
    * Update exceptions.py by @​adolfoarmas in
    https://github.com/SeleniumHQ/selenium/pull/15862
    * Revert "Update exceptions.py" by @​cgoldberg in
    https://github.com/SeleniumHQ/selenium/pull/15864
    * [py] Re-apply #​15862 by @​cgoldberg in
    https://github.com/SeleniumHQ/selenium/pull/15865
    * [py] fix driver_element_finding_tests.py by @​Delta456 in
    https://github.com/SeleniumHQ/selenium/pull/15863
    * [py] Fix another broken test by @​cgoldberg in
    https://github.com/SeleniumHQ/selenium/pull/15866
     ... (truncated)
    
    ## 4.33.0
    
    ## Detailed Changelogs by Component
    
    <img src="https://www.selenium.dev/images/programming/java.svg"
    width="20" height="20">
    **[Java](https://github.com/SeleniumHQ/selenium/blob/trunk/java/CHANGELOG)**
    &nbsp;&nbsp;&nbsp; | &nbsp;&nbsp;&nbsp;<img
    src="https://www.selenium.dev/images/programming/python.svg" width="20"
    height="20">
    **[Python](https://github.com/SeleniumHQ/selenium/blob/trunk/py/CHANGES)**
    &nbsp;&nbsp;&nbsp; | &nbsp;&nbsp;&nbsp;<img
    src="https://www.selenium.dev/images/programming/dotnet.svg" width="20"
    height="20">
    **[DotNet](https://github.com/SeleniumHQ/selenium/blob/trunk/dotnet/CHANGELOG)**
    &nbsp;&nbsp;&nbsp; | &nbsp;&nbsp;&nbsp;<img
    src="https://www.selenium.dev/images/programming/ruby.svg" width="20"
    height="20">
    **[Ruby](https://github.com/SeleniumHQ/selenium/blob/trunk/rb/CHANGES)**
    &nbsp;&nbsp;&nbsp; | &nbsp;&nbsp;&nbsp;<img
    src="https://www.selenium.dev/images/programming/javascript.svg"
    width="20" height="20">
    **[JavaScript](https://github.com/SeleniumHQ/selenium/blob/trunk/javascript/selenium-webdriver/CHANGES.md)**
    <br>
    
    
    
    <!-- Release notes generated using configuration in .github/release.yml
    at 2c6aaad03a575cd93e4f063f91404e3ae66a7470 -->
    
    ## What's Changed
    <details>
    <summary>Click to see all the changes included in this release</summary>
    
    * [py] Exclude devtools directory from type checking by @​cgoldberg in
    https://github.com/SeleniumHQ/selenium/pull/15695
    * [py] Add clean_options fixture and remove all Python tests from
    .skipped-tests by @​cgoldberg in
    https://github.com/SeleniumHQ/selenium/pull/15696
    * [java][bidi]: enable tests for storage module for edge by @​navin772
    in https://github.com/SeleniumHQ/selenium/pull/15667
    * [py][bidi]: add bidi storage module by @​navin772 in
    https://github.com/SeleniumHQ/selenium/pull/15669
    * [build] allow GitHub Actions runner to use 4GB for JVM Heap by
    @​titusfortner in https://github.com/SeleniumHQ/selenium/pull/15692
    * update old freenode channel link to libera by @​t7ru in
    https://github.com/SeleniumHQ/selenium/pull/15698
    * fixing mypy error from #​15693 by @​bandophahita in
    https://github.com/SeleniumHQ/selenium/pull/15705
    * [java] Removing deprecated items in Require.java by @​diemol in
    https://github.com/SeleniumHQ/selenium/pull/15711
    * [java] Removing RemoteStatus as it was deprecated. by @​diemol in
    https://github.com/SeleniumHQ/selenium/pull/15712
    * [rb] move all guard and zipper tests to unit tests by @​titusfortner
    in https://github.com/SeleniumHQ/selenium/pull/15717
    * [rust] Replace WMIC commands (deprecated) by WinAPI in Windows by
    @​bonigarcia in https://github.com/SeleniumHQ/selenium/pull/15363
    * [py][BiDi] use constant for LogLevel by @​Delta456 in
    https://github.com/SeleniumHQ/selenium/pull/15677
    * Let firefox choose the bidi port by default by @​tomhughes in
    https://github.com/SeleniumHQ/selenium/pull/15727
    * [rb] Upgrade to Ruby 3.2 by @​p0deje in
    https://github.com/SeleniumHQ/selenium/pull/15714
    * [py] Missing Headers Assignment in Network Class’s _on_request() by
    @​shbenzer in https://github.com/SeleniumHQ/selenium/pull/15736
    * [py] correct type annotations of default-None params by
    @​DeflateAwning in https://github.com/SeleniumHQ/selenium/pull/15341
    * [py] Add missing 'id' property to ShadowRoot class by @​cgoldberg in
    https://github.com/SeleniumHQ/selenium/pull/15739
    * [py] Bump Python package requirements to latest versions by
    @​cgoldberg in https://github.com/SeleniumHQ/selenium/pull/15731
    * [py] Use ruff for linting and code formatting by @​cgoldberg in
    https://github.com/SeleniumHQ/selenium/pull/15746
    * [py]: return `message` as part of exception in `execute` method by
    @​navin772 in https://github.com/SeleniumHQ/selenium/pull/15751
    * [py][tests]: check for .txt file in remote download test by @​navin772
    in https://github.com/SeleniumHQ/selenium/pull/15758
    * [java] Removing deprecated `setScriptTimeout` and `pageLoadTimeout`.
    by @​diemol in https://github.com/SeleniumHQ/selenium/pull/15764
    * [py][bidi]: add bidi webExtension module by @​navin772 in
    https://github.com/SeleniumHQ/selenium/pull/15749
    * [py] Better error for downloads on local webdrivers by @​cgoldberg in
    https://github.com/SeleniumHQ/selenium/pull/15756
    * [py] Add missing modules to python API docs by @​cgoldberg in
    https://github.com/SeleniumHQ/selenium/pull/15779
    * [ci] Workflow for Grid UI component tests by @​VietND96 in
    https://github.com/SeleniumHQ/selenium/pull/15778
    * [grid] UI Sessions capability fields to display as additional columns
    by @​VietND96 in https://github.com/SeleniumHQ/selenium/pull/15759
    * [grid] UI Overview is able to see live preview per Node by @​VietND96
    in https://github.com/SeleniumHQ/selenium/pull/15777
    
    ## New Contributors
    * @​t7ru made their first contribution in
    https://github.com/SeleniumHQ/selenium/pull/15698
    * @​tomhughes made their first contribution in
    https://github.com/SeleniumHQ/selenium/pull/15727
    * @​DeflateAwning made their first contribution in
    https://github.com/SeleniumHQ/selenium/pull/15341
    
    </details>
    
    **Full Changelog**:
    https://github.com/SeleniumHQ/selenium/compare/selenium-4.32.0...selenium-4.33.0
    
    ## 4.32.0
    
    ## Detailed Changelogs by Component
    
    <img src="https://www.selenium.dev/images/programming/java.svg"
    width="20" height="20">
    **[Java](https://github.com/SeleniumHQ/selenium/blob/trunk/java/CHANGELOG)**
    &nbsp;&nbsp;&nbsp; | &nbsp;&nbsp;&nbsp;<img
    src="https://www.selenium.dev/images/programming/python.svg" width="20"
    height="20">
    **[Python](https://github.com/SeleniumHQ/selenium/blob/trunk/py/CHANGES)**
    &nbsp;&nbsp;&nbsp; | &nbsp;&nbsp;&nbsp;<img
    src="https://www.selenium.dev/images/programming/dotnet.svg" width="20"
    height="20">
    **[DotNet](https://github.com/SeleniumHQ/selenium/blob/trunk/dotnet/CHANGELOG)**
    &nbsp;&nbsp;&nbsp; | &nbsp;&nbsp;&nbsp;<img
    src="https://www.selenium.dev/images/programming/ruby.svg" width="20"
    height="20">
    **[Ruby](https://github.com/SeleniumHQ/selenium/blob/trunk/rb/CHANGES)**
    &nbsp;&nbsp;&nbsp; | &nbsp;&nbsp;&nbsp;<img
    src="https://www.selenium.dev/images/programming/javascript.svg"
    width="20" height="20">
    **[JavaScript](https://github.com/SeleniumHQ/selenium/blob/trunk/javascript/selenium-webdriver/CHANGES.md)**
    <br>
    
    
    
    <!-- Release notes generated using configuration in .github/release.yml
    at d17c8aa95092dc25ae64f12e7abdc844cf3503f0 -->
    
    ## What's Changed
    <details>
    <summary>Click to see all the changes included in this release</summary>
    
    * [py] Fix test args for --headless and --bidi by @​cgoldberg in
    https://github.com/SeleniumHQ/selenium/pull/15567
    * [py] Only skip WebKit tests on Windows by @​cgoldberg in
    https://github.com/SeleniumHQ/selenium/pull/15470
    * [dotnet] [bidi] Revisit some core functionality to deserialize without
    intermediate `JsonElement` allocation by @​nvborisenko in
    https://github.com/SeleniumHQ/selenium/pull/15575
    * [py] Fix broken test for chromedriver logging by @​cgoldberg in
    https://github.com/SeleniumHQ/selenium/pull/15579
    * [py] Fix test for w3c touch pointer properties by @​cgoldberg in
    https://github.com/SeleniumHQ/selenium/pull/15580
    * [py] Fix FedCM tests leaking state by @​cgoldberg in
    https://github.com/SeleniumHQ/selenium/pull/15583
    * [dotnet] [bidi] Address BiDi's JSON converter AOT warnings by
    @​RenderMichael in https://github.com/SeleniumHQ/selenium/pull/15390
    * [dotnet] [bidi] Added missing GenericLogEntry log entry type in Script
    module by @​nvborisenko in
    https://github.com/SeleniumHQ/selenium/pull/15591
    * [grid] Ignored options when they are prefixed, safari specif as well
    by @​diemol in https://github.com/SeleniumHQ/selenium/pull/15574
    * [py] Remove broken logo from Sphinx generated API docs by @​cgoldberg
    in https://github.com/SeleniumHQ/selenium/pull/15597
    * [py] Fix PyTest configuration for WPEWebKit by @​cgoldberg in
    https://github.com/SeleniumHQ/selenium/pull/15602
    * [py] Fix failing test for Edge logging by @​cgoldberg in
    https://github.com/SeleniumHQ/selenium/pull/15605
    * [rb] Add PrintOptions Implementation for Ruby WebDriver by @​yvsvarma
    in https://github.com/SeleniumHQ/selenium/pull/15158
    * [py] BiDi Network implementation of Intercepts and Auth in Python by
    @​shbenzer in https://github.com/SeleniumHQ/selenium/pull/14592
    * [py] Use XWayland for internal Python Firefox tests by @​cgoldberg in
    https://github.com/SeleniumHQ/selenium/pull/15601
    * [py] Use mock.patch for environment variables in tests by @​cgoldberg
    in https://github.com/SeleniumHQ/selenium/pull/15607
    * [ruby] fix lint for print_options.rb by @​Delta456 in
    https://github.com/SeleniumHQ/selenium/pull/15608
    * [py] Configure readthedocs publishing for Python API docs by
    @​cgoldberg in https://github.com/SeleniumHQ/selenium/pull/15614
    * [py] Fix select being able to select options hidden by css rules by
    @​FFederi in https://github.com/SeleniumHQ/selenium/pull/15135
    * [py][bidi]: Implement BiDi browser module by @​navin772 in
    https://github.com/SeleniumHQ/selenium/pull/15616
    * [dotnet] [bidi] Combine network interception to apply rules (breaking
    change) by @​nvborisenko in
    https://github.com/SeleniumHQ/selenium/pull/15603
    * [dotnet] [bidi] Add strongly-typed `LocalValue.ConvertFrom` overloads
    by @​RenderMichael in https://github.com/SeleniumHQ/selenium/pull/15532
    * [py] Add missing modules to Python API docs by @​cgoldberg in
    https://github.com/SeleniumHQ/selenium/pull/15624
    * [dotnet] [bidi] Do not throw when CallFunction or Evaluate return
    exceptional result (breaking change) by @​RenderMichael in
    https://github.com/SeleniumHQ/selenium/pull/15521
    * [py] Skip bidi tests on browsers that don't support bidi by
    @​cgoldberg in https://github.com/SeleniumHQ/selenium/pull/15625
    * [py] complete
    `test_should_throw_an_exception_if_an_alert_has_not_been_dealt_with_and_dismiss_the_alert`
    by @​Delta456 in https://github.com/SeleniumHQ/selenium/pull/15559
    * [py] Remove unused xfail on chrome/edge service tests by @​cgoldberg
    in https://github.com/SeleniumHQ/selenium/pull/15637
    * [py] Adjust xfail markers for window size/position tests by
    @​cgoldberg in https://github.com/SeleniumHQ/selenium/pull/15638
    * [py] Call service.stop() when session can't be started by @​cgoldberg
    in https://github.com/SeleniumHQ/selenium/pull/15636
    * [dotnet] [bidi] Reuse memory when receiving websocket messages by
    @​nvborisenko in https://github.com/SeleniumHQ/selenium/pull/15640
    * [py] Remove logging API for non-Chromium browsers by @​cgoldberg in
    https://github.com/SeleniumHQ/selenium/pull/15641
    * [py] Raise TypeError when creating webdriver.Remote() without options
    by @​cgoldberg in https://github.com/SeleniumHQ/selenium/pull/15619
    * [py] Upgrade dependencies for mypy tox environment by @​cgoldberg in
    https://github.com/SeleniumHQ/selenium/pull/15642
    * [py] Fix Remote Firefox tests on Linux/Wayland by @​cgoldberg in
    https://github.com/SeleniumHQ/selenium/pull/15648
    * [dotnet] Enhance Selenium Manager platform detection by @​nvborisenko
    in https://github.com/SeleniumHQ/selenium/pull/15649
    * [dotnet] Use namespace file scoped by @​nvborisenko in
    https://github.com/SeleniumHQ/selenium/pull/15651
    * [py] Fix flaky WebDriverWait tests by @​cgoldberg in
    https://github.com/SeleniumHQ/selenium/pull/15650
     ... (truncated)
    
    Commits viewable in [compare
    view](https://github.com/SeleniumHQ/selenium/compare/selenium-4.31.0...selenium-4.41.0).
    </details>
    
    Updated [Selenium.WebDriver](https://github.com/SeleniumHQ/selenium)
    from 4.31.0 to 4.41.0.
    
    <details>
    <summary>Release notes</summary>
    
    _Sourced from [Selenium.WebDriver's
    releases](https://github.com/SeleniumHQ/selenium/releases)._
    
    ## 4.41.0
    
    ## Detailed Changelogs by Component
    
    <img src="https://www.selenium.dev/images/programming/java.svg"
    width="20" height="20">
    **[Java](https://github.com/SeleniumHQ/selenium/blob/trunk/java/CHANGELOG)**
    &nbsp;&nbsp;&nbsp; | &nbsp;&nbsp;&nbsp;<img
    src="https://www.selenium.dev/images/programming/python.svg" width="20"
    height="20">
    **[Python](https://github.com/SeleniumHQ/selenium/blob/trunk/py/CHANGES)**
    &nbsp;&nbsp;&nbsp; | &nbsp;&nbsp;&nbsp;<img
    src="https://www.selenium.dev/images/programming/dotnet.svg" width="20"
    height="20">
    **[DotNet](https://github.com/SeleniumHQ/selenium/blob/trunk/dotnet/CHANGELOG)**
    &nbsp;&nbsp;&nbsp; | &nbsp;&nbsp;&nbsp;<img
    src="https://www.selenium.dev/images/programming/ruby.svg" width="20"
    height="20">
    **[Ruby](https://github.com/SeleniumHQ/selenium/blob/trunk/rb/CHANGES)**
    &nbsp;&nbsp;&nbsp; | &nbsp;&nbsp;&nbsp;<img
    src="https://www.selenium.dev/images/programming/javascript.svg"
    width="20" height="20">
    **[JavaScript](https://github.com/SeleniumHQ/selenium/blob/trunk/javascript/selenium-webdriver/CHANGES.md)**
    <br>
    
    <!-- Release notes generated using configuration in .github/release.yml
    at selenium-4.41.0 -->
    
    ## What's Changed
    <details>
    <summary>Click to see all the changes included in this release</summary>
    
    * [py] Remove type stub packages from runtime dependencies by
    @​cgoldberg in https://github.com/SeleniumHQ/selenium/pull/16945
    * Canonical approach to supporting AI agent directions by @​titusfortner
    in https://github.com/SeleniumHQ/selenium/pull/16735
    * [build] Pre-release workflow improvements by @​titusfortner in
    https://github.com/SeleniumHQ/selenium/pull/16946
    * [build] Prevent nightly releases during release window by
    @​titusfortner in https://github.com/SeleniumHQ/selenium/pull/16948
    * [build] Fix Bazel NuGet push implementation by @​titusfortner in
    https://github.com/SeleniumHQ/selenium/pull/16950
    * [build] Release workflow improvements by @​titusfortner in
    https://github.com/SeleniumHQ/selenium/pull/16947
    * [build] Fix Bazel JSDocs implementation by @​titusfortner in
    https://github.com/SeleniumHQ/selenium/pull/16949
    * [build] Create config files from environment variables for publishing
    by @​titusfortner in https://github.com/SeleniumHQ/selenium/pull/16951
    * [js] create task to update dependencies by @​titusfortner in
    https://github.com/SeleniumHQ/selenium/pull/16942
    * [build] Java release improvements and build verification tasks by
    @​titusfortner in https://github.com/SeleniumHQ/selenium/pull/16952
    * [py] integrate mypy type checking with Bazel by @​titusfortner in
    https://github.com/SeleniumHQ/selenium/pull/16958
    * [build] Migrate workflows to use centralized bazel.yml by
    @​titusfortner in https://github.com/SeleniumHQ/selenium/pull/16955
    * [dotnet] [bidi] Simplify context aware command options by
    @​nvborisenko in https://github.com/SeleniumHQ/selenium/pull/16954
    * [build] simplify release.yml: remove draft, build once during publish
    by @​titusfortner in https://github.com/SeleniumHQ/selenium/pull/16960
    * [dotnet] [bidi] AOT safe json converter for `Input.Origin` class by
    @​nvborisenko in https://github.com/SeleniumHQ/selenium/pull/16962
    * [dotnet] [bidi] AOT safe json converter for `OptionalConverter` by
    @​nvborisenko in https://github.com/SeleniumHQ/selenium/pull/16963
    * [dotnet] [bidi] Null guard for event handlers by @​nvborisenko in
    https://github.com/SeleniumHQ/selenium/pull/16967
    * [java] Improve error message for died grid by @​asolntsev in
    https://github.com/SeleniumHQ/selenium/pull/16938
    * [build] combine pre-release dependency updates by @​titusfortner in
    https://github.com/SeleniumHQ/selenium/pull/16973
    * [rb] remove stored atoms these get generated by build by
    @​titusfortner in https://github.com/SeleniumHQ/selenium/pull/16971
    * [dotnet] [bidi] Unignore some internal tests by @​nvborisenko in
    https://github.com/SeleniumHQ/selenium/pull/16968
    * [build] run ruff on python files outside py directory by
    @​titusfortner in https://github.com/SeleniumHQ/selenium/pull/16957
    * [py] Fix return type hint for `alert_is_present` by @​nemowang2003 in
    https://github.com/SeleniumHQ/selenium/pull/16975
    * Replace hardcoded bazel-selenium references with dynamic path
    resolution by @​titusfortner in
    https://github.com/SeleniumHQ/selenium/pull/16976
    * No More CrazyFun! by @​titusfortner in
    https://github.com/SeleniumHQ/selenium/pull/16972
    * [build] Remove update_gh_pages in favor of CI workflow by
    @​titusfortner in https://github.com/SeleniumHQ/selenium/pull/16977
    * [build] Remove legacy rake helpers and unused code by @​titusfortner
    in https://github.com/SeleniumHQ/selenium/pull/16978
    * [py] make bazel test target names consistent with other languages by
    @​titusfortner in https://github.com/SeleniumHQ/selenium/pull/16969
    * [dotnet] [bidi] Fix namespace for Permissions module by @​nvborisenko
    in https://github.com/SeleniumHQ/selenium/pull/16981
    * [dotnet] [bidi] Hide Broker as internal implementation by
    @​nvborisenko in https://github.com/SeleniumHQ/selenium/pull/16982
    * [dotnet] [bidi] Refactor BiDi module initialization to pass BiDi
    explicitly by @​nvborisenko in
    https://github.com/SeleniumHQ/selenium/pull/16983
    * [build] Add DocFX updater script by @​titusfortner in
    https://github.com/SeleniumHQ/selenium/pull/16980
    * [build] add reusable commit-changes.yml workflow by @​titusfortner in
    https://github.com/SeleniumHQ/selenium/pull/16965
    * [java] fix JSON parsing of numbers with exponent by @​joerg1985 in
    https://github.com/SeleniumHQ/selenium/pull/16961
    * [build] Skip macOS-only archive rules on unsupported platforms by
    @​titusfortner in https://github.com/SeleniumHQ/selenium/pull/16985
    * [build] Split Rakefile into per-language task files by @​titusfortner
    in https://github.com/SeleniumHQ/selenium/pull/16979
    * Implement fast bazel target lookup with index caching by
    @​titusfortner in https://github.com/SeleniumHQ/selenium/pull/16974
    * [build] Remove git.add() calls from rake tasks by @​titusfortner in
    https://github.com/SeleniumHQ/selenium/pull/16994
    * [js] Add eslint binary target for selenium-webdriver by @​titusfortner
    in https://github.com/SeleniumHQ/selenium/pull/16992
     ... (truncated)
    
    ## 4.40.0
    
    ## Detailed Changelogs by Component
    
    <img src="https://www.selenium.dev/images/programming/java.svg"
    width="20" height="20">
    **[Java](https://github.com/SeleniumHQ/selenium/blob/trunk/java/CHANGELOG)**
    &nbsp;&nbsp;&nbsp; | &nbsp;&nbsp;&nbsp;<img
    src="https://www.selenium.dev/images/programming/python.svg" width="20"
    height="20">
    **[Python](https://github.com/SeleniumHQ/selenium/blob/trunk/py/CHANGES)**
    &nbsp;&nbsp;&nbsp; | &nbsp;&nbsp;&nbsp;<img
    src="https://www.selenium.dev/images…
    PhilipWoulfe added a commit to PhilipWoulfe/F1Competition that referenced this pull request Mar 16, 2026
    Updated [Selenium.WebDriver](https://github.com/SeleniumHQ/selenium)
    from 4.31.0 to 4.41.0.
    
    <details>
    <summary>Release notes</summary>
    
    _Sourced from [Selenium.WebDriver's
    releases](https://github.com/SeleniumHQ/selenium/releases)._
    
    ## 4.41.0
    
    ## Detailed Changelogs by Component
    
    <img src="https://www.selenium.dev/images/programming/java.svg"
    width="20" height="20">
    **[Java](https://github.com/SeleniumHQ/selenium/blob/trunk/java/CHANGELOG)**
    &nbsp;&nbsp;&nbsp; | &nbsp;&nbsp;&nbsp;<img
    src="https://www.selenium.dev/images/programming/python.svg" width="20"
    height="20">
    **[Python](https://github.com/SeleniumHQ/selenium/blob/trunk/py/CHANGES)**
    &nbsp;&nbsp;&nbsp; | &nbsp;&nbsp;&nbsp;<img
    src="https://www.selenium.dev/images/programming/dotnet.svg" width="20"
    height="20">
    **[DotNet](https://github.com/SeleniumHQ/selenium/blob/trunk/dotnet/CHANGELOG)**
    &nbsp;&nbsp;&nbsp; | &nbsp;&nbsp;&nbsp;<img
    src="https://www.selenium.dev/images/programming/ruby.svg" width="20"
    height="20">
    **[Ruby](https://github.com/SeleniumHQ/selenium/blob/trunk/rb/CHANGES)**
    &nbsp;&nbsp;&nbsp; | &nbsp;&nbsp;&nbsp;<img
    src="https://www.selenium.dev/images/programming/javascript.svg"
    width="20" height="20">
    **[JavaScript](https://github.com/SeleniumHQ/selenium/blob/trunk/javascript/selenium-webdriver/CHANGES.md)**
    <br>
    
    <!-- Release notes generated using configuration in .github/release.yml
    at selenium-4.41.0 -->
    
    ## What's Changed
    <details>
    <summary>Click to see all the changes included in this release</summary>
    
    * [py] Remove type stub packages from runtime dependencies by
    @​cgoldberg in https://github.com/SeleniumHQ/selenium/pull/16945
    * Canonical approach to supporting AI agent directions by @​titusfortner
    in https://github.com/SeleniumHQ/selenium/pull/16735
    * [build] Pre-release workflow improvements by @​titusfortner in
    https://github.com/SeleniumHQ/selenium/pull/16946
    * [build] Prevent nightly releases during release window by
    @​titusfortner in https://github.com/SeleniumHQ/selenium/pull/16948
    * [build] Fix Bazel NuGet push implementation by @​titusfortner in
    https://github.com/SeleniumHQ/selenium/pull/16950
    * [build] Release workflow improvements by @​titusfortner in
    https://github.com/SeleniumHQ/selenium/pull/16947
    * [build] Fix Bazel JSDocs implementation by @​titusfortner in
    https://github.com/SeleniumHQ/selenium/pull/16949
    * [build] Create config files from environment variables for publishing
    by @​titusfortner in https://github.com/SeleniumHQ/selenium/pull/16951
    * [js] create task to update dependencies by @​titusfortner in
    https://github.com/SeleniumHQ/selenium/pull/16942
    * [build] Java release improvements and build verification tasks by
    @​titusfortner in https://github.com/SeleniumHQ/selenium/pull/16952
    * [py] integrate mypy type checking with Bazel by @​titusfortner in
    https://github.com/SeleniumHQ/selenium/pull/16958
    * [build] Migrate workflows to use centralized bazel.yml by
    @​titusfortner in https://github.com/SeleniumHQ/selenium/pull/16955
    * [dotnet] [bidi] Simplify context aware command options by
    @​nvborisenko in https://github.com/SeleniumHQ/selenium/pull/16954
    * [build] simplify release.yml: remove draft, build once during publish
    by @​titusfortner in https://github.com/SeleniumHQ/selenium/pull/16960
    * [dotnet] [bidi] AOT safe json converter for `Input.Origin` class by
    @​nvborisenko in https://github.com/SeleniumHQ/selenium/pull/16962
    * [dotnet] [bidi] AOT safe json converter for `OptionalConverter` by
    @​nvborisenko in https://github.com/SeleniumHQ/selenium/pull/16963
    * [dotnet] [bidi] Null guard for event handlers by @​nvborisenko in
    https://github.com/SeleniumHQ/selenium/pull/16967
    * [java] Improve error message for died grid by @​asolntsev in
    https://github.com/SeleniumHQ/selenium/pull/16938
    * [build] combine pre-release dependency updates by @​titusfortner in
    https://github.com/SeleniumHQ/selenium/pull/16973
    * [rb] remove stored atoms these get generated by build by
    @​titusfortner in https://github.com/SeleniumHQ/selenium/pull/16971
    * [dotnet] [bidi] Unignore some internal tests by @​nvborisenko in
    https://github.com/SeleniumHQ/selenium/pull/16968
    * [build] run ruff on python files outside py directory by
    @​titusfortner in https://github.com/SeleniumHQ/selenium/pull/16957
    * [py] Fix return type hint for `alert_is_present` by @​nemowang2003 in
    https://github.com/SeleniumHQ/selenium/pull/16975
    * Replace hardcoded bazel-selenium references with dynamic path
    resolution by @​titusfortner in
    https://github.com/SeleniumHQ/selenium/pull/16976
    * No More CrazyFun! by @​titusfortner in
    https://github.com/SeleniumHQ/selenium/pull/16972
    * [build] Remove update_gh_pages in favor of CI workflow by
    @​titusfortner in https://github.com/SeleniumHQ/selenium/pull/16977
    * [build] Remove legacy rake helpers and unused code by @​titusfortner
    in https://github.com/SeleniumHQ/selenium/pull/16978
    * [py] make bazel test target names consistent with other languages by
    @​titusfortner in https://github.com/SeleniumHQ/selenium/pull/16969
    * [dotnet] [bidi] Fix namespace for Permissions module by @​nvborisenko
    in https://github.com/SeleniumHQ/selenium/pull/16981
    * [dotnet] [bidi] Hide Broker as internal implementation by
    @​nvborisenko in https://github.com/SeleniumHQ/selenium/pull/16982
    * [dotnet] [bidi] Refactor BiDi module initialization to pass BiDi
    explicitly by @​nvborisenko in
    https://github.com/SeleniumHQ/selenium/pull/16983
    * [build] Add DocFX updater script by @​titusfortner in
    https://github.com/SeleniumHQ/selenium/pull/16980
    * [build] add reusable commit-changes.yml workflow by @​titusfortner in
    https://github.com/SeleniumHQ/selenium/pull/16965
    * [java] fix JSON parsing of numbers with exponent by @​joerg1985 in
    https://github.com/SeleniumHQ/selenium/pull/16961
    * [build] Skip macOS-only archive rules on unsupported platforms by
    @​titusfortner in https://github.com/SeleniumHQ/selenium/pull/16985
    * [build] Split Rakefile into per-language task files by @​titusfortner
    in https://github.com/SeleniumHQ/selenium/pull/16979
    * Implement fast bazel target lookup with index caching by
    @​titusfortner in https://github.com/SeleniumHQ/selenium/pull/16974
    * [build] Remove git.add() calls from rake tasks by @​titusfortner in
    https://github.com/SeleniumHQ/selenium/pull/16994
    * [js] Add eslint binary target for selenium-webdriver by @​titusfortner
    in https://github.com/SeleniumHQ/selenium/pull/16992
     ... (truncated)
    
    ## 4.40.0
    
    ## Detailed Changelogs by Component
    
    <img src="https://www.selenium.dev/images/programming/java.svg"
    width="20" height="20">
    **[Java](https://github.com/SeleniumHQ/selenium/blob/trunk/java/CHANGELOG)**
    &nbsp;&nbsp;&nbsp; | &nbsp;&nbsp;&nbsp;<img
    src="https://www.selenium.dev/images/programming/python.svg" width="20"
    height="20">
    **[Python](https://github.com/SeleniumHQ/selenium/blob/trunk/py/CHANGES)**
    &nbsp;&nbsp;&nbsp; | &nbsp;&nbsp;&nbsp;<img
    src="https://www.selenium.dev/images/programming/dotnet.svg" width="20"
    height="20">
    **[DotNet](https://github.com/SeleniumHQ/selenium/blob/trunk/dotnet/CHANGELOG)**
    &nbsp;&nbsp;&nbsp; | &nbsp;&nbsp;&nbsp;<img
    src="https://www.selenium.dev/images/programming/ruby.svg" width="20"
    height="20">
    **[Ruby](https://github.com/SeleniumHQ/selenium/blob/trunk/rb/CHANGES)**
    &nbsp;&nbsp;&nbsp; | &nbsp;&nbsp;&nbsp;<img
    src="https://www.selenium.dev/images/programming/javascript.svg"
    width="20" height="20">
    **[JavaScript](https://github.com/SeleniumHQ/selenium/blob/trunk/javascript/selenium-webdriver/CHANGES.md)**
    <br>
    
    
    <!-- Release notes generated using configuration in .github/release.yml
    at trunk -->
    
    ## What's Changed
    <details>
    <summary>Click to see all the changes included in this release</summary>
    
    * [dotnet] Modernize `EnvironmentManager`, standardize assembly teardown
    by @​RenderMichael in https://github.com/SeleniumHQ/selenium/pull/15551
    * [java] Refactor tests by @​asolntsev in
    https://github.com/SeleniumHQ/selenium/pull/16684
    * [ci]: bump cargo lockfile by @​navin772 in
    https://github.com/SeleniumHQ/selenium/pull/16698
    * [java][BiDi] change emulation commands return type to void by
    @​Delta456 in https://github.com/SeleniumHQ/selenium/pull/16699
    * [java] simplify strings processing by @​iampopovich in
    https://github.com/SeleniumHQ/selenium/pull/15309
    * Fix few more flaky ruby tests by @​asolntsev in
    https://github.com/SeleniumHQ/selenium/pull/16695
    * [bazel] Switch to custom `closure_js_deps` rule by @​shs96c in
    https://github.com/SeleniumHQ/selenium/pull/16571
    * [dotnet] [bidi] Support SetScreenSettingsOverrideAsync method in
    Emulation module by @​nvborisenko in
    https://github.com/SeleniumHQ/selenium/pull/16704
    * [dotnet] Modernize code patterns in test suites by @​RenderMichael in
    https://github.com/SeleniumHQ/selenium/pull/16701
    * use proper AssertJ asserts that generate a useful error message by
    @​asolntsev in https://github.com/SeleniumHQ/selenium/pull/16707
    * fix Java language level in IDEA by @​asolntsev in
    https://github.com/SeleniumHQ/selenium/pull/16708
    * [py] Properly verify Selenium Manager exists by @​cgoldberg in
    https://github.com/SeleniumHQ/selenium/pull/16711
    * fix flaky Ruby test `element_spec.rb` by @​asolntsev in
    https://github.com/SeleniumHQ/selenium/pull/16709
    * [java][BiDi] implement `emulation.setScreenOrientationOverride` by
    @​Delta456 in https://github.com/SeleniumHQ/selenium/pull/16705
    * [rb] add synchronization and error handling for socket interactions by
    @​titusfortner in https://github.com/SeleniumHQ/selenium/pull/16487
    * [rb] mark low level bidi implementation as private api by
    @​titusfortner in https://github.com/SeleniumHQ/selenium/pull/16475
    * [rb] ensure driver process is always stopped by @​titusfortner in
    https://github.com/SeleniumHQ/selenium/pull/15635
    * [rb] create user-friendly method for enabling bidi by @​titusfortner
    in https://github.com/SeleniumHQ/selenium/pull/14284
    * [dotnet] [bidi] Added missing Script.RemoteReference LocaclValue type
    by @​nvborisenko in https://github.com/SeleniumHQ/selenium/pull/16717
    * [dotnet] Standardize `IEquatable<T>` implementations across types
    overriding Equals by @​RenderMichael in
    https://github.com/SeleniumHQ/selenium/pull/16665
    * [dotnet] Fix nullability warnings in `WebDriver` by @​RenderMichael in
    https://github.com/SeleniumHQ/selenium/pull/16662
    * [py] Don't compare object identity in conftest by @​cgoldberg in
    https://github.com/SeleniumHQ/selenium/pull/16723
    * #​16720 avoid failing because of temporary Chrome internal files by
    @​asolntsev in https://github.com/SeleniumHQ/selenium/pull/16722
    * [rb] Add force encoding to remove warnings caused by json 3.0 by
    @​aguspe in https://github.com/SeleniumHQ/selenium/pull/16728
    * [py] Remove deprecated FTP proxy support by @​cgoldberg in
    https://github.com/SeleniumHQ/selenium/pull/16721
    * [py] Bump ruff and mypy versions by @​cgoldberg in
    https://github.com/SeleniumHQ/selenium/pull/16737
    * Create target directories before copying file by @​MohabMohie in
    https://github.com/SeleniumHQ/selenium/pull/16739
    * [bazel+closure]: Vendor the version of closure library we use by
    @​shs96c in https://github.com/SeleniumHQ/selenium/pull/16742
    * [closure] Fix failing `//javascript/atoms:test-*` targets by @​shs96c
    in https://github.com/SeleniumHQ/selenium/pull/16749
    * Avoid sleep in tests by @​asolntsev in
    https://github.com/SeleniumHQ/selenium/pull/16713
    * [bazel] Bump `rules_closure` and google closure libary to latest
    release by @​shs96c in https://github.com/SeleniumHQ/selenium/pull/16755
    * [refactor] call WebDriverException constructor instead of using
    reflection by @​asolntsev in
    https://github.com/SeleniumHQ/selenium/pull/16763
    * [build] Pin Browsers in Bazel by default by @​titusfortner in
    https://github.com/SeleniumHQ/selenium/pull/16743
    * [build] build selenium manager for tests by @​titusfortner in
    https://github.com/SeleniumHQ/selenium/pull/16736
    * [refactor] replace JUnit assertions by AssertJ by @​asolntsev in
    https://github.com/SeleniumHQ/selenium/pull/16765
    * [py] Add LocalWebDriver base class by @​cgoldberg in
    https://github.com/SeleniumHQ/selenium/pull/16730
    * Fix bug in FileHandler: it always failed on MacOS by @​asolntsev in
    https://github.com/SeleniumHQ/selenium/pull/16771
    * [java] add missing bazel artifacts by @​titusfortner in
    https://github.com/SeleniumHQ/selenium/pull/16773
     ... (truncated)
    
    ## 4.39.0
    
    ## Detailed Changelogs by Component
    
    <img src="https://www.selenium.dev/images/programming/java.svg"
    width="20" height="20">
    **[Java](https://github.com/SeleniumHQ/selenium/blob/trunk/java/CHANGELOG)**
    &nbsp;&nbsp;&nbsp; | &nbsp;&nbsp;&nbsp;<img
    src="https://www.selenium.dev/images/programming/python.svg" width="20"
    height="20">
    **[Python](https://github.com/SeleniumHQ/selenium/blob/trunk/py/CHANGES)**
    &nbsp;&nbsp;&nbsp; | &nbsp;&nbsp;&nbsp;<img
    src="https://www.selenium.dev/images/programming/dotnet.svg" width="20"
    height="20">
    **[DotNet](https://github.com/SeleniumHQ/selenium/blob/trunk/dotnet/CHANGELOG)**
    &nbsp;&nbsp;&nbsp; | &nbsp;&nbsp;&nbsp;<img
    src="https://www.selenium.dev/images/programming/ruby.svg" width="20"
    height="20">
    **[Ruby](https://github.com/SeleniumHQ/selenium/blob/trunk/rb/CHANGES)**
    &nbsp;&nbsp;&nbsp; | &nbsp;&nbsp;&nbsp;<img
    src="https://www.selenium.dev/images/programming/javascript.svg"
    width="20" height="20">
    **[JavaScript](https://github.com/SeleniumHQ/selenium/blob/trunk/javascript/selenium-webdriver/CHANGES.md)**
    <br>
    
    
    <!-- Release notes generated using configuration in .github/release.yml
    at trunk -->
    
    ## What's Changed
    <details>
    <summary>Click to see all the changes included in this release</summary>
    
    * [atoms] fix text node children are always considered as displayed
    #​16284 by @​joerg1985 in
    https://github.com/SeleniumHQ/selenium/pull/16329
    * [grid] Enhance UI with theme integration and improved status
    indicators by @​VietND96 in
    https://github.com/SeleniumHQ/selenium/pull/16512
    * [py][bidi]: add emulation command - `set_locale_override` by
    @​navin772 in https://github.com/SeleniumHQ/selenium/pull/16504
    * [py][bidi]: add emulation command `set_scripting_enabled` by
    @​navin772 in https://github.com/SeleniumHQ/selenium/pull/16513
    * [py] Update docstrings to google pydoc format by @​iampopovich in
    https://github.com/SeleniumHQ/selenium/pull/16511
    * [java][BiDi] implement `browsingContext.downloadEnd` event by
    @​Delta456 in https://github.com/SeleniumHQ/selenium/pull/16347
    * Fix typo and minor formatting changes in README.md by @​cgoldberg in
    https://github.com/SeleniumHQ/selenium/pull/16523
    * [py] Update docstrings (remove reST leftovers and resolve D200) by
    @​iampopovich in https://github.com/SeleniumHQ/selenium/pull/16525
    * [py] Fix docstring formatting and apply ruff linting rules by
    @​cgoldberg in https://github.com/SeleniumHQ/selenium/pull/16527
    * [py] Fix Ruff D417 warnings in docstrings by @​iampopovich in
    https://github.com/SeleniumHQ/selenium/pull/16535
    * [py] Fix ruff D415 warnings in docstrings by @​cgoldberg in
    https://github.com/SeleniumHQ/selenium/pull/16536
    * [py][bidi]: add `set_screen_orientation_override` command in Emulation
    by @​navin772 in https://github.com/SeleniumHQ/selenium/pull/16522
    * [py] Fix D205 ruff warnings for docstrings and add type hints by
    @​iampopovich in https://github.com/SeleniumHQ/selenium/pull/16537
    * [py][bidi]: add `set_download_behavior` command by @​navin772 in
    https://github.com/SeleniumHQ/selenium/pull/16556
    * [py] Bump pytest and dev dependencies by @​cgoldberg in
    https://github.com/SeleniumHQ/selenium/pull/16572
    * [bazel] Move `rules_rust` to `bzlmod` by @​shs96c in
    https://github.com/SeleniumHQ/selenium/pull/16566
    * [ci] Make a PR for updating mirror file instead of pushing directly to
    trunk by @​bonigarcia in
    https://github.com/SeleniumHQ/selenium/pull/16579
    * [ci] Update mirror info (2025-11-11T15:26:46Z) by
    @​github-actions[bot] in
    https://github.com/SeleniumHQ/selenium/pull/16578
    * [ci] Revert latest changes related to the mirror workflow by
    @​bonigarcia in https://github.com/SeleniumHQ/selenium/pull/16580
    * [java]: refactor request interception tests and handle CORS by
    @​navin772 in https://github.com/SeleniumHQ/selenium/pull/16585
    * [py][bidi]: enable download event tests for firefox by @​navin772 in
    https://github.com/SeleniumHQ/selenium/pull/16587
    * [py] Fix more type annotations by @​iampopovich in
    https://github.com/SeleniumHQ/selenium/pull/16551
    * [java][BiDi] implement `emulation.setTimezoneOverride` by @​Delta456
    in https://github.com/SeleniumHQ/selenium/pull/16530
    * [grid] Minimum Docker API 1.44 for Docker Engine v29+ in Dynamic Grid
    by @​VietND96 in https://github.com/SeleniumHQ/selenium/pull/16591
    * Show file modification time by @​asolntsev in
    https://github.com/SeleniumHQ/selenium/pull/16589
    * [py][bidi]: add emulation command `set_user_agent_override` by
    @​navin772 in https://github.com/SeleniumHQ/selenium/pull/16595
    * [grid] Improve Docker client for Dynamic Grid by @​VietND96 in
    https://github.com/SeleniumHQ/selenium/pull/16596
    * [py]: reuse driver in case of bidi tests by @​navin772 in
    https://github.com/SeleniumHQ/selenium/pull/16597
    * [grid] Improve browser container labels and naming in Dynamic Grid by
    @​VietND96 in https://github.com/SeleniumHQ/selenium/pull/16599
    * [build] Upgrade rules_dotnet to 0.20.5 by @​nvborisenko in
    https://github.com/SeleniumHQ/selenium/pull/16592
    * [dotnet] [bidi] Simplify namespace for communications by @​nvborisenko
    in https://github.com/SeleniumHQ/selenium/pull/16602
    * [py] Improve type hints with union syntax and native types by
    @​cgoldberg in https://github.com/SeleniumHQ/selenium/pull/16590
    * [py] Use double quotes in generate.py by @​Delta456 in
    https://github.com/SeleniumHQ/selenium/pull/16607
    * [ci] Use pagination in mirror workflow to get all Selenium releases by
    @​bonigarcia in https://github.com/SeleniumHQ/selenium/pull/16605
    * [dotnet] Generate atoms statically by @​nvborisenko in
    https://github.com/SeleniumHQ/selenium/pull/16608
    * [nodejs] Update dev dependencies to fix vulnerabilities by @​cgoldberg
    in https://github.com/SeleniumHQ/selenium/pull/16610
    * [java][BiDi] emulation: allow passing null to GeolocationOverride by
    @​Delta456 in https://github.com/SeleniumHQ/selenium/pull/16594
    * [grid] Update container label `compose.oneoff` in Dynamic Grid by
    @​VietND96 in https://github.com/SeleniumHQ/selenium/pull/16613
     ... (truncated)
    
    ## 4.38.0
    
    ## Detailed Changelogs by Component
    
    <img src="https://www.selenium.dev/images/programming/java.svg"
    width="20" height="20">
    **[Java](https://github.com/SeleniumHQ/selenium/blob/trunk/java/CHANGELOG)**
    &nbsp;&nbsp;&nbsp; | &nbsp;&nbsp;&nbsp;<img
    src="https://www.selenium.dev/images/programming/python.svg" width="20"
    height="20">
    **[Python](https://github.com/SeleniumHQ/selenium/blob/trunk/py/CHANGES)**
    &nbsp;&nbsp;&nbsp; | &nbsp;&nbsp;&nbsp;<img
    src="https://www.selenium.dev/images/programming/dotnet.svg" width="20"
    height="20">
    **[DotNet](https://github.com/SeleniumHQ/selenium/blob/trunk/dotnet/CHANGELOG)**
    &nbsp;&nbsp;&nbsp; | &nbsp;&nbsp;&nbsp;<img
    src="https://www.selenium.dev/images/programming/ruby.svg" width="20"
    height="20">
    **[Ruby](https://github.com/SeleniumHQ/selenium/blob/trunk/rb/CHANGES)**
    &nbsp;&nbsp;&nbsp; | &nbsp;&nbsp;&nbsp;<img
    src="https://www.selenium.dev/images/programming/javascript.svg"
    width="20" height="20">
    **[JavaScript](https://github.com/SeleniumHQ/selenium/blob/trunk/javascript/selenium-webdriver/CHANGES.md)**
    <br>
    
    
    <!-- Release notes generated using configuration in .github/release.yml
    at trunk -->
    
    ## What's Changed
    <details>
    <summary>Click to see all the changes included in this release</summary>
    
    * [dotnet] [bidi] Avoid using JsonInclude attribute to include optional
    property for DTO by @​nvborisenko in
    https://github.com/SeleniumHQ/selenium/pull/16413
    * [rb] Bump prism to 1.6.0 by @​Earlopain in
    https://github.com/SeleniumHQ/selenium/pull/16450
    * [java] JSpecify annotations for `ExecuteMethod` by @​mk868 in
    https://github.com/SeleniumHQ/selenium/pull/16464
    * [rb] Fix Network issue by removing nil values on network requests by
    @​aguspe in https://github.com/SeleniumHQ/selenium/pull/16442
    * [py] Replaced :param: and :args: from docstrings by @​iampopovich in
    https://github.com/SeleniumHQ/selenium/pull/16469
    * [java] JSpecify annotations for `org.openqa.selenium.federatedcredent…
    by @​mk868 in https://github.com/SeleniumHQ/selenium/pull/16461
    * [java] JSpecify annotations for `org.openqa.selenium.interactions` by
    @​mk868 in https://github.com/SeleniumHQ/selenium/pull/16462
    * [java][rb] Remove cruft from old Travis CI environment by @​cgoldberg
    in https://github.com/SeleniumHQ/selenium/pull/16473
    * [java] JSpecify annotations for `org.openqa.selenium.net` by @​mk868
    in https://github.com/SeleniumHQ/selenium/pull/16463
    * [rb] remove deprecated classes for previous implementation of log han…
    by @​titusfortner in https://github.com/SeleniumHQ/selenium/pull/16474
    * [build] minimize number of ruby targets run with bidi by
    @​titusfortner in https://github.com/SeleniumHQ/selenium/pull/16477
    * [java] JSpecify annotations for `Credential` and `MBean` by @​mk868 in
    https://github.com/SeleniumHQ/selenium/pull/16481
    * [java] JSpecify annotations for `ScriptKey` and `UnpinnedScriptKey` by
    @​mk868 in https://github.com/SeleniumHQ/selenium/pull/16483
    * [java] JSpecify annotations for `FileDetector` by @​mk868 in
    https://github.com/SeleniumHQ/selenium/pull/16482
    * [java] JSpecify annotations for `ExpectedCondition` by @​mk868 in
    https://github.com/SeleniumHQ/selenium/pull/16489
    * [java] JSpecify annotations for `Response` `SessionId` `HttpSessionId`
    by @​mk868 in https://github.com/SeleniumHQ/selenium/pull/16490
    * [rb][build] improve ruby local_dev generation by @​titusfortner in
    https://github.com/SeleniumHQ/selenium/pull/16495
    * [build] removing test_tag_filter tag that isn't being used anywhere by
    @​titusfortner in https://github.com/SeleniumHQ/selenium/pull/16496
    * [rb][build] disable dev shm for Chrome and Edge on RBE by
    @​titusfortner in https://github.com/SeleniumHQ/selenium/pull/16497
    * [rb] update syntax with rspec linter by @​titusfortner in
    https://github.com/SeleniumHQ/selenium/pull/16498
    * [java][bidi]: add test for `onHistoryUpdated` event by @​navin772 in
    https://github.com/SeleniumHQ/selenium/pull/16293
    * [py] Bump version of ruff formatter/linter by @​cgoldberg in
    https://github.com/SeleniumHQ/selenium/pull/16502
    * [rust] Fixe Edge version test by @​bonigarcia in
    https://github.com/SeleniumHQ/selenium/pull/16501
    * [py][bidi]: add `set_timezone_override` command in emulation by
    @​navin772 in https://github.com/SeleniumHQ/selenium/pull/16500
    * [py] Cleanup and convert more doctrings to google-style by
    @​iampopovich in https://github.com/SeleniumHQ/selenium/pull/16503
    * [build] fix update-documentation workflow by @​titusfortner in
    https://github.com/SeleniumHQ/selenium/pull/16505
    * fix workflows for updating documentation from stage release by
    @​titusfortner in https://github.com/SeleniumHQ/selenium/pull/16506
    
    </details>
    
    **Full Changelog**:
    https://github.com/SeleniumHQ/selenium/compare/selenium-4.37.0...selenium-4.38.0
    
    ## 4.37.0
    
    ## Detailed Changelogs by Component
    
    <img src="https://www.selenium.dev/images/programming/java.svg"
    width="20" height="20">
    **[Java](https://github.com/SeleniumHQ/selenium/blob/trunk/java/CHANGELOG)**
    &nbsp;&nbsp;&nbsp; | &nbsp;&nbsp;&nbsp;<img
    src="https://www.selenium.dev/images/programming/python.svg" width="20"
    height="20">
    **[Python](https://github.com/SeleniumHQ/selenium/blob/trunk/py/CHANGES)**
    &nbsp;&nbsp;&nbsp; | &nbsp;&nbsp;&nbsp;<img
    src="https://www.selenium.dev/images/programming/dotnet.svg" width="20"
    height="20">
    **[DotNet](https://github.com/SeleniumHQ/selenium/blob/trunk/dotnet/CHANGELOG)**
    &nbsp;&nbsp;&nbsp; | &nbsp;&nbsp;&nbsp;<img
    src="https://www.selenium.dev/images/programming/ruby.svg" width="20"
    height="20">
    **[Ruby](https://github.com/SeleniumHQ/selenium/blob/trunk/rb/CHANGES)**
    &nbsp;&nbsp;&nbsp; | &nbsp;&nbsp;&nbsp;<img
    src="https://www.selenium.dev/images/programming/javascript.svg"
    width="20" height="20">
    **[JavaScript](https://github.com/SeleniumHQ/selenium/blob/trunk/javascript/selenium-webdriver/CHANGES.md)**
    <br>
    
    
    <!-- Release notes generated using configuration in .github/release.yml
    at trunk -->
    
    ## What's Changed
    <details>
    <summary>Click to see all the changes included in this release</summary>
    
    * [py] Re-add defaults for Chromium kwargs by @​cgoldberg in
    https://github.com/SeleniumHQ/selenium/pull/16372
    * Splitting stress tests by @​diemol in
    https://github.com/SeleniumHQ/selenium/pull/16374
    * [rb] Update Chrome/Edge args for test environment by @​cgoldberg in
    https://github.com/SeleniumHQ/selenium/pull/16376
    * [dotnet] [bidi] Emulation module by @​nvborisenko in
    https://github.com/SeleniumHQ/selenium/pull/16380
    * [py] Remove old test xfail markers from Travis CI by @​cgoldberg in
    https://github.com/SeleniumHQ/selenium/pull/16377
    * [dotnet] [bidi] Implement browsing context download events by
    @​nvborisenko in https://github.com/SeleniumHQ/selenium/pull/16382
    * [dotnet] [bidi] Support browser SetDownloadBehaviour command by
    @​nvborisenko in https://github.com/SeleniumHQ/selenium/pull/16383
    * [dotnet] [bidi] Support network SetExtraHeaders command by
    @​nvborisenko in https://github.com/SeleniumHQ/selenium/pull/16384
    * [py][build] Python CI - add unit test job and windows integration
    tests to GH runners by @​cgoldberg in
    https://github.com/SeleniumHQ/selenium/pull/16362
    * [java] Linux ARM "os.arch" system property is "aarch64" by @​mkurz in
    https://github.com/SeleniumHQ/selenium/pull/16381
    * [dotnet] [bidi] AOT safe enums serialization by @​nvborisenko in
    https://github.com/SeleniumHQ/selenium/pull/16386
    * [dotnet] Handle negative zero BiDi response by @​RenderMichael in
    https://github.com/SeleniumHQ/selenium/pull/15898
    * [dotnet] Move JSON converter attributes from centralized options into
    their respective types by @​RenderMichael in
    https://github.com/SeleniumHQ/selenium/pull/16393
    * [py] Fix Selenium Manager tests on Windows by @​cgoldberg in
    https://github.com/SeleniumHQ/selenium/pull/16391
    * [py] Fix chromedriver/msedgedriver service tests by @​cgoldberg in
    https://github.com/SeleniumHQ/selenium/pull/16395
    * [dotnet] [bidi] Modules as extensions by @​nvborisenko in
    https://github.com/SeleniumHQ/selenium/pull/16392
    * [dotnet] [bidi] Provide type info immediately when serializing by
    @​nvborisenko in https://github.com/SeleniumHQ/selenium/pull/16397
    * [bidi] [dotnet] Use events JsonTypeInfo for deserialization by
    @​nvborisenko in https://github.com/SeleniumHQ/selenium/pull/16402
    * [dotnet] Replace lazy caching mechanism in BiDi's constructor with
    simple initialization by @​RenderMichael in
    https://github.com/SeleniumHQ/selenium/pull/16399
    * [py][build] Re-add Windows to CI workflows by @​cgoldberg in
    https://github.com/SeleniumHQ/selenium/pull/16396
    * [dotnet] Help more .NETFramework projects to copy SM binaries to
    output by @​nvborisenko in
    https://github.com/SeleniumHQ/selenium/pull/16406
    * [dotnet] [bidi] Specific result type for any command by @​nvborisenko
    in https://github.com/SeleniumHQ/selenium/pull/16405
    * [dotnet] [bidi] Deserialize message fast instead of defer it by
    @​nvborisenko in https://github.com/SeleniumHQ/selenium/pull/16403
    * [dotnet] [bidi] Remove IEnumerable of command results by @​nvborisenko
    in https://github.com/SeleniumHQ/selenium/pull/16219
    * [dotnet] Remove obsoleted FtpProxy by @​nvborisenko in
    https://github.com/SeleniumHQ/selenium/pull/16411
    * [py] Configure WebSocket timeout and wait interval via ClientConfig by
    @​cgoldberg in https://github.com/SeleniumHQ/selenium/pull/16248
    * [java] Rescuing the remote cause for session creation errors by
    @​diemol in https://github.com/SeleniumHQ/selenium/pull/16418
    * [py] Add test for BiDi request handlers with classic navigation by
    @​cgoldberg in https://github.com/SeleniumHQ/selenium/pull/16421
    * [java] NullAway added by @​mk868 in
    https://github.com/SeleniumHQ/selenium/pull/16416
    * [java] feat: Add native Java 11 HTTP client methods to HttpClient
    interface by @​manuelsblanco in
    https://github.com/SeleniumHQ/selenium/pull/16412
    * [py] Raise NotImplementedError when deleting downloads in driver
    subclass by @​cgoldberg in
    https://github.com/SeleniumHQ/selenium/pull/16423
    * [java] refactor(remote/command): Merge overload's business logic by
    @​nnnnoel in https://github.com/SeleniumHQ/selenium/pull/14469
    * [py] Fix default rpId in virtual authenticator by @​cgoldberg in
    https://github.com/SeleniumHQ/selenium/pull/16428
    * make augmentation of HasBiDi/HasDevTools lazy-loaded by @​asolntsev in
    https://github.com/SeleniumHQ/selenium/pull/16338
    * [py] Update docstrings style by @​iampopovich in
    https://github.com/SeleniumHQ/selenium/pull/16427
    * [py] Support Python 3.14 and drop Python 3.9 by @​cgoldberg in
    https://github.com/SeleniumHQ/selenium/pull/16342
    * Removing FF guard for canListenToDownloadWillBeginEvent by @​diemol in
    https://github.com/SeleniumHQ/selenium/pull/16439
    * Adapting the browser_protocol file fetching to the file structure
    change. by @​diemol in https://github.com/SeleniumHQ/selenium/pull/16440
     ... (truncated)
    
    ## 4.36.0
    
    ## Detailed Changelogs by Component
    
    <img src="https://www.selenium.dev/images/programming/java.svg"
    width="20" height="20">
    **[Java](https://github.com/SeleniumHQ/selenium/blob/trunk/java/CHANGELOG)**
    &nbsp;&nbsp;&nbsp; | &nbsp;&nbsp;&nbsp;<img
    src="https://www.selenium.dev/images/programming/python.svg" width="20"
    height="20">
    **[Python](https://github.com/SeleniumHQ/selenium/blob/trunk/py/CHANGES)**
    &nbsp;&nbsp;&nbsp; | &nbsp;&nbsp;&nbsp;<img
    src="https://www.selenium.dev/images/programming/dotnet.svg" width="20"
    height="20">
    **[DotNet](https://github.com/SeleniumHQ/selenium/blob/trunk/dotnet/CHANGELOG)**
    &nbsp;&nbsp;&nbsp; | &nbsp;&nbsp;&nbsp;<img
    src="https://www.selenium.dev/images/programming/ruby.svg" width="20"
    height="20">
    **[Ruby](https://github.com/SeleniumHQ/selenium/blob/trunk/rb/CHANGES)**
    &nbsp;&nbsp;&nbsp; | &nbsp;&nbsp;&nbsp;<img
    src="https://www.selenium.dev/images/programming/javascript.svg"
    width="20" height="20">
    **[JavaScript](https://github.com/SeleniumHQ/selenium/blob/trunk/javascript/selenium-webdriver/CHANGES.md)**
    <br>
    
    
    <!-- Release notes generated using configuration in .github/release.yml
    at trunk -->
    
    ## What's Changed
    <details>
    <summary>Click to see all the changes included in this release</summary>
    
    * [py]: close ipv6 port in case of error by @​navin772 in
    https://github.com/SeleniumHQ/selenium/pull/16165
    * [docs] Update issue label in CONTRIBUTING.md by @​pallavigitwork in
    https://github.com/SeleniumHQ/selenium/pull/16169
    * [py][docs]: update dead API docs link to API reference in `index.rst`
    by @​navin772 in https://github.com/SeleniumHQ/selenium/pull/16170
    * [grid] close the HttpClient after the session is gone by @​joerg1985
    in https://github.com/SeleniumHQ/selenium/pull/16182
    * [py] Update docstring and comments in keys.py by @​Aidoni0797 in
    https://github.com/SeleniumHQ/selenium/pull/16187
    * [dotnet] [bidi] Simplify type naming of internal command parameters by
    @​nvborisenko in https://github.com/SeleniumHQ/selenium/pull/16188
    * [py] Fix formatting by @​cgoldberg in
    https://github.com/SeleniumHQ/selenium/pull/16189
    * [dotnet] [bidi] Support WebExtension module by @​nvborisenko in
    https://github.com/SeleniumHQ/selenium/pull/15850
    * [rb][BiDi] Create browser module, added user context related methods
    by @​aguspe in https://github.com/SeleniumHQ/selenium/pull/15371
    * [docs] Update bug report section in CONTRIBUTING.md by
    @​pallavigitwork in https://github.com/SeleniumHQ/selenium/pull/16191
    * [dotnet] Adding flag to enable SafariDriver logging. by @​diemol in
    https://github.com/SeleniumHQ/selenium/pull/16196
    * [java] extend the scope of the properties of the HttpCommandExecutor
    class by @​iampopovich in
    https://github.com/SeleniumHQ/selenium/pull/16186
    * [dotnet] [bidi] Serialize base64 encoded string directly to bytes by
    @​nvborisenko in https://github.com/SeleniumHQ/selenium/pull/16203
    * [dotnet] [bidi] Make cookie expiry as TimeSpan by @​nvborisenko in
    https://github.com/SeleniumHQ/selenium/pull/16204
    * [grid] Improve readTimeout in handle session between Router and Node
    by @​VietND96 in https://github.com/SeleniumHQ/selenium/pull/16163
    * [py] Fix type annotation error and raise clearer error message by
    @​Paresh-0007 in https://github.com/SeleniumHQ/selenium/pull/16174
    * [java] Unifying select class by @​vicky-iv in
    https://github.com/SeleniumHQ/selenium/pull/16220
    * [rust] Update dependency rules_cc to v0.2.0 by @​renovate[bot] in
    https://github.com/SeleniumHQ/selenium/pull/16198
    * [js] Update testing-library monorepo by @​renovate[bot] in
    https://github.com/SeleniumHQ/selenium/pull/16173
    * [js] Update dependency tmp to ^0.2.5 by @​renovate[bot] in
    https://github.com/SeleniumHQ/selenium/pull/16172
    * [dotnet] Update dependency System.Text.Json to 8.0.6 by
    @​renovate[bot] in https://github.com/SeleniumHQ/selenium/pull/16171
    * [js] Update dependency react-router-dom to v6.30.1 by @​renovate[bot]
    in https://github.com/SeleniumHQ/selenium/pull/16076
    * [js] Update material-ui monorepo to v5.18.0 by @​renovate[bot] in
    https://github.com/SeleniumHQ/selenium/pull/16062
    * [js] Update dependency ws to ^8.18.3 by @​renovate[bot] in
    https://github.com/SeleniumHQ/selenium/pull/16009
    * [js] Update react monorepo by @​renovate[bot] in
    https://github.com/SeleniumHQ/selenium/pull/15949
    * [java] Update dependency net.bytebuddy:byte-buddy to v1.17.7 by
    @​renovate[bot] in https://github.com/SeleniumHQ/selenium/pull/16237
    * [py] Update dependency charset-normalizer to v3.4.3 by @​renovate[bot]
    in https://github.com/SeleniumHQ/selenium/pull/16239
    * [py] Update dependency cryptography to v45.0.6 by @​renovate[bot] in
    https://github.com/SeleniumHQ/selenium/pull/16240
    * Revert "[py] Update dependency charset-normalizer to v3.4.3" by
    @​cgoldberg in https://github.com/SeleniumHQ/selenium/pull/16242
    * Revert "[py] Update dependency cryptography to v45.0.6" by @​cgoldberg
    in https://github.com/SeleniumHQ/selenium/pull/16243
    * [py] Bump dependencies for dev and fix script by @​cgoldberg in
    https://github.com/SeleniumHQ/selenium/pull/16244
    * [dotnet] Help old .net framework copy selenium manager to output by
    @​nvborisenko in https://github.com/SeleniumHQ/selenium/pull/16228
    * [java] Add hooks around getScreenshotAs in WebDriverListener #​16232
    by @​giulong in https://github.com/SeleniumHQ/selenium/pull/16233
    * [py][bidi]: enable `history_updated` event test by @​navin772 in
    https://github.com/SeleniumHQ/selenium/pull/16236
    * [py] Bump ruff version for linting/formatting by @​cgoldberg in
    https://github.com/SeleniumHQ/selenium/pull/16254
    * [py][bidi]: use bidi `navigate` command in network tests by @​navin772
    in https://github.com/SeleniumHQ/selenium/pull/16251
    * [dotnet] Fix find port for IPv4 only environments by @​nvborisenko in
    https://github.com/SeleniumHQ/selenium/pull/16216
    * [dotnet] [bidi] Adjust cookie expiry type according spec (unix
    seconds) by @​nvborisenko in
    https://github.com/SeleniumHQ/selenium/pull/16218
     ... (truncated)
    
    ## 4.35.0
    
    ## Detailed Changelogs by Component
    
    <img src="https://www.selenium.dev/images/programming/java.svg"
    width="20" height="20">
    **[Java](https://github.com/SeleniumHQ/selenium/blob/trunk/java/CHANGELOG)**
    &nbsp;&nbsp;&nbsp; | &nbsp;&nbsp;&nbsp;<img
    src="https://www.selenium.dev/images/programming/python.svg" width="20"
    height="20">
    **[Python](https://github.com/SeleniumHQ/selenium/blob/trunk/py/CHANGES)**
    &nbsp;&nbsp;&nbsp; | &nbsp;&nbsp;&nbsp;<img
    src="https://www.selenium.dev/images/programming/dotnet.svg" width="20"
    height="20">
    **[DotNet](https://github.com/SeleniumHQ/selenium/blob/trunk/dotnet/CHANGELOG)**
    &nbsp;&nbsp;&nbsp; | &nbsp;&nbsp;&nbsp;<img
    src="https://www.selenium.dev/images/programming/ruby.svg" width="20"
    height="20">
    **[Ruby](https://github.com/SeleniumHQ/selenium/blob/trunk/rb/CHANGES)**
    &nbsp;&nbsp;&nbsp; | &nbsp;&nbsp;&nbsp;<img
    src="https://www.selenium.dev/images/programming/javascript.svg"
    width="20" height="20">
    **[JavaScript](https://github.com/SeleniumHQ/selenium/blob/trunk/javascript/selenium-webdriver/CHANGES.md)**
    <br>
    
    
    
    <!-- Release notes generated using configuration in .github/release.yml
    at 1c58e5028bc5eaa94b12b856c2d4a87efa5363f5 -->
    
    ## What's Changed
    <details>
    <summary>Click to see all the changes included in this release</summary>
    
    * [dotnet] [bidi] Get tree command returns GetTreeResult object by
    @​nvborisenko in https://github.com/SeleniumHQ/selenium/pull/15978
    * [dotnet] [bidi] Initialize internal modules without Lazy by
    @​nvborisenko in https://github.com/SeleniumHQ/selenium/pull/15979
    * [py] Bump dependencies for building distribution wheel by @​cgoldberg
    in https://github.com/SeleniumHQ/selenium/pull/15977
    * bump zip version 2.6.1 -> 4.2.0 by @​MRTamalampudi in
    https://github.com/SeleniumHQ/selenium/pull/15980
    * [py][bidi]: add note for `enable_webextensions = False` by @​navin772
    in https://github.com/SeleniumHQ/selenium/pull/15981
    * [py][bidi]: add high level API for script module - `pin`, `unpin` and
    `execute` by @​navin772 in
    https://github.com/SeleniumHQ/selenium/pull/15936
    * [py][java][rb][ci]: use pinned browsers in CI by @​navin772 in
    https://github.com/SeleniumHQ/selenium/pull/15987
    * [java] Remove deprecated AppCacheStatus enum from the HTML5 package by
    @​iampopovich in https://github.com/SeleniumHQ/selenium/pull/15973
    * [java] Feat 14291/jspecify nullable annotation edge driver service by
    @​iampopovich in https://github.com/SeleniumHQ/selenium/pull/15972
    * [java] Fix Unicode value for OPTION key in Keys enum by @​iampopovich
    in https://github.com/SeleniumHQ/selenium/pull/15966
    * [dotnet][java][js][py][rb][rust] Update rules_jvm_external digest to
    aca619b by @​renovate[bot] in
    https://github.com/SeleniumHQ/selenium/pull/15951
    * [java] Removing old stream collectors required by Java 8 by @​zodac in
    https://github.com/SeleniumHQ/selenium/pull/15523
    * [java] Use static Patterns for regex-matching by @​zodac in
    https://github.com/SeleniumHQ/selenium/pull/15499
    * [java] Point made as immutable by @​mk868 in
    https://github.com/SeleniumHQ/selenium/pull/15511
    * [java] Feat 14291/jspecify nullable annotation chrome driver såervice
    by @​iampopovich in https://github.com/SeleniumHQ/selenium/pull/15998
    * [py] Bump dev dependencies by @​cgoldberg in
    https://github.com/SeleniumHQ/selenium/pull/16002
    * [grid] Add "URI" to the list of sort-by choices on Overview UI by
    @​VietND96 in https://github.com/SeleniumHQ/selenium/pull/16004
    * [java] Add @​Nullable annotations to Firefox and Gecko driver service
    by @​iampopovich in https://github.com/SeleniumHQ/selenium/pull/15999
    * [java] Add JSpecify nullable annotations to SafariDriverService
    parameters by @​iampopovich in
    https://github.com/SeleniumHQ/selenium/pull/16000
    * [java] Add @​Nullable annotations to InternetExplorerDriverService
    parameters by @​iampopovich in
    https://github.com/SeleniumHQ/selenium/pull/16001
    * use generics for AbstractFindByBuilder to avoid excessive casting by
    @​asolntsev in https://github.com/SeleniumHQ/selenium/pull/15526
    * [js] Update dependency @​emotion/styled to v11.14.1 by @​renovate[bot]
    in https://github.com/SeleniumHQ/selenium/pull/15997
    * [rust] Update which from 7.0.3 to 8.0.0 by @​musicinmybrain in
    https://github.com/SeleniumHQ/selenium/pull/15965
    * Fix various typos by @​noritaka1166 in
    https://github.com/SeleniumHQ/selenium/pull/16012
    * [java] JSpecify annotations for By locators by @​mk868 in
    https://github.com/SeleniumHQ/selenium/pull/14372
    * Fix email address in .mailmap by @​cgoldberg in
    https://github.com/SeleniumHQ/selenium/pull/16017
    * Fix typos in javascript & rb by @​noritaka1166 in
    https://github.com/SeleniumHQ/selenium/pull/16019
    * [java] JSpecify annotations for capabilities by @​mk868 in
    https://github.com/SeleniumHQ/selenium/pull/14397
    * Fix various typos in comments by @​noritaka1166 in
    https://github.com/SeleniumHQ/selenium/pull/16022
    * [dotnet] Fix typos by @​noritaka1166 in
    https://github.com/SeleniumHQ/selenium/pull/16032
    * [dotnet] [bidi] Add UnhandledPromptBehavior option to create User
    Context by @​nvborisenko in
    https://github.com/SeleniumHQ/selenium/pull/16034
    * [py] Fix path in unit test so it works cross-platform by @​cgoldberg
    in https://github.com/SeleniumHQ/selenium/pull/16033
    * [py][bidi]: implement bidi module - emulation by @​navin772 in
    https://github.com/SeleniumHQ/selenium/pull/15819
    * [py] Fix API doc generation script and include BiDi Emulation docs by
    @​cgoldberg in https://github.com/SeleniumHQ/selenium/pull/16037
    * [py] Allow free_port() to bind to IPv6 if IPv4 is unavailable by
    @​cgoldberg in https://github.com/SeleniumHQ/selenium/pull/16003
    * [build] Update base URL for Edge web driver by @​nvborisenko in
    https://github.com/SeleniumHQ/selenium/pull/16057
    * [rust] Update base URL for Edge web driver by @​nvborisenko in
    https://github.com/SeleniumHQ/selenium/pull/16056
     ... (truncated)
    
    ## 4.34.0
    
    ## Detailed Changelogs by Component
    
    <img src="https://www.selenium.dev/images/programming/java.svg"
    width="20" height="20">
    **[Java](https://github.com/SeleniumHQ/selenium/blob/trunk/java/CHANGELOG)**
    &nbsp;&nbsp;&nbsp; | &nbsp;&nbsp;&nbsp;<img
    src="https://www.selenium.dev/images/programming/python.svg" width="20"
    height="20">
    **[Python](https://github.com/SeleniumHQ/selenium/blob/trunk/py/CHANGES)**
    &nbsp;&nbsp;&nbsp; | &nbsp;&nbsp;&nbsp;<img
    src="https://www.selenium.dev/images/programming/dotnet.svg" width="20"
    height="20">
    **[DotNet](https://github.com/SeleniumHQ/selenium/blob/trunk/dotnet/CHANGELOG)**
    &nbsp;&nbsp;&nbsp; | &nbsp;&nbsp;&nbsp;<img
    src="https://www.selenium.dev/images/programming/ruby.svg" width="20"
    height="20">
    **[Ruby](https://github.com/SeleniumHQ/selenium/blob/trunk/rb/CHANGES)**
    &nbsp;&nbsp;&nbsp; | &nbsp;&nbsp;&nbsp;<img
    src="https://www.selenium.dev/images/programming/javascript.svg"
    width="20" height="20">
    **[JavaScript](https://github.com/SeleniumHQ/selenium/blob/trunk/javascript/selenium-webdriver/CHANGES.md)**
    <br>
    
    
    
    <!-- Release notes generated using configuration in .github/release.yml
    at 2a4c61c498207b17cdb2f5f987c7c71dca146c2d -->
    
    ## What's Changed
    <details>
    <summary>Click to see all the changes included in this release</summary>
    
    * [ci] Clear warning from Grid UI component tests by @​VietND96 in
    https://github.com/SeleniumHQ/selenium/pull/15783
    * [py] Fix pytest_ignore_collect hook to respect --ignore by @​mgorny in
    https://github.com/SeleniumHQ/selenium/pull/15787
    * [py] Increase timeout in devtools test by @​cgoldberg in
    https://github.com/SeleniumHQ/selenium/pull/15793
    * [py] Upgrade type hints by @​cgoldberg in
    https://github.com/SeleniumHQ/selenium/pull/15784
    * [dotnet] [bidi] Add AcceptInsecureCerts and Proxy options when create
    new user context by @​nvborisenko in
    https://github.com/SeleniumHQ/selenium/pull/15795
    * [grid] Silent fail on invalid log level by @​Oxilod in
    https://github.com/SeleniumHQ/selenium/pull/15796
    * Bump setup-bazel action by @​p0deje in
    https://github.com/SeleniumHQ/selenium/pull/15802
    * Don't silence stderr in format.sh by @​cgoldberg in
    https://github.com/SeleniumHQ/selenium/pull/15804
    * [dotnet] [bidi] Declare allowed nullable objects in constructors type
    by @​nvborisenko in https://github.com/SeleniumHQ/selenium/pull/15809
    * Fix type error for attribute in remote_connection.py by @​Bradltr95 in
    https://github.com/SeleniumHQ/selenium/pull/15810
    * [py] Lint Python with ruff by @​p0deje in
    https://github.com/SeleniumHQ/selenium/pull/15811
    * fixed error in selenium/webdriver/common/bidi/common.py:19 by
    @​pallavigitwork in https://github.com/SeleniumHQ/selenium/pull/15814
    * [py] Fix import for type hint by @​cgoldberg in
    https://github.com/SeleniumHQ/selenium/pull/15817
    * [py] Bump ruff version by @​cgoldberg in
    https://github.com/SeleniumHQ/selenium/pull/15818
    * [dotnet] [bidi] Simplify modules namespace for end users (breaking
    change) by @​nvborisenko in
    https://github.com/SeleniumHQ/selenium/pull/15820
    * [dotnet] Remove unnecessary stylecop files by @​nvborisenko in
    https://github.com/SeleniumHQ/selenium/pull/15824
    * [py] Lint and format all python files by @​cgoldberg in
    https://github.com/SeleniumHQ/selenium/pull/15828
    * [py][bidi]: add `enable_webextensions` option for chromium-based
    browsers by @​navin772 in
    https://github.com/SeleniumHQ/selenium/pull/15794
    * [py] Auto-generate Python API docs from code by @​cgoldberg in
    https://github.com/SeleniumHQ/selenium/pull/15822
    * [py] Fix python API docs publishing at readthedocs by @​cgoldberg in
    https://github.com/SeleniumHQ/selenium/pull/15832
    * Change flag for Chrome/Edge headless mode in tests by @​cgoldberg in
    https://github.com/SeleniumHQ/selenium/pull/15831
    * [py] Cleanup tox config by @​cgoldberg in
    https://github.com/SeleniumHQ/selenium/pull/15833
    * [rb] Add support for beta chrome by @​aguspe in
    https://github.com/SeleniumHQ/selenium/pull/15417
    * Revert "[rb] Add support for beta chrome" by @​aguspe in
    https://github.com/SeleniumHQ/selenium/pull/15837
    * [py] Fix: Mypy type annotation errors by @​ShauryaDusht in
    https://github.com/SeleniumHQ/selenium/pull/15841
    * [py] New script to update Python dependencies by @​cgoldberg in
    https://github.com/SeleniumHQ/selenium/pull/15845
    * fixed errors in browser.py for 15697 by @​pallavigitwork in
    https://github.com/SeleniumHQ/selenium/pull/15847
    * [py][bidi]: implement bidi permissions module by @​navin772 in
    https://github.com/SeleniumHQ/selenium/pull/15830
    * [py] Regeneratee py/docs/source/api.rst by @​cgoldberg in
    https://github.com/SeleniumHQ/selenium/pull/15856
    * [dotnet] Align CS projects name to understand the editing context by
    @​nvborisenko in https://github.com/SeleniumHQ/selenium/pull/15843
    * [py][bidi]: enable edge bidi storage test - `test_get_all_cookies` by
    @​navin772 in https://github.com/SeleniumHQ/selenium/pull/15859
    * Caching the size/length in loops to slightly improve performance by
    @​LuisOsv in https://github.com/SeleniumHQ/selenium/pull/15852
    * Update exceptions.py by @​adolfoarmas in
    https://github.com/SeleniumHQ/selenium/pull/15862
    * Revert "Update exceptions.py" by @​cgoldberg in
    https://github.com/SeleniumHQ/selenium/pull/15864
    * [py] Re-apply #​15862 by @​cgoldberg in
    https://github.com/SeleniumHQ/selenium/pull/15865
    * [py] fix driver_element_finding_tests.py by @​Delta456 in
    https://github.com/SeleniumHQ/selenium/pull/15863
    * [py] Fix another broken test by @​cgoldberg in
    https://github.com/SeleniumHQ/selenium/pull/15866
     ... (truncated)
    
    ## 4.33.0
    
    ## Detailed Changelogs by Component
    
    <img src="https://www.selenium.dev/images/programming/java.svg"
    width="20" height="20">
    **[Java](https://github.com/SeleniumHQ/selenium/blob/trunk/java/CHANGELOG)**
    &nbsp;&nbsp;&nbsp; | &nbsp;&nbsp;&nbsp;<img
    src="https://www.selenium.dev/images/programming/python.svg" width="20"
    height="20">
    **[Python](https://github.com/SeleniumHQ/selenium/blob/trunk/py/CHANGES)**
    &nbsp;&nbsp;&nbsp; | &nbsp;&nbsp;&nbsp;<img
    src="https://www.selenium.dev/images/programming/dotnet.svg" width="20"
    height="20">
    **[DotNet](https://github.com/SeleniumHQ/selenium/blob/trunk/dotnet/CHANGELOG)**
    &nbsp;&nbsp;&nbsp; | &nbsp;&nbsp;&nbsp;<img
    src="https://www.selenium.dev/images/programming/ruby.svg" width="20"
    height="20">
    **[Ruby](https://github.com/SeleniumHQ/selenium/blob/trunk/rb/CHANGES)**
    &nbsp;&nbsp;&nbsp; | &nbsp;&nbsp;&nbsp;<img
    src="https://www.selenium.dev/images/programming/javascript.svg"
    width="20" height="20">
    **[JavaScript](https://github.com/SeleniumHQ/selenium/blob/trunk/javascript/selenium-webdriver/CHANGES.md)**
    <br>
    
    
    
    <!-- Release notes generated using configuration in .github/release.yml
    at 2c6aaad03a575cd93e4f063f91404e3ae66a7470 -->
    
    ## What's Changed
    <details>
    <summary>Click to see all the changes included in this release</summary>
    
    * [py] Exclude devtools directory from type checking by @​cgoldberg in
    https://github.com/SeleniumHQ/selenium/pull/15695
    * [py] Add clean_options fixture and remove all Python tests from
    .skipped-tests by @​cgoldberg in
    https://github.com/SeleniumHQ/selenium/pull/15696
    * [java][bidi]: enable tests for storage module for edge by @​navin772
    in https://github.com/SeleniumHQ/selenium/pull/15667
    * [py][bidi]: add bidi storage module by @​navin772 in
    https://github.com/SeleniumHQ/selenium/pull/15669
    * [build] allow GitHub Actions runner to use 4GB for JVM Heap by
    @​titusfortner in https://github.com/SeleniumHQ/selenium/pull/15692
    * update old freenode channel link to libera by @​t7ru in
    https://github.com/SeleniumHQ/selenium/pull/15698
    * fixing mypy error from #​15693 by @​bandophahita in
    https://github.com/SeleniumHQ/selenium/pull/15705
    * [java] Removing deprecated items in Require.java by @​diemol in
    https://github.com/SeleniumHQ/selenium/pull/15711
    * [java] Removing RemoteStatus as it was deprecated. by @​diemol in
    https://github.com/SeleniumHQ/selenium/pull/15712
    * [rb] move all guard and zipper tests to unit tests by @​titusfortner
    in https://github.com/SeleniumHQ/selenium/pull/15717
    * [rust] Replace WMIC commands (deprecated) by WinAPI in Windows by
    @​bonigarcia in https://github.com/SeleniumHQ/selenium/pull/15363
    * [py][BiDi] use constant for LogLevel by @​Delta456 in
    https://github.com/SeleniumHQ/selenium/pull/15677
    * Let firefox choose the bidi port by default by @​tomhughes in
    https://github.com/SeleniumHQ/selenium/pull/15727
    * [rb] Upgrade to Ruby 3.2 by @​p0deje in
    https://github.com/SeleniumHQ/selenium/pull/15714
    * [py] Missing Headers Assignment in Network Class’s _on_request() by
    @​shbenzer in https://github.com/SeleniumHQ/selenium/pull/15736
    * [py] correct type annotations of default-None params by
    @​DeflateAwning in https://github.com/SeleniumHQ/selenium/pull/15341
    * [py] Add missing 'id' property to ShadowRoot class by @​cgoldberg in
    https://github.com/SeleniumHQ/selenium/pull/15739
    * [py] Bump Python package requirements to latest versions by
    @​cgoldberg in https://github.com/SeleniumHQ/selenium/pull/15731
    * [py] Use ruff for linting and code formatting by @​cgoldberg in
    https://github.com/SeleniumHQ/selenium/pull/15746
    * [py]: return `message` as part of exception in `execute` method by
    @​navin772 in https://github.com/SeleniumHQ/selenium/pull/15751
    * [py][tests]: check for .txt file in remote download test by @​navin772
    in https://github.com/SeleniumHQ/selenium/pull/15758
    * [java] Removing deprecated `setScriptTimeout` and `pageLoadTimeout`.
    by @​diemol in https://github.com/SeleniumHQ/selenium/pull/15764
    * [py][bidi]: add bidi webExtension module by @​navin772 in
    https://github.com/SeleniumHQ/selenium/pull/15749
    * [py] Better error for downloads on local webdrivers by @​cgoldberg in
    https://github.com/SeleniumHQ/selenium/pull/15756
    * [py] Add missing modules to python API docs by @​cgoldberg in
    https://github.com/SeleniumHQ/selenium/pull/15779
    * [ci] Workflow for Grid UI component tests by @​VietND96 in
    https://github.com/SeleniumHQ/selenium/pull/15778
    * [grid] UI Sessions capability fields to display as additional columns
    by @​VietND96 in https://github.com/SeleniumHQ/selenium/pull/15759
    * [grid] UI Overview is able to see live preview per Node by @​VietND96
    in https://github.com/SeleniumHQ/selenium/pull/15777
    
    ## New Contributors
    * @​t7ru made their first contribution in
    https://github.com/SeleniumHQ/selenium/pull/15698
    * @​tomhughes made their first contribution in
    https://github.com/SeleniumHQ/selenium/pull/15727
    * @​DeflateAwning made their first contribution in
    https://github.com/SeleniumHQ/selenium/pull/15341
    
    </details>
    
    **Full Changelog**:
    https://github.com/SeleniumHQ/selenium/compare/selenium-4.32.0...selenium-4.33.0
    
    ## 4.32.0
    
    ## Detailed Changelogs by Component
    
    <img src="https://www.selenium.dev/images/programming/java.svg"
    width="20" height="20">
    **[Java](https://github.com/SeleniumHQ/selenium/blob/trunk/java/CHANGELOG)**
    &nbsp;&nbsp;&nbsp; | &nbsp;&nbsp;&nbsp;<img
    src="https://www.selenium.dev/images/programming/python.svg" width="20"
    height="20">
    **[Python](https://github.com/SeleniumHQ/selenium/blob/trunk/py/CHANGES)**
    &nbsp;&nbsp;&nbsp; | &nbsp;&nbsp;&nbsp;<img
    src="https://www.selenium.dev/images/programming/dotnet.svg" width="20"
    height="20">
    **[DotNet](https://github.com/SeleniumHQ/selenium/blob/trunk/dotnet/CHANGELOG)**
    &nbsp;&nbsp;&nbsp; | &nbsp;&nbsp;&nbsp;<img
    src="https://www.selenium.dev/images/programming/ruby.svg" width="20"
    height="20">
    **[Ruby](https://github.com/SeleniumHQ/selenium/blob/trunk/rb/CHANGES)**
    &nbsp;&nbsp;&nbsp; | &nbsp;&nbsp;&nbsp;<img
    src="https://www.selenium.dev/images/programming/javascript.svg"
    width="20" height="20">
    **[JavaScript](https://github.com/SeleniumHQ/selenium/blob/trunk/javascript/selenium-webdriver/CHANGES.md)**
    <br>
    
    
    
    <!-- Release notes generated using configuration in .github/release.yml
    at d17c8aa95092dc25ae64f12e7abdc844cf3503f0 -->
    
    ## What's Changed
    <details>
    <summary>Click to see all the changes included in this release</summary>
    
    * [py] Fix test args for --headless and --bidi by @​cgoldberg in
    https://github.com/SeleniumHQ/selenium/pull/15567
    * [py] Only skip WebKit tests on Windows by @​cgoldberg in
    https://github.com/SeleniumHQ/selenium/pull/15470
    * [dotnet] [bidi] Revisit some core functionality to deserialize without
    intermediate `JsonElement` allocation by @​nvborisenko in
    https://github.com/SeleniumHQ/selenium/pull/15575
    * [py] Fix broken test for chromedriver logging by @​cgoldberg in
    https://github.com/SeleniumHQ/selenium/pull/15579
    * [py] Fix test for w3c touch pointer properties by @​cgoldberg in
    https://github.com/SeleniumHQ/selenium/pull/15580
    * [py] Fix FedCM tests leaking state by @​cgoldberg in
    https://github.com/SeleniumHQ/selenium/pull/15583
    * [dotnet] [bidi] Address BiDi's JSON converter AOT warnings by
    @​RenderMichael in https://github.com/SeleniumHQ/selenium/pull/15390
    * [dotnet] [bidi] Added missing GenericLogEntry log entry type in Script
    module by @​nvborisenko in
    https://github.com/SeleniumHQ/selenium/pull/15591
    * [grid] Ignored options when they are prefixed, safari specif as well
    by @​diemol in https://github.com/SeleniumHQ/selenium/pull/15574
    * [py] Remove broken logo from Sphinx generated API docs by @​cgoldberg
    in https://github.com/SeleniumHQ/selenium/pull/15597
    * [py] Fix PyTest configuration for WPEWebKit by @​cgoldberg in
    https://github.com/SeleniumHQ/selenium/pull/15602
    * [py] Fix failing test for Edge logging by @​cgoldberg in
    https://github.com/SeleniumHQ/selenium/pull/15605
    * [rb] Add PrintOptions Implementation for Ruby WebDriver by @​yvsvarma
    in https://github.com/SeleniumHQ/selenium/pull/15158
    * [py] BiDi Network implementation of Intercepts and Auth in Python by
    @​shbenzer in https://github.com/SeleniumHQ/selenium/pull/14592
    * [py] Use XWayland for internal Python Firefox tests by @​cgoldberg in
    https://github.com/SeleniumHQ/selenium/pull/15601
    * [py] Use mock.patch for environment variables in tests by @​cgoldberg
    in https://github.com/SeleniumHQ/selenium/pull/15607
    * [ruby] fix lint for print_options.rb by @​Delta456 in
    https://github.com/SeleniumHQ/selenium/pull/15608
    * [py] Configure readthedocs publishing for Python API docs by
    @​cgoldberg in https://github.com/SeleniumHQ/selenium/pull/15614
    * [py] Fix select being able to select options hidden by css rules by
    @​FFederi in https://github.com/SeleniumHQ/selenium/pull/15135
    * [py][bidi]: Implement BiDi browser module by @​navin772 in
    https://github.com/SeleniumHQ/selenium/pull/15616
    * [dotnet] [bidi] Combine network interception to apply rules (breaking
    change) by @​nvborisenko in
    https://github.com/SeleniumHQ/selenium/pull/15603
    * [dotnet] [bidi] Add strongly-typed `LocalValue.ConvertFrom` overloads
    by @​RenderMichael in https://github.com/SeleniumHQ/selenium/pull/15532
    * [py] Add missing modules to Python API docs by @​cgoldberg in
    https://github.com/SeleniumHQ/selenium/pull/15624
    * [dotnet] [bidi] Do not throw when CallFunction or Evaluate return
    exceptional result (breaking change) by @​RenderMichael in
    https://github.com/SeleniumHQ/selenium/pull/15521
    * [py] Skip bidi tests on browsers that don't support bidi by
    @​cgoldberg in https://github.com/SeleniumHQ/selenium/pull/15625
    * [py] complete
    `test_should_throw_an_exception_if_an_alert_has_not_been_dealt_with_and_dismiss_the_alert`
    by @​Delta456 in https://github.com/SeleniumHQ/selenium/pull/15559
    * [py] Remove unused xfail on chrome/edge service tests by @​cgoldberg
    in https://github.com/SeleniumHQ/selenium/pull/15637
    * [py] Adjust xfail markers for window size/position tests by
    @​cgoldberg in https://github.com/SeleniumHQ/selenium/pull/15638
    * [py] Call service.stop() when session can't be started by @​cgoldberg
    in https://github.com/SeleniumHQ/selenium/pull/15636
    * [dotnet] [bidi] Reuse memory when receiving websocket messages by
    @​nvborisenko in https://github.com/SeleniumHQ/selenium/pull/15640
    * [py] Remove logging API for non-Chromium browsers by @​cgoldberg in
    https://github.com/SeleniumHQ/selenium/pull/15641
    * [py] Raise TypeError when creating webdriver.Remote() without options
    by @​cgoldberg in https://github.com/SeleniumHQ/selenium/pull/15619
    * [py] Upgrade dependencies for mypy tox environment by @​cgoldberg in
    https://github.com/SeleniumHQ/selenium/pull/15642
    * [py] Fix Remote Firefox tests on Linux/Wayland by @​cgoldberg in
    https://github.com/SeleniumHQ/selenium/pull/15648
    * [dotnet] Enhance Selenium Manager platform detection by @​nvborisenko
    in https://github.com/SeleniumHQ/selenium/pull/15649
    * [dotnet] Use namespace file scoped by @​nvborisenko in
    https://github.com/SeleniumHQ/selenium/pull/15651
    * [py] Fix flaky WebDriverWait tests by @​cgoldberg in
    https://github.com/SeleniumHQ/selenium/pull/15650
     ... (truncated)
    
    Commits viewable in [compare
    view](https://github.com/SeleniumHQ/selenium/compare/selenium-4.31.0...selenium-4.41.0).
    </details>
    
    [![Dependabot compatibility
    score](https://dependabot-badges.githubapp.com/badges/compatibility_score?dependency-name=Selenium.WebDriver&package-manager=nuget&previous-version=4.31.0&new-version=4.41.0)](https://docs.github.com/en/github/managing-security-vulnerabilities/about-dependabot-security-updates#about-compatibility-scores)
    
    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-automerge-start)
    [//]: # (dependabot-automerge-end)
    
    ---
    
    <details>
    <summary>Dependabot commands and options</summary>
    <br />
    
    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 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)
    
    
    </details>
    
    Signed-off-by: dependabot[bot] <support@github.com>
    Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
    Co-authored-by: PhilipWoulfe <philip.woulfe@gmail.com>
    Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment

    Labels

    B-grid Everything grid and server related C-java Java Bindings Review effort 2/5

    Projects

    None yet

    Development

    Successfully merging this pull request may close these issues.

    [🚀 Feature]: Selenium 4 Grid Slot Matching RFC

    3 participants