Skip to content

Conversation

@titusfortner
Copy link
Member

@titusfortner titusfortner commented Dec 30, 2025

🔗 Related Issues

Java implementation of #16809

We are mostly relying on RBE to tell us if there is a problem, this is supposed to be extra information that strikes a good balance between information and execution time.

💥 What does this PR do?

  • ci.yml kicks off on every commit. It runs the new and improved check-bazel-targets.sh
  • Instead of just checking to see if there are any java targets and running the whole ci-java workflow, the unique set of applicable test targets are passed from the script to ci-java.yml and browser tests are only run on those
  • Instead of hard coded targets in the yml file, this is relying on tags to determine what to run. So, added a "smoke" tag to run the things.

🔧 Implementation Notes

Unlike Ruby/Python/JS this is not running a full test suite in Windows, just smoke tests; keeps it comparable to what we're doing currently, we can re-evaluation.
AddedElementFindingTests to Smoke, might want something more/different that exercises more windows-specific-concerning behavior?

💡 Additional Considerations

Need to figure out how to test what is in skipped-tests, or why things are in skipped-tests

@titusfortner titusfortner requested a review from diemol December 30, 2025 23:11
@selenium-ci selenium-ci added C-java Java Bindings B-build Includes scripting, bazel and CI integrations labels Dec 30, 2025
@qodo-code-review
Copy link
Contributor

qodo-code-review bot commented Dec 30, 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
🟡
🎫 #16809
🟢 Reduce duplicated testing between RBE and GitHub Actions and keep per-PR CI signal fast
and scoped to the change.
Improve GitHub Actions filtering so CI runs only the relevant subset of targets when only
a subset is affected.
Ensure results are reported/owned by binding (e.g., Java-specific reporting).
If no affected targets are found, run all targets for the binding when binding is
indicated in PR title/commit.
Avoid prohibitive pinned browser cache usage on GitHub Actions.
🔴 Add upstream browser regression detection (beta browser coverage).
Per-PR macOS (GHA): filter for safari, use Selenium Manager, include unit tests (as
applicable).
Per-PR Linux (GHA): alternate-interpreter unit tests and Selenium Manager tests (as
applicable).
Scheduled (GHA): run broader/all targets per OS with defined browser filters.
Standardize or add missing target categories per binding (e.g., beta versions, remote
execution), even if implementations differ.
Per-PR Windows (GHA): filter for chrome/firefox, use Selenium Manager, include unit tests
(as applicable).
🟡
🎫 #1234
🟡
🎫 #5678
Codebase Duplication Compliance
Codebase context is not defined

Follow the guide to enable codebase context checks.

Custom Compliance
🟢
Generic: Comprehensive Audit Trails

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

Status: Passed

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

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: Robust Error Handling and Edge Case Management

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

Status:
Unvalidated targets input: The workflow treats inputs.targets as a whitespace-split list and forwards it into the
Bazel command without explicit validation/normalization, which may cause unexpected
behavior if the value contains edge-case tokens (e.g., empty, newline-delimited, or
option-like strings).

Referred Code
targets="${{ inputs.targets }}"
filtered=()

for t in $targets; do
  [[ "$t" == //java/* ]] && filtered+=("$t")
done

if [ ${#filtered[@]} -eq 0 ]; then
  echo "targets=//java/..." >> "$GITHUB_OUTPUT"
else
  echo "targets=${filtered[*]}" >> "$GITHUB_OUTPUT"
fi

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:
Potential argument injection: The untrusted inputs.targets value is forwarded into bazel test as trailing arguments
without sanitization, so a crafted value (e.g., containing -- or extra flags) could alter
command behavior and should be constrained to valid //java/... targets only.

Referred Code
run: >
  bazel test
  --keep_going
  --build_tests_only
  --flaky_test_attempts 3
  --local_test_jobs 1
  --test_size_filters=large
  --test_tag_filters=smoke,skip-rbe,-safari,-ie
  --pin_browsers=false
  --test_env=SE_FORCE_BROWSER_DOWNLOAD=true
  --test_env=SE_SKIP_DRIVER_IN_PATH=true
  ${{ needs.filter-targets.outputs.targets }}

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-code-review
Copy link
Contributor

qodo-code-review bot commented Dec 30, 2025

PR Code Suggestions ✨

Explore these optional code suggestions:

CategorySuggestion                                                                                                                                    Impact
Possible issue
Fix browser parameter type
Suggestion Impact:The commit removed the invalid boolean `browser: true` and replaced it with a string-valued browser input via a matrix (`browser: ${{ matrix.browser }}`), ensuring the parameter type matches the reusable workflow expectations (string rather than boolean).

code diff:

+        browser: [chrome, firefox, edge]
+        run_type: [local, remote]
     with:
-      name: Browser Tests (${{ matrix.os }})
+      name: Browser Tests (${{ matrix.os }} - ${{ matrix.browser }} - ${{ matrix.run_type }})
       os: ${{ matrix.os }}
-      browser: true
+      browser: ${{ matrix.browser }}
       run: >

In the browser-tests job, change the browser input from true to a specific
browser string like 'chrome' to match the reusable workflow's expected parameter
type.

.github/workflows/ci-java.yml [54]

-browser: true
+browser: chrome

[Suggestion processed]

Suggestion importance[1-10]: 9

__

Why: This suggestion fixes a clear bug introduced in the PR where the browser parameter was changed to a boolean true instead of the required string value, which would cause the workflow to fail.

High
Respect run-full-suite flag when filtering

Modify the script to respect the run-full-suite input; if it's false and no Java
targets are found, output an empty targets string instead of defaulting to all
Java tests.

.github/workflows/ci-java.yml [37-41]

 if [ ${#filtered[@]} -eq 0 ]; then
-  echo "targets=//java/..." >> "$GITHUB_OUTPUT"
+  if [ "${{ inputs.run-full-suite }}" == "true" ]; then
+    echo "targets=//java/..." >> "$GITHUB_OUTPUT"
+  else
+    echo "targets=" >> "$GITHUB_OUTPUT"
+  fi
 else
   echo "targets=${filtered[*]}" >> "$GITHUB_OUTPUT"
 fi
  • Apply / Chat
Suggestion importance[1-10]: 7

__

Why: This suggestion corrects a logical flaw in the new workflow by ensuring the run-full-suite input is respected, preventing unintended test runs.

Medium
High-level
Refactor BUILD files to reduce duplication

The smoke-tests suite definition is repeated in four BUILD.bazel files. Abstract
this logic into a reusable Bazel macro to reduce duplication and improve
maintainability.

Examples:

java/test/org/openqa/selenium/chrome/BUILD.bazel [9-40]
java_selenium_test_suite(
    name = "smoke-tests",
    size = "large",
    srcs = SMOKE_TESTS,
    browsers = [
        "chrome",
    ],
    data = [
        "//common/extensions",
    ],

 ... (clipped 22 lines)
java/test/org/openqa/selenium/edge/BUILD.bazel [9-40]
java_selenium_test_suite(
    name = "smoke-tests",
    size = "large",
    srcs = SMOKE_TESTS,
    browsers = [
        "edge",
    ],
    data = [
        "//common/extensions",
    ],

 ... (clipped 22 lines)

Solution Walkthrough:

Before:

# In java/test/org/openqa/selenium/chrome/BUILD.bazel
java_selenium_test_suite(
    name = "smoke-tests",
    size = "large",
    srcs = SMOKE_TESTS,
    browsers = [
        "chrome",
    ],
    data = [
        "//common/extensions",
    ],
    tags = [
        "selenium-remote",
        "smoke",
    ],
    deps = [...]
)
# ... similar blocks exist in 3 other BUILD.bazel files

After:

# In a new file, e.g., java/test/defs.bzl
def java_smoke_test_suite(name, srcs, browsers, deps, **kwargs):
    native.java_selenium_test_suite(
        name = name,
        size = "large",
        srcs = srcs,
        browsers = browsers,
        tags = ["selenium-remote", "smoke"],
        deps = deps,
        **kwargs
    )

# In java/test/org/openqa/selenium/chrome/BUILD.bazel
load("//java/test:defs.bzl", "java_smoke_test_suite")

java_smoke_test_suite(
    name = "smoke-tests",
    srcs = SMOKE_TESTS,
    browsers = ["chrome"],
    data = ["//common/extensions"],
    deps = [...]
)
Suggestion importance[1-10]: 6

__

Why: The suggestion correctly identifies significant code duplication for the smoke-tests target across four BUILD.bazel files and proposes a valid refactoring into a Bazel macro, which would improve long-term maintainability.

Low
General
Improve script robustness for target parsing

To improve robustness, parse the targets input into a bash array before
iterating to correctly handle paths with spaces or special characters.

.github/workflows/ci-java.yml [29-41]

 run: |
   targets="${{ inputs.targets }}"
   filtered=()
-
-  for t in $targets; do
+  
+  read -ra target_array <<< "$targets"
+  for t in "${target_array[@]}"; do
     [[ "$t" == //java/* ]] && filtered+=("$t")
   done
 
   if [ ${#filtered[@]} -eq 0 ]; then
     echo "targets=//java/..." >> "$GITHUB_OUTPUT"
   else
     echo "targets=${filtered[*]}" >> "$GITHUB_OUTPUT"
   fi
  • Apply / Chat
Suggestion importance[1-10]: 5

__

Why: The suggestion improves the robustness of the shell script by correctly handling target paths that might contain spaces, which is a good practice.

Low
  • Update

Copy link
Member

@diemol diemol left a comment

Choose a reason for hiding this comment

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

Can you update the PR so we can review only the changes to the workflows? There is noise right now that prevents me to review properly the PR.

@titusfortner titusfortner marked this pull request as draft January 6, 2026 22:20
@titusfortner
Copy link
Member Author

I'll convert it to a draft while I'm working on it.

@qodo-code-review
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, chrome, driver) / Browser Tests (macos - chrome - driver)

Failed stage: Run Bazel [❌]

Failed test name: canFullscreenTheWindowFromIframe()

Failure summary:

  • The Bazel test run failed because the WindowTest suite failed on macOS Chrome runs:
    //java/test/org/openqa/selenium:WindowTest-chrome and
    //java/test/org/openqa/selenium:WindowTest-chrome-beta.
  • The failing test method was canFullscreenTheWindowFromIframe() in org.openqa.selenium.WindowTest,
    which timed out waiting for the window size to become (640, 400) but it remained (980, 637):
    -
    Stack points to org.openqa.selenium.WindowTest.changeSizeTo(WindowTest.java:285) called from
    org.openqa.selenium.WindowTest.canFullscreenTheWindowFromIframe(WindowTest.java:268).
  • The logs also show java.net.http.HttpTimeoutException: request timed out from
    org.openqa.selenium.remote.http.jdk.JdkHttpClient, consistent with browser/driver communication
    timing out during the window resize/fullscreen operation.
  • After the test failure, a follow-up step failed because it tried to parse build/bazel-console.log
    but the file did not exist (awk: can't open file build/bazel-console.log), causing an additional job
    failure with exit code 2. The primary failure remains the failed tests (Bazel exited with code 3).
Relevant error logs:
1:  ##[group]Runner Image Provisioner
2:  Hosted Compute Agent
...

551:  �[32mLoading:�[0m 2 packages loaded
552:  �[32mLoading:�[0m 4 packages loaded
553:  currently loading: java ... (165 packages)
554:  �[32mAnalyzing:�[0m 186 targets (169 packages loaded, 0 targets configured)
555:  �[32mAnalyzing:�[0m 186 targets (169 packages loaded, 0 targets configured)
556:  �[32mAnalyzing:�[0m 186 targets (195 packages loaded, 18 targets configured)
557:  �[32mAnalyzing:�[0m 186 targets (209 packages loaded, 18 targets configured)
558:  �[32mAnalyzing:�[0m 186 targets (226 packages loaded, 20 targets configured)
559:  �[32mAnalyzing:�[0m 186 targets (276 packages loaded, 20 targets configured)
560:  �[32mAnalyzing:�[0m 186 targets (307 packages loaded, 2250 targets configured)
561:  �[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:
562:  org.seleniumhq.selenium:selenium-api
563:  org.seleniumhq.selenium:selenium-remote-driver
564:  �[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:
565:  com.google.code.findbugs:jsr305
566:  com.google.errorprone:error_prone_annotations
567:  com.google.guava:guava (versions: 30.1.1-jre, 31.0.1-android)
...

580:  �[32mAnalyzing:�[0m 186 targets (426 packages loaded, 6051 targets configured)
581:  �[32mAnalyzing:�[0m 186 targets (426 packages loaded, 6051 targets configured)
582:  �[32mAnalyzing:�[0m 186 targets (426 packages loaded, 6051 targets configured)
583:  �[32mAnalyzing:�[0m 186 targets (426 packages loaded, 6051 targets configured)
584:  �[32mAnalyzing:�[0m 186 targets (428 packages loaded, 6197 targets configured)
585:  �[32mAnalyzing:�[0m 186 targets (428 packages loaded, 6197 targets configured)
586:  �[32mAnalyzing:�[0m 186 targets (446 packages loaded, 6702 targets configured)
587:  �[32mAnalyzing:�[0m 186 targets (490 packages loaded, 7188 targets configured)
588:  �[32mAnalyzing:�[0m 186 targets (509 packages loaded, 8211 targets configured)
589:  �[32mAnalyzing:�[0m 186 targets (527 packages loaded, 8780 targets configured)
590:  �[32mAnalyzing:�[0m 186 targets (532 packages loaded, 14027 targets configured)
591:  �[32mAnalyzing:�[0m 186 targets (551 packages loaded, 14561 targets configured)
592:  �[32mAnalyzing:�[0m 186 targets (584 packages loaded, 17605 targets configured)
593:  �[32mAnalyzing:�[0m 186 targets (632 packages loaded, 19292 targets configured)
594:  �[32mAnalyzing:�[0m 186 targets (730 packages loaded, 21131 targets configured)
595:  �[35mWARNING: �[0mDownload from https://bazel-mirror.storage.googleapis.com/repo1.maven.org/maven2/org/checkerframework/checker-qual/3.43.0/checker-qual-3.43.0.jar failed: class java.io.FileNotFoundException GET returned 404 Not Found
596:  �[35mWARNING: �[0mDownload from https://bazel-mirror.storage.googleapis.com/repo1.maven.org/maven2/org/jetbrains/kotlinx/kotlinx-metadata-jvm/0.5.0/kotlinx-metadata-jvm-0.5.0.jar failed: class java.io.FileNotFoundException GET returned 404 Not Found
597:  �[35mWARNING: �[0mDownload from https://bazel-mirror.storage.googleapis.com/repo1.maven.org/maven2/org/jetbrains/kotlin/kotlin-stdlib-jdk7/1.8.0/kotlin-stdlib-jdk7-1.8.0.jar failed: class java.io.FileNotFoundException GET returned 404 Not Found
598:  �[35mWARNING: �[0mDownload from https://bazel-mirror.storage.googleapis.com/repo1.maven.org/maven2/org/jetbrains/kotlin/kotlin-stdlib-jdk8/1.8.0/kotlin-stdlib-jdk8-1.8.0.jar failed: class java.io.FileNotFoundException GET returned 404 Not Found
599:  �[35mWARNING: �[0mDownload from https://bazel-mirror.storage.googleapis.com/repo1.maven.org/maven2/org/jetbrains/annotations/13.0/annotations-13.0.jar failed: class java.io.FileNotFoundException GET returned 404 Not Found
600:  �[35mWARNING: �[0mDownload from https://bazel-mirror.storage.googleapis.com/repo1.maven.org/maven2/org/jetbrains/kotlin/kotlin-stdlib-common/1.8.0/kotlin-stdlib-common-1.8.0.jar failed: class java.io.FileNotFoundException GET returned 404 Not Found
601:  �[32mAnalyzing:�[0m 186 targets (796 packages loaded, 22672 targets configured)
602:  �[35mWARNING: �[0mDownload from https://bazel-mirror.storage.googleapis.com/repo1.maven.org/maven2/org/jetbrains/kotlin/kotlin-stdlib/1.8.0/kotlin-stdlib-1.8.0.jar failed: class java.io.FileNotFoundException GET returned 404 Not Found
603:  �[35mWARNING: �[0mDownload from https://bazel-mirror.storage.googleapis.com/repo1.maven.org/maven2/com/google/guava/guava/33.4.0-jre/guava-33.4.0-jre.jar failed: class java.io.FileNotFoundException GET returned 404 Not Found
604:  �[35mWARNING: �[0mDownload from https://bazel-mirror.storage.googleapis.com/repo1.maven.org/maven2/net/ltgt/gradle/incap/incap/0.2/incap-0.2.jar failed: class java.io.FileNotFoundException GET returned 404 Not Found
605:  �[35mWARNING: �[0mDownload from https://bazel-mirror.storage.googleapis.com/repo1.maven.org/maven2/com/squareup/javapoet/1.13.0/javapoet-1.13.0.jar failed: class java.io.FileNotFoundException GET returned 404 Not Found
606:  �[35mWARNING: �[0mDownload from https://bazel-mirror.storage.googleapis.com/repo1.maven.org/maven2/com/google/dagger/dagger-compiler/2.43.2/dagger-compiler-2.43.2.jar failed: class java.io.FileNotFoundException GET returned 404 Not Found
607:  �[35mWARNING: �[0mDownload from https://bazel-mirror.storage.googleapis.com/repo1.maven.org/maven2/com/google/dagger/dagger-spi/2.43.2/dagger-spi-2.43.2.jar failed: class java.io.FileNotFoundException GET returned 404 Not Found
608:  �[35mWARNING: �[0mDownload from https://bazel-mirror.storage.googleapis.com/repo1.maven.org/maven2/com/google/googlejavaformat/google-java-format/1.18.1/google-java-format-1.18.1.jar failed: class java.io.FileNotFoundException GET returned 404 Not Found
609:  �[32mAnalyzing:�[0m 186 targets (851 packages loaded, 24319 targets configured)
610:  �[32mAnalyzing:�[0m 186 targets (893 packages loaded, 25490 targets configured)
611:  �[32mAnalyzing:�[0m 186 targets (920 packages loaded, 25973 targets configured)
612:  �[32mAnalyzing:�[0m 186 targets (938 packages loaded, 26027 targets configured)
613:  �[35mWARNING: �[0mDownload from https://bazel-mirror.storage.googleapis.com/repo1.maven.org/maven2/com/google/guava/guava-beta-checker/1.0/guava-beta-checker-1.0.jar failed: class java.io.FileNotFoundException GET returned 404 Not Found
614:  �[35mWARNING: �[0mDownload from https://bazel-mirror.storage.googleapis.com/repo1.maven.org/maven2/com/google/guava/failureaccess/1.0.2/failureaccess-1.0.2.jar failed: class java.io.FileNotFoundException GET returned 404 Not Found
615:  �[35mWARNING: �[0mDownload from https://bazel-mirror.storage.googleapis.com/repo1.maven.org/maven2/com/google/devtools/ksp/symbol-processing-api/1.7.0-1.0.6/symbol-processing-api-1.7.0-1.0.6.jar failed: class java.io.FileNotFoundException GET returned 404 Not Found
616:  �[32mAnalyzing:�[0m 186 targets (968 packages loaded, 26232 targets configured)
617:  �[35mWARNING: �[0mDownload from https://bazel-mirror.storage.googleapis.com/repo1.maven.org/maven2/com/google/auto/value/auto-value/1.10.4/auto-value-1.10.4.jar failed: class java.io.FileNotFoundException GET returned 404 Not Found
618:  �[35mWARNING: �[0mDownload from https://bazel-mirror.storage.googleapis.com/repo1.maven.org/maven2/com/google/auto/value/auto-value-annotations/1.11.0/auto-value-annotations-1.11.0.jar failed: class java.io.FileNotFoundException GET returned 404 Not Found
619:  �[32mAnalyzing:�[0m 186 targets (990 packages loaded, 26415 targets configured)
...

744:  �[32m[2,786 / 4,433]�[0m Compiling Rust rlib proc_macro2 v1.0.93 (17 files) [for tool]; 1s darwin-sandbox ... (3 actions, 2 running)
745:  �[32m[2,794 / 4,433]�[0m Compiling absl/strings/string_view.cc [for tool]; 0s darwin-sandbox ... (3 actions running)
746:  �[32m[2,800 / 4,433]�[0m Compiling absl/strings/string_view.cc [for tool]; 1s darwin-sandbox ... (3 actions running)
747:  �[32m[2,808 / 4,433]�[0m Compiling Rust rlib syn v2.0.98 (96 files) [for tool]; 1s darwin-sandbox ... (3 actions running)
748:  �[32m[2,810 / 4,433]�[0m Compiling Rust rlib syn v2.0.98 (96 files) [for tool]; 2s darwin-sandbox ... (3 actions running)
749:  �[32m[2,813 / 4,433]�[0m Compiling Rust rlib syn v2.0.98 (96 files) [for tool]; 3s darwin-sandbox ... (3 actions running)
750:  �[32m[2,816 / 4,433]�[0m Compiling Rust rlib syn v2.0.98 (96 files) [for tool]; 4s darwin-sandbox ... (3 actions running)
751:  �[32m[2,818 / 4,433]�[0m Compiling Rust rlib syn v2.0.98 (96 files) [for tool]; 5s darwin-sandbox ... (3 actions running)
752:  �[32m[2,826 / 4,433]�[0m Compiling Rust rlib syn v2.0.98 (96 files) [for tool]; 6s darwin-sandbox ... (3 actions, 2 running)
753:  �[32m[2,826 / 4,433]�[0m Compiling Rust rlib syn v2.0.98 (96 files) [for tool]; 7s darwin-sandbox ... (3 actions running)
754:  �[32m[2,827 / 4,433]�[0m Compiling Rust rlib syn v2.0.98 (96 files) [for tool]; 9s darwin-sandbox ... (3 actions, 2 running)
755:  �[32m[2,828 / 4,433]�[0m Compiling Rust rlib syn v2.0.98 (96 files) [for tool]; 11s darwin-sandbox ... (3 actions running)
756:  �[32m[2,829 / 4,433]�[0m Compiling Rust rlib syn v2.0.98 (96 files) [for tool]; 12s darwin-sandbox ... (4 actions, 3 running)
757:  �[32m[2,830 / 4,433]�[0m Compiling Rust rlib syn v2.0.98 (96 files) [for tool]; 13s darwin-sandbox ... (3 actions, 2 running)
758:  �[32m[2,833 / 4,433]�[0m Compiling absl/strings/internal/charconv_bigint.cc [for tool]; 1s darwin-sandbox ... (3 actions running)
759:  �[32m[2,842 / 4,433]�[0m Compiling Rust proc-macro thiserror_impl v1.0.69 (10 files) [for tool]; 1s darwin-sandbox ... (3 actions, 2 running)
760:  �[32m[2,848 / 4,433]�[0m Compiling Rust proc-macro thiserror_impl v1.0.69 (10 files) [for tool]; 2s darwin-sandbox ... (3 actions running)
761:  �[32m[2,850 / 4,433]�[0m Compiling Rust proc-macro thiserror_impl v1.0.69 (10 files) [for tool]; 3s darwin-sandbox ... (3 actions, 2 running)
762:  �[32m[2,853 / 4,433]�[0m Compiling Rust proc-macro thiserror_impl v1.0.69 (10 files) [for tool]; 4s darwin-sandbox ... (3 actions, 2 running)
763:  �[32m[2,857 / 4,433]�[0m Compiling absl/strings/internal/damerau_levenshtein_distance.cc [for tool]; 1s darwin-sandbox ... (3 actions running)
...

949:  �[32m[3,728 / 4,435]�[0m Compiling Rust rlib syn v2.0.106 (97 files) [for tool]; 11s darwin-sandbox ... (3 actions, 2 running)
950:  �[32m[3,728 / 4,435]�[0m Compiling Rust rlib syn v2.0.106 (97 files) [for tool]; 12s darwin-sandbox ... (4 actions, 3 running)
951:  �[32m[3,731 / 4,435]�[0m Compiling Rust rlib syn v2.0.106 (97 files) [for tool]; 13s darwin-sandbox ... (3 actions running)
952:  �[32m[3,733 / 4,435]�[0m Compiling src/google/protobuf/compiler/java/helpers.cc [for tool]; 1s darwin-sandbox ... (3 actions running)
953:  �[32m[3,734 / 4,435]�[0m Compiling src/google/protobuf/compiler/cpp/field_generators/cord_field.cc [for tool]; 2s darwin-sandbox ... (3 actions, 2 running)
954:  �[32m[3,742 / 4,435]�[0m Compiling src/google/protobuf/compiler/cpp/field_generators/enum_field.cc [for tool]; 1s darwin-sandbox ... (3 actions running)
955:  �[32m[3,743 / 4,435]�[0m Compiling src/google/protobuf/compiler/cpp/field_generators/enum_field.cc [for tool]; 3s darwin-sandbox ... (3 actions, 2 running)
956:  �[32m[3,745 / 4,435]�[0m Compiling src/google/protobuf/compiler/cpp/field_generators/enum_field.cc [for tool]; 4s darwin-sandbox ... (3 actions, 2 running)
957:  �[32m[3,749 / 4,435]�[0m Compiling src/google/protobuf/compiler/java/names.cc [for tool]; 2s darwin-sandbox ... (3 actions running)
958:  �[32m[3,750 / 4,435]�[0m Compiling Rust proc-macro clap_derive v4.5.47 (16 files) [for tool]; 2s darwin-sandbox ... (3 actions, 2 running)
959:  �[32m[3,752 / 4,435]�[0m Compiling Rust proc-macro clap_derive v4.5.47 (16 files) [for tool]; 3s darwin-sandbox ... (4 actions, 3 running)
960:  �[32m[3,754 / 4,435]�[0m Compiling Rust proc-macro clap_derive v4.5.47 (16 files) [for tool]; 4s darwin-sandbox ... (3 actions running)
961:  �[32m[3,755 / 4,435]�[0m Compiling src/google/protobuf/compiler/cpp/field_generators/map_field.cc [for tool]; 6s darwin-sandbox ... (3 actions, 2 running)
962:  �[32m[3,757 / 4,435]�[0m Compiling src/google/protobuf/compiler/cpp/field_generators/map_field.cc [for tool]; 8s darwin-sandbox ... (3 actions running)
963:  �[32m[3,759 / 4,435]�[0m Compiling src/google/protobuf/compiler/java/field_common.cc [for tool]; 5s darwin-sandbox ... (3 actions running)
964:  �[32m[3,760 / 4,435]�[0m Compiling Rust proc-macro thiserror_impl v1.0.69 (10 files) [for tool]; 3s darwin-sandbox ... (3 actions, 2 running)
965:  �[32m[3,769 / 4,435]�[0m Compiling src/google/protobuf/compiler/cpp/field_generators/message_field.cc [for tool]; 3s darwin-sandbox ... (3 actions, 2 running)
...

1020:  �[32m[3,874 / 4,435]�[0m Compiling src/google/protobuf/compiler/cpp/tracker.cc [for tool]; 1s darwin-sandbox ... (4 actions, 2 running)
1021:  �[32m[3,875 / 4,435]�[0m Compiling src/google/protobuf/compiler/cpp/tracker.cc [for tool]; 2s darwin-sandbox ... (3 actions, 2 running)
1022:  �[32m[3,879 / 4,435]�[0m Compiling src/google/protobuf/compiler/cpp/service.cc [for tool]; 0s darwin-sandbox ... (4 actions, 2 running)
1023:  �[32m[3,881 / 4,435]�[0m [Prepa] Compiling src/google/protobuf/compiler/cpp/parse_function_generator.cc [for tool] ... (3 actions, 2 running)
1024:  �[32m[3,882 / 4,435]�[0m MergeJars java/src/org/openqa/selenium/manager/manager-project.jar; 1s darwin-sandbox ... (4 actions, 3 running)
1025:  �[32m[3,883 / 4,435]�[0m MergeJars java/src/org/openqa/selenium/manager/manager-project.jar; 3s darwin-sandbox ... (3 actions, 2 running)
1026:  �[32m[3,883 / 4,435]�[0m MergeJars java/src/org/openqa/selenium/manager/manager-project.jar; 4s darwin-sandbox ... (3 actions running)
1027:  �[32m[3,886 / 4,435]�[0m MergeJars java/src/org/openqa/selenium/manager/manager-project.jar; 5s darwin-sandbox ... (4 actions, 3 running)
1028:  �[32m[3,888 / 4,435]�[0m Compiling src/google/protobuf/compiler/rust/naming.cc [for tool]; 1s darwin-sandbox ... (4 actions, 3 running)
1029:  �[32m[3,889 / 4,435]�[0m Compiling src/google/protobuf/compiler/rust/naming.cc [for tool]; 2s darwin-sandbox ... (3 actions running)
1030:  �[32m[3,891 / 4,435]�[0m Compiling src/google/protobuf/compiler/rust/naming.cc [for tool]; 3s darwin-sandbox ... (4 actions, 3 running)
1031:  �[32m[3,893 / 4,435]�[0m Compiling src/google/protobuf/compiler/java/lite/primitive_field.cc [for tool]; 2s darwin-sandbox ... (4 actions, 3 running)
1032:  �[32m[3,896 / 4,435]�[0m Action java/src/org/openqa/selenium/manager/libmanager-module.jar; 2s darwin-sandbox ... (3 actions, 2 running)
1033:  �[32m[3,896 / 4,435]�[0m Action java/src/org/openqa/selenium/manager/libmanager-module.jar; 4s darwin-sandbox ... (4 actions, 3 running)
1034:  �[32mINFO: �[0mFrom Building java/src/org/openqa/selenium/remote/libapi-class.jar (64 source files):
1035:  java/src/org/openqa/selenium/remote/ErrorHandler.java:46: warning: [removal] ErrorCodes in org.openqa.selenium.remote has been deprecated and marked for removal
1036:  private final ErrorCodes errorCodes;
1037:  ^
1038:  java/src/org/openqa/selenium/remote/ErrorHandler.java:60: warning: [removal] ErrorCodes in org.openqa.selenium.remote has been deprecated and marked for removal
1039:  this.errorCodes = new ErrorCodes();
1040:  ^
1041:  java/src/org/openqa/selenium/remote/ErrorHandler.java:68: warning: [removal] ErrorCodes in org.openqa.selenium.remote has been deprecated and marked for removal
1042:  public ErrorHandler(ErrorCodes codes, boolean includeServerErrors) {
1043:  ^
1044:  java/src/org/openqa/selenium/remote/Response.java:100: warning: [removal] ErrorCodes in org.openqa.selenium.remote has been deprecated and marked for removal
1045:  ErrorCodes errorCodes = new ErrorCodes();
1046:  ^
1047:  java/src/org/openqa/selenium/remote/Response.java:100: warning: [removal] ErrorCodes in org.openqa.selenium.remote has been deprecated and marked for removal
1048:  ErrorCodes errorCodes = new ErrorCodes();
1049:  ^
1050:  java/src/org/openqa/selenium/remote/ProtocolHandshake.java:181: warning: [removal] ErrorCodes in org.openqa.selenium.remote has been deprecated and marked for removal
1051:  response.setStatus(ErrorCodes.SUCCESS);
1052:  ^
1053:  java/src/org/openqa/selenium/remote/ProtocolHandshake.java:182: warning: [removal] ErrorCodes in org.openqa.selenium.remote has been deprecated and marked for removal
1054:  response.setState(ErrorCodes.SUCCESS_STRING);
1055:  ^
1056:  java/src/org/openqa/selenium/remote/W3CHandshakeResponse.java:53: warning: [removal] ErrorCodes in org.openqa.selenium.remote has been deprecated and marked for removal
1057:  new ErrorCodes().toStatus((String) rawError, Optional.of(tuple.getStatusCode())));
1058:  ^
1059:  java/src/org/openqa/selenium/remote/W3CHandshakeResponse.java:56: warning: [removal] ErrorCodes in org.openqa.selenium.remote has been deprecated and marked for removal
1060:  new ErrorCodes().getExceptionType((String) rawError);
1061:  ^
1062:  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
1063:  private final ErrorCodes errorCodes = new ErrorCodes();
1064:  ^
1065:  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
1066:  private final ErrorCodes errorCodes = new ErrorCodes();
1067:  ^
1068:  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
1069:  int status = response.getStatus() == ErrorCodes.SUCCESS ? HTTP_OK : HTTP_INTERNAL_ERROR;
1070:  ^
1071:  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
1072:  response.setStatus(ErrorCodes.UNKNOWN_COMMAND);
1073:  ^
1074:  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
1075:  response.setStatus(ErrorCodes.UNHANDLED_ERROR);
1076:  ^
1077:  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
1078:  response.setStatus(ErrorCodes.SUCCESS);
1079:  ^
1080:  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
1081:  response.setState(errorCodes.toState(ErrorCodes.SUCCESS));
1082:  ^
1083:  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
1084:  response.setState(errorCodes.toState(ErrorCodes.SUCCESS));
1085:  ^
1086:  java/src/org/openqa/selenium/remote/codec/w3c/W3CHttpResponseCodec.java:69: warning: [removal] ErrorCodes in org.openqa.selenium.remote has been deprecated and marked for removal
1087:  private final ErrorCodes errorCodes = new ErrorCodes();
1088:  ^
1089:  java/src/org/openqa/selenium/remote/codec/w3c/W3CHttpResponseCodec.java:69: warning: [removal] ErrorCodes in org.openqa.selenium.remote has been deprecated and marked for removal
1090:  private final ErrorCodes errorCodes = new ErrorCodes();
1091:  ^
1092:  java/src/org/openqa/selenium/remote/codec/w3c/W3CHttpResponseCodec.java:97: warning: [removal] ErrorCodes in org.openqa.selenium.remote has been deprecated and marked for removal
1093:  response.setStatus(ErrorCodes.UNKNOWN_COMMAND);
1094:  ^
1095:  java/src/org/openqa/selenium/remote/codec/w3c/W3CHttpResponseCodec.java:102: warning: [removal] ErrorCodes in org.openqa.selenium.remote has been deprecated and marked for removal
1096:  response.setStatus(ErrorCodes.UNHANDLED_ERROR);
1097:  ^
1098:  java/src/org/openqa/selenium/remote/codec/w3c/W3CHttpResponseCodec.java:149: warning: [removal] ErrorCodes in org.openqa.selenium.remote has been deprecated and marked for removal
1099:  response.setStatus(ErrorCodes.SUCCESS);
1100:  ^
...

1364:  �[32m[4,502 / 4,621]�[0m 67 / 186 tests;�[0m Testing //java/test/org/openqa/selenium:WindowTest-chrome-beta; 1868s local ... (3 actions, 1 running)
1365:  �[32m[4,502 / 4,621]�[0m 67 / 186 tests;�[0m Testing //java/test/org/openqa/selenium:WindowTest-chrome-beta; 1932s local ... (3 actions, 1 running)
1366:  �[32m[4,502 / 4,621]�[0m 67 / 186 tests;�[0m Testing //java/test/org/openqa/selenium:WindowTest-chrome-beta; 1996s local ... (3 actions, 1 running)
1367:  �[32m[4,502 / 4,621]�[0m 67 / 186 tests;�[0m Testing //java/test/org/openqa/selenium:WindowTest-chrome-beta; 2060s local ... (3 actions, 1 running)
1368:  �[32m[4,502 / 4,621]�[0m 67 / 186 tests;�[0m Testing //java/test/org/openqa/selenium:WindowTest-chrome-beta; 2125s local ... (3 actions, 1 running)
1369:  �[32m[4,502 / 4,621]�[0m 67 / 186 tests;�[0m Testing //java/test/org/openqa/selenium:WindowTest-chrome-beta; 2189s local ... (3 actions, 1 running)
1370:  �[32m[4,502 / 4,621]�[0m 67 / 186 tests;�[0m Testing //java/test/org/openqa/selenium:WindowTest-chrome-beta; 2253s local ... (3 actions, 1 running)
1371:  �[32m[4,502 / 4,621]�[0m 67 / 186 tests;�[0m Testing //java/test/org/openqa/selenium:WindowTest-chrome-beta; 2317s local ... (3 actions, 1 running)
1372:  �[32m[4,502 / 4,621]�[0m 67 / 186 tests;�[0m Testing //java/test/org/openqa/selenium:WindowTest-chrome-beta; 2382s local ... (3 actions, 1 running)
1373:  �[32m[4,502 / 4,621]�[0m 67 / 186 tests;�[0m Testing //java/test/org/openqa/selenium:WindowTest-chrome-beta; 2446s local ... (3 actions, 1 running)
1374:  �[32m[4,502 / 4,621]�[0m 67 / 186 tests;�[0m Testing //java/test/org/openqa/selenium:WindowTest-chrome-beta; 2510s local ... (3 actions, 1 running)
1375:  �[32m[4,502 / 4,621]�[0m 67 / 186 tests;�[0m Testing //java/test/org/openqa/selenium:WindowTest-chrome-beta; 2575s local ... (3 actions, 1 running)
1376:  �[32m[4,502 / 4,621]�[0m 67 / 186 tests;�[0m Testing //java/test/org/openqa/selenium:WindowTest-chrome-beta; 2640s local ... (3 actions, 1 running)
1377:  �[32m[4,502 / 4,621]�[0m 67 / 186 tests;�[0m Testing //java/test/org/openqa/selenium:WindowTest-chrome-beta; 2673s local ... (3 actions, 2 running)
1378:  �[31m�[1mFAIL: �[0m//java/test/org/openqa/selenium:WindowTest-chrome-beta (see /Users/runner/.bazel/execroot/_main/bazel-out/darwin_arm64-fastbuild/testlogs/java/test/org/openqa/selenium/WindowTest-chrome-beta/test.log)
1379:  �[31m�[1mFAILED: �[0m//java/test/org/openqa/selenium:WindowTest-chrome-beta (Summary)
1380:  /Users/runner/.bazel/execroot/_main/bazel-out/darwin_arm64-fastbuild/testlogs/java/test/org/openqa/selenium/WindowTest-chrome-beta/test.log
1381:  ==================== Test output for //java/test/org/openqa/selenium:WindowTest-chrome-beta:
1382:  /Users/runner/.bazel/execroot/_main/bazel-out/darwin_arm64-fastbuild/testlogs/java/test/org/openqa/selenium/WindowTest-chrome-beta/test_attempts/attempt_1.log
1383:  Failures: 1
1384:  /Users/runner/.bazel/execroot/_main/bazel-out/darwin_arm64-fastbuild/testlogs/java/test/org/openqa/selenium/WindowTest-chrome-beta/test_attempts/attempt_2.log
1385:  1) canFullscreenTheWindowFromIframe() (org.openqa.selenium.WindowTest)
1386:  �[32mINFO: �[0mFrom Testing //java/test/org/openqa/selenium:WindowTest-chrome-beta:
1387:  org.openqa.selenium.TimeoutException: Expected condition failed: waiting for window size to be (640, 400) but was (980, 637)
1388:  (tried for 10 seconds with 20 milliseconds interval)
...

1623:  at java.base/java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:642)
1624:  at java.base/java.lang.Thread.run(Thread.java:1583)
1625:  Caused by: java.net.http.HttpTimeoutException: request timed out
1626:  at java.net.http/jdk.internal.net.http.HttpClientImpl.send(HttpClientImpl.java:949)
1627:  at java.net.http/jdk.internal.net.http.HttpClientFacade.send(HttpClientFacade.java:133)
1628:  at org.openqa.selenium.remote.http.jdk.JdkHttpClient.execute0(JdkHttpClient.java:462)
1629:  at org.openqa.selenium.remote.http.AddSeleniumUserAgent.lambda$apply$0(AddSeleniumUserAgent.java:44)
1630:  at org.openqa.selenium.remote.http.Filter.lambda$andFinally$1(Filter.java:55)
1631:  at org.openqa.selenium.remote.http.jdk.JdkHttpClient.lambda$executeAsync$2(JdkHttpClient.java:388)
1632:  at java.base/java.util.concurrent.Executors$RunnableAdapter.call(Executors.java:572)
1633:  at java.base/java.util.concurrent.FutureTask.run(FutureTask.java:317)
1634:  at java.base/java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1144)
1635:  at java.base/java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:642)
1636:  at java.base/java.lang.Thread.run(Thread.java:1583)
1637:  ================================================================================
1638:  �[32m[4,503 / 4,621]�[0m 68 / 186 tests, �[31m�[1m1 failed�[0m;�[0m [Sched] Testing //java/test/org/openqa/selenium:TypingTest-chrome-beta; 1301s ... (3 actions, 1 running)
1639:  �[32m[4,503 / 4,621]�[0m 68 / 186 tests, �[31m�[1m1 failed�[0m;�[0m Testing //java/test/org/openqa/selenium:WebNetworkTest-chrome-beta; 2s local ... (3 actions, 2 running)
1640:  �[32m[4,504 / 4,621]�[0m 69 / 186 tests, �[31m�[1m1 failed�[0m;�[0m [Sched] Testing //java/test/org/openqa/selenium:FormHandlingTest-chrome-beta ... (3 actions, 1 running)
1641:  �[32m[4,504 / 4,621]�[0m 69 / 186 tests, �[31m�[1m1 failed�[0m;�[0m [Sched] Testing //java/test/org/openqa/selenium:FormHandlingTest-chrome-beta; 14s ... (3 actions, 1 running)
1642:  �[32m[4,504 / 4,621]�[0m 69 / 186 tests, �[31m�[1m1 failed�[0m;�[0m Testing //java/test/org/openqa/selenium:TypingTest-chrome-beta; 22s local ... (3 actions, 2 running)
1643:  �[32m[4,505 / 4,621]�[0m 70 / 186 tests, �[31m�[1m1 failed�[0m;�[0m [Sched] Testing //java/test/org/openqa/selenium:I18nTest-chrome; 24s ... (3 actions, 1 running)
1644:  �[32m[4,505 / 4,621]�[0m 70 / 186 tests, �[31m�[1m1 failed�[0m;�[0m [Sched] Testing //java/test/org/openqa/selenium:I18nTest-chrome; 34s ... (3 actions, 1 running)
1645:  �[32m[4,505 / 4,621]�[0m 70 / 186 tests, �[31m�[1m1 failed�[0m;�[0m Testing //java/test/org/openqa/selenium:FormHandlingTest-chrome-beta; 15s local ... (3 actions, 2 running)
1646:  �[32m[4,506 / 4,621]�[0m 71 / 186 tests, �[31m�[1m1 failed�[0m;�[0m [Sched] Testing //java/test/org/openqa/selenium/devtools:CdpVersionFinderTest; 17s ... (3 actions, 1 running)
1647:  �[32m[4,506 / 4,621]�[0m 71 / 186 tests, �[31m�[1m1 failed�[0m;�[0m Testing //java/test/org/openqa/selenium:I18nTest-chrome; 6s local ... (3 actions, 2 running)
1648:  �[32m[4,508 / 4,621]�[0m 73 / 186 tests, �[31m�[1m1 failed�[0m;�[0m [Sched] Testing //java/test/org/openqa/selenium:WebElementTest-chrome-beta ... (3 actions, 1 running)
1649:  �[32m[4,508 / 4,621]�[0m 73 / 186 tests, �[31m�[1m1 failed�[0m;�[0m [Sched] Testing //java/test/org/openqa/selenium:WebElementTest-chrome-beta; 12s ... (3 actions, 1 running)
1650:  �[32m[4,508 / 4,621]�[0m 73 / 186 tests, �[31m�[1m1 failed�[0m;�[0m Testing //java/test/org/openqa/selenium/bidi/log:LogInspectorTest-chrome; 20s local ... (3 actions, 2 running)
1651:  �[32m[4,509 / 4,621]�[0m 74 / 186 tests, �[31m�[1m1 failed�[0m;�[0m [Sched] Testing //java/test/org/openqa/selenium:ClickTest-chrome; 22s ... (3 actions, 1 running)
1652:  �[32m[4,509 / 4,621]�[0m 74 / 186 tests, �[31m�[1m1 failed�[0m;�[0m Testing //java/test/org/openqa/selenium:WebElementTest-chrome-beta; 6s local ... (3 actions, 2 running)
1653:  �[32m[4,510 / 4,621]�[0m 75 / 186 tests, �[31m�[1m1 failed�[0m;�[0m [Sched] Testing //java/test/org/openqa/selenium/bidi/input:DefaultMouseTest-chrome; 8s ... (3 actions, 1 running)
1654:  �[32m[4,510 / 4,621]�[0m 75 / 186 tests, �[31m�[1m1 failed�[0m;�[0m [Sched] Testing //java/test/org/openqa/selenium/bidi/input:DefaultMouseTest-chrome; 19s ... (3 actions, 1 running)
1655:  �[32m[4,510 / 4,621]�[0m 75 / 186 tests, �[31m�[1m1 failed�[0m;�[0m Testing //java/test/org/openqa/selenium:ClickTest-chrome; 15s local ... (3 actions, 2 running)
1656:  �[32m[4,511 / 4,621]�[0m 76 / 186 tests, �[31m�[1m1 failed�[0m;�[0m [Sched] Testing //java/test/org/openqa/selenium:ProxySettingTest-chrome-beta; 16s ... (3 actions, 1 running)
1657:  �[32m[4,511 / 4,621]�[0m 76 / 186 tests, �[31m�[1m1 failed�[0m;�[0m [Sched] Testing //java/test/org/openqa/selenium:ProxySettingTest-chrome-beta; 27s ... (3 actions, 1 running)
1658:  �[32m[4,511 / 4,621]�[0m 76 / 186 tests, �[31m�[1m1 failed�[0m;�[0m Testing //java/test/org/openqa/selenium/bidi/input:DefaultMouseTest-chrome; 15s local ... (3 actions, 2 running)
1659:  �[32m[4,512 / 4,621]�[0m 77 / 186 tests, �[31m�[1m1 failed�[0m;�[0m [Sched] Testing //java/test/org/openqa/selenium/grid/router:DistributedCdpTest-chrome; 16s ... (3 actions, 1 running)
1660:  �[32m[4,512 / 4,621]�[0m 77 / 186 tests, �[31m�[1m1 failed�[0m;�[0m Testing //java/test/org/openqa/selenium:ProxySettingTest-chrome-beta; 8s local ... (3 actions, 2 running)
1661:  �[32m[4,513 / 4,621]�[0m 78 / 186 tests, �[31m�[1m1 failed�[0m;�[0m [Sched] Testing //java/test/org/openqa/selenium/grid/router:NewSessionCreationTest-chrome; 9s ... (3 actions, 1 running)
1662:  �[32m[4,513 / 4,621]�[0m 78 / 186 tests, �[31m�[1m1 failed�[0m;�[0m Testing //java/test/org/openqa/selenium/grid/router:DistributedCdpTest-chrome; 11s local ... (3 actions, 2 running)
1663:  �[32m[4,514 / 4,621]�[0m 79 / 186 tests, �[31m�[1m1 failed�[0m;�[0m [Sched] Testing //java/test/org/openqa/selenium/grid/distributor:DrainTest-chrome; 13s ... (3 actions, 1 running)
1664:  �[32m[4,514 / 4,621]�[0m 79 / 186 tests, �[31m�[1m1 failed�[0m;�[0m [Sched] Testing //java/test/org/openqa/selenium/grid/distributor:DrainTest-chrome; 23s ... (3 actions, 1 running)
1665:  �[32m[4,514 / 4,621]�[0m 79 / 186 tests, �[31m�[1m1 failed�[0m;�[0m Testing //java/test/org/openqa/selenium/grid/router:NewSessionCreationTest-chrome; 23s local ... (3 actions, 2 running)
1666:  �[32m[4,515 / 4,621]�[0m 80 / 186 tests, �[31m�[1m1 failed�[0m;�[0m [Sched] Testing //java/test/org/openqa/selenium:UploadTest-chrome-beta; 25s ... (3 actions, 1 running)
1667:  �[32m[4,515 / 4,621]�[0m 80 / 186 tests, �[31m�[1m1 failed�[0m;�[0m [Sched] Testing //java/test/org/openqa/selenium:UploadTest-chrome-beta; 36s ... (3 actions, 1 running)
1668:  �[32m[4,515 / 4,621]�[0m 80 / 186 tests, �[31m�[1m1 failed�[0m;�[0m [Sched] Testing //java/test/org/openqa/selenium:UploadTest-chrome-beta; 69s ... (3 actions, 1 running)
1669:  �[32m[4,515 / 4,621]�[0m 80 / 186 tests, �[31m�[1m1 failed�[0m;�[0m Testing //java/test/org/openqa/selenium/grid/distributor:DrainTest-chrome; 50s local ... (3 actions, 2 running)
1670:  �[32m[4,516 / 4,621]�[0m 81 / 186 tests, �[31m�[1m1 failed�[0m;�[0m [Sched] Testing //java/test/org/openqa/selenium:ClickTest-chrome-beta; 51s ... (3 actions, 1 running)
1671:  �[32m[4,516 / 4,621]�[0m 81 / 186 tests, �[31m�[1m1 failed�[0m;�[0m [Sched] Testing //java/test/org/openqa/selenium:ClickTest-chrome-beta; 62s ... (3 actions, 1 running)
1672:  �[32m[4,516 / 4,621]�[0m 81 / 186 tests, �[31m�[1m1 failed�[0m;�[0m Testing //java/test/org/openqa/selenium:UploadTest-chrome-beta; 19s local ... (3 actions, 2 running)
1673:  �[32m[4,517 / 4,621]�[0m 82 / 186 tests, �[31m�[1m1 failed�[0m;�[0m [Sched] Testing //java/test/org/openqa/selenium/bidi/script:EvaluateParametersTest-chrome; 21s ... (3 actions, 1 running)
1674:  �[32m[4,517 / 4,621]�[0m 82 / 186 tests, �[31m�[1m1 failed�[0m;�[0m Testing //java/test/org/openqa/selenium:ClickTest-chrome-beta; 12s local ... (3 actions, 2 running)
1675:  �[32m[4,518 / 4,621]�[0m 83 / 186 tests, �[31m�[1m1 failed�[0m;�[0m [Sched] Testing //java/test/org/openqa/selenium:SelectElementHandlingTest-chrome; 13s ... (3 actions, 1 running)
1676:  �[32m[4,518 / 4,621]�[0m 83 / 186 tests, �[31m�[1m1 failed�[0m;�[0m Testing //java/test/org/openqa/selenium/bidi/script:EvaluateParametersTest-chrome; 9s local ... (3 actions, 2 running)
1677:  �[32m[4,519 / 4,621]�[0m 84 / 186 tests, �[31m�[1m1 failed�[0m;�[0m [Sched] Testing //java/test/org/openqa/selenium:ClearTest-chrome-beta; 11s ... (3 actions, 1 running)
1678:  �[32m[4,519 / 4,621]�[0m 84 / 186 tests, �[31m�[1m1 failed�[0m;�[0m Testing //java/test/org/openqa/selenium:SelectElementHandlingTest-chrome; 6s local ... (3 actions, 2 running)
1679:  �[32m[4,520 / 4,621]�[0m 85 / 186 tests, �[31m�[1m1 failed�[0m;�[0m [Sched] Testing //java/test/org/openqa/selenium:TypingTest-chrome; 8s ... (3 actions, 1 running)
1680:  �[32m[4,520 / 4,621]�[0m 85 / 186 tests, �[31m�[1m1 failed�[0m;�[0m Testing //java/test/org/openqa/selenium:ClearTest-chrome-beta; 6s local ... (3 actions, 2 running)
1681:  �[32m[4,521 / 4,621]�[0m 86 / 186 tests, �[31m�[1m1 failed�[0m;�[0m [Sched] Testing //java/test/org/openqa/selenium:AlertsTest-chrome-beta; 8s ... (3 actions, 1 running)
1682:  �[32m[4,521 / 4,621]�[0m 86 / 186 tests, �[31m�[1m1 failed�[0m;�[0m [Sched] Testing //java/test/org/openqa/selenium:AlertsTest-chrome-beta; 18s ... (3 actions, 1 running)
1683:  �[32m[4,521 / 4,621]�[0m 86 / 186 tests, �[31m�[1m1 failed�[0m;�[0m Testing //java/test/org/openqa/selenium:TypingTest-chrome; 14s local ... (3 actions, 2 running)
1684:  �[32m[4,522 / 4,621]�[0m 87 / 186 tests, �[31m�[1m1 failed�[0m;�[0m [Sched] Testing //java/test/org/openqa/selenium:ChildrenFindingTest-chrome-beta; 15s ... (3 actions, 1 running)
1685:  �[32m[4,522 / 4,621]�[0m 87 / 186 tests, �[31m�[1m1 failed�[0m;�[0m Testing //java/test/org/openqa/selenium:AlertsTest-chrome-beta; 11s local ... (3 actions, 2 running)
1686:  �[32m[4,523 / 4,621]�[0m 88 / 186 tests, �[31m�[1m1 failed�[0m;�[0m [Sched] Testing //java/test/org/openqa/selenium:PrintPageTest-chrome; 13s ... (3 actions, 1 running)
1687:  �[32m[4,523 / 4,621]�[0m 88 / 186 tests, �[31m�[1m1 failed�[0m;�[0m Testing //java/test/org/openqa/selenium:ChildrenFindingTest-chrome-beta; 9s local ... (3 actions, 2 running)
1688:  �[32m[4,525 / 4,621]�[0m 90 / 186 tests, �[31m�[1m1 failed�[0m;�[0m [Sched] Testing //java/test/org/openqa/selenium:CookieImplementationTest-chrome-beta ... (3 actions, 1 running)
1689:  �[32m[4,525 / 4,621]�[0m 90 / 186 tests, �[31m�[1m1 failed�[0m;�[0m Testing //java/test/org/openqa/selenium:ScriptPinningTest-chrome; 5s local ... (3 actions, 2 running)
1690:  �[32m[4,526 / 4,621]�[0m 91 / 186 tests, �[31m�[1m1 failed�[0m;�[0m [Sched] Testing //java/test/org/openqa/selenium/bidi/input:ReleaseCommandTest-chrome; 6s ... (3 actions, 1 running)
1691:  �[32m[4,526 / 4,621]�[0m 91 / 186 tests, �[31m�[1m1 failed�[0m;�[0m Testing //java/test/org/openqa/selenium:CookieImplementationTest-chrome-beta; 7s local ... (3 actions, 2 running)
1692:  �[32m[4,527 / 4,621]�[0m 92 / 186 tests, �[31m�[1m1 failed�[0m;�[0m [Sched] Testing //java/test/org/openqa/selenium:PageLoadTimeOutTest-chrome; 8s ... (3 actions, 1 running)
1693:  �[32m[4,527 / 4,621]�[0m 92 / 186 tests, �[31m�[1m1 failed�[0m;�[0m Testing //java/test/org/openqa/selenium/bidi/input:ReleaseCommandTest-chrome; 3s local ... (3 actions, 2 running)
1694:  �[32m[4,528 / 4,621]�[0m 93 / 186 tests, �[31m�[1m1 failed�[0m;�[0m [Sched] Testing //java/test/org/openqa/selenium:ScriptPinningTest-chrome-beta; 5s ... (3 actions, 1 running)
1695:  �[32m[4,528 / 4,621]�[0m 93 / 186 tests, �[31m�[1m1 failed�[0m;�[0m [Sched] Testing //java/test/org/openqa/selenium:ScriptPinningTest-chrome-beta; 15s ... (3 actions, 1 running)
1696:  �[32m[4,528 / 4,621]�[0m 93 / 186 tests, �[31m�[1m1 failed�[0m;�[0m [Sched] Testing //java/test/org/openqa/selenium:ScriptPinningTest-chrome-beta; 48s ... (3 actions, 1 running)
1697:  �[32m[4,528 / 4,621]�[0m 93 / 186 tests, �[31m�[1m1 failed�[0m;�[0m Testing //java/test/org/openqa/selenium:PageLoadTimeOutTest-chrome; 49s local ... (3 actions, 2 running)
1698:  �[32m[4,529 / 4,621]�[0m 94 / 186 tests, �[31m�[1m1 failed�[0m;�[0m [Sched] Testing //java/test/org/openqa/selenium/chrome:ChromeOptionsTest; 51s ... (3 actions, 1 running)
1699:  �[32m[4,529 / 4,621]�[0m 94 / 186 tests, �[31m�[1m1 failed�[0m;�[0m Testing //java/test/org/openqa/selenium:ScriptPinningTest-chrome-beta; 4s local ... (3 actions, 2 running)
1700:  �[32m[4,531 / 4,621]�[0m 96 / 186 tests, �[31m�[1m1 failed�[0m;�[0m [Sched] Testing //java/test/org/openqa/selenium:JavascriptEnabledDriverTest-chrome-beta ... (3 actions, 1 running)
1701:  �[32m[4,531 / 4,621]�[0m 96 / 186 tests, �[31m�[1m1 failed�[0m;�[0m [Sched] Testing //java/test/org/openqa/selenium:JavascriptEnabledDriverTest-chrome-beta; 12s ... (3 actions, 1 running)
1702:  �[32m[4,531 / 4,621]�[0m 96 / 186 tests, �[31m�[1m1 failed�[0m;�[0m Testing //java/test/org/openqa/selenium:WebScriptExecuteTest-chrome; 18s local ... (3 actions, 2 running)
1703:  �[32m[4,532 / 4,621]�[0m 97 / 186 tests, �[31m�[1m1 failed�[0m;�[0m [Sched] Testing //java/test/org/openqa/selenium/interactions:DefaultMouseTest; 19s ... (3 actions, 1 running)
1704:  �[32m[4,532 / 4,621]�[0m 97 / 186 tests, �[31m�[1m1 failed�[0m;�[0m Testing //java/test/org/openqa/selenium:JavascriptEnabledDriverTest-chrome-beta; 8s local ... (3 actions, 2 running)
1705:  �[32m[4,533 / 4,621]�[0m 98 / 186 tests, �[31m�[1m1 failed�[0m;�[0m [Sched] Testing //java/test/org/openqa/selenium:ReferrerTest-chrome-beta; 9s ... (3 actions, 1 running)
1706:  �[32m[4,533 / 4,621]�[0m 98 / 186 tests, �[31m�[1m1 failed�[0m;�[0m [Sched] Testing //java/test/org/openqa/selenium:ReferrerTest-chrome-beta; 20s ... (3 actions, 1 running)
1707:  �[32m[4,533 / 4,621]�[0m 98 / 186 tests, �[31m�[1m1 failed�[0m;�[0m Testing //java/test/org/openqa/selenium/interactions:DefaultMouseTest; 16s local ... (3 actions, 2 running)
1708:  �[32m[4,534 / 4,621]�[0m 99 / 186 tests, �[31m�[1m1 failed�[0m;�[0m [Sched] Testing //java/test/org/openqa/selenium:WindowTest-chrome; 18s ... (3 actions, 1 running)
1709:  �[32m[4,534 / 4,621]�[0m 99 / 186 tests, �[31m�[1m1 failed�[0m;�[0m [Sched] Testing //java/test/org/openqa/selenium:WindowTest-chrome; 29s ... (3 actions, 1 running)
1710:  �[32m[4,534 / 4,621]�[0m 99 / 186 tests, �[31m�[1m1 failed�[0m;�[0m Testing //java/test/org/openqa/selenium:ReferrerTest-chrome-beta; 17s local ... (3 actions, 2 running)
1711:  �[32m[4,535 / 4,621]�[0m 100 / 186 tests, �[31m�[1m1 failed�[0m;�[0m [Sched] Testing //java/test/org/openqa/selenium/interactions:PointerInputTest; 19s ... (3 actions, 1 running)
1712:  �[32m[4,535 / 4,621]�[0m 100 / 186 tests, �[31m�[1m1 failed�[0m;�[0m [Sched] Testing //java/test/org/openqa/selenium/interactions:PointerInputTest; 29s ... (3 actions, 1 running)
1713:  �[32m[4,535 / 4,621]�[0m 100 / 186 tests, �[31m�[1m1 failed�[0m;�[0m [Sched] Testing //java/test/org/openqa/selenium/interactions:PointerInputTest; 62s ... (3 actions, 1 running)
1714:  �[32m[4,535 / 4,621]�[0m 100 / 186 tests, �[31m�[1m1 failed�[0m;�[0m [Sched] Testing //java/test/org/openqa/selenium/interactions:PointerInputTest; 126s ... (3 actions, 1 running)
1715:  �[32m[4,535 / 4,621]�[0m 100 / 186 tests, �[31m�[1m1 failed�[0m;�[0m [Sched] Testing //java/test/org/openqa/selenium/interactions:PointerInputTest; 191s ... (3 actions, 1 running)
1716:  �[32m[4,535 / 4,621]�[0m 100 / 186 tests, �[31m�[1m1 failed�[0m;�[0m [Sched] Testing //java/test/org/openqa/selenium/interactions:PointerInputTest; 255s ... (3 actions, 1 running)
1717:  �[32m[4,535 / 4,621]�[0m 100 / 186 tests, �[31m�[1m1 failed�[0m;�[0m [Sched] Testing //java/test/org/openqa/selenium/interactions:PointerInputTest; 321s ... (3 actions, 1 running)
1718:  �[32m[4,535 / 4,621]�[0m 100 / 186 tests, �[31m�[1m1 failed�[0m;�[0m [Sched] Testing //java/test/org/openqa/selenium/interactions:PointerInputTest; 385s ... (3 actions, 1 running)
1719:  �[32m[4,535 / 4,621]�[0m 100 / 186 tests, �[31m�[1m1 failed�[0m;�[0m [Sched] Testing //java/test/org/openqa/selenium/interactions:PointerInputTest; 449s ... (3 actions, 1 running)
1720:  �[32m[4,535 / 4,621]�[0m 100 / 186 tests, �[31m�[1m1 failed�[0m;�[0m [Sched] Testing //java/test/org/openqa/selenium/interactions:PointerInputTest; 513s ... (3 actions, 1 running)
1721:  �[32m[4,535 / 4,621]�[0m 100 / 186 tests, �[31m�[1m1 failed�[0m;�[0m [Sched] Testing //java/test/org/openqa/selenium/interactions:PointerInputTest; 577s ... (3 actions, 1 running)
1722:  �[32m[4,535 / 4,621]�[0m 100 / 186 tests, �[31m�[1m1 failed�[0m;�[0m [Sched] Testing //java/test/org/openqa/selenium/interactions:PointerInputTest; 640s ... (3 actions, 1 running)
1723:  �[32m[4,535 / 4,621]�[0m 100 / 186 tests, �[31m�[1m1 failed�[0m;�[0m [Sched] Testing //java/test/org/openqa/selenium/interactions:PointerInputTest; 705s ... (3 actions, 1 running)
1724:  �[32m[4,535 / 4,621]�[0m 100 / 186 tests, �[31m�[1m1 failed�[0m;�[0m [Sched] Testing //java/test/org/openqa/selenium/interactions:PointerInputTest; 770s ... (3 actions, 1 running)
1725:  �[32m[4,535 / 4,621]�[0m 100 / 186 tests, �[31m�[1m1 failed�[0m;�[0m [Sched] Testing //java/test/org/openqa/selenium/interactions:PointerInputTest; 834s ... (3 actions, 1 running)
1726:  �[32m[4,535 / 4,621]�[0m 100 / 186 tests, �[31m�[1m1 failed�[0m;�[0m [Sched] Testing //java/test/org/openqa/selenium/interactions:PointerInputTest; 898s ... (3 actions, 1 running)
1727:  �[32m[4,535 / 4,621]�[0m 100 / 186 tests, �[31m�[1m1 failed�[0m;�[0m [Sched] Testing //java/test/org/openqa/selenium/interactions:PointerInputTest; 962s ... (3 actions, 1 running)
1728:  �[32m[4,535 / 4,621]�[0m 100 / 186 tests, �[31m�[1m1 failed�[0m;�[0m [Sched] Testing //java/test/org/openqa/selenium/interactions:PointerInputTest; 1026s ... (3 actions, 1 running)
1729:  �[32m[4,535 / 4,621]�[0m 100 / 186 tests, �[31m�[1m1 failed�[0m;�[0m [Sched] Testing //java/test/org/openqa/selenium/interactions:PointerInputTest; 1091s ... (3 actions, 1 running)
1730:  �[32m[4,535 / 4,621]�[0m 100 / 186 tests, �[31m�[1m1 failed�[0m;�[0m [Sched] Testing //java/test/org/openqa/selenium/interactions:PointerInputTest; 1156s ... (3 actions, 1 running)
1731:  �[32m[4,535 / 4,621]�[0m 100 / 186 tests, �[31m�[1m1 failed�[0m;�[0m [Sched] Testing //java/test/org/openqa/selenium/interactions:PointerInputTest; 1220s ... (3 actions, 1 running)
1732:  �[32m[4,535 / 4,621]�[0m 100 / 186 tests, �[31m�[1m1 failed�[0m;�[0m [Sched] Testing //java/test/org/openqa/selenium/interactions:PointerInputTest; 1285s ... (3 actions, 1 running)
1733:  �[32m[4,535 / 4,621]�[0m 100 / 186 tests, �[31m�[1m1 failed�[0m;�[0m Testing //java/test/org/openqa/selenium:WindowTest-chrome; 1299s local ... (3 actions, 2 running)
1734:  �[31m�[1mFAIL: �[0m//java/test/org/openqa/selenium:WindowTest-chrome (see /Users/runner/.bazel/execroot/_main/bazel-out/darwin_arm64-fastbuild/testlogs/java/test/org/openqa/selenium/WindowTest-chrome/test_attempts/attempt_1.log)
1735:  �[32m[4,536 / 4,621]�[0m 101 / 186 tests, �[31m�[1m1 failed�[0m;�[0m Testing //java/test/org/openqa/selenium:WindowTest-chrome; 1301s local ... (3 actions, 2 running)
1736:  �[32m[4,536 / 4,621]�[0m 101 / 186 tests, �[31m�[1m1 failed�[0m;�[0m Testing //java/test/org/openqa/selenium:WindowTest-chrome; 1306s local ... (3 actions, 2 running)
1737:  �[32m[4,537 / 4,621]�[0m 102 / 186 tests, �[31m�[1m1 failed�[0m;�[0m Testing //java/test/org/openqa/selenium:WindowTest-chrome; 1308s local ... (3 actions, 1 running)
1738:  �[32m[4,537 / 4,621]�[0m 102 / 186 tests, �[31m�[1m1 failed�[0m;�[0m Testing //java/test/org/openqa/selenium:WindowTest-chrome; 1319s local ... (3 actions, 1 running)
1739:  �[32m[4,537 / 4,621]�[0m 102 / 186 tests, �[31m�[1m1 failed�[0m;�[0m Testing //java/test/org/openqa/selenium:WindowTest-chrome; 1327s local ... (3 actions, 2 running)
1740:  �[31m�[1mFAIL: �[0m//java/test/org/openqa/selenium:WindowTest-chrome (see /Users/runner/.bazel/execroot/_main/bazel-out/darwin_arm64-fastbuild/testlogs/java/test/org/openqa/selenium/WindowTest-chrome/test_attempts/attempt_2.log)
1741:  �[32m[4,537 / 4,621]�[0m 102 / 186 tests, �[31m�[1m1 failed�[0m;�[0m Testing //java/test/org/openqa/selenium:WindowTest-chrome; 1329s local ... (3 actions, 2 running)
1742:  �[32m[4,537 / 4,621]�[0m 102 / 186 tests, �[31m�[1m1 failed�[0m;�[0m Testing //java/test/org/openqa/selenium:WindowTest-chrome; 1334s local ... (3 actions running)
1743:  �[32m[4,539 / 4,621]�[0m 104 / 186 tests, �[31m�[1m1 failed�[0m;�[0m Testing //java/test/org/openqa/selenium:WindowTest-chrome; 1335s local ... (3 actions, 1 running)
1744:  �[32m[4,539 / 4,621]�[0m 104 / 186 tests, �[31m�[1m1 failed�[0m;�[0m Testing //java/test/org/openqa/selenium:WindowTest-chrome; 1336s local ... (3 actions, 1 running)
1745:  �[32m[4,539 / 4,621]�[0m 104 / 186 tests, �[31m�[1m1 failed�[0m;�[0m Testing //java/test/org/openqa/selenium:WindowTest-chrome; 1347s local ... (3 actions, 1 running)
1746:  �[32m[4,539 / 4,621]�[0m 104 / 186 tests, �[31m�[1m1 failed�[0m;�[0m Testing //java/test/org/openqa/selenium:WindowTest-chrome; 1355s local ... (3 actions, 2 running)
1747:  �[31m�[1mFAIL: �[0m//java/test/org/openqa/selenium:WindowTest-chrome (see /Users/runner/.bazel/execroot/_main/bazel-out/darwin_arm64-fastbuild/testlogs/java/test/org/openqa/selenium/WindowTest-chrome/test.log)
1748:  ==================== Test output for //java/test/org/openqa/selenium:WindowTest-chrome:
1749:  Failures: 4
1750:  �[31m�[1mFAILED: �[0m//java/test/org/openqa/selenium:WindowTest-chrome (Summary)
1751:  1) canFullscreenTheWindowFromIframe() (org.openqa.selenium.WindowTest)
...

1860:  at java.net.http/jdk.internal.net.http.HttpClientImpl.send(HttpClientImpl.java:949)
1861:  at java.net.http/jdk.internal.net.http.HttpClientFacade.send(HttpClientFacade.java:133)
1862:  at org.openqa.selenium.remote.http.jdk.JdkHttpClient.execute0(JdkHttpClient.java:462)
1863:  at org.openqa.selenium.remote.http.AddSeleniumUserAgent.lambda$apply$0(AddSeleniumUserAgent.java:44)
1864:  at org.openqa.selenium.remote.http.Filter.lambda$andFinally$1(Filter.java:55)
1865:  at org.openqa.selenium.remote.http.jdk.JdkHttpClient.lambda$executeAsync$2(JdkHttpClient.java:388)
1866:  at java.base/java.util.concurrent.Executors$RunnableAdapter.call(Executors.java:572)
1867:  at java.base/java.util.concurrent.FutureTask.run(FutureTask.java:317)
1868:  at java.base/java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1144)
1869:  at java.base/java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:642)
1870:  at java.base/java.lang.Thread.run(Thread.java:1583)
1871:  ================================================================================
1872:  ==================== Test output for //java/test/org/openqa/selenium:WindowTest-chrome:
1873:  Failures: 1
1874:  1) canFullscreenTheWindowFromIframe() (org.openqa.selenium.WindowTest)
1875:  org.openqa.selenium.TimeoutException: Expected condition failed: waiting for window size to be (640, 400) but was (980, 637)
1876:  (tried for 10 seconds with 20 milliseconds interval)
1877:  Build info: version: '4.40.0-SNAPSHOT', revision: 'Unknown'
1878:  System info: os.name: 'Mac OS X', os.arch: 'aarch64', os.version: '15.7.3', java.version: '21.0.4'
1879:  Driver info: org.openqa.selenium.chrome.ChromeDriver
1880:  Capabilities {acceptInsecureCerts: true, browserName: chrome, browserVersion: 143.0.7499.192, chrome: {chromedriverVersion: 143.0.7499.192 (be2c1f4fd45..., userDataDir: /var/folders/03/bcr7nd0x5lz...}, fedcm:accounts: true, goog:chromeOptions: {debuggerAddress: localhost:56430}, goog:processID: 21299, networkConnectionEnabled: false, pageLoadStrategy: normal, platformName: mac, proxy: Proxy(), se:cdp: ws://localhost:56430/devtoo..., se:cdpVersion: 143.0.7499.192, setWindowRect: true, strictFileInteractability: false, timeouts: {implicit: 0, pageLoad: 300000, script: 30000}, unhandledPromptBehavior: ignore, webSocketUrl: ws://localhost:17324/sessio..., webauthn:extension:credBlob: true, webauthn:extension:largeBlob: true, webauthn:extension:minPinLength: true, webauthn:extension:prf: true, webauthn:virtualAuthenticators: true}
1881:  Session ID: a856e498d386259a9284d34632ccaef9
1882:  at org.openqa.selenium.support.ui.WebDriverWait.timeoutException(WebDriverWait.java:84)
1883:  at org.openqa.selenium.support.ui.FluentWait.until(FluentWait.java:231)
1884:  at org.openqa.selenium.testing.SeleniumExtension.waitUntil(SeleniumExtension.java:250)
1885:  at org.openqa.selenium.WindowTest.changeSizeTo(WindowTest.java:285)
1886:  at org.openqa.selenium.WindowTest.canFullscreenTheWindowFromIframe(WindowTest.java:268)
1887:  ================================================================================
1888:  ==================== Test output for //java/test/org/openqa/selenium:WindowTest-chrome:
1889:  Failures: 1
1890:  1) canFullscreenTheWindowFromIframe() (org.openqa.selenium.WindowTest)
1891:  org.openqa.selenium.TimeoutException: Expected condition failed: waiting for window size to be (640, 400) but was (980, 637)
1892:  (tried for 10 seconds with 20 milliseconds interval)
1893:  Build info: version: '4.40.0-SNAPSHOT', revision: 'Unknown'
1894:  System info: os.name: 'Mac OS X', os.arch: 'aarch64', os.version: '15.7.3', java.version: '21.0.4'
1895:  Driver info: org.openqa.selenium.chrome.ChromeDriver
1896:  Capabilities {acceptInsecureCerts: true, browserName: chrome, browserVersion: 143.0.7499.192, chrome: {chromedriverVersion: 143.0.7499.192 (be2c1f4fd45..., userDataDir: /var/folders/03/bcr7nd0x5lz...}, fedcm:accounts: true, goog:chromeOptions: {debuggerAddress: localhost:56502}, goog:processID: 21805, networkConnectionEnabled: false, pageLoadStrategy: normal, platformName: mac, proxy: Proxy(), se:cdp: ws://localhost:56502/devtoo..., se:cdpVersion: 143.0.7499.192, setWindowRect: true, strictFileInteractability: false, timeouts: {implicit: 0, pageLoad: 300000, script: 30000}, unhandledPromptBehavior: ignore, webSocketUrl: ws://localhost:31683/sessio..., webauthn:extension:credBlob: true, webauthn:extension:largeBlob: true, webauthn:extension:minPinLength: true, webauthn:extension:prf: true, webauthn:virtualAuthenticators: true}
1897:  Session ID: d892e124d3a391a5ec7d2c61fce25669
1898:  at org.openqa.selenium.support.ui.WebDriverWait.timeoutException(WebDriverWait.java:84)
1899:  at org.openqa.selenium.support.ui.FluentWait.until(FluentWait.java:231)
1900:  at org.openqa.selenium.testing.SeleniumExtension.waitUntil(SeleniumExtension.java:250)
1901:  at org.openqa.selenium.WindowTest.changeSizeTo(WindowTest.java:285)
1902:  at org.openqa.selenium.WindowTest.canFullscreenTheWindowFromIframe(WindowTest.java:268)
1903:  ================================================================================
1904:  �[32m[4,540 / 4,621]�[0m 105 / 186 tests, �[31m�[1m2 failed�[0m;�[0m [Sched] Testing //java/test/org/openqa/selenium:UnexpectedAlertBehaviorTest-chrome; 21s ... (3 actions, 1 running)
1905:  �[32m[4,540 / 4,621]�[0m 105 / 186 tests, �[31m�[1m2 failed�[0m;�[0m Testing //java/test/org/openqa/selenium:SvgDocumentTest-chrome; 4s local ... (3 actions, 2 running)
1906:  �[32m[4,542 / 4,621]�[0m 107 / 186 tests, �[31m�[1m2 failed�[0m;�[0m [Sched] Testing //java/test/org/openqa/selenium:ElementAttributeTest-chrome-beta ... (3 actions, 1 running)
1907:  �[32m[4,542 / 4,621]�[0m 107 / 186 tests, �[31m�[1m2 failed�[0m;�[0m Testing //java/test/org/openqa/selenium:PageLoadingTest-chrome; 9s local ... (3 actions, 2 running)
1908:  �[32m[4,543 / 4,621]�[0m 108 / 186 tests, �[31m�[1m2 failed�[0m;�[0m [Sched] Testing //java/test/org/openqa/selenium/interactions:DefaultWheelTest; 10s ... (3 actions, 1 running)
1909:  �[32m[4,543 / 4,621]�[0m 108 / 186 tests, �[31m�[1m2 failed�[0m;�[0m [Sched] Testing //java/test/org/openqa/selenium/interactions:DefaultWheelTest; 21s ... (3 actions, 1 running)
1910:  �[32m[4,544 / 4,621]�[0m 109 / 186 tests, �[31m�[1m2 failed�[0m;�[0m [Sched] Testing //java/test/org/openqa/selenium:ErrorsTest-chrome-beta; 13s ... (3 actions, 1 running)
1911:  �[32m[4,544 / 4,621]�[0m 109 / 186 tests, �[31m�[1m2 failed�[0m;�[0m Testing //java/test/org/openqa/selenium/interactions:DefaultWheelTest; 7s local ... (3 actions, 2 running)
1912:  �[32m[4,545 / 4,621]�[0m 110 / 186 tests, �[31m�[1m2 failed�[0m;�[0m [Sched] Testing //java/test/org/openqa/selenium/interactions:WheelInputTest; 8s ... (3 actions, 1 running)
1913:  �[32m[4,545 / 4,621]�[0m 110 / 186 tests, �[31m�[1m2 failed�[0m;�[0m Testing //java/test/org/openqa/selenium:ErrorsTest-chrome-beta; 3s local ... (3 actions, 2 running)
1914:  �[32m[4,547 / 4,621]�[0m 112 / 186 tests, �[31m�[1m2 failed�[0m;�[0m [Sched] Testing //java/test/org/openqa/selenium:ImplicitWaitTest-chrome ... (3 actions, 1 running)
1915:  �[32m[4,547 / 4,621]�[0m 112 / 186 tests, �[31m�[1m2 failed�[0m;�[0m Testing //java/test/org/openqa/selenium:WebElementTest-chrome; 4s local ... (3 actions, 2 running)
1916:  �[32m[4,548 / 4,621]�[0m 113 / 186 tests, �[31m�[1m2 failed�[0m;�[0m [Sched] Testing //java/test/org/openqa/selenium:UploadTest-chrome; 5s ... (3 actions, 1 running)
1917:  �[32m[4,548 / 4,621]�[0m 113 / 186 tests, �[31m�[1m2 failed�[0m;�[0m Testing //java/test/org/openqa/selenium:ImplicitWaitTest-chrome; 12s local ... (3 actions, 2 running)
1918:  �[32m[4,549 / 4,621]�[0m 114 / 186 tests, �[31m�[1m2 failed�[0m;�[0m [Sched] Testing //java/test/org/openqa/selenium:FrameSwitchingTest-chrome-beta; 12s ... (3 actions, 1 running)
1919:  �[32m[4,549 / 4,621]�[0m 114 / 186 tests, �[31m�[1m2 failed�[0m;�[0m [Sched] Testing //java/test/org/openqa/selenium:FrameSwitchingTest-chrome-beta; 23s ... (3 actions, 1 running)
1920:  �[32m[4,549 / 4,621]�[0m 114 / 186 tests, �[31m�[1m2 failed�[0m;�[0m Testing //java/test/org/openqa/selenium:UploadTest-chrome; 20s local ... (3 actions, 2 running)
1921:  �[32m[4,550 / 4,621]�[0m 115 / 186 tests, �[31m�[1m2 failed�[0m;�[0m [Sched] Testing //java/test/org/openqa/selenium/federatedcredentialmanagement:FederatedCredentialManagementTest; 22s ... (3 actions, 1 running)
1922:  �[32m[4,550 / 4,621]�[0m 115 / 186 tests, �[31m�[1m2 failed�[0m;�[0m [Sched] Testing //java/test/org/openqa/selenium/federatedcredentialmanagement:FederatedCredentialManagementTest; 32s ... (3 actions, 1 running)
1923:  �[32m[4,550 / 4,621]�[0m 115 / 186 tests, �[31m�[1m2 failed�[0m;�[0m Testing //java/test/org/openqa/selenium:FrameSwitchingTest-chrome-beta; 19s local ... (3 actions, 2 running)
1924:  �[32m[4,552 / 4,621]�[0m 117 / 186 tests, �[31m�[1m2 failed�[0m;�[0m [Sched] Testing //java/test/org/openqa/selenium/remote:RemoteWebDriverScreenshotTest-chrome ... (3 actions, 1 running)
1925:  �[32m[4,552 / 4,621]�[0m 117 / 186 tests, �[31m�[1m2 failed�[0m;�[0m [Sched] Testing //java/test/org/openqa/selenium/remote:RemoteWebDriverScreenshotTest-chrome; 12s ... (3 actions, 1 running)
1926:  �[32m[4,552 / 4,621]�[0m 117 / 186 tests, �[31m�[1m2 failed�[0m;�[0m Testing //java/test/org/openqa/selenium/interactions:DragAndDropTest; 14s local ... (3 actions, 2 running)
1927:  �[32m[4,553 / 4,621]�[0m 118 / 186 tests, �[31m�[1m2 failed�[0m;�[0m [Sched] Testing //java/test/org/openqa/selenium:ExecutingJavascriptTest-chrome; 16s ... (3 actions, 1 running)
1928:  �[32m[4,553 / 4,621]�[0m 118 / 186 tests, �[31m�[1m2 failed�[0m;�[0m Testing //java/test/org/openqa/selenium/remote:RemoteWebDriverScreenshotTest-chrome; 4s local ... (3 actions, 2 running)
1929:  �[32m[4,554 / 4,621]�[0m 119 / 186 tests, �[31m�[1m2 failed�[0m;�[0m [Sched] Testing //java/test/org/openqa/selenium:AuthenticationTest-chrome; 5s ... (3 actions, 1 running)
1930:  �[32m[4,554 / 4,621]�[0m 119 / 186 tests, �[31m�[1m2 failed�[0m;�[0m [Sched] Testing //java/test/org/openqa/selenium:AuthenticationTest-chrome; 16s ... (3 actions, 1 running)
1931:  �[32m[4,554 / 4,621]�[0m 119 / 186 tests, �[31m�[1m2 failed�[0m;�[0m Testing //java/test/org/openqa/selenium:ExecutingJavascriptTest-chrome; 15s local ... (3 actions, 2 running)
1932:  �[32m[4,555 / 4,621]�[0m 120 / 186 tests, �[31m�[1m2 failed�[0m;�[0m [Sched] Testing //java/test/org/openqa/selenium:ExecutingAsyncJavascriptTest-chrome-beta; 16s ... (3 actions, 1 running)
1933:  �[32m[4,555 / 4,621]�[0m 120 / 186 tests, �[31m�[1m2 failed�[0m;�[0m Testing //java/test/org/openqa/selenium:AuthenticationTest-chrome; 4s local ... (3 actions, 2 running)
1934:  �[32m[4,556 / 4,621]�[0m 121 / 186 tests, �[31m�[1m2 failed�[0m;�[0m [Sched] Testing //java/test/org/openqa/selenium:ChildrenFindingTest-chrome; 6s ... (3 actions, 1 running)
1935:  �[32m[4,556 / 4,621]�[0m 121 / 186 tests, �[31m�[1m2 failed�[0m;�[0m [Sched] Testing //java/test/org/openqa/selenium:ChildrenFindingTest-chrome; 17s ... (3 actions, 1 running)
1936:  �[32m[4,556 / 4,621]�[0m 121 / 186 tests, �[31m�[1m2 failed�[0m;�[0m Testing //java/test/org/openqa/selenium:ExecutingAsyncJavascriptTest-chrome-beta; 28s local ... (3 actions, 2 running)
1937:  �[32m[4,557 / 4,621]�[0m 122 / 186 tests, �[31m�[1m2 failed�[0m;�[0m [Sched] Testing //java/test/org/openqa/selenium/bidi/input:DefaultWheelTest-chrome; 29s ... (3 actions, 1 running)
1938:  �[32m[4,557 / 4,621]�[0m 122 / 186 tests, �[31m�[1m2 failed�[0m;�[0m [Sched] Testing //java/test/org/openqa/selenium/bidi/input:DefaultWheelTest-chrome; 40s ... (3 actions, 1 running)
1939:  �[32m[4,557 / 4,621]�[0m 122 / 186 tests, �[31m�[1m2 failed�[0m;�[0m Testing //java/test/org/openqa/selenium:ChildrenFindingTest-chrome; 15s local ... (3 actions, 2 running)
1940:  �[32m[4,558 / 4,621]�[0m 123 / 186 tests, �[31m�[1m2 failed�[0m;�[0m [Sched] Testing //java/test/org/openqa/selenium:AuthenticationTest-chrome-beta; 16s ... (3 actions, 1 running)
1941:  �[32m[4,558 / 4,621]�[0m 123 / 186 tests, �[31m�[1m2 failed�[0m;�[0m [Sched] Testing //java/test/org/openqa/selenium:AuthenticationTest-chrome-beta; 27s ... (3 actions, 1 running)
1942:  �[32m[4,558 / 4,621]�[0m 123 / 186 tests, �[31m�[1m2 failed�[0m;�[0m Testing //java/test/org/openqa/selenium/bidi/input:DefaultWheelTest-chrome; 17s local ... (3 actions, 2 running)
1943:  �[32m[4,559 / 4,621]�[0m 124 / 186 tests, �[31m�[1m2 failed�[0m;�[0m [Sched] Testing //java/test/org/openqa/selenium/bidi/network:NetworkEventsTest-chrome; 19s ... (3 actions, 1 running)
1944:  �[32m[4,559 / 4,621]�[0m 124 / 186 tests, �[31m�[1m2 failed�[0m;�[0m Testing //java/test/org/openqa/selenium:AuthenticationTest-chrome-beta; 4s local ... (3 actions, 2 running)
1945:  �[32m[4,560 / 4,621]�[0m 125 / 186 tests, �[31m�[1m2 failed�[0m;�[0m [Sched] Testing //java/test/org/openqa/selenium/bidi/script:CallFunctionParameterTest-chrome; 5s ... (3 actions, 1 running)
1946:  �[32m[4,560 / 4,621]�[0m 125 / 186 tests, �[31m�[1m2 failed�[0m;�[0m [Sched] Testing //java/test/org/openqa/selenium/bidi/script:CallFunctionParameterTest-chrome; 17s ... (3 actions, 1 running)
1947:  �[32m[4,560 / 4,621]�[0m 125 / 186 tests, �[31m�[1m2 failed�[0m;�[0m Testing //java/test/org/openqa/selenium/bidi/network:NetworkEventsTest-chrome; 18s local ... (3 actions, 2 running)
1948:  �[32m[4,561 / 4,621]�[0m 126 / 186 tests, �[31m�[1m2 failed�[0m;�[0m [Sched] Testing //java/test/org/openqa/selenium:AtomsInjectionTest-chrome-beta; 20s ... (3 actions, 1 running)
1949:  �[32m[4,561 / 4,621]�[0m 126 / 186 tests, �[31m�[1m2 failed�[0m;�[0m [Sched] Testing //java/test/org/openqa/selenium:AtomsInjectionTest-chrome-beta; 30s ... (3 actions, 1 running)
1950:  �[32m[4,561 / 4,621]�[0m 126 / 186 tests, �[31m�[1m2 failed�[0m;�[0m Testing //java/test/org/openqa/selenium/bidi/script:CallFunctionParameterTest-chrome; 30s local ... (3 actions, 2 running)
1951:  �[32m[4,562 / 4,621]�[0m 127 / 186 tests, �[31m�[1m2 failed�[0m;�[0m [Sched] Testing //java/test/org/openqa/selenium/bidi/emulation:SetTimezoneOverrideTest-chrome; 31s ... (3 actions, 1 running)
1952:  �[32m[4,562 / 4,621]�[0m 127 / 186 tests, �[31m�[1m2 failed�[0m;�[0m Testing //java/test/org/openqa/selenium:AtomsInjectionTest-chrome-beta; 4s local ... (3 actions, 2 running)
1953:  �[32m[4,563 / 4,621]�[0m 128 / 186 tests, �[31m�[1m2 failed�[0m;�[0m [Sched] Testing //java/test/org/openqa/selenium/chrome:ChromeDriverServiceCleanupTest; 5s ... (3 actions, 1 running)
1954:  �[32m[4,563 / 4,621]�[0m 128 / 186 tests, �[31m�[1m2 failed�[0m;�[0m Testing //java/test/org/openqa/selenium/bidi/emulation:SetTimezoneOverrideTest-chrome; 8s local ... (3 actions, 2 running)
1955:  �[32m[4,564 / 4,621]�[0m 129 / 186 tests, �[31m�[1m2 failed�[0m;�[0m [Sched] Testing //java/test/org/openqa/selenium/bidi/input:CombinedInputActionsTest-chrome; 9s ... (3 actions, 1 running)
1956:  �[32m[4,564 / 4,621]�[0m 129 / 186 tests, �[31m�[1m2 failed�[0m;�[0m Testing //java/test/org/openqa/selenium/chrome:ChromeDriverServiceCleanupTest; 3s local ... (3 actions, 2 running)
1957:  �[32m[4,565 / 4,621]�[0m 130 / 186 tests, �[31m�[1m2 failed�[0m;�[0m [Sched] Testing //java/test/org/openqa/selenium/bidi/emulation:SetScreenOrientationOverrideTest-chrome; 5s ... (3 actions, 1 running)
1958:  �[32m[4,565 / 4,621]�[0m 130 / 186 tests, �[31m�[1m2 failed�[0m;�[0m [Sched] Testing //java/test/org/openqa/selenium/bidi/emulation:SetScreenOrientationOverrideTest-chrome; 16s ... (3 actions, 1 running)
1959:  �[32m[4,566 / 4,621]�[0m 131 / 186 tests, �[31m�[1m2 failed�[0m;�[0m [Sched] Testing //java/test/org/openqa/selenium:TakesScreenshotTest-chrome-beta; 13s ... (3 actions, 1 running)
1960:  �[32m[4,566 / 4,621]�[0m 131 / 186 tests, �[31m�[1m2 failed�[0m;�[0m Testing //java/test/org/openqa/selenium/bidi/emulation:SetScreenOrientationOverrideTest-chrome; 5s local ... (3 actions, 2 running)
1961:  �[32m[4,567 / 4,621]�[0m 132 / 186 tests, �[31m�[1m2 failed�[0m;�[0m [Sched] Testing //java/test/org/openqa/selenium:StaleElementReferenceTest-chrome; 7s ... (3 actions, 1 running)
1962:  �[32m[4,567 / 4,621]�[0m 132 / 186 tests, �[31m�[1m2 failed�[0m;�[0m Testing //java/test/org/openqa/selenium:TakesScreenshotTest-chrome-beta; 5s local ... (3 actions, 2 running)
1963:  �[32m[4,568 / 4,621]�[0m 133 / 186 tests, �[31m�[1m2 failed�[0m;�[0m [Sched] Testing //java/test/org/openqa/selenium:CookieImplementationTest-chrome; 6s ... (3 actions, 1 running)
1964:  �[32m[4,568 / 4,621]�[0m 133 / 186 tests, �[31m�[1m2 failed�[0m;�[0m Testing //java/test/org/openqa/selenium:StaleElementReferenceTest-chrome; 5s local ... (3 actions, 2 running)
1965:  �[32m[4,569 / 4,621]�[0m 134 / 186 tests, �[31m�[1m2 failed�[0m;�[0m [Sched] Testing //java/test/org/openqa/selenium/chrome:ChromeOptionsFunctionalTest; 6s ... (3 actions, 1 running)
1966:  �[32m[4,569 / 4,621]�[0m 134 / 186 tests, �[31m�[1m2 failed�[0m;�[0m Testing //java/test/org/openqa/selenium:CookieImplementationTest-chrome; 7s local ... (3 actions, 2 running)
1967:  �[32m[4,570 /...

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 C-java Java Bindings Review effort 3/5

Projects

None yet

Development

Successfully merging this pull request may close these issues.

4 participants