Skip to content

Conversation

@selenium-ci
Copy link
Member

@selenium-ci selenium-ci commented Nov 15, 2025

This is an automated pull request to update pinned browsers and drivers

Merge after verify the new browser versions properly passing the tests and no bugs need to be filed

@selenium-ci selenium-ci added the B-build Includes scripting, bazel and CI integrations label Nov 15, 2025
@qodo-merge-pro
Copy link
Contributor

qodo-merge-pro bot commented Nov 15, 2025

PR Compliance Guide 🔍

Below is a summary of compliance checks for this PR:

Security Compliance
🟢
No security concerns identified No security vulnerabilities detected by AI analysis. Human verification advised for critical code.
Ticket Compliance
🎫 No ticket provided
  • Create ticket/issue
Codebase Duplication Compliance
Codebase context is not defined

Follow the guide to enable codebase context checks.

Custom Compliance
🟢
Generic: Meaningful Naming and Self-Documenting Code

Objective: Ensure all identifiers clearly express their purpose and intent, making code
self-documenting

Status: Passed

Learn more about managing compliance generic rules or creating your own custom rules

Generic: Secure Error Handling

Objective: To prevent the leakage of sensitive system information through error messages while
providing sufficient detail for internal debugging.

Status: Passed

Learn more about managing compliance generic rules or creating your own custom rules

Generic: Secure Logging Practices

Objective: To ensure logs are useful for debugging and auditing without exposing sensitive
information like PII, PHI, or cardholder data.

Status: Passed

Learn more about managing compliance generic rules or creating your own custom rules

Generic: Comprehensive Audit Trails

Objective: To create a detailed and reliable record of critical system actions for security analysis
and compliance.

Status:
No Auditing: The new changes only update URLs and checksums for archives and do not introduce or modify
any logging of critical actions, making audit coverage unverifiable from this diff.

Referred Code
        url = "https://ftp.mozilla.org/pub/firefox/releases/146.0b3/linux-x86_64/en-US/firefox-146.0b3.tar.xz",
        sha256 = "657222223c744872a599633ea6e570e76eb8622c0955b84173352b345f456732",
        build_file_content = """
load("@aspect_rules_js//js:defs.bzl", "js_library")
package(default_visibility = ["//visibility:public"])

filegroup(
    name = "files",
    srcs = glob(["**/*"]),
)

exports_files(["firefox/firefox"])

js_library(
    name = "firefox-js",
    data = [":files"],
)
""",
    )

    dmg_archive(


 ... (clipped 3 lines)

Learn more about managing compliance generic rules or creating your own custom rules

Generic: Robust Error Handling and Edge Case Management

Objective: Ensure comprehensive error handling that provides meaningful context and graceful
degradation

Status:
No Error Handling: The added lines configure external downloads (url, sha256) without visible error handling
or fallbacks for fetch/verification failures within this diff.

Referred Code
        url = "https://ftp.mozilla.org/pub/firefox/releases/146.0b3/linux-x86_64/en-US/firefox-146.0b3.tar.xz",
        sha256 = "657222223c744872a599633ea6e570e76eb8622c0955b84173352b345f456732",
        build_file_content = """
load("@aspect_rules_js//js:defs.bzl", "js_library")
package(default_visibility = ["//visibility:public"])

filegroup(
    name = "files",
    srcs = glob(["**/*"]),
)

exports_files(["firefox/firefox"])

js_library(
    name = "firefox-js",
    data = [":files"],
)
""",
    )

    dmg_archive(


 ... (clipped 3 lines)

Learn more about managing compliance generic rules or creating your own custom rules

Generic: Security-First Input Validation and Data Handling

Objective: Ensure all data inputs are validated, sanitized, and handled securely to prevent
vulnerabilities

Status:
External Input Trust: The PR updates external download URLs and checksums without visible validation logic or
integrity enforcement beyond static sha256 fields, which cannot be fully assessed from
this diff.

Referred Code
        url = "https://ftp.mozilla.org/pub/firefox/releases/146.0b3/linux-x86_64/en-US/firefox-146.0b3.tar.xz",
        sha256 = "657222223c744872a599633ea6e570e76eb8622c0955b84173352b345f456732",
        build_file_content = """
load("@aspect_rules_js//js:defs.bzl", "js_library")
package(default_visibility = ["//visibility:public"])

filegroup(
    name = "files",
    srcs = glob(["**/*"]),
)

exports_files(["firefox/firefox"])

js_library(
    name = "firefox-js",
    data = [":files"],
)
""",
    )

    dmg_archive(


 ... (clipped 3 lines)

Learn more about managing compliance generic rules or creating your own custom rules

  • Update
Compliance status legend 🟢 - Fully Compliant
🟡 - Partial Compliant
🔴 - Not Compliant
⚪ - Requires Further Human Verification
🏷️ - Compliance label

@qodo-merge-pro
Copy link
Contributor

qodo-merge-pro bot commented Nov 15, 2025

PR Code Suggestions ✨

Explore these optional code suggestions:

CategorySuggestion                                                                                                                                    Impact
General
Use a constant for version strings

To improve maintainability, define a constant for the hardcoded Firefox version
string "146.0b3" and use it to construct the download URLs for both Linux and
macOS.

common/repositories.bzl [51-76]

+_FIREFOX_BETA_VERSION = "146.0b3"
+
 http_archive(
     name = "linux_beta_firefox",
-    url = "https://ftp.mozilla.org/pub/firefox/releases/146.0b3/linux-x86_64/en-US/firefox-146.0b3.tar.xz",
+    url = "https://ftp.mozilla.org/pub/firefox/releases/{v}/linux-x86_64/en-US/firefox-{v}.tar.xz".format(v = _FIREFOX_BETA_VERSION),
     sha256 = "657222223c744872a599633ea6e570e76eb8622c0955b84173352b345f456732",
     ...
 )
 
 dmg_archive(
     name = "mac_beta_firefox",
-    url = "https://ftp.mozilla.org/pub/firefox/releases/146.0b3/mac/en-US/Firefox%20146.0b3.dmg",
+    url = "https://ftp.mozilla.org/pub/firefox/releases/{v}/mac/en-US/Firefox%20{v}.dmg".format(v = _FIREFOX_BETA_VERSION),
     sha256 = "a2b84419b1f22964ea4fe355cf2613c5e47da1a67f6df58518b3823091e3557f",
     ...
 )

[To ensure code accuracy, apply this suggestion manually]

Suggestion importance[1-10]: 7

__

Why: This is a valuable suggestion that improves maintainability by applying the DRY principle, making future version updates easier and less error-prone.

Medium
  • Update

@selenium-ci selenium-ci force-pushed the pinned-browser-updates branch from 8693a4b to e77907c Compare November 16, 2025 00:43
@qodo-merge-pro
Copy link
Contributor

CI Feedback 🧐

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

Action: Java / Browser Tests (macos) / Browser Tests (chrome, macos)

Failed stage: Run Bazel [❌]

Failed test name: //java/test/org/openqa/selenium/chrome:ChromeDriverFunctionalTest-remote

Failure summary:

The action failed because multiple Java tests could not start browser sessions during Selenium Grid
runs on macOS:
- //java/test/org/openqa/selenium/chrome:ChromeDriverFunctionalTest-remote failed
(3/3 attempts). Root cause: Chrome session creation failed with SessionNotCreatedException:
-
"session not created: DevToolsActivePort file doesn't exist" and later "session not created from
chrome not reachable".
- Stack trace shows failure in ProtocolHandshake.createSession ->
DriverServiceSessionFactory.apply (e.g., lines 1146–1160, 1466–1479).
-
//java/test/org/openqa/selenium/firefox:FirefoxDriverBuilderTest failed (3/3 attempts). Root cause:
Firefox session creation failed with SessionNotCreatedException:
- "Failed to read marionette
port" and "Process unexpectedly closed with status signal".
- Errors surfaced in
ProtocolHandshake.createSession and FirefoxDriver. (e.g., lines 1966–2006, 2046–2056).
-
//java/test/org/openqa/selenium/grid/router:RemoteWebDriverDownloadTest was flaky but indicated
repeated session creation failures/timeouts against Firefox:
- "Could not start a new session. New
session request timed out" and interrupted HTTP client calls (e.g., lines 2453–2473, 2582–2595).

Contributing factors evident in logs:
- Offline environment warnings: Selenium Manager unable to
resolve proper driver versions for Edge/Firefox, and Chrome binary is pinned via
external/+pin_browsers_extension+mac_chrome/... with no-sandbox etc., which often triggers
DevToolsActivePort/reachability issues in headless/CI macOS.
- Result: 2 out of 5 tests failed
locally; process exited with code 3 (lines 2825–2827).

Relevant error logs:
1:  ##[group]Runner Image Provisioner
2:  Hosted Compute Agent
...

409:  "/Users/runner/.cache/bazel-repo"
410:  ]
411:  }
412:  }
413:  ##[endgroup]
414:  ##[group]Restore cache for bazelisk
415:  Cache hit for: setup-bazel-2-darwin-bazelisk-f5f884b6af011b7b5194329ff462343da417842d8de319f232cfbf477f444994
416:  Received 29360128 of 104094921 (28.2%), 28.0 MBs/sec
417:  Received 104094921 of 104094921 (100.0%), 53.0 MBs/sec
418:  Cache Size: ~99 MB (104094921 B)
419:  [command]/opt/homebrew/bin/gtar -xf /Users/runner/work/_temp/41040706-40a0-40db-b429-ae12c0bc3225/cache.tzst -P -C /Users/runner/work/selenium/selenium --delay-directory-restore --use-compress-program unzstd
420:  Cache restored successfully
421:  Successfully restored cache from setup-bazel-2-darwin-bazelisk-f5f884b6af011b7b5194329ff462343da417842d8de319f232cfbf477f444994
422:  ##[endgroup]
423:  ##[group]Restore cache for disk-java-macos-tests
424:  Failed to restore disk-java-macos-tests cache
425:  ##[endgroup]
...

427:  Cache hit for: setup-bazel-2-darwin-repository-4278331a99727ad58bf4d6402a14e7492dabf30c30bc3d96fc11d72028fb097c
428:  Received 29360128 of 437150460 (6.7%), 28.0 MBs/sec
429:  Received 117440512 of 437150460 (26.9%), 56.0 MBs/sec
430:  Received 134217728 of 437150460 (30.7%), 42.7 MBs/sec
431:  Received 218103808 of 437150460 (49.9%), 52.0 MBs/sec
432:  Received 268435456 of 437150460 (61.4%), 51.2 MBs/sec
433:  Received 356515840 of 437150460 (81.6%), 56.7 MBs/sec
434:  Received 411984636 of 437150460 (94.2%), 56.1 MBs/sec
435:  Received 437150460 of 437150460 (100.0%), 55.5 MBs/sec
436:  Cache Size: ~417 MB (437150460 B)
437:  [command]/opt/homebrew/bin/gtar -xf /Users/runner/work/_temp/a3602d7e-7254-4326-a2c7-bc9527eee527/cache.tzst -P -C /Users/runner/work/selenium/selenium --delay-directory-restore --use-compress-program unzstd
438:  Cache restored successfully
439:  Successfully restored cache from setup-bazel-2-darwin-repository-4278331a99727ad58bf4d6402a14e7492dabf30c30bc3d96fc11d72028fb097c
440:  ##[endgroup]
441:  ##[group]Restore cache for external-java-macos-tests-manifest
442:  Failed to restore external-java-macos-tests-manifest cache
443:  ##[endgroup]
...

471:  �[32mLoading:�[0m 
472:  �[32mLoading:�[0m 2 packages loaded
473:  �[32mLoading:�[0m 2 packages loaded
474:  currently loading: java/test/org/openqa/selenium/remote ... (5 packages)
475:  �[32mAnalyzing:�[0m 5 targets (7 packages loaded)
476:  �[32mAnalyzing:�[0m 5 targets (7 packages loaded, 0 targets configured)
477:  �[32mAnalyzing:�[0m 5 targets (7 packages loaded, 0 targets configured)
478:  �[32mAnalyzing:�[0m 5 targets (47 packages loaded, 22 targets configured)
479:  �[32mAnalyzing:�[0m 5 targets (68 packages loaded, 22 targets configured)
480:  �[32mAnalyzing:�[0m 5 targets (116 packages loaded, 24 targets configured)
481:  �[32mAnalyzing:�[0m 5 targets (120 packages loaded, 31 targets configured)
482:  �[32mAnalyzing:�[0m 5 targets (150 packages loaded, 1979 targets configured)
483:  �[32mAnalyzing:�[0m 5 targets (151 packages loaded, 1992 targets configured)
484:  �[33mDEBUG: �[0m/Users/runner/.bazel/external/rules_jvm_external+/private/extensions/maven.bzl:295:14: WARNING: The following maven modules appear in multiple sub-modules with potentially different versions. Consider adding one of these to your root module to ensure consistent versions:
485:  com.google.code.findbugs:jsr305
486:  com.google.errorprone:error_prone_annotations
487:  com.google.guava:guava (versions: 30.1.1-jre, 31.0.1-android)
...

536:  �[32mAnalyzing:�[0m 5 targets (530 packages loaded, 17397 targets configured)
537:  �[32mAnalyzing:�[0m 5 targets (535 packages loaded, 17407 targets configured)
538:  �[32mAnalyzing:�[0m 5 targets (546 packages loaded, 17625 targets configured)
539:  �[32mAnalyzing:�[0m 5 targets (552 packages loaded, 17651 targets configured)
540:  �[32mAnalyzing:�[0m 5 targets (564 packages loaded, 17687 targets configured)
541:  �[32mAnalyzing:�[0m 5 targets (583 packages loaded, 17746 targets configured)
542:  �[32mAnalyzing:�[0m 5 targets (597 packages loaded, 17788 targets configured)
543:  �[32mAnalyzing:�[0m 5 targets (616 packages loaded, 17845 targets configured)
544:  �[32mAnalyzing:�[0m 5 targets (627 packages loaded, 17888 targets configured)
545:  �[32mAnalyzing:�[0m 5 targets (648 packages loaded, 18464 targets configured)
546:  �[32mAnalyzing:�[0m 5 targets (672 packages loaded, 19157 targets configured)
547:  �[35mWARNING: �[0m/Users/runner/.bazel/external/io_bazel_rules_closure/java/com/google/javascript/jscomp/BUILD:19:13: in java_library rule @@io_bazel_rules_closure//java/com/google/javascript/jscomp:jscomp: target '@@io_bazel_rules_closure//java/com/google/javascript/jscomp:jscomp' depends on deprecated target '@@io_bazel_rules_closure//java/io/bazel/rules/closure:build_info_java_proto': Use java_proto_library from com_google_protobuf
548:  �[33mDEBUG: �[0m/Users/runner/.bazel/external/io_bazel_rules_closure/closure/compiler/closure_js_deps.bzl:38:10: closure_js_deps() and deps.js files are deprecated. Please remove your closure_js_deps rules and, if needed, use the google-closure-deps npm module with bazelbuild/rules_nodejs to generate deps.js files.
549:  �[32mINFO: �[0mAnalyzed 5 targets (672 packages loaded, 19455 targets configured).
550:  �[32m[68 / 773]�[0m Creating source manifest for @@com_google_javascript_closure_library//:depswriter [for tool]; 0s local ... (2 actions, 1 running)
551:  �[32m[933 / 2,511]�[0m [Prepa] Extracting interface for jar external/com_google_errorprone_error_prone_annotations/error_prone_annotations-2.1.3.jar [for tool]
552:  �[32m[952 / 2,516]�[0m Compiling absl/time/internal/cctz/src/civil_time_detail.cc [for tool]; 0s darwin-sandbox, disk-cache ... (3 actions, 2 running)
...

561:  �[32m[1,060 / 2,516]�[0m JavaToolchainCompileBootClasspath external/rules_java+/toolchains/platformclasspath.jar [for tool]; 1s darwin-sandbox, disk-cache ... (2 actions running)
562:  �[32m[1,067 / 2,516]�[0m Compiling absl/time/internal/cctz/src/time_zone_libc.cc [for tool]; 0s darwin-sandbox, disk-cache ... (3 actions running)
563:  �[32m[1,074 / 2,516]�[0m Building java/src/org/openqa/selenium/support/ui/libcomponents.jar (2 source files); 1s disk-cache, multiplex-worker ... (4 actions, 3 running)
564:  �[32m[1,076 / 2,516]�[0m Building java/src/org/openqa/selenium/support/ui/libcomponents.jar (2 source files); 2s disk-cache, multiplex-worker ... (3 actions, 2 running)
565:  �[32m[1,079 / 2,516]�[0m Compiling absl/time/internal/cctz/src/zone_info_source.cc [for tool]; 1s darwin-sandbox, disk-cache ... (3 actions running)
566:  �[32m[1,098 / 2,516]�[0m Building external/bazel_tools/tools/java/runfiles/libauto_bazel_repository_processor.jar (1 source file) [for tool]; 1s disk-cache, multiplex-worker ... (3 actions running)
567:  �[32m[1,121 / 2,516]�[0m Building external/bazel_tools/tools/java/runfiles/libauto_bazel_repository_processor.jar (1 source file) [for tool]; 2s disk-cache, multiplex-worker ... (3 actions running)
568:  �[32m[1,151 / 2,516]�[0m Building external/bazel_tools/tools/java/runfiles/libauto_bazel_repository_processor.jar (1 source file) [for tool]; 3s disk-cache, multiplex-worker ... (3 actions, 2 running)
569:  �[32m[1,172 / 2,516]�[0m Extracting npm package caniuse-lite@1.0.30001737; 0s darwin-sandbox, disk-cache ... (3 actions, 1 running)
570:  �[32m[1,194 / 2,516]�[0m Building external/bazel_tools/tools/java/runfiles/librunfiles.jar (2 source files); 1s disk-cache, multiplex-worker ... (3 actions, 2 running)
571:  �[32m[1,215 / 2,516]�[0m Building external/bazel_tools/tools/java/runfiles/librunfiles.jar (2 source files); 2s disk-cache, multiplex-worker ... (3 actions, 2 running)
572:  �[32mINFO: �[0mFrom Building external/contrib_rules_jvm+/java/src/com/github/bazel_contrib/contrib_rules_jvm/junit5/liballow.jar (1 source file):
573:  warning: [options] source value 8 is obsolete and will be removed in a future release
574:  warning: [options] target value 8 is obsolete and will be removed in a future release
575:  warning: [options] To suppress warnings about obsolete options, use -Xlint:-options.
576:  �[32m[1,232 / 2,516]�[0m Compiling absl/base/internal/strerror.cc [for tool]; 1s darwin-sandbox, disk-cache ... (3 actions running)
577:  �[32m[1,244 / 2,516]�[0m Compiling absl/base/internal/strerror.cc [for tool]; 2s darwin-sandbox, disk-cache ... (3 actions running)
578:  �[32m[1,259 / 2,516]�[0m Extracting npm package @mui/material@5.18.0_536857345; 1s darwin-sandbox, disk-cache ... (3 actions, 2 running)
...

716:  �[32m[1,919 / 2,520]�[0m Compiling absl/crc/internal/crc_memcpy_fallback.cc [for tool]; 0s darwin-sandbox, disk-cache ... (3 actions running)
717:  �[32m[1,923 / 2,520]�[0m Compiling absl/crc/internal/crc_memcpy_fallback.cc [for tool]; 1s darwin-sandbox, disk-cache ... (3 actions, 2 running)
718:  �[32m[1,929 / 2,520]�[0m Compiling absl/container/internal/hashtablez_sampler.cc [for tool]; 0s darwin-sandbox, disk-cache ... (3 actions, 2 running)
719:  �[32m[1,933 / 2,520]�[0m Compiling absl/crc/internal/crc_memcpy_x86_arm_combined.cc [for tool]; 1s darwin-sandbox, disk-cache ... (3 actions running)
720:  �[32m[1,939 / 2,520]�[0m Compiling absl/crc/internal/crc_non_temporal_memcpy.cc [for tool]; 0s darwin-sandbox, disk-cache ... (3 actions running)
721:  �[32m[1,945 / 2,520]�[0m Compiling absl/status/statusor.cc [for tool]; 1s darwin-sandbox, disk-cache ... (3 actions running)
722:  �[32m[1,950 / 2,520]�[0m Compiling absl/container/internal/raw_hash_set.cc [for tool]; 1s darwin-sandbox, disk-cache ... (4 actions, 3 running)
723:  �[32m[1,955 / 2,520]�[0m Compiling absl/status/internal/status_internal.cc [for tool]; 1s darwin-sandbox, disk-cache ... (3 actions running)
724:  �[32m[1,956 / 2,520]�[0m Compiling absl/status/internal/status_internal.cc [for tool]; 2s darwin-sandbox, disk-cache ... (3 actions, 2 running)
725:  �[32m[1,962 / 2,520]�[0m Compiling absl/strings/internal/str_format/extension.cc [for tool]; 1s darwin-sandbox, disk-cache ... (3 actions running)
726:  �[32m[1,965 / 2,520]�[0m Compiling absl/status/status.cc [for tool]; 1s darwin-sandbox, disk-cache ... (3 actions running)
727:  �[32m[1,968 / 2,520]�[0m Compiling absl/strings/internal/str_format/float_conversion.cc [for tool]; 1s darwin-sandbox, disk-cache ... (3 actions, 2 running)
728:  �[32m[1,973 / 2,520]�[0m Compiling absl/status/status_payload_printer.cc [for tool]; 1s darwin-sandbox, disk-cache ... (3 actions, 2 running)
729:  �[32m[1,976 / 2,520]�[0m Compiling absl/time/time.cc [for tool]; 1s darwin-sandbox, disk-cache ... (4 actions, 3 running)
730:  �[32mINFO: �[0mFrom Building java/src/org/openqa/selenium/remote/libapi-class.jar (63 source files):
731:  java/src/org/openqa/selenium/remote/ErrorHandler.java:46: warning: [removal] ErrorCodes in org.openqa.selenium.remote has been deprecated and marked for removal
732:  private final ErrorCodes errorCodes;
733:  ^
734:  java/src/org/openqa/selenium/remote/ErrorHandler.java:60: warning: [removal] ErrorCodes in org.openqa.selenium.remote has been deprecated and marked for removal
735:  this.errorCodes = new ErrorCodes();
736:  ^
737:  java/src/org/openqa/selenium/remote/ErrorHandler.java:68: warning: [removal] ErrorCodes in org.openqa.selenium.remote has been deprecated and marked for removal
738:  public ErrorHandler(ErrorCodes codes, boolean includeServerErrors) {
739:  ^
740:  java/src/org/openqa/selenium/remote/Response.java:100: warning: [removal] ErrorCodes in org.openqa.selenium.remote has been deprecated and marked for removal
741:  ErrorCodes errorCodes = new ErrorCodes();
742:  ^
743:  java/src/org/openqa/selenium/remote/Response.java:100: warning: [removal] ErrorCodes in org.openqa.selenium.remote has been deprecated and marked for removal
744:  ErrorCodes errorCodes = new ErrorCodes();
745:  ^
746:  java/src/org/openqa/selenium/remote/ProtocolHandshake.java:181: warning: [removal] ErrorCodes in org.openqa.selenium.remote has been deprecated and marked for removal
747:  response.setStatus(ErrorCodes.SUCCESS);
748:  ^
749:  java/src/org/openqa/selenium/remote/ProtocolHandshake.java:182: warning: [removal] ErrorCodes in org.openqa.selenium.remote has been deprecated and marked for removal
750:  response.setState(ErrorCodes.SUCCESS_STRING);
751:  ^
752:  java/src/org/openqa/selenium/remote/W3CHandshakeResponse.java:53: warning: [removal] ErrorCodes in org.openqa.selenium.remote has been deprecated and marked for removal
753:  new ErrorCodes().toStatus((String) rawError, Optional.of(tuple.getStatusCode())));
754:  ^
755:  java/src/org/openqa/selenium/remote/W3CHandshakeResponse.java:56: warning: [removal] ErrorCodes in org.openqa.selenium.remote has been deprecated and marked for removal
756:  new ErrorCodes().getExceptionType((String) rawError);
757:  ^
758:  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
759:  private final ErrorCodes errorCodes = new ErrorCodes();
760:  ^
761:  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
762:  private final ErrorCodes errorCodes = new ErrorCodes();
763:  ^
764:  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
765:  int status = response.getStatus() == ErrorCodes.SUCCESS ? HTTP_OK : HTTP_INTERNAL_ERROR;
766:  ^
767:  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
768:  response.setStatus(ErrorCodes.UNKNOWN_COMMAND);
769:  ^
770:  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
771:  response.setStatus(ErrorCodes.UNHANDLED_ERROR);
772:  ^
773:  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
774:  response.setStatus(ErrorCodes.SUCCESS);
775:  ^
776:  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
777:  response.setState(errorCodes.toState(ErrorCodes.SUCCESS));
778:  ^
779:  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
780:  response.setState(errorCodes.toState(ErrorCodes.SUCCESS));
781:  ^
782:  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
783:  private final ErrorCodes errorCodes = new ErrorCodes();
784:  ^
785:  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
786:  private final ErrorCodes errorCodes = new ErrorCodes();
787:  ^
788:  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
789:  response.setStatus(ErrorCodes.UNKNOWN_COMMAND);
790:  ^
791:  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
792:  response.setStatus(ErrorCodes.UNHANDLED_ERROR);
793:  ^
794:  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
795:  response.setStatus(ErrorCodes.SUCCESS);
796:  ^
...

1032:  �[32m[2,442 / 2,520]�[0m MergeJars java/src/org/openqa/selenium/firefox/firefox-project.jar; 0s darwin-sandbox, disk-cache ... (3 actions, 2 running)
1033:  �[32m[2,444 / 2,520]�[0m MergeJars java/src/org/openqa/selenium/firefox/firefox-project.jar; 1s darwin-sandbox, disk-cache ... (3 actions running)
1034:  �[32m[2,446 / 2,520]�[0m MergeJars java/src/org/openqa/selenium/firefox/firefox-project.jar; 2s darwin-sandbox, disk-cache ... (3 actions running)
1035:  �[32m[2,451 / 2,520]�[0m Building java/src/org/openqa/selenium/grid/node/httpd/libhttpd.jar (2 source files) and running annotation processors (AutoServiceProcessor); 0s disk-cache, multiplex-worker ... (3 actions running)
1036:  �[32m[2,453 / 2,520]�[0m Action java/src/org/openqa/selenium/firefox/firefox-module-module-info.jar; 1s darwin-sandbox, disk-cache ... (3 actions running)
1037:  �[32m[2,454 / 2,520]�[0m Action java/src/org/openqa/selenium/firefox/firefox-module-module-info.jar; 3s darwin-sandbox, disk-cache ... (3 actions, 2 running)
1038:  �[32m[2,464 / 2,520]�[0m Building java/src/org/openqa/selenium/grid/graphql/libgraphql-class.jar (10 source files); 0s disk-cache, multiplex-worker ... (3 actions, 2 running)
1039:  �[32m[2,469 / 2,520]�[0m MergeJars java/src/org/openqa/selenium/support/support-project.jar; 1s darwin-sandbox, disk-cache ... (3 actions, 2 running)
1040:  �[32m[2,473 / 2,520]�[0m MergeJars java/src/org/openqa/selenium/chrome/chrome-project.jar; 1s darwin-sandbox, disk-cache ... (3 actions, 2 running)
1041:  �[32m[2,478 / 2,520]�[0m Action java/src/org/openqa/selenium/support/support-module-module-info.jar; 1s darwin-sandbox, disk-cache ... (3 actions, 2 running)
1042:  �[32m[2,480 / 2,520]�[0m Action java/src/org/openqa/selenium/support/support-module-module-info.jar; 2s darwin-sandbox, disk-cache ... (3 actions, 2 running)
1043:  �[32m[2,489 / 2,520]�[0m MergeJars java/src/org/openqa/selenium/edge/edge-project.jar; 1s darwin-sandbox, disk-cache ... (3 actions, 2 running)
1044:  �[32m[2,495 / 2,520]�[0m Action java/src/org/openqa/selenium/edge/edge-module-module-info.jar; 1s darwin-sandbox, disk-cache
1045:  �[32m[2,504 / 2,520]�[0m MergeJars java/src/org/openqa/selenium/grid/grid-project.jar; 0s darwin-sandbox, disk-cache ... (3 actions running)
1046:  �[32mINFO: �[0mFrom Building java/test/org/openqa/selenium/remote/libsmall-tests-test-lib.jar (5 source files) and running annotation processors (AutoServiceProcessor):
1047:  java/test/org/openqa/selenium/remote/WebDriverFixture.java:170: warning: [removal] ErrorCodes in org.openqa.selenium.remote has been deprecated and marked for removal
1048:  response.setStatus(new ErrorCodes().toStatus(state, Optional.of(400)));
1049:  ^
...

1079:  �[31m�[1mFAIL: �[0m//java/test/org/openqa/selenium/grid/router:RemoteWebDriverDownloadTest (see /Users/runner/.bazel/execroot/_main/bazel-out/darwin_arm64-fastbuild/testlogs/java/test/org/openqa/selenium/grid/router/RemoteWebDriverDownloadTest/test_attempts/attempt_1.log)
1080:  �[32m[2,522 / 2,525]�[0m 2 / 5 tests;�[0m Testing //java/test/org/openqa/selenium/firefox:FirefoxDriverBuilderTest; 546s local, disk-cache ... (3 actions running)
1081:  �[32m[2,522 / 2,525]�[0m 2 / 5 tests;�[0m Testing //java/test/org/openqa/selenium/firefox:FirefoxDriverBuilderTest; 548s local, disk-cache ... (3 actions running)
1082:  �[32m[2,522 / 2,525]�[0m 2 / 5 tests;�[0m Testing //java/test/org/openqa/selenium/firefox:FirefoxDriverBuilderTest; 591s local, disk-cache ... (3 actions running)
1083:  �[32m[2,522 / 2,525]�[0m 2 / 5 tests;�[0m Testing //java/test/org/openqa/selenium/firefox:FirefoxDriverBuilderTest; 657s local, disk-cache ... (3 actions running)
1084:  �[31m�[1mFAIL: �[0m//java/test/org/openqa/selenium/firefox:FirefoxDriverBuilderTest (see /Users/runner/.bazel/execroot/_main/bazel-out/darwin_arm64-fastbuild/testlogs/java/test/org/openqa/selenium/firefox/FirefoxDriverBuilderTest/test_attempts/attempt_2.log)
1085:  �[32m[2,522 / 2,525]�[0m 2 / 5 tests;�[0m Testing //java/test/org/openqa/selenium/firefox:FirefoxDriverBuilderTest; 661s local, disk-cache ... (3 actions running)
1086:  �[32m[2,522 / 2,525]�[0m 2 / 5 tests;�[0m Testing //java/test/org/openqa/selenium/firefox:FirefoxDriverBuilderTest; 662s local, disk-cache ... (3 actions running)
1087:  �[31m�[1mFAIL: �[0m//java/test/org/openqa/selenium/chrome:ChromeDriverFunctionalTest-remote (see /Users/runner/.bazel/execroot/_main/bazel-out/darwin_arm64-fastbuild/testlogs/java/test/org/openqa/selenium/chrome/ChromeDriverFunctionalTest-remote/test_attempts/attempt_2.log)
1088:  �[32m[2,522 / 2,525]�[0m 2 / 5 tests;�[0m Testing //java/test/org/openqa/selenium/firefox:FirefoxDriverBuilderTest; 673s local, disk-cache ... (3 actions running)
1089:  �[32m[2,522 / 2,525]�[0m 2 / 5 tests;�[0m Testing //java/test/org/openqa/selenium/firefox:FirefoxDriverBuilderTest; 674s local, disk-cache ... (3 actions running)
1090:  �[32m[2,522 / 2,525]�[0m 2 / 5 tests;�[0m Testing //java/test/org/openqa/selenium/firefox:FirefoxDriverBuilderTest; 724s local, disk-cache ... (3 actions running)
1091:  �[32m[2,522 / 2,525]�[0m 2 / 5 tests;�[0m Testing //java/test/org/openqa/selenium/firefox:FirefoxDriverBuilderTest; 790s local, disk-cache ... (3 actions running)
1092:  �[32m[2,522 / 2,525]�[0m 2 / 5 tests;�[0m Testing //java/test/org/openqa/selenium/firefox:FirefoxDriverBuilderTest; 856s local, disk-cache ... (3 actions running)
1093:  �[31m�[1mFAIL: �[0m//java/test/org/openqa/selenium/chrome:ChromeDriverFunctionalTest-remote (see /Users/runner/.bazel/execroot/_main/bazel-out/darwin_arm64-fastbuild/testlogs/java/test/org/openqa/selenium/chrome/ChromeDriverFunctionalTest-remote/test.log)
1094:  �[31m�[1mFAILED: �[0m//java/test/org/openqa/selenium/chrome:ChromeDriverFunctionalTest-remote (Summary)
1095:  ==================== Test output for //java/test/org/openqa/selenium/chrome:ChromeDriverFunctionalTest-remote:
...

1103:  01:03:18.584 INFO [NodeOptions.getSessionFactories] - Detected 3 available processors
1104:  01:03:18.592 INFO [NodeOptions.discoverDrivers] - Looking for existing drivers on the PATH.
1105:  01:03:18.592 INFO [NodeOptions.discoverDrivers] - Add '--selenium-manager true' to the startup command to setup drivers automatically.
1106:  01:03:19.746 WARN [SeleniumManager.lambda$runCommand$1] - Unable to discover proper msedgedriver version in offline mode
1107:  01:03:22.868 WARN [SeleniumManager.lambda$runCommand$1] - Unable to discover proper geckodriver version in offline mode
1108:  01:03:22.959 INFO [NodeOptions.report] - Adding Edge for {"browserName": "MicrosoftEdge","platformName": "mac"} 3 times
1109:  01:03:22.965 INFO [NodeOptions.report] - Adding Chrome for {"browserName": "chrome","platformName": "mac"} 3 times
1110:  01:03:22.968 INFO [NodeOptions.report] - Adding Safari for {"browserName": "safari","platformName": "mac"} 1 times
1111:  01:03:22.971 INFO [NodeOptions.report] - Adding Firefox for {"browserName": "firefox","platformName": "mac"} 3 times
1112:  01:03:22.988 INFO [Node.<init>] - Binding additional locator mechanisms: relative
1113:  01:03:23.064 INFO [LocalGridModel.setAvailability] - Switching Node 6b20e86f-2393-40a5-945a-3e655c6c5550 (uri: http://127.0.0.1:19877) from DOWN to UP
1114:  01:03:23.065 INFO [LocalNodeRegistry.add] - Added node 6b20e86f-2393-40a5-945a-3e655c6c5550 at http://127.0.0.1:19877. Health check every 120s
1115:  01:03:23.696 INFO [Standalone.execute] - Started Selenium Standalone 4.39.0-SNAPSHOT (revision Unknown): http://127.0.0.1:19877
1116:  01:03:29.221 INFO [LocalDistributor.newSession] - Session request received by the Distributor: 
1117:  [Capabilities {acceptInsecureCerts: true, browserName: chrome, goog:chromeOptions: {args: [disable-infobars, disable-breakpad, disable-dev-shm-usage, no-sandbox, disable-search-engine-choic...], binary: external/+pin_browsers_exte..., extensions: [], prefs: {exit_type: None, exited_cleanly: true}}, unhandledPromptBehavior: ignore, webSocketUrl: true}]
1118:  01:05:07.140 WARN [DriverServiceSessionFactory.apply] - Error while creating session with the driver service. Stopping driver service: Could not start a new session. Response code 500. Message: session not created: DevToolsActivePort file doesn't exist 
1119:  Host info: host: 'sat12-bq165-08ffa4c6-aa00-4a6c-b6bd-66dca9d3b0d6-D622F1459032.local', ip: 'fe80:0:0:0:148f:e9c4:6191:f0c8%en0'
...

1146:  Driver info: driver.version: unknown
1147:  at org.openqa.selenium.remote.ProtocolHandshake.createSession(ProtocolHandshake.java:114)
1148:  at org.openqa.selenium.remote.ProtocolHandshake.createSession(ProtocolHandshake.java:75)
1149:  at org.openqa.selenium.remote.ProtocolHandshake.createSession(ProtocolHandshake.java:61)
1150:  at org.openqa.selenium.grid.node.config.DriverServiceSessionFactory.apply(DriverServiceSessionFactory.java:162)
1151:  at org.openqa.selenium.grid.node.config.DriverServiceSessionFactory.apply(DriverServiceSessionFactory.java:71)
1152:  at org.openqa.selenium.grid.node.local.SessionSlot.apply(SessionSlot.java:151)
1153:  at org.openqa.selenium.grid.node.local.LocalNode.newSession(LocalNode.java:518)
1154:  at org.openqa.selenium.grid.distributor.local.LocalDistributor.startSession(LocalDistributor.java:427)
1155:  at org.openqa.selenium.grid.distributor.local.LocalDistributor.newSession(LocalDistributor.java:346)
1156:  at org.openqa.selenium.grid.distributor.local.LocalDistributor$NewSessionRunnable.handleNewSessionRequest(LocalDistributor.java:601)
1157:  at org.openqa.selenium.grid.distributor.local.LocalDistributor$NewSessionRunnable.lambda$run$1(LocalDistributor.java:551)
1158:  at java.base/java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1144)
1159:  at java.base/java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:642)
1160:  at java.base/java.lang.Thread.run(Thread.java:1583)
1161:  01:05:08.401 WARN [SeleniumSpanExporter$1.lambda$export$1] - Error while creating session with the driver service. Stopping driver service: Could not start a new session. Response code 500. Message: session not created: DevToolsActivePort file doesn't exist 
1162:  Host info: host: 'sat12-bq165-08ffa4c6-aa00-4a6c-b6bd-66dca9d3b0d6-D622F1459032.local', ip: 'fe80:0:0:0:148f:e9c4:6191:f0c8%en0'
1163:  Build info: version: '4.39.0-SNAPSHOT', revision: 'Unknown'
1164:  System info: os.name: 'Mac OS X', os.arch: 'aarch64', os.version: '15.7.1', java.version: '21.0.4'
1165:  Driver info: driver.version: unknown
1166:  01:05:08.409 WARN [SeleniumSpanExporter$1.lambda$export$3] - {"traceId": "d01748d37964a6e449c39ae1674f084c","eventTime": 1763255107145253417,"eventName": "exception","attributes": {"driver.url": "http:\u002f\u002flocalhost:24125","exception.message": "Error while creating session with the driver service. Stopping driver service: Could not start a new session. Response code 500. Message: session not created: DevToolsActivePort file doesn't exist \nHost info: host: 'sat12-bq165-08ffa4c6-aa00-4a6c-b6bd-66dca9d3b0d6-D622F1459032.local', ip: 'fe80:0:0:0:148f:e9c4:6191:f0c8%en0'\nBuild info: version: '4.39.0-SNAPSHOT', revision: 'Unknown'\nSystem info: os.name: 'Mac OS X', os.arch: 'aarch64', os.version: '15.7.1', java.version: '21.0.4'\nDriver info: driver.version: unknown","exception.stacktrace": "org.openqa.selenium.SessionNotCreatedException: Could not start a new session. Response code 500. Message: session not created: DevToolsActivePort file doesn't exist \nHost info: host: 'sat12-bq165-08ffa4c6-aa00-4a6c-b6bd-66dca9d3b0d6-D622F1459032.local', ip: 'fe80:0:0:0:148f:e9c4:6191:f0c8%en0'\nBuild info: version: '4.39.0-SNAPSHOT', revision: 'Unknown'\nSystem info: os.name: 'Mac OS X', os.arch: 'aarch64', os.version: '15.7.1', java.version: '21.0.4'\nDriver info: driver.version: unknown\n\tat org.openqa.selenium.remote.ProtocolHandshake.createSession(ProtocolHandshake.java:114)\n\tat org.openqa.selenium.remote.ProtocolHandshake.createSession(ProtocolHandshake.java:75)\n\tat org.openqa.selenium.remote.ProtocolHandshake.createSession(ProtocolHandshake.java:61)\n\tat org.openqa.selenium.grid.node.config.DriverServiceSessionFactory.apply(DriverServiceSessionFactory.java:162)\n\tat org.openqa.selenium.grid.node.config.DriverServiceSessionFactory.apply(DriverServiceSessionFactory.java:71)\n\tat org.openqa.selenium.grid.node.local.SessionSlot.apply(SessionSlot.java:151)\n\tat org.openqa.selenium.grid.node.local.LocalNode.newSession(LocalNode.java:518)\n\tat org.openqa.selenium.grid.distributor.local.LocalDistributor.startSession(LocalDistributor.java:427)\n\tat org.openqa.selenium.grid.distributor.local.LocalDistributor.newSession(LocalDistributor.java:346)\n\tat org.openqa.selenium.grid.distributor.local.LocalDistributor$NewSessionRunnable.handleNewSessionRequest(LocalDistributor.java:601)\n\tat org.openqa.selenium.grid.distributor.local.LocalDistributor$NewSessionRunnable.lambda$run$1(LocalDistributor.java:551)\n\tat java.base\u002fjava.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1144)\n\tat java.base\u002fjava.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:642)\n\tat java.base\u002fjava.lang.Thread.run(Thread.java:1583)\n","exception.type": "org.openqa.selenium.SessionNotCreatedException","logger": "org.openqa.selenium.grid.node.config.DriverServiceSessionFactory","session.capabilities": "{\"acceptInsecureCerts\": true,\"browserName\": \"chrome\",\"goog:chromeOptions\": {\"args\": [\"disable-infobars\",\"disable-breakpad\",\"disable-dev-shm-usage\",\"no-sandbox\",\"disable-search-engine-choice-screen\"],\"binary\": \"external\\u002f+pin_browsers_extension+mac_chrome\\u002fChrome.app\\u002fContents\\u002fMacOS\\u002fChrome\",\"extensions\": [],\"prefs\": {\"exit_type\": \"None\",\"exited_cleanly\": true}},\"platformName\": \"mac\",\"unhandledPromptBehavior\": \"ignore\",\"webSocketUrl\": true}\n"}}
1167:  01:05:08.411 WARN [SeleniumSpanExporter$1.lambda$export$3] - {"traceId": "d01748d37964a6e449c39ae1674f084c","eventTime": 1763255108411448959,"eventName": "Unable to create session with the driver","attributes": {"current.session.count": 0,"logger": "org.openqa.selenium.grid.node.local.LocalNode","session.request.capabilities": "Capabilities {acceptInsecureCerts: true, browserName: chrome, goog:chromeOptions: {args: [disable-infobars, disable-breakpad, disable-dev-shm-usage, no-sandbox, disable-search-engine-choic...], binary: external\u002f+pin_browsers_exte..., extensions: [], prefs: {exit_type: None, exited_cleanly: true}}, unhandledPromptBehavior: ignore, webSocketUrl: true}","session.request.downstreamdialect": "[W3C]"}}
1168:  01:05:08.416 WARN [SeleniumSpanExporter$1.lambda$export$3] - {"traceId": "d01748d37964a6e449c39ae1674f084c","eventTime": 1763255009221441209,"eventName": "Session request received by the Distributor","attributes": {"logger": "org.openqa.selenium.grid.distributor.local.LocalDistributor","request.payload": "[Capabilities {acceptInsecureCerts: true, browserName: chrome, goog:chromeOptions: {args: [disable-infobars, disable-breakpad, disable-dev-shm-usage, no-sandbox, disable-search-engine-choic...], binary: external\u002f+pin_browsers_exte..., extensions: [], prefs: {exit_type: None, exited_cleanly: true}}, unhandledPromptBehavior: ignore, webSocketUrl: true}]"}}
1169:  01:05:08.417 WARN [SeleniumSpanExporter$1.lambda$export$1] - org.openqa.selenium.SessionNotCreatedException: Could not start a new session. Error while creating session with the driver service. Stopping driver service: Could not start a new session. Response code 500. Message: session not created: DevToolsActivePort file doesn't exist 
1170:  Host info: host: 'sat12-bq165-08ffa4c6-aa00-4a6c-b6bd-66dca9d3b0d6-D622F1459032.local', ip: 'fe80:0:0:0:148f:e9c4:6191:f0c8%en0'
...

1173:  Driver info: driver.version: unknown
1174:  Build info: version: '4.39.0-SNAPSHOT', revision: 'Unknown'
1175:  System info: os.name: 'Mac OS X', os.arch: 'aarch64', os.version: '15.7.1', java.version: '21.0.4'
1176:  Driver info: driver.version: unknown
1177:  at org.openqa.selenium.grid.node.config.DriverServiceSessionFactory.apply(DriverServiceSessionFactory.java:225)
1178:  at org.openqa.selenium.grid.node.config.DriverServiceSessionFactory.apply(DriverServiceSessionFactory.java:71)
1179:  at org.openqa.selenium.grid.node.local.SessionSlot.apply(SessionSlot.java:151)
1180:  at org.openqa.selenium.grid.node.local.LocalNode.newSession(LocalNode.java:518)
1181:  at org.openqa.selenium.grid.distributor.local.LocalDistributor.startSession(LocalDistributor.java:427)
1182:  at org.openqa.selenium.grid.distributor.local.LocalDistributor.newSession(LocalDistributor.java:346)
1183:  at org.openqa.selenium.grid.distributor.local.LocalDistributor$NewSessionRunnable.handleNewSessionRequest(LocalDistributor.java:601)
1184:  at org.openqa.selenium.grid.distributor.local.LocalDistributor$NewSessionRunnable.lambda$run$1(LocalDistributor.java:551)
1185:  at java.base/java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1144)
1186:  at java.base/java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:642)
1187:  at java.base/java.lang.Thread.run(Thread.java:1583)
1188:  01:05:08.417 WARN [SeleniumSpanExporter$1.lambda$export$1] - Unable to create session: Could not start a new session. Error while creating session with the driver service. Stopping driver service: Could not start a new session. Response code 500. Message: session not created: DevToolsActivePort file doesn't exist 
1189:  Host info: host: 'sat12-bq165-08ffa4c6-aa00-4a6c-b6bd-66dca9d3b0d6-D622F1459032.local', ip: 'fe80:0:0:0:148f:e9c4:6191:f0c8%en0'
1190:  Build info: version: '4.39.0-SNAPSHOT', revision: 'Unknown'
1191:  System info: os.name: 'Mac OS X', os.arch: 'aarch64', os.version: '15.7.1', java.version: '21.0.4'
1192:  Driver info: driver.version: unknown
1193:  Build info: version: '4.39.0-SNAPSHOT', revision: 'Unknown'
1194:  System info: os.name: 'Mac OS X', os.arch: 'aarch64', os.version: '15.7.1', java.version: '21.0.4'
1195:  Driver info: driver.version: unknown
1196:  01:05:08.421 WARN [SeleniumSpanExporter$1.lambda$export$3] - {"traceId": "d01748d37964a6e449c39ae1674f084c","eventTime": 1763255108416383875,"eventName": "exception","attributes": {"exception.message": "Unable to create session: Could not start a new session. Error while creating session with the driver service. Stopping driver service: Could not start a new session. Response code 500. Message: session not created: DevToolsActivePort file doesn't exist \nHost info: host: 'sat12-bq165-08ffa4c6-aa00-4a6c-b6bd-66dca9d3b0d6-D622F1459032.local', ip: 'fe80:0:0:0:148f:e9c4:6191:f0c8%en0'\nBuild info: version: '4.39.0-SNAPSHOT', revision: 'Unknown'\nSystem info: os.name: 'Mac OS X', os.arch: 'aarch64', os.version: '15.7.1', java.version: '21.0.4'\nDriver info: driver.version: unknown\nBuild info: version: '4.39.0-SNAPSHOT', revision: 'Unknown'\nSystem info: os.name: 'Mac OS X', os.arch: 'aarch64', os.version: '15.7.1', java.version: '21.0.4'\nDriver info: driver.version: unknown","exception.stacktrace": "org.openqa.selenium.SessionNotCreatedException: Could not start a new session. Error while creating session with the driver service. Stopping driver service: Could not start a new session. Response code 500. Message: session not created: DevToolsActivePort file doesn't exist \nHost info: host: 'sat12-bq165-08ffa4c6-aa00-4a6c-b6bd-66dca9d3b0d6-D622F1459032.local', ip: 'fe80:0:0:0:148f:e9c4:6191:f0c8%en0'\nBuild info: version: '4.39.0-SNAPSHOT', revision: 'Unknown'\nSystem info: os.name: 'Mac OS X', os.arch: 'aarch64', os.version: '15.7.1', java.version: '21.0.4'\nDriver info: driver.version: unknown\nBuild info: version: '4.39.0-SNAPSHOT', revision: 'Unknown'\nSystem info: os.name: 'Mac OS X', os.arch: 'aarch64', os.version: '15.7.1', java.version: '21.0.4'\nDriver info: driver.version: unknown\n\tat org.openqa.selenium.grid.node.config.DriverServiceSessionFactory.apply(DriverServiceSessionFactory.java:225)\n\tat org.openqa.selenium.grid.node.config.DriverServiceSessionFactory.apply(DriverServiceSessionFactory.java:71)\n\tat org.openqa.selenium.grid.node.local.SessionSlot.apply(SessionSlot.java:151)\n\tat org.openqa.selenium.grid.node.local.LocalNode.newSession(LocalNode.java:518)\n\tat org.openqa.selenium.grid.distributor.local.LocalDistributor.startSession(LocalDistributor.java:427)\n\tat org.openqa.selenium.grid.distributor.local.LocalDistributor.newSession(LocalDistributor.java:346)\n\tat org.openqa.selenium.grid.distributor.local.LocalDistributor$NewSessionRunnable.handleNewSessionRequest(LocalDistributor.java:601)\n\tat org.openqa.selenium.grid.distributor.local.LocalDistributor$NewSessionRunnable.lambda$run$1(LocalDistributor.java:551)\n\tat java.base\u002fjava.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1144)\n\tat java.base\u002fjava.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:642)\n\tat java.base\u002fjava.lang.Thread.run(Thread.java:1583)\n","exception.type": "org.openqa.selenium.SessionNotCreatedException","logger": "org.openqa.selenium.grid.distributor.local.LocalDistributor","request.payload": "[Capabilities {acceptInsecureCerts: true, browserName: chrome, goog:chromeOptions: {args: [disable-infobars, disable-breakpad, disable-dev-shm-usage, no-sandbox, disable-search-engine-choic...], binary: external\u002f+pin_browsers_exte..., extensions: [], prefs: {exit_type: None, exited_cleanly: true}}, unhandledPromptBehavior: ignore, webSocketUrl: true}]"}}
1197:  01:05:08.448 WARN [SeleniumSpanExporter$1.lambda$export$3] - {"traceId": "d01748d37964a6e449c39ae1674f084c","eventTime": 1763255108447758375,"eventName": "HTTP request execution complete","attributes": {"http.flavor": 1,"http.handler_class": "org.openqa.selenium.grid.sessionqueue.local.LocalNewSessionQueue","http.host": "127.0.0.1:19877","http.method": "POST","http.request_content_length": "731","http.scheme": "HTTP","http.status_code": 500,"http.target": "\u002fsession","http.user_agent": "selenium\u002f4.39.0-SNAPSHOT (java mac)"}}
...

1207:  01:06:22.620 INFO [NodeOptions.discoverDrivers] - Add '--selenium-manager true' to the startup command to setup drivers automatically.
1208:  Location found is: /Users/runner/.bazel/execroot/_main/bazel-out/darwin_arm64-fastbuild/bin/java/test/org/openqa/selenium/chrome/ChromeDriverFunctionalTest-remote.runfiles/_main/java/src/org/openqa/selenium/grid/selenium_server
1209:  01:06:27.486 INFO [LoggingOptions.configureLogEncoding] - Using the system default encoding
1210:  01:06:27.501 INFO [OpenTelemetryTracer.createTracer] - Using OpenTelemetry for tracing
1211:  01:06:30.748 INFO [NodeOptions.getSessionFactories] - Detected 3 available processors
1212:  01:06:30.749 INFO [NodeOptions.discoverDrivers] - Looking for existing drivers on the PATH.
1213:  01:06:30.750 INFO [NodeOptions.discoverDrivers] - Add '--selenium-manager true' to the startup command to setup drivers automatically.
1214:  01:06:35.042 WARN [SeleniumManager.lambda$runCommand$1] - Unable to discover proper geckodriver version in offline mode
1215:  01:06:35.215 INFO [NodeOptions.report] - Adding Edge for {"browserName": "MicrosoftEdge","platformName": "mac"} 3 times
1216:  01:06:35.216 INFO [NodeOptions.report] - Adding Firefox for {"browserName": "firefox","platformName": "mac"} 3 times
1217:  01:06:35.218 INFO [NodeOptions.report] - Adding Safari for {"browserName": "safari","platformName": "mac"} 1 times
1218:  01:06:35.225 INFO [NodeOptions.report] - Adding Chrome for {"browserName": "chrome","platformName": "mac"} 3 times
1219:  01:06:35.562 INFO [Node.<init>] - Binding additional locator mechanisms: relative
1220:  01:06:35.611 INFO [LocalGridModel.setAvailability] - Switching Node 40237eb1-effb-472c-9494-9c459c442138 (uri: http://127.0.0.1:39913) from DOWN to UP
1221:  01:06:35.613 INFO [LocalNodeRegistry.add] - Added node 40237eb1-effb-472c-9494-9c459c442138 at http://127.0.0.1:39913. Health check every 120s
1222:  �[32m[2,523 / 2,525]�[0m 3 / 5 tests, �[31m�[1m1 failed�[0m;�[0m Testing //java/test/org/openqa/selenium/firefox:FirefoxDriverBuilderTest; 892s local, disk-cache ... (2 actions running)
1223:  01:06:35.809 INFO [LocalNode.stopAllSessions] - Trying to stop all running sessions before shutting down...
1224:  Failures: 4
1225:  1) canExecuteCdpCommands() (org.openqa.selenium.chrome.ChromeDriverFunctionalTest)
1226:  org.openqa.selenium.SessionNotCreatedException: Could not start a new session. Response code 500. Message: Could not start a new session. Error while creating session with the driver service. Stopping driver service: Could not start a new session. Response code 500. Message: session not created: DevToolsActivePort file doesn't exist 
1227:  Host info: host: 'sat12-bq165-08ffa4c6-aa00-4a6c-b6bd-66dca9d3b0d6-D622F1459032.local', ip: 'fe80:0:0:0:148f:e9c4:6191:f0c8%en0'
...

1439:  01:09:16.060 INFO [OpenTelemetryTracer.createTracer] - Using OpenTelemetry for tracing
1440:  01:09:19.309 INFO [NodeOptions.getSessionFactories] - Detected 3 available processors
1441:  01:09:19.318 INFO [NodeOptions.discoverDrivers] - Looking for existing drivers on the PATH.
1442:  01:09:19.319 INFO [NodeOptions.discoverDrivers] - Add '--selenium-manager true' to the startup command to setup drivers automatically.
1443:  01:09:20.623 WARN [SeleniumManager.lambda$runCommand$1] - Unable to discover proper geckodriver version in offline mode
1444:  01:09:20.769 INFO [NodeOptions.report] - Adding Chrome for {"browserName": "chrome","platformName": "mac"} 3 times
1445:  01:09:20.770 INFO [NodeOptions.report] - Adding Safari for {"browserName": "safari","platformName": "mac"} 1 times
1446:  01:09:20.771 INFO [NodeOptions.report] - Adding Edge for {"browserName": "MicrosoftEdge","platformName": "mac"} 3 times
1447:  01:09:20.772 INFO [NodeOptions.report] - Adding Firefox for {"browserName": "firefox","platformName": "mac"} 3 times
1448:  01:09:20.872 INFO [Node.<init>] - Binding additional locator mechanisms: relative
1449:  01:09:20.948 INFO [LocalGridModel.setAvailability] - Switching Node 054fc535-7238-490d-a82c-e87dfd0e0fd5 (uri: http://127.0.0.1:34958) from DOWN to UP
1450:  01:09:20.962 INFO [LocalNodeRegistry.add] - Added node 054fc535-7238-490d-a82c-e87dfd0e0fd5 at http://127.0.0.1:34958. Health check every 120s
1451:  01:09:21.746 INFO [Standalone.execute] - Started Selenium Standalone 4.39.0-SNAPSHOT (revision Unknown): http://127.0.0.1:34958
1452:  01:09:23.386 INFO [LocalDistributor.newSession] - Session request received by the Distributor: 
1453:  [Capabilities {acceptInsecureCerts: true, browserName: chrome, goog:chromeOptions: {args: [disable-infobars, disable-breakpad, disable-dev-shm-usage, no-sandbox, disable-search-engine-choic...], binary: external/+pin_browsers_exte..., extensions: [], prefs: {exit_type: None, exited_cleanly: true}}, unhandledPromptBehavior: ignore, webSocketUrl: true}]
1454:  01:10:46.885 WARN [DriverServiceSessionFactory.apply] - Error while creating session with the driver service. Stopping driver service: Could not start a new session. Response code 500. Message: session not created
1455:  from chrome not reachable 
...

1465:  Driver info: driver.version: unknown
1466:  at org.openqa.selenium.remote.ProtocolHandshake.createSession(ProtocolHandshake.java:114)
1467:  at org.openqa.selenium.remote.ProtocolHandshake.createSession(ProtocolHandshake.java:75)
1468:  at org.openqa.selenium.remote.ProtocolHandshake.createSession(ProtocolHandshake.java:61)
1469:  at org.openqa.selenium.grid.node.config.DriverServiceSessionFactory.apply(DriverServiceSessionFactory.java:162)
1470:  at org.openqa.selenium.grid.node.config.DriverServiceSessionFactory.apply(DriverServiceSessionFactory.java:71)
1471:  at org.openqa.selenium.grid.node.local.SessionSlot.apply(SessionSlot.java:151)
1472:  at org.openqa.selenium.grid.node.local.LocalNode.newSession(LocalNode.java:518)
1473:  at org.openqa.selenium.grid.distributor.local.LocalDistributor.startSession(LocalDistributor.java:427)
1474:  at org.openqa.selenium.grid.distributor.local.LocalDistributor.newSession(LocalDistributor.java:346)
1475:  at org.openqa.selenium.grid.distributor.local.LocalDistributor$NewSessionRunnable.handleNewSessionRequest(LocalDistributor.java:601)
1476:  at org.openqa.selenium.grid.distributor.local.LocalDistributor$NewSessionRunnable.lambda$run$1(LocalDistributor.java:551)
1477:  at java.base/java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1144)
1478:  at java.base/java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:642)
1479:  at java.base/java.lang.Thread.run(Thread.java:1583)
1480:  01:10:46.926 WARN [SeleniumSpanExporter$1.lambda$export$1] - Error while creating session with the driver service. Stopping driver service: Could not start a new session. Response code 500. Message: session not created
1481:  from chrome not reachable 
...

1491:  Driver info: driver.version: unknown
1492:  at org.openqa.selenium.remote.ProtocolHandshake.createSession(ProtocolHandshake.java:114)
1493:  at org.openqa.selenium.remote.ProtocolHandshake.createSession(ProtocolHandshake.java:75)
1494:  at org.openqa.selenium.remote.ProtocolHandshake.createSession(ProtocolHandshake.java:61)
1495:  at org.openqa.selenium.grid.node.config.DriverServiceSessionFactory.apply(DriverServiceSessionFactory.java:162)
1496:  at org.openqa.selenium.grid.node.config.DriverServiceSessionFactory.apply(DriverServiceSessionFactory.java:71)
1497:  at org.openqa.selenium.grid.node.local.SessionSlot.apply(SessionSlot.java:151)
1498:  at org.openqa.selenium.grid.node.local.LocalNode.newSession(LocalNode.java:518)
1499:  at org.openqa.selenium.grid.distributor.local.LocalDistributor.startSession(LocalDistributor.java:427)
1500:  at org.openqa.selenium.grid.distributor.local.LocalDistributor.newSession(LocalDistributor.java:346)
1501:  at org.openqa.selenium.grid.distributor.local.LocalDistributor$NewSessionRunnable.handleNewSessionRequest(LocalDistributor.java:601)
1502:  at org.openqa.selenium.grid.distributor.local.LocalDistributor$NewSessionRunnable.lambda$run$1(LocalDistributor.java:551)
1503:  at java.base/java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1144)
1504:  at java.base/java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:642)
1505:  at java.base/java.lang.Thread.run(Thread.java:1583)
1506:  01:10:46.927 WARN [SeleniumSpanExporter$1.lambda$export$3] - {"traceId": "deb8c2af4c0d9bfae345a41b13ef13be","eventTime": 1763255446891654375,"eventName": "exception","attributes": {"driver.url": "http:\u002f\u002flocalhost:45419","exception.message": "Error while creating session with the driver service. Stopping driver service: Could not start a new session. Response code 500. Message: session not created\nfrom chrome not reachable \nHost info: host: 'sat12-bq165-08ffa4c6-aa00-4a6c-b6bd-66dca9d3b0d6-D622F1459032.local', ip: 'fe80:0:0:0:148f:e9c4:6191:f0c8%en0'\nBuild info: version: '4.39.0-SNAPSHOT', revision: 'Unknown'\nSystem info: os.name: 'Mac OS X', os.arch: 'aarch64', os.version: '15.7.1', java.version: '21.0.4'\nDriver info: driver.version: unknown","exception.stacktrace": "org.openqa.selenium.SessionNotCreatedException: Could not start a new session. Response code 500. Message: session not created\nfrom chrome not reachable \nHost info: host: 'sat12-bq165-08ffa4c6-aa00-4a6c-b6bd-66dca9d3b0d6-D622F1459032.local', ip: 'fe80:0:0:0:148f:e9c4:6191:f0c8%en0'\nBuild info: version: '4.39.0-SNAPSHOT', revision: 'Unknown'\nSystem info: os.name: 'Mac OS X', os.arch: 'aarch64', os.version: '15.7.1', java.version: '21.0.4'\nDriver info: driver.version: unknown\n\tat org.openqa.selenium.remote.ProtocolHandshake.createSession(ProtocolHandshake.java:114)\n\tat org.openqa.selenium.remote.ProtocolHandshake.createSession(ProtocolHandshake.java:75)\n\tat org.openqa.selenium.remote.ProtocolHandshake.createSession(ProtocolHandshake.java:61)\n\tat org.openqa.selenium.grid.node.config.DriverServiceSessionFactory.apply(DriverServiceSessionFactory.java:162)\n\tat org.openqa.selenium.grid.node.config.DriverServiceSessionFactory.apply(DriverServiceSessionFactory.java:71)\n\tat org.openqa.selenium.grid.node.local.SessionSlot.apply(SessionSlot.java:151)\n\tat org.openqa.selenium.grid.node.local.LocalNode.newSession(LocalNode.java:518)\n\tat org.openqa.selenium.grid.distributor.local.LocalDistributor.startSession(LocalDistributor.java:427)\n\tat org.openqa.selenium.grid.distributor.local.LocalDistributor.newSession(LocalDistributor.java:346)\n\tat org.openqa.selenium.grid.distributor.local.LocalDistributor$NewSessionRunnable.handleNewSessionRequest(LocalDistributor.java:601)\n\tat org.openqa.selenium.grid.distributor.local.LocalDistributor$NewSessionRunnable.lambda$run$1(LocalDistributor.java:551)\n\tat java.base\u002fjava.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1144)\n\tat java.base\u002fjava.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:642)\n\tat java.base\u002fjava.lang.Thread.run(Thread.java:1583)\n","exception.type": "org.openqa.selenium.SessionNotCreatedException","logger": "org.openqa.selenium.grid.node.config.DriverServiceSessionFactory","session.capabilities": "{\"acceptInsecureCerts\": true,\"browserName\": \"chrome\",\"goog:chromeOptions\": {\"args\": [\"disable-infobars\",\"disable-breakpad\",\"disable-dev-shm-usage\",\"no-sandbox\",\"disable-search-engine-choice-screen\"],\"binary\": \"external\\u002f+pin_browsers_extension+mac_chrome\\u002fChrome.app\\u002fContents\\u002fMacOS\\u002fChrome\",\"extensions\": [],\"prefs\": {\"exit_type\": \"None\",\"exited_cleanly\": true}},\"platformName\": \"mac\",\"unhandledPromptBehavior\": \"ignore\",\"webSocketUrl\": true}\n"}}
1507:  01:10:46.928 WARN [SeleniumSpanExporter$1.lambda$export$3] - {"traceId": "deb8c2af4c0d9bfae345a41b13ef13be","eventTime": 1763255446927987791,"eventName": "Unable to create session with the driver","attributes": {"current.session.count": 0,"logger": "org.openqa.selenium.grid.node.local.LocalNode","session.request.capabilities": "Capabilities {acceptInsecureCerts: true, browserName: chrome, goog:chromeOptions: {args: [disable-infobars, disable-breakpad, disable-dev-shm-usage, no-sandbox, disable-search-engine-choic...], binary: external\u002f+pin_browsers_exte..., extensions: [], prefs: {exit_type: None, exited_cleanly: true}}, unhandledPromptBehavior: ignore, webSocketUrl: true}","session.request.downstreamdialect": "[W3C]"}}
1508:  01:10:46.929 WARN [SeleniumSpanExporter$1.lambda$export$3] - {"traceId": "deb8c2af4c0d9bfae345a41b13ef13be","eventTime": 1763255363385995500,"eventName": "Session request received by the Distributor","attributes": {"logger": "org.openqa.selenium.grid.distributor.local.LocalDistributor","request.payload": "[Capabilities {acceptInsecureCerts: true, browserName: chrome, goog:chromeOptions: {args: [disable-infobars, disable-breakpad, disable-dev-shm-usage, no-sandbox, disable-search-engine-choic...], binary: external\u002f+pin_browsers_exte..., extensions: [], prefs: {exit_type: None, exited_cleanly: true}}, unhandledPromptBehavior: ignore, webSocketUrl: true}]"}}
1509:  01:10:46.929 WARN [SeleniumSpanExporter$1.lambda$export$1] - Unable to create session: Could not start a new session. Error while creating session with the driver service. Stopping driver service: Could not start a new session. Response code 500. Message: session not created
1510:  from chrome not reachable 
1511:  Host info: host: 'sat12-bq165-08ffa4c6-aa00-4a6c-b6bd-66dca9d3b0d6-D622F1459032.local', ip: 'fe80:0:0:0:148f:e9c4:6191:f0c8%en0'
1512:  Build info: version: '4.39.0-SNAPSHOT', revision: 'Unknown'
1513:  System info: os.name: 'Mac OS X', os.arch: 'aarch64', os.version: '15.7.1', java.version: '21.0.4'
1514:  Driver info: driver.version: unknown
1515:  Build info: version: '4.39.0-SNAPSHOT', revision: 'Unknown'
1516:  System info: os.name: 'Mac OS X', os.arch: 'aarch64', os.version: '15.7.1', java.version: '21.0.4'
1517:  Driver info: driver.version: unknown
1518:  01:10:46.929 WARN [SeleniumSpanExporter$1.lambda$export$1] - org.openqa.selenium.SessionNotCreatedException: Could not start a new session. Error while creating session with the driver service. Stopping driver service: Could not start a new session. Response code 500. Message: session not created
1519:  from chrome not reachable 
...

1523:  Driver info: driver.version: unknown
1524:  Build info: version: '4.39.0-SNAPSHOT', revision: 'Unknown'
1525:  System info: os.name: 'Mac OS X', os.arch: 'aarch64', os.version: '15.7.1', java.version: '21.0.4'
1526:  Driver info: driver.version: unknown
1527:  at org.openqa.selenium.grid.node.config.DriverServiceSessionFactory.apply(DriverServiceSessionFactory.java:225)
1528:  at org.openqa.selenium.grid.node.config.DriverServiceSessionFactory.apply(DriverServiceSessionFactory.java:71)
1529:  at org.openqa.selenium.grid.node.local.SessionSlot.apply(SessionSlot.java:151)
1530:  at org.openqa.selenium.grid.node.local.LocalNode.newSession(LocalNode.java:518)
1531:  at org.openqa.selenium.grid.distributor.local.LocalDistributor.startSession(LocalDistributor.java:427)
1532:  at org.openqa.selenium.grid.distributor.local.LocalDistributor.newSession(LocalDistributor.java:346)
1533:  at org.openqa.selenium.grid.distributor.local.LocalDistributor$NewSessionRunnable.handleNewSessionRequest(LocalDistributor.java:601)
1534:  at org.openqa.selenium.grid.distributor.local.LocalDistributor$NewSessionRunnable.lambda$run$1(LocalDistributor.java:551)
1535:  at java.base/java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1144)
1536:  at java.base/java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:642)
1537:  at java.base/java.lang.Thread.run(Thread.java:1583)
1538:  01:10:46.931 WARN [SeleniumSpanExporter$1.lambda$export$3] - {"traceId": "deb8c2af4c0d9bfae345a41b13ef13be","eventTime": 1763255446929014625,"eventName": "exception","attributes": {"exception.message": "Unable to create session: Could not start a new session. Error while creating session with the driver service. Stopping driver service: Could not start a new session. Response code 500. Message: session not created\nfrom chrome not reachable \nHost info: host: 'sat12-bq165-08ffa4c6-aa00-4a6c-b6bd-66dca9d3b0d6-D622F1459032.local', ip: 'fe80:0:0:0:148f:e9c4:6191:f0c8%en0'\nBuild info: version: '4.39.0-SNAPSHOT', revision: 'Unknown'\nSystem info: os.name: 'Mac OS X', os.arch: 'aarch64', os.version: '15.7.1', java.version: '21.0.4'\nDriver info: driver.version: unknown\nBuild info: version: '4.39.0-SNAPSHOT', revision: 'Unknown'\nSystem info: os.name: 'Mac OS X', os.arch: 'aarch64', os.version: '15.7.1', java.version: '21.0.4'\nDriver info: driver.version: unknown","exception.stacktrace": "org.openqa.selenium.SessionNotCreatedException: Could not start a new session. Error while creating session with the driver service. Stopping driver service: Could not start a new session. Response code 500. Message: session not created\nfrom chrome not reachable \nHost info: host: 'sat12-bq165-08ffa4c6-aa00-4a6c-b6bd-66dca9d3b0d6-D622F1459032.local', ip: 'fe80:0:0:0:148f:e9c4:6191:f0c8%en0'\nBuild info: version: '4.39.0-SNAPSHOT', revision: 'Unknown'\nSystem info: os.name: 'Mac OS X', os.arch: 'aarch64', os.version: '15.7.1', java.version: '21.0.4'\nDriver info: driver.version: unknown\nBuild info: version: '4.39.0-SNAPSHOT', revision: 'Unknown'\nSystem info: os.name: 'Mac OS X', os.arch: 'aarch64', os.version: '15.7.1', java.version: '21.0.4'\nDriver info: driver.version: unknown\n\tat org.openqa.selenium.grid.node.config.DriverServiceSessionFactory.apply(DriverServiceSessionFactory.java:225)\n\tat org.openqa.selenium.grid.node.config.DriverServiceSessionFactory.apply(DriverServiceSessionFactory.java:71)\n\tat org.openqa.selenium.grid.node.local.SessionSlot.apply(SessionSlot.java:151)\n\tat org.openqa.selenium.grid.node.local.LocalNode.newSession(LocalNode.java:518)\n\tat org.openqa.selenium.grid.distributor.local.LocalDistributor.startSession(LocalDistributor.java:427)\n\tat org.openqa.selenium.grid.distributor.local.LocalDistributor.newSession(LocalDistributor.java:346)\n\tat org.openqa.selenium.grid.distributor.local.LocalDistributor$NewSessionRunnable.handleNewSessionRequest(LocalDistributor.java:601)\n\tat org.openqa.selenium.grid.distributor.local.LocalDistributor$NewSessionRunnable.lambda$run$1(LocalDistributor.java:551)\n\tat java.base\u002fjava.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1144)\n\tat java.base\u002fjava.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:642)\n\tat java.base\u002fjava.lang.Thread.run(Thread.java:1583)\n","exception.type": "org.openqa.selenium.SessionNotCreatedException","logger": "org.openqa.selenium.grid.distributor.local.LocalDistributor","request.payload": "[Capabilities {acceptInsecureCerts: true, browserName: chrome, goog:chromeOptions: {args: [disable-infobars, disable-breakpad, disable-dev-shm-usage, no-sandbox, disable-search-engine-choic...], binary: external\u002f+pin_browsers_exte..., extensions: [], prefs: {exit_type: None, exited_cleanly: true}}, unhandledPromptBehavior: ignore, webSocketUrl: true}]"}}
1539:  01:10:46.936 WARN [SeleniumSpanExporter$1.lambda$export$3] - {"traceId": "deb8c2af4c0d9bfae345a41b13ef13be","eventTime": 1763255446935930625,"eventName": "HTTP request execution complete","attributes": {"http.flavor": 1,"http.handler_class": "org.openqa.selenium.grid.sessionqueue.local.LocalNewSessionQueue","http.host": "127.0.0.1:34958","http.method": "POST","http.request_content_length": "731","http.scheme": "HTTP","http.status_code": 500,"http.target": "\u002fsession","http.user_agent": "selenium\u002f4.39.0-SNAPSHOT (java mac)"}}
...

1645:  at org.openqa.selenium.remote.service.DriverCommandExecutor.invokeExecute(DriverCommandExecutor.java:216)
1646:  at org.openqa.selenium.remote.service.DriverCommandExecutor.execute(DriverCommandExecutor.java:174)
1647:  at org.openqa.selenium.remote.RemoteWebDriver.execute(RemoteWebDriver.java:558)
1648:  at org.openqa.selenium.remote.RemoteWebDriver.startSession(RemoteWebDriver.java:247)
1649:  at org.openqa.selenium.remote.RemoteWebDriver.<init>(RemoteWebDriver.java:175)
1650:  at org.openqa.selenium.chromium.ChromiumDriver.<init>(ChromiumDriver.java:99)
1651:  at org.openqa.selenium.chrome.ChromeDriver.<init>(ChromeDriver.java:88)
1652:  at org.openqa.selenium.chrome.ChromeDriver.<init>(ChromeDriver.java:83)
1653:  at org.openqa.selenium.chrome.ChromeDriver.<init>(ChromeDriver.java:72)
1654:  at org.openqa.selenium.chrome.ChromeDriverInfo.createDriver(ChromeDriverInfo.java:82)
1655:  at org.openqa.selenium.remote.RemoteWebDriverBuilder.lambda$getLocalDriver$4(RemoteWebDriverBuilder.java:355)
1656:  at org.openqa.selenium.remote.RemoteWebDriverBuilder.getLocalDriver(RemoteWebDriverBuilder.java:366)
1657:  at org.openqa.selenium.remote.RemoteWebDriverBuilder.build(RemoteWebDriverBuilder.java:394)
1658:  at org.openqa.selenium.chrome.ChromeDriverFunctionalTest.builderOverridesDefaultChromeOptions(ChromeDriverFunctionalTest.java:71)
1659:  3) canManageNetworkConditions() (org.openqa.selenium.chrome.ChromeDriverFunctionalTest)
1660:  org.openqa.selenium.SessionNotCreatedException: Could not start a new session. Response code 500. Message: Could not start a new session. Error while creating session with the driver service. Stopping driver service: Could not start a new session. Response code 500. Message: session not created
1661:  from chrome not reachable 
...

1944:  at java.base/java.util.stream.AbstractPipeline.copyIntoWithCancel(AbstractPipeline.java:527)
1945:  at java.base/java.util.stream.AbstractPipeline.copyInto(AbstractPipeline.java:513)
1946:  at java.base/java.util.stream.AbstractPipeline.wrapAndCopyInto(AbstractPipeline.java:499)
1947:  at java.base/java.util.stream.FindOps$FindOp.evaluateSequential(FindOps.java:150)
1948:  at java.base/java.util.stream.AbstractPipeline.evaluate(AbstractPipeline.java:234)
1949:  at java.base/java.util.stream.ReferencePipeline.findFirst(ReferencePipeline.java:647)
1950:  at org.openqa.selenium.testing.drivers.WebDriverBuilder.get(WebDriverBuilder.java:77)
1951:  at org.openqa.selenium.testing.SeleniumExtension.actuallyCreateDriver(SeleniumExtension.java:276)
1952:  at org.openqa.selenium.testing.SeleniumExtension.actuallyCreateDriver(SeleniumExtension.java:265)
1953:  at org.openqa.selenium.testing.SeleniumExtension.getDriver(SeleniumExtension.java:254)
1954:  at org.openqa.selenium.testing.JupiterTestBase.prepareEnvironment(JupiterTestBase.java:84)
1955:  at java.base/java.lang.reflect.Method.invoke(Method.java:580)
1956:  at java.base/java.util.ArrayList.forEach(ArrayList.java:1596)
1957:  at java.base/java.util.ArrayList.forEach(ArrayList.java:1596)
1958:  ================================================================================
1959:  �[32m[2,523 / 2,525]�[0m 3 / 5 tests, �[31m�[1m1 failed�[0m;�[0m Testing //java/test/org/openqa/selenium/firefox:FirefoxDriverBuilderTest; 903s local, disk-cache ... (2 actions running)
1960:  �[32m[2,523 / 2,525]�[0m 3 / 5 tests, �[31m�[1m1 failed�[0m;�[0m Testing //java/test/org/openqa/selenium/firefox:FirefoxDriverBuilderTest; 936s local, disk-cache ... (2 actions running)
1961:  �[31m�[1mFAIL: �[0m//java/test/org/openqa/selenium/firefox:FirefoxDriverBuilderTest (see /Users/runner/.bazel/execroot/_main/bazel-out/darwin_arm64-fastbuild/testlogs/java/test/org/openqa/selenium/firefox/FirefoxDriverBuilderTest/test.log)
1962:  ==================== Test output for //java/test/org/openqa/selenium/firefox:FirefoxDriverBuilderTest:
1963:  �[31m�[1mFAILED: �[0m//java/test/org/openqa/selenium/firefox:FirefoxDriverBuilderTest (Summary)
1964:  Failures: 2
1965:  /Users/runner/.bazel/execroot/_main/bazel-out/darwin_arm64-fastbuild/testlogs/java/test/org/openqa/selenium/firefox/FirefoxDriverBuilderTest/test.log
1966:  1) builderOverridesDefaultFirefoxOptions() (org.openqa.selenium.firefox.FirefoxDriverBuilderTest)
1967:  /Users/runner/.bazel/execroot/_main/bazel-out/darwin_arm64-fastbuild/testlogs/java/tes...

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment

Labels

B-build Includes scripting, bazel and CI integrations Review effort 1/5

Projects

None yet

Development

Successfully merging this pull request may close these issues.

2 participants