Skip to content

Conversation

@rpallavisharma
Copy link
Member

@rpallavisharma rpallavisharma commented Nov 7, 2025

User description

Thanks for contributing to the Selenium site and documentation!
A PR well described will help maintainers to review and merge it quickly

Before submitting your PR, please check our contributing guidelines.
Avoid large PRs, and help reviewers by making them as simple and short as possible.

Added information of Get Dom Property and Get Dom Attribute.
Provided code for java, added for all languages

Description

Added information of Get Dom Property and Get Dom Attribute.
Provided code for java, added for all languages

Motivation and Context

information about these methods were missing

Types of changes

  • Change to the site (I have double-checked the Netlify deployment, and my changes look good)
  • Code example added (and I also added the example to all translated languages)
  • Improved translation
  • Added new translation (and I also added a notice to each document missing translation)

Checklist

  • I have read the contributing document.
  • I have used hugo to render the site/docs locally and I am sure it works.

PR Type

Documentation, Enhancement


Description

  • Added getDomProperty() and getDomAttribute() method documentation

  • Implemented Java test examples for both new methods

  • Updated documentation across multiple language versions (English, Japanese, Portuguese, Chinese)

  • Reorganized section header from "Fetching Attributes or Properties" to "Fetching Attributes and Properties"


Diagram Walkthrough

flowchart LR
  A["Java Test Examples"] -->|"getDomProperty & getDomAttribute"| B["Documentation Files"]
  B -->|"Updated"| C["EN, JA, PT-BR, ZH-CN"]
  C -->|"Added"| D["New Method Sections"]
Loading

File Walkthrough

Relevant files
Tests
InformationTest.java
Add getDomProperty and getDomAttribute test examples         

examples/java/src/test/java/dev/selenium/elements/InformationTest.java

  • Added test code for getDomProperty("value") method
  • Added test code for getDomAttribute("value") method
  • Both methods retrieve the same value from email input element
  • Assertions verify correct values are returned
+7/-0     
Documentation
information.en.md
Add DOM property and attribute method documentation           

website_and_docs/content/documentation/webdriver/elements/information.en.md

  • Changed section header to "Fetching Attributes and Properties"
  • Added subsection "Get Attribute" for existing getAttribute
    documentation
  • Added new subsection "Get Dom Property" with Java code example
    reference
  • Added new subsection "Get Dom Attribute" with Java code example
    reference
  • Included placeholder tabs for Python, CSharp, Ruby, JavaScript, and
    Kotlin
+55/-1   
information.ja.md
Add DOM property and attribute documentation in Japanese 

website_and_docs/content/documentation/webdriver/elements/information.ja.md

  • Changed section header to "Fetching Attributes and Properties"
  • Added subsection "Get Attribute" for existing getAttribute
    documentation
  • Added new subsection "Get Dom Property" with Java code example
    reference
  • Added new subsection "Get Dom Attribute" with Java code example
    reference
  • Fixed Kotlin tab formatting and included placeholder tabs for other
    languages
+56/-3   
information.pt-br.md
Add DOM property and attribute documentation in Portuguese

website_and_docs/content/documentation/webdriver/elements/information.pt-br.md

  • Changed section header to "Fetching Attributes and Properties"
  • Added subsection "Get Attribute" for existing getAttribute
    documentation
  • Added new subsection "Get Dom Property" with Java code example
    reference
  • Added new subsection "Get Dom Attribute" with Java code example
    reference
  • Updated code block path references and fixed tab formatting
+58/-6   
information.zh-cn.md
Add DOM property and attribute documentation in Chinese   

website_and_docs/content/documentation/webdriver/elements/information.zh-cn.md

  • Added new subsection "Get Dom Property" with Java code example
    reference
  • Added new subsection "Get Dom Attribute" with Java code example
    reference
  • Included placeholder tabs for Python, CSharp, Ruby, JavaScript, and
    Kotlin
  • Appended sections at end of existing documentation
+52/-0   

@qodo-code-review
Copy link
Contributor

qodo-code-review bot commented Nov 7, 2025

PR Compliance Guide 🔍

Below is a summary of compliance checks for this PR:

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

Follow the guide to enable codebase context checks.

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

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

Status: Passed

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

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

Generic: Security-First Input Validation and Data Handling

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

Status: Passed

Generic: Comprehensive Audit Trails

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

Status:
No auditing: The added code performs element property/attribute reads and assertions without any
logging or audit trail, though this may be acceptable for test/example code.

Referred Code
// Fetch Dom Property
String propInfo = emailTxt.getDomProperty("value");
assertEquals(propInfo,"admin@localhost");

// Fetch Dom Attribute
String attrInfo = emailTxt.getDomAttribute("value");
assertEquals(attrInfo,"admin@localhost");
Generic: Robust Error Handling and Edge Case Management

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

Status:
No error handling: The new example code uses direct assertions and WebDriver calls without explicit error
handling for potential failures, which may be acceptable in test snippets but lacks
robustness.

Referred Code
// Fetch Dom Property
String propInfo = emailTxt.getDomProperty("value");
assertEquals(propInfo,"admin@localhost");

// Fetch Dom Attribute
String attrInfo = emailTxt.getDomAttribute("value");
assertEquals(attrInfo,"admin@localhost");
  • 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 Nov 7, 2025

PR Code Suggestions ✨

Explore these optional code suggestions:

CategorySuggestion                                                                                                                                    Impact
High-level
Provide complete and clarifying documentation

The PR is incomplete as it only provides Java code examples, leaving other
languages empty. Additionally, the documentation and examples fail to clarify
the key differences between getAttribute, getDomProperty, and getDomAttribute,
which should be addressed with a better example for all supported languages.

Examples:

website_and_docs/content/documentation/webdriver/elements/information.en.md [288-337]
### Get Dom Property 

This method retrieves the value of a specific DOM property of a web element.

{{< tabpane langEqualsHeader=true >}}
{{< tab header="Java" text=true >}}
{{< gh-codeblock path="/examples/java/src/test/java/dev/selenium/elements/InformationTest.java#L67-L69" >}}
{{< /tab >}}
  {{< tab header="Python" text=true >}}


 ... (clipped 40 lines)
examples/java/src/test/java/dev/selenium/elements/InformationTest.java [67-73]
      // Fetch Dom Property
      String propInfo = emailTxt.getDomProperty("value");
      assertEquals(propInfo,"admin@localhost");

      // Fetch Dom Attribute
      String attrInfo = emailTxt.getDomAttribute("value");
      assertEquals(attrInfo,"admin@localhost");

Solution Walkthrough:

Before:

// In InformationTest.java
WebElement emailTxt = driver.findElement(By.name(("email_input")));

// All three methods return the same value in this example
String valueInfo = emailTxt.getAttribute("value"); // "admin@localhost"
String propInfo = emailTxt.getDomProperty("value"); // "admin@localhost"
String attrInfo = emailTxt.getDomAttribute("value"); // "admin@localhost"

// In information.en.md
// ...
// {{< tab header="Python" text=true >}}
//   <!-- Empty -->
// {{< /tab >}}
// ...

After:

// In documentation, explain the difference:
// `getDomAttribute` returns the HTML attribute value as a string.
// `getDomProperty` returns the current property value, which can be of a different type (e.g., boolean).

// Example with a checkbox where attribute and property differ:
// HTML: <input type="checkbox" id="cb" checked>
WebElement checkbox = driver.findElement(By.id("cb"));

String attribute = checkbox.getDomAttribute("checked"); // "true" or ""
boolean property = checkbox.getDomProperty("checked"); // true

// After unchecking the box via UI:
// attribute remains "true" or ""
// property becomes false

// All language tabs in markdown files should be filled with similar examples.
Suggestion importance[1-10]: 9

__

Why: The suggestion correctly identifies that the PR is incomplete (missing examples for most languages) and that the provided example fails to demonstrate the crucial differences between getAttribute, getDomProperty, and getDomAttribute, which is the main point of the new documentation.

High
General
Improve test to show method differences

Improve the test case to demonstrate the behavioral differences between
getDomProperty and getDomAttribute by modifying an input's value and asserting
the distinct results from each method.

examples/java/src/test/java/dev/selenium/elements/InformationTest.java [67-73]

-// Fetch Dom Property
-String propInfo = emailTxt.getDomProperty("value");
-assertEquals(propInfo,"admin@localhost");
+// Get number input
+WebElement numberInput = driver.findElement(By.name("number_input"));
+assertEquals("4", numberInput.getDomAttribute("value"));
 
-// Fetch Dom Attribute
-String attrInfo = emailTxt.getDomAttribute("value");
-assertEquals(attrInfo,"admin@localhost");
+// Type a new value
+numberInput.sendKeys("5");
 
+// Get attribute value
+assertEquals("4", numberInput.getDomAttribute("value"));
+
+// Get property value
+assertEquals("45", numberInput.getDomProperty("value"));
+
  • Apply / Chat
Suggestion importance[1-10]: 9

__

Why: The suggestion correctly identifies that the added test case fails to demonstrate the key difference between getDomProperty and getDomAttribute, and proposes a much better test that clearly illustrates their distinct behaviors, which is critical for documenting this new feature.

High
  • Update

@netlify
Copy link

netlify bot commented Nov 7, 2025

Deploy Preview for selenium-dev ready!

Name Link
🔨 Latest commit 1593594
🔍 Latest deploy log https://app.netlify.com/projects/selenium-dev/deploys/69460eef66f040000846d136
😎 Deploy Preview https://deploy-preview-2529--selenium-dev.netlify.app
📱 Preview on mobile
Toggle QR Code...

QR Code

Use your smartphone camera to open QR code link.

To edit notification comments on pull requests, go to your Netlify project configuration.

@rpallavisharma
Copy link
Member Author

The tests failure doesn't look related to this PR. Kindly check this.

@rpallavisharma rpallavisharma requested a review from diemol November 7, 2025 11:02
## Fetching Attributes or Properties
## Fetching Attributes and Properties

### Get Attribute
Copy link
Member

Choose a reason for hiding this comment

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

May be we need to be more precise now with the difeerences between getAtrribute, getDomAttribute and getDomProperty

example:

Returns the element's property value if present, otherwise falls back to the attribute value. This convenience method handles the common case but can be ambiguous. For precise control, use getDomProperty() or getDomAttribute() instead.

@diemol any thoughts !

Copy link
Member Author

Choose a reason for hiding this comment

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

We are showing in here how to use it. Let me know if any changes are needed at code level?

Copy link
Contributor

@sbabcoc sbabcoc Nov 15, 2025

Choose a reason for hiding this comment

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

@harsha509 getAttribute() is actually deprecated for just that reason.

Copy link
Contributor

Choose a reason for hiding this comment

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

Including a synopsis of this information would be helpful: What's the difference between an "attribute" and a "property" in the DOM? | Quiz Interview Questions with Solutions https://share.google/lB3bUx9KDK28LOx9B

Copy link
Member

Choose a reason for hiding this comment

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

Hi @sbabcoc,

I’m already aware of the distinction, this is exactly why I asked for the documentation to clearly outline the difference in a way users can understand.

Also getAtrribute is not deprecated yet in selenium see https://github.com/SeleniumHQ/selenium/blob/trunk/java/CHANGELOG

Copy link
Member Author

Choose a reason for hiding this comment

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

i am unable to understand the discussion and reasoning around the new information added about new methods at document and code level, and it seems to me i am repeating myself again. if this PR isn't correct then don't add it. i don't know what to do in here further. im finding this exhausting.

Copy link
Member

Choose a reason for hiding this comment

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

This is the regular process of contributing to a project to send a PR. Sometimes people don't understand the context. They ask questions, change the context, and then follow up by asking more questions. Some PRs stay open and in discussions for weeks, sometimes months. It's not ideal, but that's just the way it is.

Sometimes, it's very quick. Sometimes it takes a bit longer. I'm very happy that you're taking the time to contribute. I hope you understand that sometimes it doesn't go through at the first try. You get feedback, and then we iterate on it. It's not perfect, but it's a collaborative process. This fosters a sense of working as a team, and without feedback, there would be no point in open source.

Copy link
Member

Choose a reason for hiding this comment

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

Hi @rpallavisharma ,

There is nothing wrong in this PR and I totally understand the intention behind the PR and appreciate the additions.

My point is that introducing getDomAttribute() and getDomProperty() without first clarifying the ambiguity of getAttribute() may confuse users even more.

The docs should reflect the real behavior of getAtrribute, since ambiguity affects users in practice.

So, as a final suggestion from my review, please update the getAttribute() explanation to something like:

getAttribute Returns the element's property value if present, otherwise falls back to the attribute value. This convenience method handles the common case but can be ambiguous. For precise control, use getDomProperty() or getDomAttribute() instead.

Once that is clearly stated, the existing code example can be adjusted accordingly, and we won’t need separate sections for getDomAttribute() and getDomProperty().

Also, here is the additional info, regarding the ambiguity for your reference:

  • getAttribute() is not a W3C command — it executes JavaScript internally (js atoms), so its behavior differs.
  • getDomAttribute() and getDomProperty() are W3C-compliant commands.

Hope this clarifies everything!

Copy link
Member Author

Choose a reason for hiding this comment

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

@harsha509 you don't want to have section for the new commands added separately in document?

Only get attribute which already exists should be there? And modified to what you wrote?

Then the code for the new commands where does that go?

In that case this PR doesn't do it.

It added information for new commands with code examples.

@diemol sure we can continue this discussion , as much as necessary. Fine with me.

Copy link
Member Author

Choose a reason for hiding this comment

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

there are three methods get attribute get dom property get dom attribute . these are three different methods. we kept get attribute for backward compatibility, and added two new.
i created that PR to showcase two new and code examples for it. didn't change get attribute.
this blog - https://saucelabs.com/resources/blog/selenium-4-new-element-attribute-and-property-methods

the problem now is that you are saying we update get attribute definition as well? or we add the information of these two new methods in same method?

@rpallavisharma
Copy link
Member Author

rpallavisharma commented Nov 26, 2025

@harsha509 / @diemol i am bringing the conversation here. You are saying that the existing definition of GetAttribute should be updated to reflect that why two new methods would be needed. And i am saying that i haven't changed that detail, but added new and this PR should be evaluated on that basis.

I will tell you reasoning, you can then think and decide to take this forward.

Get Attribute method as pre existing has translation done in other spoken languages, zh-cn file check that.

I changing the text to what you mentioned in the PR, will require me to also add the same in english for chinese, and i don't know that language, at the most i can guess it is line number - 249 in the zh-cn file where get attribute was previously explained.

Moving forward here i see how to take this to closure -

a. i update Get Attribute(in english) in all files, except chinese translation.
b. i update Get Attribute in all files(in english) also zh-cn one provided you confirm the line numbers.
c. This PR gets accepted knowing that this was made with intention to add information for two new methods and not change existing one.

Please choose which option is workable here to proceed.

@rpallavisharma
Copy link
Member Author

rpallavisharma commented Dec 8, 2025

@harsha509 / @diemol any update on this? Please review so that can proceed towards closure.

@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: tests (ubuntu, nightly)

Failed stage: Run Tests Nightly Linux/macOS [❌]

Failed test name: dev.selenium.actions_api.KeysTest.keyDown

Failure summary:

The GitHub Action failed because Maven test execution (mvn test) for the selenium-examples project
reported test failures, causing maven-surefire-plugin:3.5.4:test to exit with code 1.
- The failing
tests are in dev.selenium.actions_api.KeysTest, which consistently produced empty text output (<>)
instead of expected typed characters:
- KeysTest.keyDown failed at KeysTest.java:23 with expected:
but was: <>
- KeysTest.keyUp failed at KeysTest.java:38 with expected: but was: <>
-
KeysTest.sendKeysToActiveElement failed at KeysTest.java:50 with expected: but was: <>
- These
failures happened repeatedly across multiple reruns/attempts (runs 1–4), so retries did not resolve
the issue.
- There was also a flaky error in
dev.selenium.bidirectional.webdriver_bidi.NetworkCommandsTest.canContinueWithoutAuthCredentials at
NetworkCommandsTest.java:79 (NullPointerException because WebDriver.getPageSource() returned null),
but it later passed and was reported as a flake, not the final blocker.

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

155:  > Warning:          Could not resolve keysym XF86CameraAccessToggle
156:  > Warning:          Could not resolve keysym XF86NextElement
157:  > Warning:          Could not resolve keysym XF86PreviousElement
158:  > Warning:          Could not resolve keysym XF86AutopilotEngageToggle
159:  > Warning:          Could not resolve keysym XF86MarkWaypoint
160:  > Warning:          Could not resolve keysym XF86Sos
161:  > Warning:          Could not resolve keysym XF86NavChart
162:  > Warning:          Could not resolve keysym XF86FishingChart
163:  > Warning:          Could not resolve keysym XF86SingleRangeRadar
164:  > Warning:          Could not resolve keysym XF86DualRangeRadar
165:  > Warning:          Could not resolve keysym XF86RadarOverlay
166:  > Warning:          Could not resolve keysym XF86TraditionalSonar
167:  > Warning:          Could not resolve keysym XF86ClearvuSonar
168:  > Warning:          Could not resolve keysym XF86SidevuSonar
169:  > Warning:          Could not resolve keysym XF86NavInfo
170:  Errors from xkbcomp are not fatal to the X server
171:  ##[group]Run actions/setup-java@v5
...

220:  echo "Current selenium.version: $current_version"
221:  # If version is in the form X.Y.Z, bump minor and set to SNAPSHOT
222:  if [[ $current_version =~ ^([0-9]+)\.([0-9]+)\.([0-9]+)$ ]]; then
223:    major="${BASH_REMATCH[1]}"
224:    minor="${BASH_REMATCH[2]}"
225:    next_minor=$((minor + 1))
226:    new_version="$major.$next_minor.0-SNAPSHOT"
227:    echo "Using selenium.version $new_version for tests"
228:    cd examples/java
229:    mvn -B -U test -D"jdk.internal.httpclient.disableHostnameVerification=true" -Dselenium.version=$new_version
230:  fi
231:  
232:  retry_wait_seconds: 10
233:  polling_interval_seconds: 1
234:  warning_on_retry: true
235:  continue_on_error: false
236:  env:
...

277:  [INFO] Downloaded from central-portal-snapshots: https://central.sonatype.com/repository/maven-snapshots/org/seleniumhq/selenium/selenium-remote-driver/4.39.0-SNAPSHOT/selenium-remote-driver-4.39.0-SNAPSHOT.pom (5.4 kB at 17 kB/s)
278:  [INFO] Downloading from central: https://repo.maven.apache.org/maven2/com/google/guava/guava/33.5.0-jre/guava-33.5.0-jre.pom
279:  [INFO] Downloaded from central: https://repo.maven.apache.org/maven2/com/google/guava/guava/33.5.0-jre/guava-33.5.0-jre.pom (9.6 kB at 283 kB/s)
280:  [INFO] Downloading from central: https://repo.maven.apache.org/maven2/com/google/guava/guava-parent/33.5.0-jre/guava-parent-33.5.0-jre.pom
281:  [INFO] Downloaded from central: https://repo.maven.apache.org/maven2/com/google/guava/guava-parent/33.5.0-jre/guava-parent-33.5.0-jre.pom (24 kB at 825 kB/s)
282:  [INFO] Downloading from central: https://repo.maven.apache.org/maven2/com/google/guava/failureaccess/1.0.3/failureaccess-1.0.3.pom
283:  [INFO] Downloaded from central: https://repo.maven.apache.org/maven2/com/google/guava/failureaccess/1.0.3/failureaccess-1.0.3.pom (5.6 kB at 136 kB/s)
284:  [INFO] Downloading from central: https://repo.maven.apache.org/maven2/com/google/guava/guava-parent/33.4.0-android/guava-parent-33.4.0-android.pom
285:  [INFO] Downloaded from central: https://repo.maven.apache.org/maven2/com/google/guava/guava-parent/33.4.0-android/guava-parent-33.4.0-android.pom (22 kB at 742 kB/s)
286:  [INFO] Downloading from central: https://repo.maven.apache.org/maven2/com/google/guava/listenablefuture/9999.0-empty-to-avoid-conflict-with-guava/listenablefuture-9999.0-empty-to-avoid-conflict-with-guava.pom
287:  [INFO] Downloaded from central: https://repo.maven.apache.org/maven2/com/google/guava/listenablefuture/9999.0-empty-to-avoid-conflict-with-guava/listenablefuture-9999.0-empty-to-avoid-conflict-with-guava.pom (2.3 kB at 81 kB/s)
288:  [INFO] Downloading from central: https://repo.maven.apache.org/maven2/com/google/guava/guava-parent/26.0-android/guava-parent-26.0-android.pom
289:  [INFO] Downloaded from central: https://repo.maven.apache.org/maven2/com/google/guava/guava-parent/26.0-android/guava-parent-26.0-android.pom (10 kB at 407 kB/s)
290:  [INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/sonatype/oss/oss-parent/9/oss-parent-9.pom
291:  [INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/sonatype/oss/oss-parent/9/oss-parent-9.pom (6.6 kB at 205 kB/s)
292:  [INFO] Downloading from central: https://repo.maven.apache.org/maven2/com/google/errorprone/error_prone_annotations/2.41.0/error_prone_annotations-2.41.0.pom
293:  [INFO] Downloaded from central: https://repo.maven.apache.org/maven2/com/google/errorprone/error_prone_annotations/2.41.0/error_prone_annotations-2.41.0.pom (4.3 kB at 137 kB/s)
294:  [INFO] Downloading from central: https://repo.maven.apache.org/maven2/com/google/errorprone/error_prone_parent/2.41.0/error_prone_parent-2.41.0.pom
295:  [INFO] Downloaded from central: https://repo.maven.apache.org/maven2/com/google/errorprone/error_prone_parent/2.41.0/error_prone_parent-2.41.0.pom (16 kB at 549 kB/s)
296:  [INFO] Downloading from central: https://repo.maven.apache.org/maven2/com/google/j2objc/j2objc-annotations/3.1/j2objc-annotations-3.1.pom
...

355:  [INFO] Downloading from central-portal-snapshots: https://central.sonatype.com/repository/maven-snapshots/org/seleniumhq/selenium/selenium-ie-driver/4.39.0-SNAPSHOT/selenium-ie-driver-4.39.0-SNAPSHOT.pom
356:  [INFO] Downloaded from central-portal-snapshots: https://central.sonatype.com/repository/maven-snapshots/org/seleniumhq/selenium/selenium-ie-driver/4.39.0-SNAPSHOT/selenium-ie-driver-4.39.0-SNAPSHOT.pom (3.2 kB at 9.3 kB/s)
357:  [INFO] Downloading from central-portal-snapshots: https://central.sonatype.com/repository/maven-snapshots/org/seleniumhq/selenium/selenium-safari-driver/4.39.0-SNAPSHOT/maven-metadata.xml
358:  [INFO] Downloading from central-portal-snapshots: https://central.sonatype.com/repository/maven-snapshots/org/seleniumhq/selenium/selenium-safari-driver/4.39.0-SNAPSHOT/selenium-safari-driver-4.39.0-SNAPSHOT.pom
359:  [INFO] Downloaded from central-portal-snapshots: https://central.sonatype.com/repository/maven-snapshots/org/seleniumhq/selenium/selenium-safari-driver/4.39.0-SNAPSHOT/selenium-safari-driver-4.39.0-SNAPSHOT.pom (3.0 kB at 9.1 kB/s)
360:  [INFO] Downloading from central-portal-snapshots: https://central.sonatype.com/repository/maven-snapshots/org/seleniumhq/selenium/selenium-support/4.39.0-SNAPSHOT/maven-metadata.xml
361:  [INFO] Downloading from central-portal-snapshots: https://central.sonatype.com/repository/maven-snapshots/org/seleniumhq/selenium/selenium-support/4.39.0-SNAPSHOT/selenium-support-4.39.0-SNAPSHOT.pom
362:  [INFO] Downloaded from central-portal-snapshots: https://central.sonatype.com/repository/maven-snapshots/org/seleniumhq/selenium/selenium-support/4.39.0-SNAPSHOT/selenium-support-4.39.0-SNAPSHOT.pom (3.4 kB at 9.5 kB/s)
363:  [INFO] Downloading from central-portal-snapshots: https://central.sonatype.com/repository/maven-snapshots/org/seleniumhq/selenium/selenium-grid/4.39.0-SNAPSHOT/maven-metadata.xml
364:  [INFO] Downloading from central-portal-snapshots: https://central.sonatype.com/repository/maven-snapshots/org/seleniumhq/selenium/selenium-grid/4.39.0-SNAPSHOT/selenium-grid-4.39.0-SNAPSHOT.pom
365:  [INFO] Downloaded from central-portal-snapshots: https://central.sonatype.com/repository/maven-snapshots/org/seleniumhq/selenium/selenium-grid/4.39.0-SNAPSHOT/selenium-grid-4.39.0-SNAPSHOT.pom (7.9 kB at 27 kB/s)
366:  [INFO] Downloading from central: https://repo.maven.apache.org/maven2/com/beust/jcommander/1.82/jcommander-1.82.pom
367:  [INFO] Downloaded from central: https://repo.maven.apache.org/maven2/com/beust/jcommander/1.82/jcommander-1.82.pom (1.5 kB at 41 kB/s)
368:  [INFO] Downloading from central: https://repo.maven.apache.org/maven2/com/github/ben-manes/caffeine/caffeine/3.2.2/caffeine-3.2.2.pom
369:  [INFO] Downloaded from central: https://repo.maven.apache.org/maven2/com/github/ben-manes/caffeine/caffeine/3.2.2/caffeine-3.2.2.pom (2.1 kB at 45 kB/s)
370:  [INFO] Downloading from central: https://repo.maven.apache.org/maven2/com/google/errorprone/error_prone_annotations/2.40.0/error_prone_annotations-2.40.0.pom
371:  [INFO] Downloaded from central: https://repo.maven.apache.org/maven2/com/google/errorprone/error_prone_annotations/2.40.0/error_prone_annotations-2.40.0.pom (4.3 kB at 142 kB/s)
372:  [INFO] Downloading from central: https://repo.maven.apache.org/maven2/com/google/errorprone/error_prone_parent/2.40.0/error_prone_parent-2.40.0.pom
373:  [INFO] Downloaded from central: https://repo.maven.apache.org/maven2/com/google/errorprone/error_prone_parent/2.40.0/error_prone_parent-2.40.0.pom (16 kB at 590 kB/s)
374:  [INFO] Downloading from central: https://repo.maven.apache.org/maven2/com/graphql-java/graphql-java/24.1/graphql-java-24.1.pom
...

439:  [INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/seleniumhq/selenium/selenium-java/4.14.1/selenium-java-4.14.1.pom (4.4 kB at 170 kB/s)
440:  [INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/seleniumhq/selenium/selenium-api/4.14.1/selenium-api-4.14.1.pom
441:  [INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/seleniumhq/selenium/selenium-api/4.14.1/selenium-api-4.14.1.pom (2.1 kB at 77 kB/s)
442:  [INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/seleniumhq/selenium/selenium-chrome-driver/4.14.1/selenium-chrome-driver-4.14.1.pom
443:  [INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/seleniumhq/selenium/selenium-chrome-driver/4.14.1/selenium-chrome-driver-4.14.1.pom (3.4 kB at 111 kB/s)
444:  [INFO] Downloading from central: https://repo.maven.apache.org/maven2/com/google/guava/guava/32.1.2-jre/guava-32.1.2-jre.pom
445:  [INFO] Downloaded from central: https://repo.maven.apache.org/maven2/com/google/guava/guava/32.1.2-jre/guava-32.1.2-jre.pom (13 kB at 459 kB/s)
446:  [INFO] Downloading from central: https://repo.maven.apache.org/maven2/com/google/guava/guava-parent/32.1.2-jre/guava-parent-32.1.2-jre.pom
447:  [INFO] Downloaded from central: https://repo.maven.apache.org/maven2/com/google/guava/guava-parent/32.1.2-jre/guava-parent-32.1.2-jre.pom (20 kB at 585 kB/s)
448:  [INFO] Downloading from central: https://repo.maven.apache.org/maven2/com/google/guava/failureaccess/1.0.1/failureaccess-1.0.1.pom
449:  [INFO] Downloaded from central: https://repo.maven.apache.org/maven2/com/google/guava/failureaccess/1.0.1/failureaccess-1.0.1.pom (2.4 kB at 86 kB/s)
450:  [INFO] Downloading from central: https://repo.maven.apache.org/maven2/com/google/code/findbugs/jsr305/3.0.2/jsr305-3.0.2.pom
451:  [INFO] Downloaded from central: https://repo.maven.apache.org/maven2/com/google/code/findbugs/jsr305/3.0.2/jsr305-3.0.2.pom (4.3 kB at 159 kB/s)
452:  [INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/checkerframework/checker-qual/3.33.0/checker-qual-3.33.0.pom
453:  [INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/checkerframework/checker-qual/3.33.0/checker-qual-3.33.0.pom (2.1 kB at 75 kB/s)
454:  [INFO] Downloading from central: https://repo.maven.apache.org/maven2/com/google/errorprone/error_prone_annotations/2.18.0/error_prone_annotations-2.18.0.pom
455:  [INFO] Downloaded from central: https://repo.maven.apache.org/maven2/com/google/errorprone/error_prone_annotations/2.18.0/error_prone_annotations-2.18.0.pom (2.2 kB at 86 kB/s)
456:  [INFO] Downloading from central: https://repo.maven.apache.org/maven2/com/google/errorprone/error_prone_parent/2.18.0/error_prone_parent-2.18.0.pom
457:  [INFO] Downloaded from central: https://repo.maven.apache.org/maven2/com/google/errorprone/error_prone_parent/2.18.0/error_prone_parent-2.18.0.pom (11 kB at 317 kB/s)
458:  [INFO] Downloading from central: https://repo.maven.apache.org/maven2/com/google/j2objc/j2objc-annotations/2.8/j2objc-annotations-2.8.pom
...

579:  [INFO] Downloaded from central: https://repo.maven.apache.org/maven2/io/opentelemetry/opentelemetry-sdk-common/1.55.0/opentelemetry-sdk-common-1.55.0.jar (75 kB at 1.3 MB/s)
580:  [INFO] Downloading from central: https://repo.maven.apache.org/maven2/io/opentelemetry/opentelemetry-sdk/1.55.0/opentelemetry-sdk-1.55.0.jar
581:  [INFO] Downloaded from central: https://repo.maven.apache.org/maven2/io/opentelemetry/opentelemetry-common/1.55.0/opentelemetry-common-1.55.0.jar (2.1 kB at 36 kB/s)
582:  [INFO] Downloading from central: https://repo.maven.apache.org/maven2/io/opentelemetry/opentelemetry-sdk-metrics/1.55.0/opentelemetry-sdk-metrics-1.55.0.jar
583:  [INFO] Downloaded from central: https://repo.maven.apache.org/maven2/io/opentelemetry/opentelemetry-exporter-logging/1.55.0/opentelemetry-exporter-logging-1.55.0.jar (16 kB at 247 kB/s)
584:  [INFO] Downloading from central: https://repo.maven.apache.org/maven2/io/opentelemetry/opentelemetry-sdk-logs/1.55.0/opentelemetry-sdk-logs-1.55.0.jar
585:  [INFO] Downloaded from central: https://repo.maven.apache.org/maven2/io/opentelemetry/opentelemetry-sdk-extension-autoconfigure-spi/1.55.0/opentelemetry-sdk-extension-autoconfigure-spi-1.55.0.jar (18 kB at 222 kB/s)
586:  [INFO] Downloading from central: https://repo.maven.apache.org/maven2/net/bytebuddy/byte-buddy/1.17.8/byte-buddy-1.17.8.jar
587:  [INFO] Downloaded from central: https://repo.maven.apache.org/maven2/io/opentelemetry/opentelemetry-sdk-trace/1.55.0/opentelemetry-sdk-trace-1.55.0.jar (130 kB at 1.4 MB/s)
588:  [INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/commons/commons-exec/1.5.0/commons-exec-1.5.0.jar
589:  [INFO] Downloaded from central: https://repo.maven.apache.org/maven2/io/opentelemetry/opentelemetry-sdk/1.55.0/opentelemetry-sdk-1.55.0.jar (6.8 kB at 74 kB/s)
590:  [INFO] Downloading from central: https://repo.maven.apache.org/maven2/com/beust/jcommander/1.82/jcommander-1.82.jar
591:  [INFO] Downloaded from central: https://repo.maven.apache.org/maven2/io/opentelemetry/opentelemetry-sdk-logs/1.55.0/opentelemetry-sdk-logs-1.55.0.jar (65 kB at 691 kB/s)
592:  [INFO] Downloading from central: https://repo.maven.apache.org/maven2/com/github/ben-manes/caffeine/caffeine/3.2.2/caffeine-3.2.2.jar
593:  [INFO] Downloaded from central: https://repo.maven.apache.org/maven2/io/opentelemetry/opentelemetry-sdk-metrics/1.55.0/opentelemetry-sdk-metrics-1.55.0.jar (328 kB at 3.2 MB/s)
594:  [INFO] Downloading from central: https://repo.maven.apache.org/maven2/com/google/errorprone/error_prone_annotations/2.40.0/error_prone_annotations-2.40.0.jar
595:  [INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/commons/commons-exec/1.5.0/commons-exec-1.5.0.jar (68 kB at 556 kB/s)
596:  [INFO] Downloading from central: https://repo.maven.apache.org/maven2/com/google/auto/service/auto-service-annotations/1.1.1/auto-service-annotations-1.1.1.jar
597:  [INFO] Downloaded from central: https://repo.maven.apache.org/maven2/com/beust/jcommander/1.82/jcommander-1.82.jar (88 kB at 713 kB/s)
598:  [INFO] Downloading from central: https://repo.maven.apache.org/maven2/com/google/guava/guava/33.5.0-jre/guava-33.5.0-jre.jar
599:  [INFO] Downloaded from central: https://repo.maven.apache.org/maven2/com/google/errorprone/error_prone_annotations/2.40.0/error_prone_annotations-2.40.0.jar (20 kB at 164 kB/s)
600:  [INFO] Downloading from central: https://repo.maven.apache.org/maven2/com/google/guava/failureaccess/1.0.3/failureaccess-1.0.3.jar
...

890:  [INFO] Running dev.selenium.drivers.OptionsTest
891:  Dec 20, 2025 2:51:11 AM org.openqa.selenium.devtools.CdpVersionFinder findNearestMatch
892:  WARNING: Unable to find an exact match for CDP version 143, returning the closest version; found: 142; Please update to a Selenium version that supports CDP version 143
893:  Dec 20, 2025 2:51:12 AM org.openqa.selenium.devtools.CdpVersionFinder findNearestMatch
894:  WARNING: Unable to find an exact match for CDP version 143, returning the closest version; found: 142; Please update to a Selenium version that supports CDP version 143
895:  Dec 20, 2025 2:51:13 AM org.openqa.selenium.devtools.CdpVersionFinder findNearestMatch
896:  WARNING: Unable to find an exact match for CDP version 143, returning the closest version; found: 142; Please update to a Selenium version that supports CDP version 143
897:  Dec 20, 2025 2:51:14 AM org.openqa.selenium.devtools.CdpVersionFinder findNearestMatch
898:  WARNING: Unable to find an exact match for CDP version 143, returning the closest version; found: 142; Please update to a Selenium version that supports CDP version 143
899:  Dec 20, 2025 2:51:14 AM org.openqa.selenium.devtools.CdpVersionFinder findNearestMatch
900:  WARNING: Unable to find an exact match for CDP version 143, returning the closest version; found: 142; Please update to a Selenium version that supports CDP version 143
901:  Dec 20, 2025 2:51:15 AM org.openqa.selenium.devtools.CdpVersionFinder findNearestMatch
902:  WARNING: Unable to find an exact match for CDP version 143, returning the closest version; found: 142; Please update to a Selenium version that supports CDP version 143
903:  Dec 20, 2025 2:51:15 AM org.openqa.selenium.devtools.CdpVersionFinder findNearestMatch
904:  WARNING: Unable to find an exact match for CDP version 143, returning the closest version; found: 142; Please update to a Selenium version that supports CDP version 143
905:  [INFO] Tests run: 13, Failures: 0, Errors: 0, Skipped: 0, Time elapsed: 10.70 s -- in dev.selenium.drivers.OptionsTest
906:  [INFO] Running dev.selenium.drivers.ServiceTest
907:  Dec 20, 2025 2:51:16 AM org.openqa.selenium.devtools.CdpVersionFinder findNearestMatch
908:  WARNING: Unable to find an exact match for CDP version 143, returning the closest version; found: 142; Please update to a Selenium version that supports CDP version 143
909:  Dec 20, 2025 2:51:16 AM org.openqa.selenium.devtools.CdpVersionFinder findNearestMatch
910:  WARNING: Unable to find an exact match for CDP version 143, returning the closest version; found: 142; Please update to a Selenium version that supports CDP version 143
911:  Dec 20, 2025 2:51:17 AM org.openqa.selenium.devtools.CdpVersionFinder findNearestMatch
912:  WARNING: Unable to find an exact match for CDP version 143, returning the closest version; found: 142; Please update to a Selenium version that supports CDP version 143
913:  [INFO] Tests run: 3, Failures: 0, Errors: 0, Skipped: 0, Time elapsed: 1.414 s -- in dev.selenium.drivers.ServiceTest
914:  [INFO] Running dev.selenium.drivers.HttpClientTest
915:  [INFO] Tests run: 3, Failures: 0, Errors: 0, Skipped: 0, Time elapsed: 8.693 s -- in dev.selenium.drivers.HttpClientTest
916:  [INFO] Running dev.selenium.drivers.RemoteWebDriverTest
917:  [INFO] Tests run: 5, Failures: 0, Errors: 0, Skipped: 0, Time elapsed: 5.107 s -- in dev.selenium.drivers.RemoteWebDriverTest
918:  [INFO] Running dev.selenium.browsers.EdgeTest
919:  02:51:50.145 WARN [CdpVersionFinder.findNearestMatch] - Unable to find an exact match for CDP version 143, returning the closest version; found: 142; Please update to a Selenium version that supports CDP version 143
920:  02:51:50.689 WARN [CdpVersionFinder.findNearestMatch] - Unable to find an exact match for CDP version 143, returning the closest version; found: 142; Please update to a Selenium version that supports CDP version 143
921:  02:51:51.231 WARN [CdpVersionFinder.findNearestMatch] - Unable to find an exact match for CDP version 143, returning the closest version; found: 142; Please update to a Selenium version that supports CDP version 143
922:  02:51:51.776 WARN [CdpVersionFinder.findNearestMatch] - Unable to find an exact match for CDP version 143, returning the closest version; found: 142; Please update to a Selenium version that supports CDP version 143
923:  02:51:52.316 WARN [CdpVersionFinder.findNearestMatch] - Unable to find an exact match for CDP version 143, returning the closest version; found: 142; Please update to a Selenium version that supports CDP version 143
924:  02:51:52.893 WARN [CdpVersionFinder.findNearestMatch] - Unable to find an exact match for CDP version 143, returning the closest version; found: 142; Please update to a Selenium version that supports CDP version 143
925:  02:51:54.211 WARN [CdpVersionFinder.findNearestMatch] - Unable to find an exact match for CDP version 143, returning the closest version; found: 142; Please update to a Selenium version that supports CDP version 143
926:  02:51:54.753 WARN [CdpVersionFinder.findNearestMatch] - Unable to find an exact match for CDP version 143, returning the closest version; found: 142; Please update to a Selenium version that supports CDP version 143
927:  02:51:56.110 WARN [CdpVersionFinder.findNearestMatch] - Unable to find an exact match for CDP version 143, returning the closest version; found: 142; Please update to a Selenium version that supports CDP version 143
928:  02:51:59.023 WARN [CdpVersionFinder.findNearestMatch] - Unable to find an exact match for CDP version 143, returning the closest version; found: 142; Please update to a Selenium version that supports CDP version 143
929:  02:51:59.577 WARN [CdpVersionFinder.findNearestMatch] - Unable to find an exact match for CDP version 143, returning the closest version; found: 142; Please update to a Selenium version that supports CDP version 143
930:  02:52:00.126 WARN [CdpVersionFinder.findNearestMatch] - Unable to find an exact match for CDP version 143, returning the closest version; found: 142; Please update to a Selenium version that supports CDP version 143
931:  02:52:00.670 WARN [CdpVersionFinder.findNearestMatch] - Unable to find an exact match for CDP version 143, returning the closest version; found: 142; Please update to a Selenium version that supports CDP version 143
932:  02:52:01.605 WARN [CdpVersionFinder.findNearestMatch] - Unable to find an exact match for CDP version 143, returning the closest version; found: 142; Please update to a Selenium version that supports CDP version 143
933:  02:52:02.348 WARN [CdpVersionFinder.findNearestMatch] - Unable to find an exact match for CDP version 143, returning the closest version; found: 142; Please update to a Selenium version that supports CDP version 143
934:  [INFO] Tests run: 15, Failures: 0, Errors: 0, Skipped: 0, Time elapsed: 31.40 s -- in dev.selenium.browsers.EdgeTest
935:  [INFO] Running dev.selenium.browsers.InternetExplorerTest
936:  [WARNING] Tests run: 6, Failures: 0, Errors: 0, Skipped: 6, Time elapsed: 0 s -- in dev.selenium.browsers.InternetExplorerTest
937:  [INFO] Running dev.selenium.browsers.SafariTest
938:  [WARNING] Tests run: 2, Failures: 0, Errors: 0, Skipped: 2, Time elapsed: 0.001 s -- in dev.selenium.browsers.SafariTest
939:  [INFO] Running dev.selenium.browsers.FirefoxTest
940:  [INFO] Tests run: 14, Failures: 0, Errors: 0, Skipped: 0, Time elapsed: 51.88 s -- in dev.selenium.browsers.FirefoxTest
941:  [INFO] Running dev.selenium.browsers.ChromeTest
942:  02:52:54.687 WARN [CdpVersionFinder.findNearestMatch] - Unable to find an exact match for CDP version 143, returning the closest version; found: 142; Please update to a Selenium version that supports CDP version 143
943:  02:52:55.128 WARN [CdpVersionFinder.findNearestMatch] - Unable to find an exact match for CDP version 143, returning the closest version; found: 142; Please update to a Selenium version that supports CDP version 143
944:  02:52:55.570 WARN [CdpVersionFinder.findNearestMatch] - Unable to find an exact match for CDP version 143, returning the closest version; found: 142; Please update to a Selenium version that supports CDP version 143
945:  02:52:56.028 WARN [CdpVersionFinder.findNearestMatch] - Unable to find an exact match for CDP version 143, returning the closest version; found: 142; Please update to a Selenium version that supports CDP version 143
946:  02:52:56.477 WARN [CdpVersionFinder.findNearestMatch] - Unable to find an exact match for CDP version 143, returning the closest version; found: 142; Please update to a Selenium version that supports CDP version 143
947:  02:52:56.921 WARN [CdpVersionFinder.findNearestMatch] - Unable to find an exact match for CDP version 143, returning the closest version; found: 142; Please update to a Selenium version that supports CDP version 143
948:  02:52:57.827 WARN [CdpVersionFinder.findNearestMatch] - Unable to find an exact match for CDP version 143, returning the closest version; found: 142; Please update to a Selenium version that supports CDP version 143
949:  02:52:58.396 WARN [CdpVersionFinder.findNearestMatch] - Unable to find an exact match for CDP version 143, returning the closest version; found: 142; Please update to a Selenium version that supports CDP version 143
950:  02:52:58.826 WARN [CdpVersionFinder.findNearestMatch] - Unable to find an exact match for CDP version 143, returning the closest version; found: 142; Please update to a Selenium version that supports CDP version 143
951:  02:52:59.518 WARN [CdpVersionFinder.findNearestMatch] - Unable to find an exact match for CDP version 143, returning the closest version; found: 142; Please update to a Selenium version that supports CDP version 143
952:  02:53:02.295 WARN [CdpVersionFinder.findNearestMatch] - Unable to find an exact match for CDP version 143, returning the closest version; found: 142; Please update to a Selenium version that supports CDP version 143
953:  02:53:02.736 WARN [CdpVersionFinder.findNearestMatch] - Unable to find an exact match for CDP version 143, returning the closest version; found: 142; Please update to a Selenium version that supports CDP version 143
954:  02:53:03.184 WARN [CdpVersionFinder.findNearestMatch] - Unable to find an exact match for CDP version 143, returning the closest version; found: 142; Please update to a Selenium version that supports CDP version 143
955:  02:53:03.615 WARN [CdpVersionFinder.findNearestMatch] - Unable to find an exact match for CDP version 143, returning the closest version; found: 142; Please update to a Selenium version that supports CDP version 143
956:  02:53:04.193 WARN [CdpVersionFinder.findNearestMatch] - Unable to find an exact match for CDP version 143, returning the closest version; found: 142; Please update to a Selenium version that supports CDP version 143
957:  [INFO] Tests run: 15, Failures: 0, Errors: 0, Skipped: 0, Time elapsed: 9.949 s -- in dev.selenium.browsers.ChromeTest
958:  [INFO] Running dev.selenium.waits.WaitsTest
959:  02:53:04.644 WARN [CdpVersionFinder.findNearestMatch] - Unable to find an exact match for CDP version 143, returning the closest version; found: 142; Please update to a Selenium version that supports CDP version 143
960:  02:53:06.253 WARN [CdpVersionFinder.findNearestMatch] - Unable to find an exact match for CDP version 143, returning the closest version; found: 142; Please update to a Selenium version that supports CDP version 143
961:  02:53:06.832 WARN [CdpVersionFinder.findNearestMatch] - Unable to find an exact match for CDP version 143, returning the closest version; found: 142; Please update to a Selenium version that supports CDP version 143
962:  02:53:08.439 WARN [CdpVersionFinder.findNearestMatch] - Unable to find an exact match for CDP version 143, returning the closest version; found: 142; Please update to a Selenium version that supports CDP version 143
963:  02:53:10.140 WARN [CdpVersionFinder.findNearestMatch] - Unable to find an exact match for CDP version 143, returning the closest version; found: 142; Please update to a Selenium version that supports CDP version 143
964:  [INFO] Tests run: 5, Failures: 0, Errors: 0, Skipped: 0, Time elapsed: 7.137 s -- in dev.selenium.waits.WaitsTest
965:  [INFO] Running dev.selenium.troubleshooting.LoggingTest
966:  02:53:11.408 WARN [LoggingTest.logging] - this is a warning
967:  02:53:11.408 INFO [LoggingTest.logging] - this is useful information
968:  02:53:11.408 DEBUG [LoggingTest.logging] - this is detailed debug information
969:  [INFO] Tests run: 1, Failures: 0, Errors: 0, Skipped: 0, Time elapsed: 0.006 s -- in dev.selenium.troubleshooting.LoggingTest
970:  [INFO] Running dev.selenium.actions_api.KeysTest
971:  02:53:11.789 WARN [CdpVersionFinder.findNearestMatch] - Unable to find an exact match for CDP version 143, returning the closest version; found: 142; Please update to a Selenium version that supports CDP version 143
972:  02:53:12.489 WARN [CdpVersionFinder.findNearestMatch] - Unable to find an exact match for CDP version 143, returning the closest version; found: 142; Please update to a Selenium version that supports CDP version 143
973:  02:53:13.210 WARN [CdpVersionFinder.findNearestMatch] - Unable to find an exact match for CDP version 143, returning the closest version; found: 142; Please update to a Selenium version that supports CDP version 143
974:  02:53:13.761 WARN [CdpVersionFinder.findNearestMatch] - Unable to find an exact match for CDP version 143, returning the closest version; found: 142; Please update to a Selenium version that supports CDP version 143
975:  02:53:14.282 WARN [CdpVersionFinder.findNearestMatch] - Unable to find an exact match for CDP version 143, returning the closest version; found: 142; Please update to a Selenium version that supports CDP version 143
976:  [ERROR] Tests run: 5, Failures: 3, Errors: 0, Skipped: 0, Time elapsed: 3.045 s <<< FAILURE! -- in dev.selenium.actions_api.KeysTest
977:  [ERROR] dev.selenium.actions_api.KeysTest.keyUp -- Time elapsed: 0.549 s <<< FAILURE!
978:  org.opentest4j.AssertionFailedError: expected: <Ab> but was: <>
979:  at org.junit.jupiter.api.AssertionFailureBuilder.build(AssertionFailureBuilder.java:151)
...

983:  at org.junit.jupiter.api.AssertEquals.assertEquals(AssertEquals.java:177)
984:  at org.junit.jupiter.api.Assertions.assertEquals(Assertions.java:1145)
985:  at dev.selenium.actions_api.KeysTest.keyUp(KeysTest.java:38)
986:  at java.base/java.lang.reflect.Method.invoke(Method.java:569)
987:  at java.base/java.util.concurrent.ForkJoinTask.doExec(ForkJoinTask.java:373)
988:  at java.base/java.util.concurrent.ForkJoinTask.awaitDone(ForkJoinTask.java:436)
989:  at java.base/java.util.concurrent.ForkJoinTask.join(ForkJoinTask.java:670)
990:  at java.base/java.util.concurrent.ForkJoinTask.doExec(ForkJoinTask.java:373)
991:  at java.base/java.util.concurrent.ForkJoinTask.awaitDone(ForkJoinTask.java:436)
992:  at java.base/java.util.concurrent.ForkJoinTask.join(ForkJoinTask.java:670)
993:  at java.base/java.util.concurrent.ForkJoinTask.doExec(ForkJoinTask.java:373)
994:  at java.base/java.util.concurrent.ForkJoinPool$WorkQueue.topLevelExec(ForkJoinPool.java:1182)
995:  at java.base/java.util.concurrent.ForkJoinPool.scan(ForkJoinPool.java:1655)
996:  at java.base/java.util.concurrent.ForkJoinPool.runWorker(ForkJoinPool.java:1622)
997:  at java.base/java.util.concurrent.ForkJoinWorkerThread.run(ForkJoinWorkerThread.java:165)
998:  [ERROR] dev.selenium.actions_api.KeysTest.keyDown -- Time elapsed: 0.536 s <<< FAILURE!
999:  org.opentest4j.AssertionFailedError: expected: <A> but was: <>
1000:  at org.junit.jupiter.api.AssertionFailureBuilder.build(AssertionFailureBuilder.java:151)
...

1004:  at org.junit.jupiter.api.AssertEquals.assertEquals(AssertEquals.java:177)
1005:  at org.junit.jupiter.api.Assertions.assertEquals(Assertions.java:1145)
1006:  at dev.selenium.actions_api.KeysTest.keyDown(KeysTest.java:23)
1007:  at java.base/java.lang.reflect.Method.invoke(Method.java:569)
1008:  at java.base/java.util.concurrent.ForkJoinTask.doExec(ForkJoinTask.java:373)
1009:  at java.base/java.util.concurrent.ForkJoinTask.awaitDone(ForkJoinTask.java:436)
1010:  at java.base/java.util.concurrent.ForkJoinTask.join(ForkJoinTask.java:670)
1011:  at java.base/java.util.concurrent.ForkJoinTask.doExec(ForkJoinTask.java:373)
1012:  at java.base/java.util.concurrent.ForkJoinTask.awaitDone(ForkJoinTask.java:436)
1013:  at java.base/java.util.concurrent.ForkJoinTask.join(ForkJoinTask.java:670)
1014:  at java.base/java.util.concurrent.ForkJoinTask.doExec(ForkJoinTask.java:373)
1015:  at java.base/java.util.concurrent.ForkJoinPool$WorkQueue.topLevelExec(ForkJoinPool.java:1182)
1016:  at java.base/java.util.concurrent.ForkJoinPool.scan(ForkJoinPool.java:1655)
1017:  at java.base/java.util.concurrent.ForkJoinPool.runWorker(ForkJoinPool.java:1622)
1018:  at java.base/java.util.concurrent.ForkJoinWorkerThread.run(ForkJoinWorkerThread.java:165)
1019:  [ERROR] dev.selenium.actions_api.KeysTest.sendKeysToActiveElement -- Time elapsed: 0.538 s <<< FAILURE!
1020:  org.opentest4j.AssertionFailedError: expected: <abc> but was: <>
1021:  at org.junit.jupiter.api.AssertionFailureBuilder.build(AssertionFailureBuilder.java:151)
...

1038:  at java.base/java.util.concurrent.ForkJoinPool.runWorker(ForkJoinPool.java:1622)
1039:  at java.base/java.util.concurrent.ForkJoinWorkerThread.run(ForkJoinWorkerThread.java:165)
1040:  [INFO] Running dev.selenium.actions_api.MouseTest
1041:  02:53:14.836 WARN [CdpVersionFinder.findNearestMatch] - Unable to find an exact match for CDP version 143, returning the closest version; found: 142; Please update to a Selenium version that supports CDP version 143
1042:  02:53:15.498 WARN [CdpVersionFinder.findNearestMatch] - Unable to find an exact match for CDP version 143, returning the closest version; found: 142; Please update to a Selenium version that supports CDP version 143
1043:  02:53:16.172 WARN [CdpVersionFinder.findNearestMatch] - Unable to find an exact match for CDP version 143, returning the closest version; found: 142; Please update to a Selenium version that supports CDP version 143
1044:  02:53:17.176 WARN [CdpVersionFinder.findNearestMatch] - Unable to find an exact match for CDP version 143, returning the closest version; found: 142; Please update to a Selenium version that supports CDP version 143
1045:  02:53:17.918 WARN [CdpVersionFinder.findNearestMatch] - Unable to find an exact match for CDP version 143, returning the closest version; found: 142; Please update to a Selenium version that supports CDP version 143
1046:  02:53:18.722 WARN [CdpVersionFinder.findNearestMatch] - Unable to find an exact match for CDP version 143, returning the closest version; found: 142; Please update to a Selenium version that supports CDP version 143
1047:  02:53:19.401 WARN [CdpVersionFinder.findNearestMatch] - Unable to find an exact match for CDP version 143, returning the closest version; found: 142; Please update to a Selenium version that supports CDP version 143
1048:  02:53:20.107 WARN [CdpVersionFinder.findNearestMatch] - Unable to find an exact match for CDP version 143, returning the closest version; found: 142; Please update to a Selenium version that supports CDP version 143
1049:  02:53:20.822 WARN [CdpVersionFinder.findNearestMatch] - Unable to find an exact match for CDP version 143, returning the closest version; found: 142; Please update to a Selenium version that supports CDP version 143
1050:  02:53:21.653 WARN [CdpVersionFinder.findNearestMatch] - Unable to find an exact match for CDP version 143, returning the closest version; found: 142; Please update to a Selenium version that supports CDP version 143
1051:  02:53:22.374 WARN [CdpVersionFinder.findNearestMatch] - Unable to find an exact match for CDP version 143, returning the closest version; found: 142; Please update to a Selenium version that supports CDP version 143
1052:  02:53:23.103 WARN [CdpVersionFinder.findNearestMatch] - Unable to find an exact match for CDP version 143, returning the closest version; found: 142; Please update to a Selenium version that supports CDP version 143
1053:  [INFO] Tests run: 12, Failures: 0, Errors: 0, Skipped: 0, Time elapsed: 8.995 s -- in dev.selenium.actions_api.MouseTest
1054:  [INFO] Running dev.selenium.actions_api.ActionsTest
1055:  02:53:23.820 WARN [CdpVersionFinder.findNearestMatch] - Unable to find an exact match for CDP version 143, returning the closest version; found: 142; Please update to a Selenium version that supports CDP version 143
1056:  02:53:24.543 WARN [CdpVersionFinder.findNearestMatch] - Unable to find an exact match for CDP version 143, returning the closest version; found: 142; Please update to a Selenium version that supports CDP version 143
1057:  [INFO] Tests run: 2, Failures: 0, Errors: 0, Skipped: 0, Time elapsed: 3.415 s -- in dev.selenium.actions_api.ActionsTest
1058:  [INFO] Running dev.selenium.actions_api.WheelTest
1059:  02:53:27.245 WARN [CdpVersionFinder.findNearestMatch] - Unable to find an exact match for CDP version 143, returning the closest version; found: 142; Please update to a Selenium version that supports CDP version 143
1060:  02:53:28.113 WARN [CdpVersionFinder.findNearestMatch] - Unable to find an exact match for CDP version 143, returning the closest version; found: 142; Please update to a Selenium version that supports CDP version 143
1061:  02:53:29.401 WARN [CdpVersionFinder.findNearestMatch] - Unable to find an exact match for CDP version 143, returning the closest version; found: 142; Please update to a Selenium version that supports CDP version 143
1062:  02:53:30.217 WARN [CdpVersionFinder.findNearestMatch] - Unable to find an exact match for CDP version 143, returning the closest version; found: 142; Please update to a Selenium version that supports CDP version 143
1063:  02:53:31.048 WARN [CdpVersionFinder.findNearestMatch] - Unable to find an exact match for CDP version 143, returning the closest version; found: 142; Please update to a Selenium version that supports CDP version 143
1064:  [INFO] Tests run: 5, Failures: 0, Errors: 0, Skipped: 0, Time elapsed: 4.620 s -- in dev.selenium.actions_api.WheelTest
1065:  [INFO] Running dev.selenium.actions_api.PenTest
1066:  02:53:31.853 WARN [CdpVersionFinder.findNearestMatch] - Unable to find an exact match for CDP version 143, returning the closest version; found: 142; Please update to a Selenium version that supports CDP version 143
1067:  02:53:32.493 WARN [CdpVersionFinder.findNearestMatch] - Unable to find an exact match for CDP version 143, returning the closest version; found: 142; Please update to a Selenium version that supports CDP version 143
1068:  [INFO] Tests run: 2, Failures: 0, Errors: 0, Skipped: 0, Time elapsed: 1.538 s -- in dev.selenium.actions_api.PenTest
1069:  [INFO] Running dev.selenium.elements.FileUploadTest
1070:  02:53:33.401 WARN [CdpVersionFinder.findNearestMatch] - Unable to find an exact match for CDP version 143, returning the closest version; found: 142; Please update to a Selenium version that supports CDP version 143
1071:  [INFO] Tests run: 1, Failures: 0, Errors: 0, Skipped: 0, Time elapsed: 0.903 s -- in dev.selenium.elements.FileUploadTest
1072:  [INFO] Running dev.selenium.elements.InformationTest
1073:  02:53:34.319 WARN [CdpVersionFinder.findNearestMatch] - Unable to find an exact match for CDP version 143, returning the closest version; found: 142; Please update to a Selenium version that supports CDP version 143
1074:  [INFO] Tests run: 1, Failures: 0, Errors: 0, Skipped: 0, Time elapsed: 0.689 s -- in dev.selenium.elements.InformationTest
1075:  [INFO] Running dev.selenium.elements.InteractionTest
1076:  02:53:34.995 WARN [CdpVersionFinder.findNearestMatch] - Unable to find an exact match for CDP version 143, returning the closest version; found: 142; Please update to a Selenium version that supports CDP version 143
1077:  [INFO] Tests run: 1, Failures: 0, Errors: 0, Skipped: 0, Time elapsed: 0.715 s -- in dev.selenium.elements.InteractionTest
1078:  [INFO] Running dev.selenium.getting_started.UsingSeleniumTest
1079:  02:53:35.698 WARN [CdpVersionFinder.findNearestMatch] - Unable to find an exact match for CDP version 143, returning the closest version; found: 142; Please update to a Selenium version that supports CDP version 143
1080:  [INFO] Tests run: 1, Failures: 0, Errors: 0, Skipped: 0, Time elapsed: 0.751 s -- in dev.selenium.getting_started.UsingSeleniumTest
1081:  [INFO] Running dev.selenium.support.SelectListTest
1082:  02:53:36.447 WARN [CdpVersionFinder.findNearestMatch] - Unable to find an exact match for CDP version 143, returning the closest version; found: 142; Please update to a Selenium version that supports CDP version 143
1083:  02:53:37.240 WARN [CdpVersionFinder.findNearestMatch] - Unable to find an exact match for CDP version 143, returning the closest version; found: 142; Please update to a Selenium version that supports CDP version 143
1084:  02:53:37.816 WARN [CdpVersionFinder.findNearestMatch] - Unable to find an exact match for CDP version 143, returning the closest version; found: 142; Please update to a Selenium version that supports CDP version 143
1085:  [INFO] Tests run: 3, Failures: 0, Errors: 0, Skipped: 0, Time elapsed: 2.157 s -- in dev.selenium.support.SelectListTest
1086:  [INFO] Running dev.selenium.bidirectional.webdriver_bidi.ScriptTest
1087:  [INFO] Tests run: 24, Failures: 0, Errors: 0, Skipped: 0, Time elapsed: 78.14 s -- in dev.selenium.bidirectional.webdriver_bidi.ScriptTest
1088:  [INFO] Running dev.selenium.bidirectional.webdriver_bidi.ScriptEventsTest
1089:  [WARNING] Tests run: 3, Failures: 0, Errors: 0, Skipped: 1, Time elapsed: 5.926 s -- in dev.selenium.bidirectional.webdriver_bidi.ScriptEventsTest
1090:  [INFO] Running dev.selenium.bidirectional.webdriver_bidi.BrowsingContextInspectorTest
1091:  [INFO] Tests run: 9, Failures: 0, Errors: 0, Skipped: 0, Time elapsed: 27.80 s -- in dev.selenium.bidirectional.webdriver_bidi.BrowsingContextInspectorTest
1092:  [INFO] Running dev.selenium.bidirectional.webdriver_bidi.NetworkCommandsTest
1093:  [INFO] Tests run: 6, Failures: 0, Errors: 0, Skipped: 0, Time elapsed: 23.41 s -- in dev.selenium.bidirectional.webdriver_bidi.NetworkCommandsTest
1094:  [INFO] Running dev.selenium.bidirectional.webdriver_bidi.BrowsingContextTest
1095:  [INFO] Tests run: 26, Failures: 0, Errors: 0, Skipped: 0, Time elapsed: 81.38 s -- in dev.selenium.bidirectional.webdriver_bidi.BrowsingContextTest
1096:  [INFO] Running dev.selenium.bidirectional.webdriver_bidi.user_context.MultipleInstanceParallelTest
1097:  [INFO] Tests run: 3, Failures: 0, Errors: 0, Skipped: 0, Time elapsed: 9.410 s -- in dev.selenium.bidirectional.webdriver_bidi.user_context.MultipleInstanceParallelTest
1098:  [INFO] Running dev.selenium.bidirectional.webdriver_bidi.user_context.SingleInstanceCookieParallelTest
1099:  [INFO] Tests run: 3, Failures: 0, Errors: 0, Skipped: 0, Time elapsed: 3.931 s -- in dev.selenium.bidirectional.webdriver_bidi.user_context.SingleInstanceCookieParallelTest
1100:  [INFO] Running dev.selenium.bidirectional.webdriver_bidi.LogTest
1101:  [INFO] Tests run: 5, Failures: 0, Errors: 0, Skipped: 0, Time elapsed: 15.06 s -- in dev.selenium.bidirectional.webdriver_bidi.LogTest
1102:  [INFO] Running dev.selenium.bidirectional.webdriver_bidi.ActionsTest
1103:  [INFO] Tests run: 2, Failures: 0, Errors: 0, Skipped: 0, Time elapsed: 7.035 s -- in dev.selenium.bidirectional.webdriver_bidi.ActionsTest
1104:  [INFO] Running dev.selenium.bidirectional.webdriver_bidi.LocateNodesTest
1105:  [WARNING] Tests run: 10, Failures: 0, Errors: 0, Skipped: 1, Time elapsed: 26.51 s -- in dev.selenium.bidirectional.webdriver_bidi.LocateNodesTest
1106:  [INFO] Running dev.selenium.bidirectional.webdriver_bidi.high_level.LogTest
1107:  [INFO] Tests run: 4, Failures: 0, Errors: 0, Skipped: 0, Time elapsed: 12.39 s -- in dev.selenium.bidirectional.webdriver_bidi.high_level.LogTest
1108:  [INFO] Running dev.selenium.bidirectional.webdriver_bidi.NetworkEventsTest
1109:  [INFO] Tests run: 5, Failures: 0, Errors: 0, Skipped: 0, Time elapsed: 16.09 s -- in dev.selenium.bidirectional.webdriver_bidi.NetworkEventsTest
1110:  [INFO] Running dev.selenium.interactions.InteractionsTest
1111:  02:58:45.732 WARN [CdpVersionFinder.findNearestMatch] - Unable to find an exact match for CDP version 143, returning the closest version; found: 142; Please update to a Selenium version that supports CDP version 143
1112:  02:58:46.499 WARN [CdpVersionFinder.findNearestMatch] - Unable to find an exact match for CDP version 143, returning the closest version; found: 142; Please update to a Selenium version that supports CDP version 143
1113:  [INFO] Tests run: 2, Failures: 0, Errors: 0, Skipped: 0, Time elapsed: 1.464 s -- in dev.selenium.interactions.InteractionsTest
1114:  [INFO] Running dev.selenium.interactions.AlertsTest
1115:  02:58:47.168 WARN [CdpVersionFinder.findNearestMatch] - Unable to find an exact match for CDP version 143, returning the closest version; found: 142; Please update to a Selenium version that supports CDP version 143
1116:  02:58:47.820 WARN [CdpVersionFinder.findNearestMatch] - Unable to find an exact match for CDP version 143, returning the closest version; found: 142; Please update to a Selenium version that supports CDP version 143
1117:  02:58:48.163 WARN [CdpVersionFinder.findNearestMatch] - Unable to find an exact match for CDP version 143, returning the closest version; found: 142; Please update to a Selenium version that supports CDP version 143
1118:  02:58:49.135 WARN [CdpVersionFinder.findNearestMatch] - Unable to find an exact match for CDP version 143, returning the closest version; found: 142; Please update to a Selenium version that supports CDP version 143
1119:  02:58:49.808 WARN [CdpVersionFinder.findNearestMatch] - Unable to find an exact match for CDP version 143, returning the closest version; found: 142; Please update to a Selenium version that supports CDP version 143
1120:  02:58:50.460 WARN [CdpVersionFinder.findNearestMatch] - Unable to find an exact match for CDP version 143, returning the closest version; found: 142; Please update to a Selenium version that supports CDP version 143
1121:  02:58:51.187 WARN [CdpVersionFinder.findNearestMatch] - Unable to find an exact match for CDP version 143, returning the closest version; found: 142; Please update to a Selenium version that supports CDP version 143
1122:  02:58:51.969 WARN [CdpVersionFinder.findNearestMatch] - Unable to find an exact match for CDP version 143, returning the closest version; found: 142; Please update to a Selenium version that supports CDP version 143
1123:  02:58:52.608 WARN [CdpVersionFinder.findNearestMatch] - Unable to find an exact match for CDP version 143, returning the closest version; found: 142; Please update to a Selenium version that supports CDP version 143
1124:  02:58:53.726 WARN [CdpVersionFinder.findNearestMatch] - Unable to find an exact match for CDP version 143, returning the closest version; found: 142; Please update to a Selenium version that supports CDP version 143
1125:  02:58:54.350 WARN [CdpVersionFinder.findNearestMatch] - Unable to find an exact match for CDP version 143, returning the closest version; found: 142; Please update to a Selenium version that supports CDP version 143
1126:  [INFO] Tests run: 10, Failures: 0, Errors: 0, Skipped: 0, Time elapsed: 7.794 s -- in dev.selenium.interactions.AlertsTest
1127:  [INFO] Running dev.selenium.interactions.FramesTest
1128:  02:58:54.980 WARN [CdpVersionFinder.findNearestMatch] - Unable to find an exact match for CDP version 143, returning the closest version; found: 142; Please update to a Selenium version that supports CDP version 143
1129:  [INFO] Tests run: 1, Failures: 0, Errors: 0, Skipped: 0, Time elapsed: 0.773 s -- in dev.selenium.interactions.FramesTest
1130:  [INFO] Running dev.selenium.interactions.VirtualAuthenticatorTest
1131:  02:58:55.739 WARN [CdpVersionFinder.findNearestMatch] - Unable to find an exact match for CDP version 143, returning the closest version; found: 142; Please update to a Selenium version that supports CDP version 143
1132:  02:58:56.190 WARN [CdpVersionFinder.findNearestMatch] - Unable to find an exact match for CDP version 143, returning the closest version; found: 142; Please update to a Selenium version that supports CDP version 143
1133:  02:58:56.618 WARN [CdpVersionFinder.findNearestMatch] - Unable to find an exact match for CDP version 143, returning the closest version; found: 142; Please update to a Selenium version that supports CDP version 143
1134:  02:58:57.066 WARN [CdpVersionFinder.findNearestMatch] - Unable to find an exact match for CDP version 143, returning the closest version; found: 142; Please update to a Selenium version that supports CDP version 143
1135:  02:58:57.512 WARN [CdpVersionFinder.findNearestMatch] - Unable to find an exact match for CDP version 143, returning the closest version; found: 142; Please update to a Selenium version that supports CDP version 143
1136:  02:58:57.966 WARN [CdpVersionFinder.findNearestMatch] - Unable to find an exact match for CDP version 143, returning the closest version; found: 142; Please update to a Selenium version that supports CDP version 143
1137:  02:58:58.406 WARN [CdpVersionFinder.findNearestMatch] - Unable to find an exact match for CDP version 143, returning the closest version; found: 142; Please update to a Selenium version that supports CDP version 143
1138:  02:58:58.836 WARN [CdpVersionFinder.findNearestMatch] - Unable to find an exact match for CDP version 143, returning the closest version; found: 142; Please update to a Selenium version that supports CDP version 143
1139:  02:58:59.276 WARN [CdpVersionFinder.findNearestMatch] - Unable to find an exact match for CDP version 143, returning the closest version; found: 142; Please update to a Selenium version that supports CDP version 143
1140:  02:58:59.721 WARN [CdpVersionFinder.findNearestMatch] - Unable to find an exact match for CDP version 143, returning the closest version; found: 142; Please update to a Selenium version that supports CDP version 143
1141:  [INFO] Tests run: 10, Failures: 0, Errors: 0, Skipped: 0, Time elapsed: 4.422 s -- in dev.selenium.interactions.VirtualAuthenticatorTest
1142:  [INFO] Running dev.selenium.interactions.PrintsPageTest
1143:  02:59:00.261 WARN [CdpVersionFinder.findNearestMatch] - Unable to find an exact match for CDP version 143, returning the closest version; found: 142; Please update to a Selenium version that supports CDP version 143
1144:  02:59:01.054 WARN [CdpVersionFinder.findNearestMatch] - Unable to find an exact match for CDP version 143, returning the closest version; found: 142; Please update to a Selenium version that supports CDP version 143
1145:  [INFO] Tests run: 2, Failures: 0, Errors: 0, Skipped: 0, Time elapsed: 1.748 s -- in dev.selenium.interactions.PrintsPageTest
1146:  [INFO] Running dev.selenium.interactions.SavingTest
1147:  02:59:01.924 WARN [CdpVersionFinder.findNearestMatch] - Unable to find an exact match for CDP version 143, returning the closest version; found: 142; Please update to a Selenium version that supports CDP version 143
1148:  [INFO] Tests run: 1, Failures: 0, Errors: 0, Skipped: 0, Time elapsed: 0.848 s -- in dev.selenium.interactions.SavingTest
1149:  [INFO] Running dev.selenium.interactions.PrintOptionsTest
1150:  02:59:02.782 WARN [CdpVersionFinder.findNearestMatch] - Unable to find an exact match for CDP version 143, returning the closest version; found: 142; Please update to a Selenium version that supports CDP version 143
1151:  02:59:03.451 WARN [CdpVersionFinder.findNearestMatch] - Unable to find an exact match for CDP version 143, returning the closest version; found: 142; Please update to a Selenium version that supports CDP version 143
1152:  02:59:04.128 WARN [CdpVersionFinder.findNearestMatch] - Unable to find an exact match for CDP version 143, returning the closest version; found: 142; Please update to a Selenium version that supports CDP version 143
1153:  02:59:04.786 WARN [CdpVersionFinder.findNearestMatch] - Unable to find an exact match for CDP version 143, returning the closest version; found: 142; Please update to a Selenium version that supports CDP version 143
1154:  02:59:05.449 WARN [CdpVersionFinder.findNearestMatch] - Unable to find an exact match for CDP version 143, returning the closest version; found: 142; Please update to a Selenium version that supports CDP version 143
1155:  02:59:06.133 WARN [CdpVersionFinder.findNearestMatch] - Unable to find an exact match for CDP version 143, returning the closest version; found: 142; Please update to a Selenium version that supports CDP version 143
1156:  02:59:06.812 WARN [CdpVersionFinder.findNearestMatch] - Unable to find an exact match for CDP version 143, returning the closest version; found: 142; Please update to a Selenium version that supports CDP version 143
1157:  [INFO] Tests run: 7, Failures: 0, Errors: 0, Skipped: 0, Time elapsed: 4.721 s -- in dev.selenium.interactions.PrintOptionsTest
1158:  [INFO] Running dev.selenium.interactions.WindowsTest
1159:  02:59:07.473 WARN [CdpVersionFinder.findNearestMatch] - Unable to find an exact match for CDP version 143, returning the closest version; found: 142; Please update to a Selenium version that supports CDP version 143
1160:  [INFO] Tests run: 1, Failures: 0, Errors: 0, Skipped: 0, Time elapsed: 0.738 s -- in dev.selenium.interactions.WindowsTest
1161:  [INFO] Running dev.selenium.interactions.CookiesTest
1162:  02:59:08.219 WARN [CdpVersionFinder.findNearestMatch] - Unable to find an exact match for CDP version 143, returning the closest version; found: 142; Please update to a Selenium version that supports CDP version 143
1163:  02:59:08.711 WARN [CdpVersionFinder.findNearestMatch] - Unable to find an exact match for CDP version 143, returning the closest version; found: 142; Please update to a Selenium version that supports CDP version 143
1164:  02:59:09.282 WARN [CdpVersionFinder.findNearestMatch] - Unable to find an exact match for CDP version 143, returning the closest version; found: 142; Please update to a Selenium version that supports CDP version 143
1165:  02:59:09.790 WARN [CdpVersionFinder.findNearestMatch] - Unable to find an exact match for CDP version 143, returning the closest version; found: 142; Please update to a Selenium version that supports CDP version 143
1166:  02:59:10.356 WARN [CdpVersionFinder.findNearestMatch] - Unable to find an exact match for CDP version 143, returning the closest version; found: 142; Please update to a Selenium version that supports CDP version 143
1167:  02:59:10.855 WARN [CdpVersionFinder.findNearestMatch] - Unable to find an exact match for CDP version 143, returning the closest version; found: 142; Please update to a Selenium version that supports CDP version 143
1168:  02:59:11.351 WARN [CdpVersionFinder.findNearestMatch] - Unable to find an exact match for CDP version 143, returning the closest version; found: 142; Please update to a Selenium version that supports CDP version 143
1169:  [INFO] Tests run: 7, Failures: 0, Errors: 0, Skipped: 0, Time elapsed: 3.628 s -- in dev.selenium.interactions.CookiesTest
1170:  [INFO] Running dev.selenium.interactions.NavigationTest
1171:  02:59:11.863 WARN [CdpVersionFinder.findNearestMatch] - Unable to find an exact match for CDP version 143, returning the closest version; found: 142; Please update to a Selenium version that supports CDP version 143
1172:  [INFO] Tests run: 1, Failures: 0, Errors: 0, Skipped: 0, Time elapsed: 0.950 s -- in dev.selenium.interactions.NavigationTest
1173:  [INFO] Running dev.selenium.bidi.cdp.ScriptTest
1174:  02:59:12.800 WARN [CdpVersionFinder.findNearestMatch] - Unable to find an exact match for CDP version 143, returning the closest version; found: 142; Please update to a Selenium version that supports CDP version 143
1175:  02:59:14.903 WARN [CdpVersionFinder.findNearestMatch] - Unable to find an exact match for CDP version 143, returning the closest version; found: 142; Please update to a Selenium version that supports CDP version 143
1176:  [INFO] Tests run: 2, Failures: 0, Errors: 0, Skipped: 0, Time elapsed: 2.629 s -- in dev.selenium.bidi.cdp.ScriptTest
1177:  [INFO] Running dev.selenium.bidi.cdp.LoggingTest
1178:  02:59:15.429 WARN [CdpVersionFinder.findNearestMatch] - Unable to find an exact match for CDP version 143, returning the closest version; found: 142; Please update to a Selenium version that supports CDP version 143
1179:  [INFO] Tests run: 1, Failures: 0, Errors: 0, Skipped: 0, Time elapsed: 0.616 s -- in dev.selenium.bidi.cdp.LoggingTest
1180:  [INFO] Running dev.selenium.bidi.cdp.NetworkTest
1181:  02:59:16.039 WARN [CdpVersionFinder.findNearestMatch] - Unable to find an exact match for CDP version 143, returning the closest version; found: 142; Please update to a Selenium version that supports CDP version 143
1182:  02:59:16.569 WARN [CdpVersionFinder.findNearestMatch] - Unable to find an exact match for CDP version 143, returning the closest version; found: 142; Please update to a Selenium version that supports CDP version 143
1183:  02:59:17.256 WARN [CdpVersionFinder.findNearestMatch] - Unable to find an exact match for CDP version 143, returning the closest version; found: 142; Please update to a Selenium version that supports CDP version 143
1184:  02:59:18.262 WARN [CdpVersionFinder.findNearestMatch] - Unable to find an exact match for CDP version 143, returning the closest version; found: 142; Please update to a Selenium version that supports CDP version 143
1185:  02:59:18.881 WARN [CdpVersionFinder.findNearestMatch] - Unable to find an exact match for CDP version 143, returning the closest version; found: 142; Please update to a Selenium version that supports CDP version 143
1186:  02:59:19.530 WARN [CdpVersionFinder.findNearestMatch] - Unable to find an exact match for CDP version 143, returning the closest version; found: 142; Please update to a Selenium version that supports CDP version 143
1187:  02:59:20.116 WARN [CdpVersionFinder.findNearestMatch] - Unable to find an exact match for CDP version 143, returning the closest version; found: 142; Please update to a Selenium version that supports CDP version 143
1188:  [INFO] Tests run: 7, Failures: 0, Errors: 0, Skipped: 0, Time elapsed: 4.789 s -- in dev.selenium.bidi.cdp.NetworkTest
1189:  [INFO] Running dev.selenium.bidi.cdp.CdpTest
1190:  02:59:20.837 WARN [CdpVersionFinder.findNearestMatch] - Unable to find an exact match for CDP version 143, returning the closest version; found: 142; Please update to a Selenium version that supports CDP version 143
1191:  [INFO] Tests run: 1, Failures: 0, Errors: 0, Skipped: 0, Time elapsed: 0.667 s -- in dev.selenium.bidi.cdp.CdpTest
1192:  [INFO] Running dev.selenium.bidi.cdp.CdpApiTest
1193:  [INFO] Tests run: 2, Failures: 0, Errors: 0, Skipped: 0, Time elapsed: 5.087 s -- in dev.selenium.bidi.cdp.CdpApiTest
1194:  [INFO] Running dev.selenium.actions_api.KeysTest
1195:  02:59:26.615 WARN [CdpVersionFinder.findNearestMatch] - Unable to find an exact match for CDP version 143, returning the closest version; found: 142; Please update to a Selenium version that supports CDP version 143
1196:  02:59:27.145 WARN [CdpVersionFinder.findNearestMatch] - Unable to find an exact match for CDP version 143, returning the closest version; found: 142; Please update to a Selenium version that supports CDP version 143
1197:  02:59:27.666 WARN [CdpVersionFinder.findNearestMatch] - Unable to find an exact match for CDP version 143, returning the closest version; found: 142; Please update to a Selenium version that supports CDP version 143
1198:  [ERROR] Tests run: 3, Failures: 3, Errors: 0, Skipped: 0, Time elapsed: 1.602 s <<< FAILURE! -- in dev.selenium.actions_api.KeysTest
1199:  [ERROR] dev.selenium.actions_api.KeysTest.keyUp -- Time elapsed: 0.547 s <<< FAILURE!
1200:  org.opentest4j.AssertionFailedError: expected: <Ab> but was: <>
1201:  at org.junit.jupiter.api.AssertionFailureBuilder.build(AssertionFailureBuilder.java:151)
1202:  at org.junit.jupiter.api.AssertionFailureBuilder.buildAndThrow(AssertionFailureBuilder.java:132)
1203:  at org.junit.jupiter.api.AssertEquals.failNotEqual(AssertEquals.java:197)
1204:  at org.junit.jupiter.api.AssertEquals.assertEquals(AssertEquals.java:182)
1205:  at org.junit.jupiter.api.AssertEquals.assertEquals(AssertEquals.java:177)
1206:  at org.junit.jupiter.api.Assertions.assertEquals(Assertions.java:1145)
1207:  at dev.selenium.actions_api.KeysTest.keyUp(KeysTest.java:38)
1208:  at java.base/java.lang.reflect.Method.invoke(Method.java:569)
1209:  at java.base/java.util.concurrent.ForkJoinTask.doExec(ForkJoinTask.java:373)
1210:  at java.base/java.util.concurrent.ForkJoinTask.awaitDone(ForkJoinTask.java:436)
1211:  at java.base/java.util.concurrent.ForkJoinTask.join(ForkJoinTask.java:670)
1212:  at java.base/java.util.concurrent.ForkJoinTask.doExec(ForkJoinTask.java:373)
1213:  at java.base/java.util.concurrent.ForkJoinPool$WorkQueue.topLevelExec(ForkJoinPool.java:1182)
1214:  at java.base/java.util.concurrent.ForkJoinPool.scan(ForkJoinPool.java:1655)
1215:  at java.base/java.util.concurrent.ForkJoinPool.runWorker(ForkJoinPool.java:1622)
1216:  at java.base/java.util.concurrent.ForkJoinWorkerThread.run(ForkJoinWorkerThread.java:165)
1217:  [ERROR] dev.selenium.actions_api.KeysTest.sendKeysToActiveElement -- Time elapsed: 0.523 s <<< FAILURE!
1218:  org.opentest4j.AssertionFailedError: expected: <abc> but was: <>
1219:  at org.junit.jupiter.api.AssertionFailureBuilder.build(AssertionFailureBuilder.java:151)
1220:  at org.junit.jupiter.api.AssertionFailureBuilder.buildAndThrow(AssertionFailureBuilder.java:132)
1221:  at org.junit.jupiter.api.AssertEquals.failNotEqual(AssertEquals.java:197)
1222:  at org.junit.jupiter.api.AssertEquals.assertEquals(AssertEquals.java:182)
1223:  at org.junit.jupiter.api.AssertEquals.assertEquals(AssertEquals.java:177)
1224:  at org.junit.jupiter.api.Assertions.assertEquals(Assertions.java:1145)
1225:  at dev.selenium.actions_api.KeysTest.sendKeysToActiveElement(KeysTest.java:50)
1226:  at java.base/java.lang.reflect.Method.invoke(Method.java:569)
1227:  at java.base/java.util.concurrent.ForkJoinTask.doExec(ForkJoinTask.java:373)
1228:  at java.base/java.util.concurrent.ForkJoinTask.awaitDone(ForkJoinTask.java:436)
1229:  at java.base/java.util.concurrent.ForkJoinTask.join(ForkJoinTask.java:670)
1230:  at java.base/java.util.concurrent.ForkJoinTask.doExec(ForkJoinTask.java:373)
1231:  at java.base/java.util.concurrent.ForkJoinPool$WorkQueue.topLevelExec(ForkJoinPool.java:1182)
1232:  at java.base/java.util.concurrent.ForkJoinPool.scan(ForkJoinPool.java:1655)
1233:  at java.base/java.util.concurrent.ForkJoinPool.runWorker(ForkJoinPool.java:1622)
1234:  at java.base/java.util.concurrent.ForkJoinWorkerThread.run(ForkJoinWorkerThread.java:165)
1235:  [ERROR] dev.selenium.actions_api.KeysTest.keyDown -- Time elapsed: 0.530 s <<< FAILURE!
1236:  org.opentest4j.AssertionFailedError: expected: <A> but was: <>
1237:  at org.junit.jupiter.api.AssertionFailureBuilder.build(AssertionFailureBuilder.java:151)
...

1242:  at org.junit.jupiter.api.Assertions.assertEquals(Assertions.java:1145)
1243:  at dev.selenium.actions_api.KeysTest.keyDow...

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

Projects

None yet

Development

Successfully merging this pull request may close these issues.

5 participants