Skip to content

[java] update what tests are run on Github#16817

Draft
titusfortner wants to merge 2 commits intotrunkfrom
java_gha
Draft

[java] update what tests are run on Github#16817
titusfortner wants to merge 2 commits intotrunkfrom
java_gha

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, edge, driver) / Browser Tests (macos - edge - driver)

Failed stage: Run Bazel [❌]

Failed test name: //java/test/org/openqa/selenium:WindowTest-edge

Failure summary:

  • The Bazel test run failed because the test target //java/test/org/openqa/selenium:WindowTest-edge
    failed on macOS (darwin_arm64).
  • In org.openqa.selenium.WindowTest, 4 test methods timed out waiting for the window size to become
    (1000, 700), but Edge reported (1000, 684) after 10 seconds:
    - canFullscreenTheWindow() -> called
    from WindowTest.changeSizeTo (WindowTest.java:286) via WindowTest.canFullscreenTheWindow
    (WindowTest.java:236)
    - canFullscreenTheWindowFromFrame() -> WindowTest.java:286 /
    WindowTest.java:253
    - canFullscreenTheWindowFromIframe() -> WindowTest.java:286 /
    WindowTest.java:269
    - testCanMaximizeTheWindow() -> WindowTest.java:286 / WindowTest.java:174
  • The overall CI step exited non-zero due to the failed test run (Build completed, 1 test FAILED, exit
    code 3).
  • A subsequent “rerun failures” step also errored (All specified test targets were excluded by filters
    / No test targets were found, yet testing was requested, exit code 4), but the root cause remains
    the original WindowTest-edge failure.
Relevant error logs:
1:  ##[group]Runner Image Provisioner
2:  Hosted Compute Agent
...

608:  �[32mComputing main repo mapping:�[0m 
609:  �[32mComputing main repo mapping:�[0m 
610:  �[32mComputing main repo mapping:�[0m 
611:  �[32mComputing main repo mapping:�[0m 
612:  �[32mLoading:�[0m 
613:  �[32mLoading:�[0m 2 packages loaded
614:  �[32mAnalyzing:�[0m 113 targets (169 packages loaded, 0 targets configured)
615:  �[32mAnalyzing:�[0m 113 targets (169 packages loaded, 0 targets configured)
616:  �[32mAnalyzing:�[0m 113 targets (240 packages loaded, 20 targets configured)
617:  �[32mAnalyzing:�[0m 113 targets (307 packages loaded, 2250 targets configured)
618:  �[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:
619:  org.seleniumhq.selenium:selenium-api
620:  org.seleniumhq.selenium:selenium-remote-driver
621:  �[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:
622:  com.google.code.findbugs:jsr305
623:  com.google.errorprone:error_prone_annotations
624:  com.google.guava:guava (versions: 30.1.1-jre, 31.0.1-android)
...

790:  java/src/org/openqa/selenium/logging/profiler/HttpProfilerLogEntry.java:30: warning: [removal] EventType in org.openqa.selenium.logging.profiler has been deprecated and marked for removal
791:  super(EventType.HTTP_COMMAND, constructMessage(EventType.HTTP_COMMAND, commandName, isStart));
792:  ^
793:  java/src/org/openqa/selenium/logging/profiler/HttpProfilerLogEntry.java:33: warning: [removal] EventType in org.openqa.selenium.logging.profiler has been deprecated and marked for removal
794:  private static String constructMessage(EventType eventType, String commandName, boolean isStart) {
795:  ^
796:  �[32m[2,334 / 4,128]�[0m Action java/src/org/openqa/selenium/core-module-module-info.jar [for tool]; 0s darwin-sandbox ... (3 actions running)
797:  �[32m[2,342 / 4,130]�[0m Compiling Rust rlib syn v2.0.98 (96 files) [for tool]; 0s darwin-sandbox ... (3 actions, 2 running)
798:  �[32m[2,352 / 4,130]�[0m Compiling Rust rlib syn v2.0.98 (96 files) [for tool]; 1s darwin-sandbox ... (4 actions, 3 running)
799:  �[32m[2,357 / 4,130]�[0m Compiling Rust rlib syn v2.0.98 (96 files) [for tool]; 2s darwin-sandbox ... (3 actions running)
800:  �[32m[2,358 / 4,130]�[0m Compiling Rust rlib syn v2.0.98 (96 files) [for tool]; 3s darwin-sandbox ... (3 actions running)
801:  �[32m[2,364 / 4,130]�[0m Compiling Rust rlib syn v2.0.98 (96 files) [for tool]; 4s darwin-sandbox ... (3 actions running)
802:  �[32m[2,378 / 4,130]�[0m Compiling Rust rlib syn v2.0.98 (96 files) [for tool]; 5s darwin-sandbox ... (3 actions running)
803:  �[32m[2,379 / 4,130]�[0m Compiling Rust rlib syn v2.0.98 (96 files) [for tool]; 6s darwin-sandbox ... (3 actions running)
804:  �[32m[2,390 / 4,130]�[0m Compiling Rust rlib syn v2.0.98 (96 files) [for tool]; 7s darwin-sandbox ... (3 actions running)
805:  �[32m[2,397 / 4,130]�[0m Compiling Rust proc-macro thiserror_impl v1.0.69 (10 files) [for tool]; 0s darwin-sandbox ... (3 actions running)
806:  �[32m[2,402 / 4,130]�[0m Compiling Rust proc-macro thiserror_impl v1.0.69 (10 files) [for tool]; 1s darwin-sandbox ... (3 actions running)
807:  �[32m[2,406 / 4,130]�[0m Compiling Rust proc-macro thiserror_impl v1.0.69 (10 files) [for tool]; 2s darwin-sandbox ... (3 actions running)
808:  �[32m[2,408 / 4,130]�[0m Compiling Rust proc-macro thiserror_impl v1.0.69 (10 files) [for tool]; 3s darwin-sandbox ... (3 actions running)
809:  �[32m[2,417 / 4,130]�[0m Compiling absl/time/clock.cc [for tool]; 1s darwin-sandbox ... (3 actions running)
...

1227:  java/src/org/openqa/selenium/remote/RemoteWebDriver.java:244: warning: [removal] LocalLogs in org.openqa.selenium.logging has been deprecated and marked for removal
1228:  LocalLogs performanceLogger = LocalLogs.getStoringLoggerInstance(logTypesToIgnore);
1229:  ^
1230:  java/src/org/openqa/selenium/remote/RemoteWebDriver.java:245: warning: [removal] LocalLogs in org.openqa.selenium.logging has been deprecated and marked for removal
1231:  LocalLogs clientLogs =
1232:  ^
1233:  java/src/org/openqa/selenium/remote/RemoteWebDriver.java:246: warning: [removal] LocalLogs in org.openqa.selenium.logging has been deprecated and marked for removal
1234:  LocalLogs.getHandlerBasedLoggerInstance(LoggingHandler.getInstance(), logTypesToIgnore);
1235:  ^
1236:  java/src/org/openqa/selenium/remote/RemoteWebDriver.java:246: warning: [removal] LoggingHandler in org.openqa.selenium.logging has been deprecated and marked for removal
1237:  LocalLogs.getHandlerBasedLoggerInstance(LoggingHandler.getInstance(), logTypesToIgnore);
1238:  ^
1239:  java/src/org/openqa/selenium/remote/RemoteWebDriver.java:247: warning: [removal] LocalLogs in org.openqa.selenium.logging has been deprecated and marked for removal
1240:  localLogs = LocalLogs.getCombinedLogsHolder(clientLogs, performanceLogger);
1241:  ^
1242:  java/src/org/openqa/selenium/remote/ErrorHandler.java:46: warning: [removal] ErrorCodes in org.openqa.selenium.remote has been deprecated and marked for removal
1243:  private final ErrorCodes errorCodes;
1244:  ^
1245:  java/src/org/openqa/selenium/remote/ErrorHandler.java:60: warning: [removal] ErrorCodes in org.openqa.selenium.remote has been deprecated and marked for removal
1246:  this.errorCodes = new ErrorCodes();
1247:  ^
1248:  java/src/org/openqa/selenium/remote/ErrorHandler.java:68: warning: [removal] ErrorCodes in org.openqa.selenium.remote has been deprecated and marked for removal
1249:  public ErrorHandler(ErrorCodes codes, boolean includeServerErrors) {
1250:  ^
1251:  java/src/org/openqa/selenium/remote/Response.java:100: warning: [removal] ErrorCodes in org.openqa.selenium.remote has been deprecated and marked for removal
1252:  ErrorCodes errorCodes = new ErrorCodes();
1253:  ^
1254:  java/src/org/openqa/selenium/remote/Response.java:100: warning: [removal] ErrorCodes in org.openqa.selenium.remote has been deprecated and marked for removal
1255:  ErrorCodes errorCodes = new ErrorCodes();
1256:  ^
1257:  java/src/org/openqa/selenium/remote/ProtocolHandshake.java:181: warning: [removal] ErrorCodes in org.openqa.selenium.remote has been deprecated and marked for removal
1258:  response.setStatus(ErrorCodes.SUCCESS);
1259:  ^
1260:  java/src/org/openqa/selenium/remote/ProtocolHandshake.java:182: warning: [removal] ErrorCodes in org.openqa.selenium.remote has been deprecated and marked for removal
1261:  response.setState(ErrorCodes.SUCCESS_STRING);
1262:  ^
...

1314:  java/src/org/openqa/selenium/remote/RemoteLogs.java:98: warning: [removal] SERVER in LogType has been deprecated and marked for removal
1315:  if (LogType.SERVER.equals(logType)) {
1316:  ^
1317:  java/src/org/openqa/selenium/remote/TracedCommandExecutor.java:28: warning: [removal] NeedsLocalLogs in org.openqa.selenium.logging has been deprecated and marked for removal
1318:  public class TracedCommandExecutor implements CommandExecutor, NeedsLocalLogs {
1319:  ^
1320:  java/src/org/openqa/selenium/remote/TracedCommandExecutor.java:63: warning: [removal] LocalLogs in org.openqa.selenium.logging has been deprecated and marked for removal
1321:  public void setLocalLogs(LocalLogs logs) {
1322:  ^
1323:  java/src/org/openqa/selenium/remote/TracedCommandExecutor.java:64: warning: [removal] NeedsLocalLogs in org.openqa.selenium.logging has been deprecated and marked for removal
1324:  if (delegate instanceof NeedsLocalLogs) {
1325:  ^
1326:  java/src/org/openqa/selenium/remote/TracedCommandExecutor.java:65: warning: [removal] NeedsLocalLogs in org.openqa.selenium.logging has been deprecated and marked for removal
1327:  ((NeedsLocalLogs) delegate).setLocalLogs(logs);
1328:  ^
1329:  java/src/org/openqa/selenium/remote/W3CHandshakeResponse.java:53: warning: [removal] ErrorCodes in org.openqa.selenium.remote has been deprecated and marked for removal
1330:  new ErrorCodes().toStatus((String) rawError, Optional.of(tuple.getStatusCode())));
1331:  ^
1332:  java/src/org/openqa/selenium/remote/W3CHandshakeResponse.java:56: warning: [removal] ErrorCodes in org.openqa.selenium.remote has been deprecated and marked for removal
1333:  new ErrorCodes().getExceptionType((String) rawError);
1334:  ^
1335:  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
1336:  private final ErrorCodes errorCodes = new ErrorCodes();
1337:  ^
1338:  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
1339:  private final ErrorCodes errorCodes = new ErrorCodes();
1340:  ^
1341:  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
1342:  int status = response.getStatus() == ErrorCodes.SUCCESS ? HTTP_OK : HTTP_INTERNAL_ERROR;
1343:  ^
1344:  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
1345:  response.setStatus(ErrorCodes.UNKNOWN_COMMAND);
1346:  ^
1347:  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
1348:  response.setStatus(ErrorCodes.UNHANDLED_ERROR);
1349:  ^
1350:  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
1351:  response.setStatus(ErrorCodes.SUCCESS);
1352:  ^
1353:  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
1354:  response.setState(errorCodes.toState(ErrorCodes.SUCCESS));
1355:  ^
1356:  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
1357:  response.setState(errorCodes.toState(ErrorCodes.SUCCESS));
1358:  ^
1359:  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
1360:  private final ErrorCodes errorCodes = new ErrorCodes();
1361:  ^
1362:  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
1363:  private final ErrorCodes errorCodes = new ErrorCodes();
1364:  ^
1365:  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
1366:  response.setStatus(ErrorCodes.UNKNOWN_COMMAND);
1367:  ^
1368:  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
1369:  response.setStatus(ErrorCodes.UNHANDLED_ERROR);
1370:  ^
1371:  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
1372:  response.setStatus(ErrorCodes.SUCCESS);
1373:  ^
...

1499:  �[32m[4,168 / 4,243]�[0m 38 / 113 tests;�[0m [Sched] Testing //java/test/org/openqa/selenium:WindowTest-edge; 13s ... (3 actions, 1 running)
1500:  �[32m[4,168 / 4,243]�[0m 38 / 113 tests;�[0m Testing //java/test/org/openqa/selenium/federatedcredentialmanagement:FederatedCredentialManagementTest-edge; 9s local ... (3 actions, 2 running)
1501:  �[32m[4,169 / 4,243]�[0m 39 / 113 tests;�[0m [Sched] Testing //java/test/org/openqa/selenium:AlertsTest-edge; 10s ... (3 actions, 1 running)
1502:  �[32m[4,169 / 4,243]�[0m 39 / 113 tests;�[0m [Sched] Testing //java/test/org/openqa/selenium:AlertsTest-edge; 22s ... (3 actions, 1 running)
1503:  �[32m[4,169 / 4,243]�[0m 39 / 113 tests;�[0m [Sched] Testing //java/test/org/openqa/selenium:AlertsTest-edge; 55s ... (3 actions, 1 running)
1504:  �[32m[4,169 / 4,243]�[0m 39 / 113 tests;�[0m Testing //java/test/org/openqa/selenium:WindowTest-edge; 50s local ... (3 actions, 2 running)
1505:  �[31m�[1mFAIL: �[0m//java/test/org/openqa/selenium:WindowTest-edge (see /Users/runner/.bazel/execroot/_main/bazel-out/darwin_arm64-fastbuild/testlogs/java/test/org/openqa/selenium/WindowTest-edge/test_attempts/attempt_1.log)
1506:  �[32m[4,169 / 4,243]�[0m 39 / 113 tests;�[0m Testing //java/test/org/openqa/selenium:WindowTest-edge; 51s local ... (3 actions, 2 running)
1507:  �[32m[4,169 / 4,243]�[0m 39 / 113 tests;�[0m Testing //java/test/org/openqa/selenium:WindowTest-edge; 63s local ... (3 actions running)
1508:  �[32m[4,170 / 4,243]�[0m 40 / 113 tests;�[0m Testing //java/test/org/openqa/selenium:WindowTest-edge; 64s local ... (3 actions, 2 running)
1509:  �[32m[4,171 / 4,243]�[0m 41 / 113 tests;�[0m Testing //java/test/org/openqa/selenium:WindowTest-edge; 66s local ... (3 actions, 1 running)
1510:  �[32m[4,171 / 4,243]�[0m 41 / 113 tests;�[0m Testing //java/test/org/openqa/selenium:WindowTest-edge; 75s local ... (3 actions, 1 running)
1511:  �[32m[4,171 / 4,243]�[0m 41 / 113 tests;�[0m Testing //java/test/org/openqa/selenium:WindowTest-edge; 107s local ... (3 actions, 1 running)
1512:  �[32m[4,171 / 4,243]�[0m 41 / 113 tests;�[0m Testing //java/test/org/openqa/selenium:WindowTest-edge; 114s local ... (3 actions, 2 running)
1513:  �[31m�[1mFAIL: �[0m//java/test/org/openqa/selenium:WindowTest-edge (see /Users/runner/.bazel/execroot/_main/bazel-out/darwin_arm64-fastbuild/testlogs/java/test/org/openqa/selenium/WindowTest-edge/test.log)
1514:  �[31m�[1mFAILED: �[0m//java/test/org/openqa/selenium:WindowTest-edge (Summary)
1515:  /Users/runner/.bazel/execroot/_main/bazel-out/darwin_arm64-fastbuild/testlogs/java/test/org/openqa/selenium/WindowTest-edge/test.log
1516:  /Users/runner/.bazel/execroot/_main/bazel-out/darwin_arm64-fastbuild/testlogs/java/test/org/openqa/selenium/WindowTest-edge/test_attempts/attempt_1.log
1517:  �[32mINFO: �[0mFrom Testing //java/test/org/openqa/selenium:WindowTest-edge:
1518:  ==================== Test output for //java/test/org/openqa/selenium:WindowTest-edge:
1519:  Failures: 4
1520:  1) canFullscreenTheWindow() (org.openqa.selenium.WindowTest)
1521:  org.openqa.selenium.TimeoutException: Expected condition failed: waiting for window size to be (1000, 700) but was (1000, 684)
1522:  (tried for 10 seconds with 20 milliseconds interval)
1523:  Build info: version: '4.40.0-SNAPSHOT', revision: 'Unknown'
1524:  System info: os.name: 'Mac OS X', os.arch: 'aarch64', os.version: '15.7.3', java.version: '21.0.4'
1525:  Driver info: org.openqa.selenium.edge.EdgeDriver
1526:  Capabilities {acceptInsecureCerts: true, browserName: MicrosoftEdge, browserVersion: 143.0.3650.139, fedcm:accounts: true, goog:processID: 28947, ms:edgeOptions: {debuggerAddress: localhost:51626}, msedge: {msedgedriverVersion: 143.0.3650.139 (30ed6d0ef65..., userDataDir: /var/folders/kg/7q73ww8s3ll...}, networkConnectionEnabled: false, pageLoadStrategy: normal, platformName: mac, proxy: Proxy(), se:cdp: ws://localhost:51626/devtoo..., se:cdpVersion: 143.0.3650.139, setWindowRect: true, strictFileInteractability: false, timeouts: {implicit: 0, pageLoad: 300000, script: 30000}, unhandledPromptBehavior: ignore, webSocketUrl: ws://localhost:33192/sessio..., webauthn:extension:credBlob: true, webauthn:extension:largeBlob: true, webauthn:extension:minPinLength: true, webauthn:extension:prf: true, webauthn:virtualAuthenticators: true}
1527:  Session ID: 2a1e50bac154310248d86e37dc6cecd0
1528:  at org.openqa.selenium.support.ui.WebDriverWait.timeoutException(WebDriverWait.java:84)
1529:  at org.openqa.selenium.support.ui.FluentWait.until(FluentWait.java:231)
1530:  at org.openqa.selenium.testing.SeleniumExtension.waitUntil(SeleniumExtension.java:251)
1531:  at org.openqa.selenium.WindowTest.changeSizeTo(WindowTest.java:286)
1532:  at org.openqa.selenium.WindowTest.canFullscreenTheWindow(WindowTest.java:236)
1533:  2) canFullscreenTheWindowFromFrame() (org.openqa.selenium.WindowTest)
1534:  org.openqa.selenium.TimeoutException: Expected condition failed: waiting for window size to be (1000, 700) but was (1000, 684)
1535:  (tried for 10 seconds with 20 milliseconds interval)
1536:  Build info: version: '4.40.0-SNAPSHOT', revision: 'Unknown'
1537:  System info: os.name: 'Mac OS X', os.arch: 'aarch64', os.version: '15.7.3', java.version: '21.0.4'
1538:  Driver info: org.openqa.selenium.edge.EdgeDriver
1539:  Capabilities {acceptInsecureCerts: true, browserName: MicrosoftEdge, browserVersion: 143.0.3650.139, fedcm:accounts: true, goog:processID: 28947, ms:edgeOptions: {debuggerAddress: localhost:51626}, msedge: {msedgedriverVersion: 143.0.3650.139 (30ed6d0ef65..., userDataDir: /var/folders/kg/7q73ww8s3ll...}, networkConnectionEnabled: false, pageLoadStrategy: normal, platformName: mac, proxy: Proxy(), se:cdp: ws://localhost:51626/devtoo..., se:cdpVersion: 143.0.3650.139, setWindowRect: true, strictFileInteractability: false, timeouts: {implicit: 0, pageLoad: 300000, script: 30000}, unhandledPromptBehavior: ignore, webSocketUrl: ws://localhost:33192/sessio..., webauthn:extension:credBlob: true, webauthn:extension:largeBlob: true, webauthn:extension:minPinLength: true, webauthn:extension:prf: true, webauthn:virtualAuthenticators: true}
1540:  Session ID: 2a1e50bac154310248d86e37dc6cecd0
1541:  at org.openqa.selenium.support.ui.WebDriverWait.timeoutException(WebDriverWait.java:84)
1542:  at org.openqa.selenium.support.ui.FluentWait.until(FluentWait.java:231)
1543:  at org.openqa.selenium.testing.SeleniumExtension.waitUntil(SeleniumExtension.java:251)
1544:  at org.openqa.selenium.WindowTest.changeSizeTo(WindowTest.java:286)
1545:  at org.openqa.selenium.WindowTest.canFullscreenTheWindowFromFrame(WindowTest.java:253)
1546:  3) canFullscreenTheWindowFromIframe() (org.openqa.selenium.WindowTest)
1547:  org.openqa.selenium.TimeoutException: Expected condition failed: waiting for window size to be (1000, 700) but was (1000, 684)
1548:  (tried for 10 seconds with 20 milliseconds interval)
1549:  Build info: version: '4.40.0-SNAPSHOT', revision: 'Unknown'
1550:  System info: os.name: 'Mac OS X', os.arch: 'aarch64', os.version: '15.7.3', java.version: '21.0.4'
1551:  Driver info: org.openqa.selenium.edge.EdgeDriver
1552:  Capabilities {acceptInsecureCerts: true, browserName: MicrosoftEdge, browserVersion: 143.0.3650.139, fedcm:accounts: true, goog:processID: 28947, ms:edgeOptions: {debuggerAddress: localhost:51626}, msedge: {msedgedriverVersion: 143.0.3650.139 (30ed6d0ef65..., userDataDir: /var/folders/kg/7q73ww8s3ll...}, networkConnectionEnabled: false, pageLoadStrategy: normal, platformName: mac, proxy: Proxy(), se:cdp: ws://localhost:51626/devtoo..., se:cdpVersion: 143.0.3650.139, setWindowRect: true, strictFileInteractability: false, timeouts: {implicit: 0, pageLoad: 300000, script: 30000}, unhandledPromptBehavior: ignore, webSocketUrl: ws://localhost:33192/sessio..., webauthn:extension:credBlob: true, webauthn:extension:largeBlob: true, webauthn:extension:minPinLength: true, webauthn:extension:prf: true, webauthn:virtualAuthenticators: true}
1553:  Session ID: 2a1e50bac154310248d86e37dc6cecd0
1554:  at org.openqa.selenium.support.ui.WebDriverWait.timeoutException(WebDriverWait.java:84)
1555:  at org.openqa.selenium.support.ui.FluentWait.until(FluentWait.java:231)
1556:  at org.openqa.selenium.testing.SeleniumExtension.waitUntil(SeleniumExtension.java:251)
1557:  at org.openqa.selenium.WindowTest.changeSizeTo(WindowTest.java:286)
1558:  at org.openqa.selenium.WindowTest.canFullscreenTheWindowFromIframe(WindowTest.java:269)
1559:  4) testCanMaximizeTheWindow() (org.openqa.selenium.WindowTest)
1560:  org.openqa.selenium.TimeoutException: Expected condition failed: waiting for window size to be (1000, 700) but was (1000, 684)
1561:  (tried for 10 seconds with 20 milliseconds interval)
1562:  Build info: version: '4.40.0-SNAPSHOT', revision: 'Unknown'
1563:  System info: os.name: 'Mac OS X', os.arch: 'aarch64', os.version: '15.7.3', java.version: '21.0.4'
1564:  Driver info: org.openqa.selenium.edge.EdgeDriver
1565:  Capabilities {acceptInsecureCerts: true, browserName: MicrosoftEdge, browserVersion: 143.0.3650.139, fedcm:accounts: true, goog:processID: 28947, ms:edgeOptions: {debuggerAddress: localhost:51626}, msedge: {msedgedriverVersion: 143.0.3650.139 (30ed6d0ef65..., userDataDir: /var/folders/kg/7q73ww8s3ll...}, networkConnectionEnabled: false, pageLoadStrategy: normal, platformName: mac, proxy: Proxy(), se:cdp: ws://localhost:51626/devtoo..., se:cdpVersion: 143.0.3650.139, setWindowRect: true, strictFileInteractability: false, timeouts: {implicit: 0, pageLoad: 300000, script: 30000}, unhandledPromptBehavior: ignore, webSocketUrl: ws://localhost:33192/sessio..., webauthn:extension:credBlob: true, webauthn:extension:largeBlob: true, webauthn:extension:minPinLength: true, webauthn:extension:prf: true, webauthn:virtualAuthenticators: true}
1566:  Session ID: 2a1e50bac154310248d86e37dc6cecd0
1567:  at org.openqa.selenium.support.ui.WebDriverWait.timeoutException(WebDriverWait.java:84)
1568:  at org.openqa.selenium.support.ui.FluentWait.until(FluentWait.java:231)
1569:  at org.openqa.selenium.testing.SeleniumExtension.waitUntil(SeleniumExtension.java:251)
1570:  at org.openqa.selenium.WindowTest.changeSizeTo(WindowTest.java:286)
1571:  at org.openqa.selenium.WindowTest.testCanMaximizeTheWindow(WindowTest.java:174)
1572:  ================================================================================
1573:  ==================== Test output for //java/test/org/openqa/selenium:WindowTest-edge:
1574:  Failures: 4
1575:  1) canFullscreenTheWindow() (org.openqa.selenium.WindowTest)
1576:  org.openqa.selenium.TimeoutException: Expected condition failed: waiting for window size to be (1000, 700) but was (1000, 684)
1577:  (tried for 10 seconds with 20 milliseconds interval)
1578:  Build info: version: '4.40.0-SNAPSHOT', revision: 'Unknown'
1579:  System info: os.name: 'Mac OS X', os.arch: 'aarch64', os.version: '15.7.3', java.version: '21.0.4'
1580:  Driver info: org.openqa.selenium.edge.EdgeDriver
1581:  Capabilities {acceptInsecureCerts: true, browserName: MicrosoftEdge, browserVersion: 143.0.3650.139, fedcm:accounts: true, goog:processID: 30305, ms:edgeOptions: {debuggerAddress: localhost:51723}, msedge: {msedgedriverVersion: 143.0.3650.139 (30ed6d0ef65..., userDataDir: /var/folders/kg/7q73ww8s3ll...}, networkConnectionEnabled: false, pageLoadStrategy: normal, platformName: mac, proxy: Proxy(), se:cdp: ws://localhost:51723/devtoo..., se:cdpVersion: 143.0.3650.139, setWindowRect: true, strictFileInteractability: false, timeouts: {implicit: 0, pageLoad: 300000, script: 30000}, unhandledPromptBehavior: ignore, webSocketUrl: ws://localhost:40862/sessio..., webauthn:extension:credBlob: true, webauthn:extension:largeBlob: true, webauthn:extension:minPinLength: true, webauthn:extension:prf: true, webauthn:virtualAuthenticators: true}
1582:  Session ID: bb2c9e5c13bc19d865d39605fe03720a
1583:  at org.openqa.selenium.support.ui.WebDriverWait.timeoutException(WebDriverWait.java:84)
1584:  at org.openqa.selenium.support.ui.FluentWait.until(FluentWait.java:231)
1585:  at org.openqa.selenium.testing.SeleniumExtension.waitUntil(SeleniumExtension.java:251)
1586:  at org.openqa.selenium.WindowTest.changeSizeTo(WindowTest.java:286)
1587:  at org.openqa.selenium.WindowTest.canFullscreenTheWindow(WindowTest.java:236)
1588:  2) canFullscreenTheWindowFromFrame() (org.openqa.selenium.WindowTest)
1589:  org.openqa.selenium.TimeoutException: Expected condition failed: waiting for window size to be (1000, 700) but was (1000, 684)
1590:  (tried for 10 seconds with 20 milliseconds interval)
1591:  Build info: version: '4.40.0-SNAPSHOT', revision: 'Unknown'
1592:  System info: os.name: 'Mac OS X', os.arch: 'aarch64', os.version: '15.7.3', java.version: '21.0.4'
1593:  Driver info: org.openqa.selenium.edge.EdgeDriver
1594:  Capabilities {acceptInsecureCerts: true, browserName: MicrosoftEdge, browserVersion: 143.0.3650.139, fedcm:accounts: true, goog:processID: 30305, ms:edgeOptions: {debuggerAddress: localhost:51723}, msedge: {msedgedriverVersion: 143.0.3650.139 (30ed6d0ef65..., userDataDir: /var/folders/kg/7q73ww8s3ll...}, networkConnectionEnabled: false, pageLoadStrategy: normal, platformName: mac, proxy: Proxy(), se:cdp: ws://localhost:51723/devtoo..., se:cdpVersion: 143.0.3650.139, setWindowRect: true, strictFileInteractability: false, timeouts: {implicit: 0, pageLoad: 300000, script: 30000}, unhandledPromptBehavior: ignore, webSocketUrl: ws://localhost:40862/sessio..., webauthn:extension:credBlob: true, webauthn:extension:largeBlob: true, webauthn:extension:minPinLength: true, webauthn:extension:prf: true, webauthn:virtualAuthenticators: true}
1595:  Session ID: bb2c9e5c13bc19d865d39605fe03720a
1596:  at org.openqa.selenium.support.ui.WebDriverWait.timeoutException(WebDriverWait.java:84)
1597:  at org.openqa.selenium.support.ui.FluentWait.until(FluentWait.java:231)
1598:  at org.openqa.selenium.testing.SeleniumExtension.waitUntil(SeleniumExtension.java:251)
1599:  at org.openqa.selenium.WindowTest.changeSizeTo(WindowTest.java:286)
1600:  at org.openqa.selenium.WindowTest.canFullscreenTheWindowFromFrame(WindowTest.java:253)
1601:  3) canFullscreenTheWindowFromIframe() (org.openqa.selenium.WindowTest)
1602:  org.openqa.selenium.TimeoutException: Expected condition failed: waiting for window size to be (1000, 700) but was (1000, 684)
1603:  (tried for 10 seconds with 20 milliseconds interval)
1604:  Build info: version: '4.40.0-SNAPSHOT', revision: 'Unknown'
1605:  System info: os.name: 'Mac OS X', os.arch: 'aarch64', os.version: '15.7.3', java.version: '21.0.4'
1606:  Driver info: org.openqa.selenium.edge.EdgeDriver
1607:  Capabilities {acceptInsecureCerts: true, browserName: MicrosoftEdge, browserVersion: 143.0.3650.139, fedcm:accounts: true, goog:processID: 30305, ms:edgeOptions: {debuggerAddress: localhost:51723}, msedge: {msedgedriverVersion: 143.0.3650.139 (30ed6d0ef65..., userDataDir: /var/folders/kg/7q73ww8s3ll...}, networkConnectionEnabled: false, pageLoadStrategy: normal, platformName: mac, proxy: Proxy(), se:cdp: ws://localhost:51723/devtoo..., se:cdpVersion: 143.0.3650.139, setWindowRect: true, strictFileInteractability: false, timeouts: {implicit: 0, pageLoad: 300000, script: 30000}, unhandledPromptBehavior: ignore, webSocketUrl: ws://localhost:40862/sessio..., webauthn:extension:credBlob: true, webauthn:extension:largeBlob: true, webauthn:extension:minPinLength: true, webauthn:extension:prf: true, webauthn:virtualAuthenticators: true}
1608:  Session ID: bb2c9e5c13bc19d865d39605fe03720a
1609:  at org.openqa.selenium.support.ui.WebDriverWait.timeoutException(WebDriverWait.java:84)
1610:  at org.openqa.selenium.support.ui.FluentWait.until(FluentWait.java:231)
1611:  at org.openqa.selenium.testing.SeleniumExtension.waitUntil(SeleniumExtension.java:251)
1612:  at org.openqa.selenium.WindowTest.changeSizeTo(WindowTest.java:286)
1613:  at org.openqa.selenium.WindowTest.canFullscreenTheWindowFromIframe(WindowTest.java:269)
1614:  4) testCanMaximizeTheWindow() (org.openqa.selenium.WindowTest)
1615:  org.openqa.selenium.TimeoutException: Expected condition failed: waiting for window size to be (1000, 700) but was (1000, 684)
1616:  (tried for 10 seconds with 20 milliseconds interval)
1617:  Build info: version: '4.40.0-SNAPSHOT', revision: 'Unknown'
1618:  System info: os.name: 'Mac OS X', os.arch: 'aarch64', os.version: '15.7.3', java.version: '21.0.4'
1619:  Driver info: org.openqa.selenium.edge.EdgeDriver
1620:  Capabilities {acceptInsecureCerts: true, browserName: MicrosoftEdge, browserVersion: 143.0.3650.139, fedcm:accounts: true, goog:processID: 30305, ms:edgeOptions: {debuggerAddress: localhost:51723}, msedge: {msedgedriverVersion: 143.0.3650.139 (30ed6d0ef65..., userDataDir: /var/folders/kg/7q73ww8s3ll...}, networkConnectionEnabled: false, pageLoadStrategy: normal, platformName: mac, proxy: Proxy(), se:cdp: ws://localhost:51723/devtoo..., se:cdpVersion: 143.0.3650.139, setWindowRect: true, strictFileInteractability: false, timeouts: {implicit: 0, pageLoad: 300000, script: 30000}, unhandledPromptBehavior: ignore, webSocketUrl: ws://localhost:40862/sessio..., webauthn:extension:credBlob: true, webauthn:extension:largeBlob: true, webauthn:extension:minPinLength: true, webauthn:extension:prf: true, webauthn:virtualAuthenticators: true}
1621:  Session ID: bb2c9e5c13bc19d865d39605fe03720a
1622:  at org.openqa.selenium.support.ui.WebDriverWait.timeoutException(WebDriverWait.java:84)
1623:  at org.openqa.selenium.support.ui.FluentWait.until(FluentWait.java:231)
1624:  at org.openqa.selenium.testing.SeleniumExtension.waitUntil(SeleniumExtension.java:251)
1625:  at org.openqa.selenium.WindowTest.changeSizeTo(WindowTest.java:286)
1626:  at org.openqa.selenium.WindowTest.testCanMaximizeTheWindow(WindowTest.java:174)
1627:  ================================================================================
1628:  �[32m[4,172 / 4,243]�[0m 42 / 113 tests, �[31m�[1m1 failed�[0m;�[0m [Sched] Testing //java/test/org/openqa/selenium:ContentEditableTest-edge; 50s ... (3 actions, 1 running)
1629:  �[32m[4,172 / 4,243]�[0m 42 / 113 tests, �[31m�[1m1 failed�[0m;�[0m Testing //java/test/org/openqa/selenium/bidi:BiDiSessionTest-edge; 3s local ... (3 actions, 2 running)
1630:  �[32m[4,173 / 4,243]�[0m 43 / 113 tests, �[31m�[1m1 failed�[0m;�[0m [Sched] Testing //java/test/org/openqa/selenium/bidi/emulation:SetScriptingEnabledTest-edge; 5s ... (3 actions, 1 running)
1631:  �[32m[4,173 / 4,243]�[0m 43 / 113 tests, �[31m�[1m1 failed�[0m;�[0m Testing //java/test/org/openqa/selenium:ContentEditableTest-edge; 5s local ... (3 actions, 2 running)
1632:  �[32m[4,174 / 4,243]�[0m 44 / 113 tests, �[31m�[1m1 failed�[0m;�[0m [Sched] Testing //java/test/org/openqa/selenium:CorrectEventFiringTest-edge; 7s ... (3 actions, 1 running)
1633:  �[32m[4,174 / 4,243]�[0m 44 / 113 tests, �[31m�[1m1 failed�[0m;�[0m Testing //java/test/org/openqa/selenium/bidi/emulation:SetScriptingEnabledTest-edge; 6s local ... (3 actions, 2 running)
1634:  �[32m[4,175 / 4,243]�[0m 45 / 113 tests, �[31m�[1m1 failed�[0m;�[0m [Sched] Testing //java/test/org/openqa/selenium:CssValueTest-edge; 7s ... (3 actions, 1 running)
1635:  �[32m[4,175 / 4,243]�[0m 45 / 113 tests, �[31m�[1m1 failed�[0m;�[0m [Sched] Testing //java/test/org/openqa/selenium:CssValueTest-edge; 18s ... (3 actions, 1 running)
1636:  �[32m[4,175 / 4,243]�[0m 45 / 113 tests, �[31m�[1m1 failed�[0m;�[0m Testing //java/test/org/openqa/selenium:CorrectEventFiringTest-edge; 18s local ... (3 actions, 2 running)
1637:  �[32m[4,176 / 4,243]�[0m 46 / 113 tests, �[31m�[1m1 failed�[0m;�[0m [Sched] Testing //java/test/org/openqa/selenium:AuthenticationTest-edge; 20s ... (3 actions, 1 running)
1638:  �[32m[4,176 / 4,243]�[0m 46 / 113 tests, �[31m�[1m1 failed�[0m;�[0m Testing //java/test/org/openqa/selenium:CssValueTest-edge; 4s local ... (3 actions, 2 running)
1639:  �[32m[4,177 / 4,243]�[0m 47 / 113 tests, �[31m�[1m1 failed�[0m;�[0m [Sched] Testing //java/test/org/openqa/selenium:SelectElementHandlingTest-edge; 6s ... (3 actions, 1 running)
1640:  �[32m[4,177 / 4,243]�[0m 47 / 113 tests, �[31m�[1m1 failed�[0m;�[0m Testing //java/test/org/openqa/selenium:AuthenticationTest-edge; 3s local ... (3 actions, 2 running)
1641:  �[32m[4,178 / 4,243]�[0m 48 / 113 tests, �[31m�[1m1 failed�[0m;�[0m [Sched] Testing //java/test/org/openqa/selenium:PageLoadTimeOutTest-edge; 5s ... (3 actions, 1 running)
1642:  �[32m[4,178 / 4,243]�[0m 48 / 113 tests, �[31m�[1m1 failed�[0m;�[0m Testing //java/test/org/openqa/selenium:SelectElementHandlingTest-edge; 5s local ... (3 actions, 2 running)
1643:  �[32m[4,179 / 4,243]�[0m 49 / 113 tests, �[31m�[1m1 failed�[0m;�[0m [Sched] Testing //java/test/org/openqa/selenium:MiscTest-edge; 7s ... (3 actions, 1 running)
1644:  �[32m[4,179 / 4,243]�[0m 49 / 113 tests, �[31m�[1m1 failed�[0m;�[0m [Sched] Testing //java/test/org/openqa/selenium:MiscTest-edge; 18s ... (3 actions, 1 running)
1645:  �[32m[4,179 / 4,243]�[0m 49 / 113 tests, �[31m�[1m1 failed�[0m;�[0m [Sched] Testing //java/test/org/openqa/selenium:MiscTest-edge; 51s ... (3 actions, 1 running)
1646:  �[32m[4,179 / 4,243]�[0m 49 / 113 tests, �[31m�[1m1 failed�[0m;�[0m Testing //java/test/org/openqa/selenium:PageLoadTimeOutTest-edge; 49s local ... (3 actions, 2 running)
1647:  �[32m[4,180 / 4,243]�[0m 50 / 113 tests, �[31m�[1m1 failed�[0m;�[0m [Sched] Testing //java/test/org/openqa/selenium:ImplicitWaitTest-edge; 51s ... (3 actions, 1 running)
1648:  �[32m[4,180 / 4,243]�[0m 50 / 113 tests, �[31m�[1m1 failed�[0m;�[0m Testing //java/test/org/openqa/selenium:MiscTest-edge; 4s local ... (3 actions, 2 running)
1649:  �[32m[4,181 / 4,243]�[0m 51 / 113 tests, �[31m�[1m1 failed�[0m;�[0m [Sched] Testing //java/test/org/openqa/selenium:SessionHandlingTest-edge; 5s ... (3 actions, 1 running)
1650:  �[32m[4,181 / 4,243]�[0m 51 / 113 tests, �[31m�[1m1 failed�[0m;�[0m Testing //java/test/org/openqa/selenium:ImplicitWaitTest-edge; 11s local ... (3 actions, 2 running)
1651:  �[32m[4,182 / 4,243]�[0m 52 / 113 tests, �[31m�[1m1 failed�[0m;�[0m [Sched] Testing //java/test/org/openqa/selenium:ModernModalTest-edge; 13s ... (3 actions, 1 running)
1652:  �[32m[4,182 / 4,243]�[0m 52 / 113 tests, �[31m�[1m1 failed�[0m;�[0m Testing //java/test/org/openqa/selenium:SessionHandlingTest-edge; 11s local ... (3 actions, 2 running)
1653:  �[32m[4,183 / 4,243]�[0m 53 / 113 tests, �[31m�[1m1 failed�[0m;�[0m [Sched] Testing //java/test/org/openqa/selenium:JavascriptEnabledDriverTest-edge; 12s ... (3 actions, 1 running)
1654:  �[32m[4,183 / 4,243]�[0m 53 / 113 tests, �[31m�[1m1 failed�[0m;�[0m Testing //java/test/org/openqa/selenium:ModernModalTest-edge; 4s local ... (3 actions, 2 running)
1655:  �[32m[4,184 / 4,243]�[0m 54 / 113 tests, �[31m�[1m1 failed�[0m;�[0m [Sched] Testing //java/test/org/openqa/selenium/grid/router:RemoteWebDriverBiDiTest-edge; 5s ... (3 actions, 1 running)
1656:  �[32m[4,184 / 4,243]�[0m 54 / 113 tests, �[31m�[1m1 failed�[0m;�[0m Testing //java/test/org/openqa/selenium:JavascriptEnabledDriverTest-edge; 8s local ... (3 actions, 2 running)
1657:  �[32m[4,185 / 4,243]�[0m 55 / 113 tests, �[31m�[1m1 failed�[0m;�[0m [Sched] Testing //java/test/org/openqa/selenium:ElementDomAttributeTest-edge; 9s ... (3 actions, 1 running)
1658:  �[32m[4,185 / 4,243]�[0m 55 / 113 tests, �[31m�[1m1 failed�[0m;�[0m [Sched] Testing //java/test/org/openqa/selenium:ElementDomAttributeTest-edge; 20s ... (3 actions, 1 running)
1659:  �[32m[4,185 / 4,243]�[0m 55 / 113 tests, �[31m�[1m1 failed�[0m;�[0m Testing //java/test/org/openqa/selenium/grid/router:RemoteWebDriverBiDiTest-edge; 31s local ... (3 actions, 2 running)
1660:  �[32m[4,186 / 4,243]�[0m 56 / 113 tests, �[31m�[1m1 failed�[0m;�[0m [Sched] Testing //java/test/org/openqa/selenium:WindowSwitchingTest-edge; 33s ... (3 actions, 1 running)
1661:  �[32m[4,186 / 4,243]�[0m 56 / 113 tests, �[31m�[1m1 failed�[0m;�[0m Testing //java/test/org/openqa/selenium:ElementDomAttributeTest-edge; 11s local ... (3 actions, 2 running)
1662:  �[32m[4,187 / 4,243]�[0m 57 / 113 tests, �[31m�[1m1 failed�[0m;�[0m [Sched] Testing //java/test/org/openqa/selenium/edge:EdgeOptionsFunctionalTest; 12s ... (3 actions, 1 running)
1663:  �[32m[4,187 / 4,243]�[0m 57 / 113 tests, �[31m�[1m1 failed�[0m;�[0m Testing //java/test/org/openqa/selenium:WindowSwitchingTest-edge; 12s local ... (3 actions, 2 running)
1664:  �[32m[4,188 / 4,243]�[0m 58 / 113 tests, �[31m�[1m1 failed�[0m;�[0m [Sched] Testing //java/test/org/openqa/selenium:ExecutingJavascriptTest-edge; 13s ... (3 actions, 1 running)
1665:  �[32m[4,188 / 4,243]�[0m 58 / 113 tests, �[31m�[1m1 failed�[0m;�[0m Testing //java/test/org/openqa/selenium/edge:EdgeOptionsFunctionalTest; 8s local ... (3 actions, 2 running)
1666:  �[32m[4,189 / 4,243]�[0m 59 / 113 tests, �[31m�[1m1 failed�[0m;�[0m [Sched] Testing //java/test/org/openqa/selenium:ClickTest-edge; 9s ... (3 actions, 1 running)
1667:  �[32m[4,189 / 4,243]�[0m 59 / 113 tests, �[31m�[1m1 failed�[0m;�[0m Testing //java/test/org/openqa/selenium:ExecutingJavascriptTest-edge; 12s local ... (3 actions, 2 running)
1668:  �[32m[4,190 / 4,243]�[0m 60 / 113 tests, �[31m�[1m1 failed�[0m;�[0m [Sched] Testing //java/test/org/openqa/selenium/bidi/input:DragAndDropTest-edge; 13s ... (3 actions, 1 running)
1669:  �[32m[4,190 / 4,243]�[0m 60 / 113 tests, �[31m�[1m1 failed�[0m;�[0m [Sched] Testing //java/test/org/openqa/selenium/bidi/input:DragAndDropTest-edge; 24s ... (3 actions, 1 running)
1670:  �[32m[4,190 / 4,243]�[0m 60 / 113 tests, �[31m�[1m1 failed�[0m;�[0m Testing //java/test/org/openqa/selenium:ClickTest-edge; 13s local ... (3 actions, 2 running)
1671:  �[32m[4,191 / 4,243]�[0m 61 / 113 tests, �[31m�[1m1 failed�[0m;�[0m [Sched] Testing //java/test/org/openqa/selenium:PageLoadingTest-edge; 15s ... (3 actions, 1 running)
1672:  �[32m[4,191 / 4,243]�[0m 61 / 113 tests, �[31m�[1m1 failed�[0m;�[0m Testing //java/test/org/openqa/selenium/bidi/input:DragAndDropTest-edge; 11s local ... (3 actions, 2 running)
1673:  �[32m[4,192 / 4,243]�[0m 62 / 113 tests, �[31m�[1m1 failed�[0m;�[0m [Sched] Testing //java/test/org/openqa/selenium/bidi/input:DefaultKeyboardTest-edge; 12s ... (3 actions, 1 running)
1674:  �[32m[4,192 / 4,243]�[0m 62 / 113 tests, �[31m�[1m1 failed�[0m;�[0m Testing //java/test/org/openqa/selenium:PageLoadingTest-edge; 10s local ... (3 actions, 2 running)
1675:  �[32m[4,193 / 4,243]�[0m 63 / 113 tests, �[31m�[1m1 failed�[0m;�[0m [Sched] Testing //java/test/org/openqa/selenium/bidi/script:CallFunctionParameterTest-edge; 12s ... (3 actions, 1 running)
1676:  �[32m[4,193 / 4,243]�[0m 63 / 113 tests, �[31m�[1m1 failed�[0m;�[0m Testing //java/test/org/openqa/selenium/bidi/input:DefaultKeyboardTest-edge; 6s local ... (3 actions, 2 running)
1677:  �[32m[4,194 / 4,243]�[0m 64 / 113 tests, �[31m�[1m1 failed�[0m;�[0m [Sched] Testing //java/test/org/openqa/selenium/edge:EdgeDriverFunctionalTest; 8s ... (3 actions, 1 running)
1678:  �[32m[4,194 / 4,243]�[0m 64 / 113 tests, �[31m�[1m1 failed�[0m;�[0m [Sched] Testing //java/test/org/openqa/selenium/edge:EdgeDriverFunctionalTest; 18s ... (3 actions, 1 running)
1679:  �[32m[4,194 / 4,243]�[0m 64 / 113 tests, �[31m�[1m1 failed�[0m;�[0m Testing //java/test/org/openqa/selenium/bidi/script:CallFunctionParameterTest-edge; 21s local ... (3 actions, 2 running)
1680:  �[32m[4,195 / 4,243]�[0m 65 / 113 tests, �[31m�[1m1 failed�[0m;�[0m [Sched] Testing //java/test/org/openqa/selenium/bidi/network:AddInterceptParametersTest-edge; 22s ... (3 actions, 1 running)
1681:  �[32m[4,195 / 4,243]�[0m 65 / 113 tests, �[31m�[1m1 failed�[0m;�[0m Testing //java/test/org/openqa/selenium/edge:EdgeDriverFunctionalTest; 12s local ... (3 actions, 2 running)
1682:  �[32m[4,196 / 4,243]�[0m 66 / 113 tests, �[31m�[1m1 failed�[0m;�[0m [Sched] Testing //java/test/org/openqa/selenium:SvgDocumentTest-edge; 13s ... (3 actions, 1 running)
1683:  �[32m[4,196 / 4,243]�[0m 66 / 113 tests, �[31m�[1m1 failed�[0m;�[0m Testing //java/test/org/openqa/selenium/bidi/network:AddInterceptParametersTest-edge; 10s local ... (3 actions, 2 running)
1684:  �[32m[4,197 / 4,243]�[0m 67 / 113 tests, �[31m�[1m1 failed�[0m;�[0m [Sched] Testing //java/test/org/openqa/selenium/bidi/browsingcontext:BrowsingContextTest-edge; 12s ... (3 actions, 1 running)
1685:  �[32m[4,197 / 4,243]�[0m 67 / 113 tests, �[31m�[1m1 failed�[0m;�[0m Testing //java/test/org/openqa/selenium:SvgDocumentTest-edge; 3s local ... (3 actions, 2 running)
1686:  �[32m[4,198 / 4,243]�[0m 68 / 113 tests, �[31m�[1m1 failed�[0m;�[0m [Sched] Testing //java/test/org/openqa/selenium/bidi/input:SetFilesCommandTest-edge; 5s ... (3 actions, 1 running)
1687:  �[32m[4,198 / 4,243]�[0m 68 / 113 tests, �[31m�[1m1 failed�[0m;�[0m [Sched] Testing //java/test/org/openqa/selenium/bidi/input:SetFilesCommandTest-edge; 16s ... (3 actions, 1 running)
1688:  �[32m[4,198 / 4,243]�[0m 68 / 113 tests, �[31m�[1m1 failed�[0m;�[0m [Sched] Testing //java/test/org/openqa/selenium/bidi/input:SetFilesCommandTest-edge; 49s ... (3 actions, 1 running)
1689:  �[32m[4,198 / 4,243]�[0m 68 / 113 tests, �[31m�[1m1 failed�[0m;�[0m Testing //java/test/org/openqa/selenium/bidi/browsingcontext:BrowsingContextTest-edge; 51s local ... (3 actions, 2 running)
1690:  �[32m[4,199 / 4,243]�[0m 69 / 113 tests, �[31m�[1m1 failed�[0m;�[0m [Sched] Testing //java/test/org/openqa/selenium:TakesScreenshotTest-edge; 52s ... (3 actions, 1 running)
1691:  �[32m[4,199 / 4,243]�[0m 69 / 113 tests, �[31m�[1m1 failed�[0m;�[0m Testing //java/test/org/openqa/selenium/bidi/input:SetFilesCommandTest-edge; 7s local ... (3 actions, 2 running)
1692:  �[32m[4,200 / 4,243]�[0m 70 / 113 tests, �[31m�[1m1 failed�[0m;�[0m [Sched] Testing //java/test/org/openqa/selenium/bidi/permissions:PermissionsTest-edge; 9s ... (3 actions, 1 running)
1693:  �[32m[4,200 / 4,243]�[0m 70 / 113 tests, �[31m�[1m1 failed�[0m;�[0m Testing //java/test/org/openqa/selenium:TakesScreenshotTest-edge; 4s local ... (3 actions, 2 running)
1694:  �[32m[4,202 / 4,243]�[0m 72 / 113 tests, �[31m�[1m1 failed�[0m;�[0m [Sched] Testing //java/test/org/openqa/selenium/bidi/script:ScriptEventsTest-edge ... (3 actions, 1 running)
1695:  �[32m[4,202 / 4,243]�[0m 72 / 113 tests, �[31m�[1m1 failed�[0m;�[0m Testing //java/test/org/openqa/selenium/bidi/script:LocalValueTest-edge; 5s local ... (3 actions, 2 running)
1696:  �[32m[4,203 / 4,243]�[0m 73 / 113 tests, �[31m�[1m1 failed�[0m;�[0m [Sched] Testing //java/test/org/openqa/selenium/devtools:JavascriptExceptionsTest-edge; 7s ... (3 actions, 1 running)
1697:  �[32m[4,203 / 4,243]�[0m 73 / 113 tests, �[31m�[1m1 failed�[0m;�[0m Testing //java/test/org/openqa/selenium/bidi/script:ScriptEventsTest-edge; 6s local ... (3 actions, 2 running)
1698:  �[32m[4,204 / 4,243]�[0m 74 / 113 tests, �[31m�[1m1 failed�[0m;�[0m [Sched] Testing //java/test/org/openqa/selenium:ClickScrollingTest-edge; 7s ... (3 actions, 1 running)
1699:  �[32m[4,204 / 4,243]�[0m 74 / 113 tests, �[31m�[1m1 failed�[0m;�[0m Testing //java/test/org/openqa/selenium/devtools:JavascriptExceptionsTest-edge; 3s local ... (3 actions, 2 running)
1700:  �[32m[4,205 / 4,243]�[0m 75 / 113 tests, �[31m�[1m1 failed�[0m;�[0m [Sched] Testing //java/test/org/openqa/selenium:TextPagesTest-edge; 4s ... (3 actions, 1 running)
1701:  �[32m[4,205 / 4,243]�[0m 75 / 113 tests, �[31m�[1m1 failed�[0m;�[0m Testing //java/test/org/openqa/selenium:ClickScrollingTest-edge; 8s local ... (3 actions, 2 running)
1702:  �[32m[4,206 / 4,243]�[0m 76 / 113 tests, �[31m�[1m1 failed�[0m;�[0m [Sched] Testing //java/test/org/openqa/selenium/devtools:ChangeUserAgentTest-edge; 9s ... (3 actions, 1 running)
1703:  �[32m[4,206 / 4,243]�[0m 76 / 113 tests, �[31m�[1m1 failed�[0m;�[0m Testing //java/test/org/openqa/selenium:TextPagesTest-edge; 3s local ... (3 actions, 2 running)
1704:  �[32m[4,207 / 4,243]�[0m 77 / 113 tests, �[31m�[1m1 failed�[0m;�[0m [Sched] Testing //java/test/org/openqa/selenium:TextHandlingTest-edge; 5s ... (3 actions, 1 running)
1705:  �[32m[4,207 / 4,243]�[0m 77 / 113 tests, �[31m�[1m1 failed�[0m;�[0m Testing //java/test/org/openqa/selenium/devtools:ChangeUserAgentTest-edge; 3s local ... (3 actions, 2 running)
1706:  �[32m[4,208 / 4,243]�[0m 78 / 113 tests, �[31m�[1m1 failed�[0m;�[0m [Sched] Testing //java/test/org/openqa/selenium/devtools:NetworkInterceptorRestTest-edge; 4s ... (3 actions, 1 running)
1707:  �[32m[4,208 / 4,243]�[0m 78 / 113 tests, �[31m�[1m1 failed�[0m;�[0m Testing //java/test/org/openqa/selenium:TextHandlingTest-edge; 10s local ... (3 actions, 2 running)
1708:  �[32m[4,209 / 4,243]�[0m 79 / 113 tests, �[31m�[1m1 failed�[0m;�[0m [Sched] Testing //java/test/org/openqa/selenium/devtools:DevToolsReuseTest-edge; 12s ... (3 actions, 1 running)
1709:  �[32m[4,209 / 4,243]�[0m 79 / 113 tests, �[31m�[1m1 failed�[0m;�[0m [Sched] Testing //java/test/org/openqa/selenium/devtools:DevToolsReuseTest-edge; 23s ... (3 actions, 1 running)
1710:  �[32m[4,209 / 4,243]�[0m 79 / 113 tests, �[31m�[1m1 failed�[0m;�[0m Testing //java/test/org/openqa/selenium/devtools:NetworkInterceptorRestTest-edge; 19s local ... (3 actions, 2 running)
1711:  �[32m[4,210 / 4,243]�[0m 80 / 113 tests, �[31m�[1m1 failed�[0m;�[0m [Sched] Testing //java/test/org/openqa/selenium/devtools:ConsoleEventsTest-edge; 20s ... (3 actions, 1 running)
1712:  �[32m[4,210 / 4,243]�[0m 80 / 113 tests, �[31m�[1m1 failed�[0m;�[0m Testing //java/test/org/openqa/selenium/devtools:DevToolsReuseTest-edge; 3s local ... (3 actions, 2 running)
1713:  �[32m[4,211 / 4,243]�[0m 81 / 113 tests, �[31m�[1m1 failed�[0m;�[0m [Sched] Testing //java/test/org/openqa/selenium:TypingTest-edge; 5s ... (3 actions, 1 running)
1714:  �[32m[4,211 / 4,243]�[0m 81 / 113 tests, �[31m�[1m1 failed�[0m;�[0m Testing //java/test/org/openqa/selenium/devtools:ConsoleEventsTest-edge; 3s local ... (3 actions, 2 running)
1715:  �[32m[4,212 / 4,243]�[0m 82 / 113 tests, �[31m�[1m1 failed�[0m;�[0m [Sched] Testing //java/test/org/openqa/selenium:PageLoadingStrategyTest-edge; 4s ... (3 actions, 1 running)
1716:  �[32m[4,212 / 4,243]�[0m 82 / 113 tests, �[31m�[1m1 failed�[0m;�[0m [Sched] Testing //java/test/org/openqa/selenium:PageLoadingStrategyTest-edge; 16s ... (3 actions, 1 running)
1717:  �[32m[4,212 / 4,243]�[0m 82 / 113 tests, �[31m�[1m1 failed�[0m;�[0m Testing //java/test/org/openqa/selenium:TypingTest-edge; 16s local ... (3 actions, 2 running)
1718:  �[32m[4,213 / 4,243]�[0m 83 / 113 tests, �[31m�[1m1 failed�[0m;�[0m [Sched] Testing //java/test/org/openqa/selenium:SvgElementTest-edge; 18s ... (3 actions, 1 running)
1719:  �[32m[4,213 / 4,243]�[0m 83 / 113 tests, �[31m�[1m1 failed�[0m;�[0m Testing //java/test/org/openqa/selenium:PageLoadingStrategyTest-edge; 11s local ... (3 actions, 2 running)
1720:  �[32m[4,214 / 4,243]�[0m 84 / 113 tests, �[31m�[1m1 failed�[0m;�[0m [Sched] Testing //java/test/org/openqa/selenium/devtools:NetworkInterceptorTest-edge; 12s ... (3 actions, 1 running)
1721:  �[32m[4,214 / 4,243]�[0m 84 / 113 tests, �[31m�[1m1 failed�[0m;�[0m Testing //java/test/org/openqa/selenium:SvgElementTest-edge; 4s local ... (3 actions, 2 running)
1722:  �[32m[4,215 / 4,243]�[0m 85 / 113 tests, �[31m�[1m1 failed�[0m;�[0m [Sched] Testing //java/test/org/openqa/selenium:VisibilityTest-edge; 5s ... (3 actions, 1 running)
1723:  �[32m[4,215 / 4,243]�[0m 85 / 113 tests, �[31m�[1m1 failed�[0m;�[0m [Sched] Testing //java/test/org/openqa/selenium:VisibilityTest-edge; 16s ... (3 actions, 1 running)
1724:  �[32m[4,215 / 4,243]�[0m 85 / 113 tests, �[31m�[1m1 failed�[0m;�[0m Testing //java/test/org/openqa/selenium/devtools:NetworkInterceptorTest-edge; 34s local ... (3 actions, 2 running)
1725:  �[32m[4,216 / 4,243]�[0m 86 / 113 tests, �[31m�[1m1 failed�[0m;�[0m [Sched] Testing //java/test/org/openqa/selenium/bidi/network:NetworkEventsTest-edge; 35s ... (3 actions, 1 running)
1726:  �[32m[4,216 / 4,243]�[0m 86 / 113 tests, �[31m�[1m1 failed�[0m;�[0m Testing //java/test/org/openqa/selenium:VisibilityTest-edge; 10s local ... (3 actions, 2 running)
1727:  �[32m[4,217 / 4,243]�[0m 87 / 113 tests, �[31m�[1m1 failed�[0m;�[0m [Sched] Testing //java/test/org/openqa/selenium/devtools:WindowSwitchingTest-edge; 11s ... (3 actions, 1 running)
1728:  �[32m[4,217 / 4,243]�[0m 87 / 113 tests, �[31m�[1m1 failed�[0m;�[0m [Sched] Testing //java/test/org/openqa/selenium/devtools:WindowSwitchingTest-edge; 22s ... (3 actions, 1 running)
1729:  �[32m[4,217 / 4,243]�[0m 87 / 113 tests, �[31m�[1m1 failed�[0m;�[0m Testing //java/test/org/openqa/selenium/bidi/network:NetworkEventsTest-edge; 16s local ... (3 actions, 2 running)
1730:  �[32m[4,218 / 4,243]�[0m 88 / 113 tests, �[31m�[1m1 failed�[0m;�[0m [Sched] Testing //java/test/org/openqa/selenium:ErrorsTest-edge; 17s ... (3 actions, 1 running)
1731:  �[32m[4,218 / 4,243]�[0m 88 / 113 tests, �[31m�[1m1 failed�[0m;�[0m Testing //java/test/org/openqa/selenium/devtools:WindowSwitchingTest-edge; 7s local ... (3 actions, 2 running)
1732:  �[32m[4,219 / 4,243]�[0m 89 / 113 tests, �[31m�[1m1 failed�[0m;�[0m [Sched] Testing //java/test/org/openqa/selenium/devtools:CdpFacadeTest-edge; 7s ... (3 actions, 1 running)
1733:  �[32m[4,219 / 4,243]�[0m 89 / 113 tests, �[31m�[1m1 failed�[0m;�[0m Testing //java/test/org/openqa/selenium:ErrorsTest-edge; 3s local ... (3 actions, 2 running)
1734:  �[32m[4,220 / 4,243]�[0m 90 / 113 tests, �[31m�[1m1 failed�[0m;�[0m [Sched] Testing //java/test/org/openqa/selenium:ElementSelectingTest-edge; 5s ... (3 actions, 1 running)
1735:  �[32m[4,220 / 4,243]�[0m 90 / 113 tests, �[31m�[1m1 failed�[0m;�[0m Testing //java/test/org/openqa/selenium/devtools:CdpFacadeTest-edge; 5s local ... (3 actions, 2 running)
1736:  �[32m[4,221 / 4,243]�[0m 91 / 113 tests, �[31m�[1m1 failed�[0m;�[0m [Sched] Testing //java/test/org/openqa/selenium/bidi/storage:StorageCommandsTest-edge; 6s ... (3 actions, 1 running)
1737:  �[32m[4,221 / 4,243]�[0m 91 / 113 tests, �[31m�[1m1 failed�[0m;�[0m Testing //java/test/org/openqa/selenium:ElementSelectingTest-edge; 8s local ... (3 actions, 2 running)
1738:  �[32m[4,222 / 4,243]�[0m 92 / 113 tests, �[31m�[1m1 failed�[0m;�[0m [Sched] Testing //java/test/org/openqa/selenium:FrameSwitchingTest-edge; 9s ... (3 actions, 1 running)
1739:  �[32m[4,222 / 4,243]�[0m 92 / 113 tests, �[31m�[1m1 failed�[0m;�[0m Testing //java/test/org/openqa/selenium/bidi/storage:StorageCommandsTest-edge; 7s local ... (3 actions, 2 running)
1740:  �[32m[4,223 / 4,243]�[0m 93 / 113 tests, �[31m�[1m1 failed�[0m;�[0m [Sched] Testing //java/test/org/openqa/selenium/bidi/emulation:SetGeolocationOverrideTest-edge; 8s ... (3 actions, 1 running)
1741:  �[32m[4,223 / 4,243]�[0m 93 / 113 tests, �[31m�[1m1 failed�[0m;�[0m [Sched] Testing //java/test/org/openqa/selenium/bidi/emulation:SetGeolocationOverrideTest-edge; 19s ... (3 actions, 1 running)
1742:  �[32m[4,223 / 4,243]�[0m 93 / 113 tests, �[31m�[1m1 failed�[0m;�[0m Testing //java/test/org/openqa/selenium:FrameSwitchingTest-edge; 17s local ... (3 actions, 2 running)
1743:  �[32m[4,224 / 4,243]�[0m 94 / 113 tests, �[31m�[1m1 failed�[0m;�[0m [Sched] Testing //java/test/org/openqa/selenium/bidi:BiDiTest-edge; 18s ... (3 actions, 1 running)
1744:  �[32m[4,224 / 4,243]�[0m 94 / 113 tests, �[31m�[1m1 failed�[0m;�[0m [Sched] Testing //java/test/org/openqa/selenium/bidi:BiDiTest-edge; 29s ... (3 actions, 1 running)
1745:  �[32m[4,224 / 4,243]�[0m 94 / 113 tests, �[31m�[1m1 failed�[0m;�[0m Testing //java/test/org/openqa/selenium/bidi/emulation:SetGeolocationOverrideTest-edge; 20s local ... (3 actions, 2 running)
1746:  �[32m[4,225 / 4,243]�[0m 95 / 113 tests, �[31m�[1m1 failed�[0m;�[0m [Sched] Testing //java/test/org/openqa/selenium/bidi/browser:BrowserCommandsTest-edge; 22s ... (3 actions, 1 running)
1747:  �[32m[4,225 / 4,243]�[0m 95 / 113 tests, �[31m�[1m1 failed�[0m;�[0m Testing //java/test/org/openqa/selenium/bidi:BiDiTest-edge; 3s local ... (3 actions, 2 running)
1748:  �[32m[4,226 / 4,243]�[0m 96 / 113 tests, �[31m�[1m1 failed�[0m;�[0m [Sched] Testing //java/test/org/openqa/selenium:ElementEqualityTest-edge; 5s ... (3 actions, 1 running)
1749:  �[32m[4,226 / 4,243]�[0m 96 / 113 tests, �[31m�[1m1 failed�[0m;�[0m [Sched] Testing //java/test/org/openqa/selenium:ElementEqualityTest-edge; 15s ... (3 actions, 1 running)
1750:  �[32m[4,226 / 4,243]�[0m 96 / 113 tests, �[31m�[1m1 failed�[0m;�[0m Testing //java/test/org/openqa/selenium/bidi/browser:BrowserCommandsTest-edge; 20s local ... (3 actions, 2 running)
1751:  �[32m[4,227 / 4,243]�[0m 97 / 113 tests, �[31m�[1m1 failed�[0m;�[0m [Sched] Testing //java/test/org/openqa/selenium/bidi:BiDiSessionCleanUpTest-edge; 21s ... (3 actions, 1 running)
1752:  �[32m[4,227 / 4,243]�[0m 97 / 113 tests, �[31m�[1m1 failed�[0m;�[0m Testing //java/test/org/openqa/selenium:ElementEqualityTest-edge; 4s local ... (3 actions, 2 running)
1753:  �[32m[4,228 / 4,243]�[0m 98 / 113 tests, �[31m�[1m1 failed�[0m;�[0m [Sched] Testing //java/test/org/openqa/selenium:ElementDomPropertyTest-edge; 6s ... (3 actions, 1 running)
1754:  �[32m[4,228 / 4,243]�[0m 98 / 113 tests, �[31m�[1m1 failed�[0m;�[0m Testing //java/test/org/openqa/selenium/bidi:BiDiSessionCleanUpTest-edge; 5s local ... (3 actions, 2 running)
1755:  �[32m[4,229 / 4,243]�[0m 99 / 113 tests, �[31m�[1m1 failed�[0m;�[0m [Sched] Testing //java/test/org/openqa/selenium:ProxySettingTest-edge; 6s ... (3 actions, 1 running)
1756:  �[32m[4,229 / 4,243]�[0m 99 / 113 tests, �[31m�[1m1 failed�[0m;�[0m Testing //java/test/org/openqa/selenium:ElementDomPropertyTest-edge; 9s local ... (3 actions, 2 running)
1757:  �[32m[4,230 / 4,243]�[0m 100 / 113 tests, �[31m�[1m1 failed�[0m;�[0m [Sched] Testing //java/test/org/openqa/selenium:WebScriptTest-edge; 11s ... (3 actions, 1 running)
1758:  �[32m[4,230 / 4,243]�[0m 100 / 113 tests, �[31m�[1m1 failed�[0m;�[0m Testing //java/test/org/openqa/selenium:ProxySettingTest-edge; 6s local ... (3 actions, 2 running)
1759:  �[32m[4,231 / 4,243]�[0m 101 / 113 tests, �[31m�[1m1 failed�[0m;�[0m [Sched] Testing //java/test/org/openqa/selenium:SlowLoadingPageTest-edge; 7s ... (3 actions, 1 running)
1760:  �[32m[4,231 / 4,243]�[0m 101 / 113 tests, �[31m�[1m1 failed�[0m;�[0m [Sched] Testing //java/test/org/openqa/selenium:SlowLoadingPageTest-edge; 18s ... (3 actions, 1 running)
1761:  �[32m[4,231 / 4,243]�[0m 101 / 113 tests, �[31m�[1m1 failed�[0m;�[0m Testing //java/test/org/openqa/selenium:WebScriptTest-edge; 39s local ... (3 actions, 2 running)
1762:  �[32m[4,232 / 4,243]�[0m 102 / 113 tests, �[31m�[1m1 failed�[0m;�[0m [Sched] Testing //java/test/org/openqa/selenium:WaitingConditionsTest-edge; 41s ... (3 actions, 1 running)
1763:  �[32m[4,232 / 4,243]�[0m 102 / 113 tests, �[31m�[1m1 failed�[0m;�[0m Testing //java/test/org/openqa/selenium:SlowLoadingPageTest-edge; 9s local ... (3 actions, 2 running)
1764:  �[32m[4,233 / 4,243]�[0m 103 / 113 tests, �[31m�[1m1 failed�[0m;�[0m [Sched] Testing //java/test/org/openqa/selenium/interactions:PenPointerTest-edge; 11s ... (3 actions, 1 running)
1765:  �[32m[4,233 / 4,243]�[0m 103 / 113 tests, �[31m�[1m1 failed�[0m;�[0m Testing //java/test/org/openqa/selenium:WaitingConditionsTest-edge; 7s local ... (3 actions, 2 running)
1766:  �[32m[4,234 / 4,243]�[0m 104 / 113 tests, �[31m�[1m1 failed�[0m;�[0m [Sched] Testing //java/test/org/openqa/selenium/interactions:ActionDurationTest-edge; 9s ... (3 actions, 1 running)
1767:  �[32m[4,234 / 4,243]�[0m 104 / 113 tests, �[31m�[1m1 failed�[0m;�[0m [Sched] Testing //java/test/org/openqa/selenium/interactions:ActionDurationTest-edge; 20s ... (3 actions, 1 running)
1768:  �[32m[4,234 / 4,243]�[0m 104 / 113 tests, �[31m�[1m1 failed�[0m;�[0m Testing //java/test/org/openqa/selenium/interactions:PenPointerTest-edge; 17s local ... (3 actions, 2 running)
1769:  �[32m[4,235 / 4,243]�[0m 105 / 113 tests, �[31m�[1m1 failed�[0m;�[0m [Sched] Testing //java/test/org/openqa/selenium:ElementFindingTest-edge; 19s ... (3 actions, 1 running)
1770:  �[32m[4,235 / 4,243]�[0m 105 / 113 tests, �[31m�[1m1 failed�[0m;�[0m Testing //java/test/org/openqa/selenium/interactions:ActionDurationTest-edge; 6s local ... (3 actions, 2 running)
1771:  �[32m[4,236 / 4,243]�[0m 106 / 113 tests, �[31m�[1m1 failed�[0m;�[0m [Sched] Testing //java/test/org/openqa/selenium:WebElementTest-edge; 8s ... (3 actions, 1 running)
1772:  �[32m[4,236 / 4,243]�[0m 106 / 113 tests, �[31m�[1m1 failed�[0m;�[0m [Sched] Testing //java/test/org/openqa/selenium:WebElementTest-edge; 19s ... (3 actions, 1 running)
1773:  �[32m[4,236 / 4,243]�[0m 106 / 113 tests, �[31m�[1m1 failed�[0m;�[0m Testing //java/test/org/openqa/selenium:ElementFindingTest-edge; 19s local ... (3 actions, 2 running)
1774:  �[32m[4,237 / 4,243]�[0m 107 / 113 tests, �[31m�[1m1 failed�[0m;�[0m [Sched] Testing //java/test/org/openqa/selenium/bidi/webextension:WebExtensionTest-edge; 21s ... (3 actions, 1 running)
1775:  �[32m[4,237 / 4,243]�[0m 107 / 113 tests, �[31m�[1m1 failed�[0m;�[0m Testing //java/test/org/openqa/selenium:WebElementTest-edge; 3s local ... (3 actions, 2 running)
1776:  �[32m[4,239 / 4,243]�[0m 109 / 113 tests, �[31m�[1m1 failed�[0m;�[0m [Sched] Testing //java/test/org/openqa/selenium:UnexpectedAlertBehaviorTest-edge ... (3 actions, 1 running)
1777:  �[32m[4,239 / 4,243]�[0m 109 / 113 tests, �[31m�[1m1 failed�[0m;�[0m Testing //java/test/org/openqa/selenium/bidi/script:EvaluateParametersTest-edge; 11s local ... (3 actions, 2 running)
1778:  �[32m[4,241 / 4,243]�[0m 111 / 113 tests, �[31m�[1m1 failed�[0m;�[0m [Sched] Testing //java/test/org/openqa/selenium/interactions:CombinedInputActionsTest-edge ... (2 actions, 1 running)
1779:  �[32m[4,241 / 4,243]�[0m 111 / 113 tests, �[31m�[1m1 failed�[0m;�[0m Testing //java/test/org/openqa/selenium/bidi/input:ReleaseCommandTest-edge; 3s local ... (2 actions running)
1780:  �[32m[4,242 / 4,243]�[0m 112 / 113 tests, �[31m�[1m1 failed�[0m;�[0m Testing //java/test/org/openqa/selenium/interactions:CombinedInputActionsTest-edge; 1s local
1781:  �[32m[4,242 / 4,243]�[0m 112 / 113 tests, �[31m�[1m1 failed�[0m;�[0m Testing //java/test/org/openqa/selenium/interactions:CombinedInputActionsTest-edge; 12s local
1782:  �[32mINFO: �[0mFound 113 test targets...
1783:  �[32mINFO: �[0mElapsed time: 1916.897s, Critical Path: 279.13s
1784:  �[32mINFO: �[0m4001 processes: 1669 internal, 1829 darwin-sandbox, 186 local, 317 worker.
1785:  �[32mINFO: �[0mBuild completed, 1 test FAILED, 4001 total actions
1786:  //java/test/org/openqa/selenium:AlertsTest-edge                          �[0m�[32mPASSED�[0m in 13.0s
...

1790:  //java/test/org/openqa/selenium:ClearTest-edge                           �[0m�[32mPASSED�[0m in 8.2s
1791:  //java/test/org/openqa/selenium:ClickScrollingTest-edge                  �[0m�[32mPASSED�[0m in 8.3s
1792:  //java/test/org/openqa/selenium:ClickTest-edge                           �[0m�[32mPASSED�[0m in 13.9s
1793:  //java/test/org/openqa/selenium:ContentEditableTest-edge                 �[0m�[32mPASSED�[0m in 5.8s
1794:  //java/test/org/openqa/selenium:CookieImplementationTest-edge            �[0m�[32mPASSED�[0m in 7.8s
1795:  //java/test/org/openqa/selenium:CorrectEventFiringTest-edge              �[0m�[32mPASSED�[0m in 18.4s
1796:  //java/test/org/openqa/selenium:CssValueTest-edge                        �[0m�[32mPASSED�[0m in 4.4s
1797:  //java/test/org/openqa/selenium:ElementAccessibleNameTest-edge           �[0m�[32mPASSED�[0m in 3.9s
1798:  //java/test/org/openqa/selenium:ElementAriaRoleTest-edge                 �[0m�[32mPASSED�[0m in 4.0s
1799:  //java/test/org/openqa/selenium:ElementAttributeTest-edge                �[0m�[32mPASSED�[0m in 11.0s
1800:  //java/test/org/openqa/selenium:ElementDomAttributeTest-edge             �[0m�[32mPASSED�[0m in 11.1s
1801:  //java/test/org/openqa/selenium:ElementDomPropertyTest-edge              �[0m�[32mPASSED�[0m in 9.5s
1802:  //java/test/org/openqa/selenium:ElementEqualityTest-edge                 �[0m�[32mPASSED�[0m in 4.5s
1803:  //java/test/org/openqa/selenium:ElementFindingTest-edge                  �[0m�[32mPASSED�[0m in 20.0s
1804:  //java/test/org/openqa/selenium:ElementSelectingTest-edge                �[0m�[32mPASSED�[0m in 8.6s
1805:  //java/test/org/openqa/selenium:ErrorsTest-edge                          �[0m�[32mPASSED�[0m in 3.7s
1806:  //java/test/org/openqa/selenium:ExecutingAsyncJavascriptTest-edge        �[0m�[32mPASSED�[0m in 26.3s
...

1883:  //java/test/org/openqa/selenium/devtools:NetworkInterceptorTest-edge     �[0m�[32mPASSED�[0m in 34.5s
1884:  //java/test/org/openqa/selenium/devtools:WindowSwitchingTest-edge        �[0m�[32mPASSED�[0m in 7.0s
1885:  //java/test/org/openqa/selenium/edge:EdgeDriverFunctionalTest            �[0m�[32mPASSED�[0m in 12.1s
1886:  //java/test/org/openqa/selenium/edge:EdgeOptionsFunctionalTest           �[0m�[32mPASSED�[0m in 8.6s
1887:  //java/test/org/openqa/selenium/federatedcredentialmanagement:FederatedCredentialManagementTest-edge �[0m�[32mPASSED�[0m in 9.5s
1888:  //java/test/org/openqa/selenium/grid/router:RemoteWebDriverBiDiTest-edge �[0m�[32mPASSED�[0m in 31.4s
1889:  //java/test/org/openqa/selenium/interactions:ActionDurationTest-edge     �[0m�[32mPASSED�[0m in 6.8s
1890:  //java/test/org/openqa/selenium/interactions:CombinedInputActionsTest-edge �[0m�[32mPASSED�[0m in 13.0s
1891:  //java/test/org/openqa/selenium/interactions:DefaultKeyboardTest-edge    �[0m�[32mPASSED�[0m in 10.0s
1892:  //java/test/org/openqa/selenium/interactions:DefaultMouseTest-edge       �[0m�[32mPASSED�[0m in 19.6s
1893:  //java/test/org/openqa/selenium/interactions:DefaultWheelTest-edge       �[0m�[32mPASSED�[0m in 7.3s
1894:  //java/test/org/openqa/selenium/interactions:DragAndDropTest-edge        �[0m�[32mPASSED�[0m in 13.1s
1895:  //java/test/org/openqa/selenium/interactions:PenPointerTest-edge         �[0m�[32mPASSED�[0m in 17.2s
1896:  //java/test/org/openqa/selenium/remote:RemoteWebDriverScreenshotTest-edge �[0m�[32mPASSED�[0m in 4.1s
1897:  //java/test/org/openqa/selenium/virtualauthenticator:VirtualAuthenticatorTest-edge �[0m�[32mPASSED�[0m in 6.9s
1898:  //java/test/org/openqa/selenium:WindowTest-edge                          �[0m�[31m�[1mFAILED�[0m in 2 out of 2 in 50.4s
1899:  Stats over 2 runs: max = 50.4s, min = 49.6s, avg = 50.0s, dev = 0.4s
1900:  /Users/runner/.bazel/execroot/_main/bazel-out/darwin_arm64-fastbuild/testlogs/java/test/org/openqa/selenium/WindowTest-edge/test.log
1901:  /Users/runner/.bazel/execroot/_main/bazel-out/darwin_arm64-fastbuild/testlogs/java/test/org/openqa/selenium/WindowTest-edge/test_attempts/attempt_1.log
1902:  Executed 113 out of 113 tests: 112 tests pass and �[0m�[31m�[1m1 fails locally�[0m.
1903:  There were tests whose specified size is too big. Use the --test_verbose_timeout_warnings command line option to see which ones these are.
1904:  �[0m
1905:  ##[error]Process completed with exit code 3.
1906:  ##[group]Run ./scripts/github-actions/rerun-failures.sh 'bazel test --keep_going --build_tests_only --flaky_test_attempts 2 --local_test_jobs 1 --test_size_filters=large --test_tag_filters="edge,-remote" --pin_browsers=false --test_env=SE_FORCE_BROWSER_DOWNLOAD=true --test_env=SE_SKI...

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.

3 participants