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 a32aaec
🔍 Latest deploy log https://app.netlify.com/projects/selenium-dev/deploys/6965f2773cb58f00086a2944
😎 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.

@rpallavisharma
Copy link
Member Author

error is not related to this PR, please let me know how to proceed here.

@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, stable)

Failed stage: Run Tests Stable [❌]

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

Failure summary:

The GitHub Action failed because Maven tests in examples/java did not pass, causing mvn -B test
(Surefire 3.5.4) to exit with code 1.
- The failing test class is dev.selenium.actions_api.KeysTest,
which consistently fails across all retries (the workflow uses nick-invision/[email protected] with
max_attempts: 3).
- Three tests in dev.selenium.actions_api.KeysTest failed with
org.opentest4j.AssertionFailedError because no text was entered/produced (actual was empty string
<>):
- KeysTest.keyDown at KeysTest.java:23 (expected but was <>)
- KeysTest.keyUp at
KeysTest.java:38 (expected but was <>)
- KeysTest.sendKeysToActiveElement at KeysTest.java:50
(expected but was <>)
- The build ends with BUILD FAILURE and There are test failures. (Surefire
reports referenced under examples/java/target/surefire-reports).

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
...

209:  JAVA_HOME: /opt/hostedtoolcache/Java_Temurin-Hotspot_jdk/17.0.17-10/x64
210:  JAVA_HOME_17_X64: /opt/hostedtoolcache/Java_Temurin-Hotspot_jdk/17.0.17-10/x64
211:  ##[endgroup]
212:  Warning: use -cacerts option to access cacerts keystore
213:  Certificate was added to keystore
214:  ##[group]Run nick-invision/[email protected]
215:  with:
216:  timeout_minutes: 40
217:  max_attempts: 3
218:  command: cd examples/java
219:  mvn -B test -D"jdk.internal.httpclient.disableHostnameVerification=true"
220:  
221:  retry_wait_seconds: 10
222:  polling_interval_seconds: 1
223:  warning_on_retry: true
224:  continue_on_error: false
225:  env:
...

290:  [INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/seleniumhq/selenium/selenium-remote-driver/4.38.0/selenium-remote-driver-4.38.0.pom (5.3 kB at 204 kB/s)
291:  [INFO] Downloading from central: https://repo.maven.apache.org/maven2/com/google/guava/guava/33.5.0-jre/guava-33.5.0-jre.pom
292:  [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 356 kB/s)
293:  [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
294:  [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 855 kB/s)
295:  [INFO] Downloading from central: https://repo.maven.apache.org/maven2/com/google/guava/failureaccess/1.0.3/failureaccess-1.0.3.pom
296:  [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 214 kB/s)
297:  [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
298:  [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 828 kB/s)
299:  [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
300:  [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 84 kB/s)
301:  [INFO] Downloading from central: https://repo.maven.apache.org/maven2/com/google/guava/guava-parent/26.0-android/guava-parent-26.0-android.pom
302:  [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 443 kB/s)
303:  [INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/sonatype/oss/oss-parent/9/oss-parent-9.pom
304:  [INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/sonatype/oss/oss-parent/9/oss-parent-9.pom (6.6 kB at 243 kB/s)
305:  [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
306:  [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 193 kB/s)
307:  [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
308:  [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 724 kB/s)
309:  [INFO] Downloading from central: https://repo.maven.apache.org/maven2/com/google/j2objc/j2objc-annotations/3.1/j2objc-annotations-3.1.pom
...

356:  [INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/seleniumhq/selenium/selenium-edge-driver/4.38.0/selenium-edge-driver-4.38.0.pom (3.4 kB at 142 kB/s)
357:  [INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/seleniumhq/selenium/selenium-firefox-driver/4.38.0/selenium-firefox-driver-4.38.0.pom
358:  [INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/seleniumhq/selenium/selenium-firefox-driver/4.38.0/selenium-firefox-driver-4.38.0.pom (3.7 kB at 159 kB/s)
359:  [INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/seleniumhq/selenium/selenium-ie-driver/4.38.0/selenium-ie-driver-4.38.0.pom
360:  [INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/seleniumhq/selenium/selenium-ie-driver/4.38.0/selenium-ie-driver-4.38.0.pom (3.2 kB at 139 kB/s)
361:  [INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/seleniumhq/selenium/selenium-safari-driver/4.38.0/selenium-safari-driver-4.38.0.pom
362:  [INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/seleniumhq/selenium/selenium-safari-driver/4.38.0/selenium-safari-driver-4.38.0.pom (3.0 kB at 111 kB/s)
363:  [INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/seleniumhq/selenium/selenium-support/4.38.0/selenium-support-4.38.0.pom
364:  [INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/seleniumhq/selenium/selenium-support/4.38.0/selenium-support-4.38.0.pom (3.4 kB at 161 kB/s)
365:  [INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/seleniumhq/selenium/selenium-grid/4.38.0/selenium-grid-4.38.0.pom
366:  [INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/seleniumhq/selenium/selenium-grid/4.38.0/selenium-grid-4.38.0.pom (7.7 kB at 337 kB/s)
367:  [INFO] Downloading from central: https://repo.maven.apache.org/maven2/com/beust/jcommander/1.82/jcommander-1.82.pom
368:  [INFO] Downloaded from central: https://repo.maven.apache.org/maven2/com/beust/jcommander/1.82/jcommander-1.82.pom (1.5 kB at 60 kB/s)
369:  [INFO] Downloading from central: https://repo.maven.apache.org/maven2/com/github/ben-manes/caffeine/caffeine/3.2.2/caffeine-3.2.2.pom
370:  [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 79 kB/s)
371:  [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
372:  [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 193 kB/s)
373:  [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
374:  [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 692 kB/s)
375:  [INFO] Downloading from central: https://repo.maven.apache.org/maven2/com/graphql-java/graphql-java/24.1/graphql-java-24.1.pom
...

440:  [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 210 kB/s)
441:  [INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/seleniumhq/selenium/selenium-api/4.14.1/selenium-api-4.14.1.pom
442:  [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 99 kB/s)
443:  [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
444:  [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 143 kB/s)
445:  [INFO] Downloading from central: https://repo.maven.apache.org/maven2/com/google/guava/guava/32.1.2-jre/guava-32.1.2-jre.pom
446:  [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 535 kB/s)
447:  [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
448:  [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 865 kB/s)
449:  [INFO] Downloading from central: https://repo.maven.apache.org/maven2/com/google/guava/failureaccess/1.0.1/failureaccess-1.0.1.pom
450:  [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 110 kB/s)
451:  [INFO] Downloading from central: https://repo.maven.apache.org/maven2/com/google/code/findbugs/jsr305/3.0.2/jsr305-3.0.2.pom
452:  [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 195 kB/s)
453:  [INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/checkerframework/checker-qual/3.33.0/checker-qual-3.33.0.pom
454:  [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 84 kB/s)
455:  [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
456:  [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 74 kB/s)
457:  [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
458:  [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 504 kB/s)
459:  [INFO] Downloading from central: https://repo.maven.apache.org/maven2/com/google/j2objc/j2objc-annotations/2.8/j2objc-annotations-2.8.pom
...

574:  [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 658 kB/s)
575:  [INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/seleniumhq/selenium/selenium-os/4.38.0/selenium-os-4.38.0.jar
576:  [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 1.5 MB/s)
577:  [INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/apache/commons/commons-exec/1.5.0/commons-exec-1.5.0.jar
578:  [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 291 kB/s)
579:  [INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/seleniumhq/selenium/selenium-safari-driver/4.38.0/selenium-safari-driver-4.38.0.jar
580:  [INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/seleniumhq/selenium/selenium-os/4.38.0/selenium-os-4.38.0.jar (21 kB at 90 kB/s)
581:  [INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/seleniumhq/selenium/selenium-support/4.38.0/selenium-support-4.38.0.jar
582:  [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 280 kB/s)
583:  [INFO] Downloading from central: https://repo.maven.apache.org/maven2/org/seleniumhq/selenium/selenium-grid/4.38.0/selenium-grid-4.38.0.jar
584:  [INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/seleniumhq/selenium/selenium-safari-driver/4.38.0/selenium-safari-driver-4.38.0.jar (27 kB at 107 kB/s)
585:  [INFO] Downloading from central: https://repo.maven.apache.org/maven2/com/beust/jcommander/1.82/jcommander-1.82.jar
586:  [INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/seleniumhq/selenium/selenium-support/4.38.0/selenium-support-4.38.0.jar (170 kB at 651 kB/s)
587:  [INFO] Downloading from central: https://repo.maven.apache.org/maven2/com/github/ben-manes/caffeine/caffeine/3.2.2/caffeine-3.2.2.jar
588:  [INFO] Downloaded from central: https://repo.maven.apache.org/maven2/org/seleniumhq/selenium/selenium-grid/4.38.0/selenium-grid-4.38.0.jar (1.7 MB at 5.9 MB/s)
589:  [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
590:  [INFO] Downloaded from central: https://repo.maven.apache.org/maven2/com/beust/jcommander/1.82/jcommander-1.82.jar (88 kB at 308 kB/s)
591:  [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
592:  [INFO] Downloaded from central: https://repo.maven.apache.org/maven2/com/github/ben-manes/caffeine/caffeine/3.2.2/caffeine-3.2.2.jar (895 kB at 3.0 MB/s)
593:  [INFO] Downloading from central: https://repo.maven.apache.org/maven2/com/google/guava/guava/33.5.0-jre/guava-33.5.0-jre.jar
594:  [INFO] Downloaded from central: https://repo.maven.apache.org/maven2/net/bytebuddy/byte-buddy/1.17.8/byte-buddy-1.17.8.jar (9.0 MB at 29 MB/s)
595:  [INFO] Downloading from central: https://repo.maven.apache.org/maven2/com/google/guava/failureaccess/1.0.3/failureaccess-1.0.3.jar
596:  [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 67 kB/s)
597:  [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.jar
...

911:  [INFO] Running dev.selenium.drivers.OptionsTest
912:  Jan 13, 2026 7:22:00 AM org.openqa.selenium.devtools.CdpVersionFinder findNearestMatch
913:  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
914:  Jan 13, 2026 7:22:02 AM org.openqa.selenium.devtools.CdpVersionFinder findNearestMatch
915:  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
916:  Jan 13, 2026 7:22:03 AM org.openqa.selenium.devtools.CdpVersionFinder findNearestMatch
917:  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
918:  Jan 13, 2026 7:22:03 AM org.openqa.selenium.devtools.CdpVersionFinder findNearestMatch
919:  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
920:  Jan 13, 2026 7:22:04 AM org.openqa.selenium.devtools.CdpVersionFinder findNearestMatch
921:  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
922:  Jan 13, 2026 7:22:04 AM org.openqa.selenium.devtools.CdpVersionFinder findNearestMatch
923:  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
924:  Jan 13, 2026 7:22:05 AM org.openqa.selenium.devtools.CdpVersionFinder findNearestMatch
925:  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
926:  [INFO] Tests run: 13, Failures: 0, Errors: 0, Skipped: 0, Time elapsed: 12.32 s -- in dev.selenium.drivers.OptionsTest
927:  [INFO] Running dev.selenium.drivers.ServiceTest
928:  Jan 13, 2026 7:22:05 AM org.openqa.selenium.devtools.CdpVersionFinder findNearestMatch
929:  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
930:  Jan 13, 2026 7:22:05 AM org.openqa.selenium.devtools.CdpVersionFinder findNearestMatch
931:  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
932:  Jan 13, 2026 7:22:06 AM org.openqa.selenium.devtools.CdpVersionFinder findNearestMatch
933:  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
934:  [INFO] Tests run: 3, Failures: 0, Errors: 0, Skipped: 0, Time elapsed: 1.356 s -- in dev.selenium.drivers.ServiceTest
935:  [INFO] Running dev.selenium.drivers.HttpClientTest
936:  [INFO] Tests run: 3, Failures: 0, Errors: 0, Skipped: 0, Time elapsed: 6.446 s -- in dev.selenium.drivers.HttpClientTest
937:  [INFO] Running dev.selenium.drivers.RemoteWebDriverTest
938:  [INFO] Tests run: 5, Failures: 0, Errors: 0, Skipped: 0, Time elapsed: 4.876 s -- in dev.selenium.drivers.RemoteWebDriverTest
939:  [INFO] Running dev.selenium.browsers.EdgeTest
940:  07:22:38.173 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
941:  07:22:38.706 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
942:  07:22:39.241 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:  07:22:39.791 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:  07:22:40.325 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:  07:22:40.927 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:  07:22:42.270 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:  07:22:42.798 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:  07:22:44.170 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:  07:22:47.046 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:  07:22:47.587 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:  07:22:48.130 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:  07:22:48.662 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:  07:22:49.547 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:  07:22:50.293 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:  [INFO] Tests run: 15, Failures: 0, Errors: 0, Skipped: 0, Time elapsed: 32.54 s -- in dev.selenium.browsers.EdgeTest
956:  [INFO] Running dev.selenium.browsers.InternetExplorerTest
957:  [WARNING] Tests run: 6, Failures: 0, Errors: 0, Skipped: 6, Time elapsed: 0.001 s -- in dev.selenium.browsers.InternetExplorerTest
958:  [INFO] Running dev.selenium.browsers.SafariTest
959:  [WARNING] Tests run: 2, Failures: 0, Errors: 0, Skipped: 2, Time elapsed: 0 s -- in dev.selenium.browsers.SafariTest
960:  [INFO] Running dev.selenium.browsers.FirefoxTest
961:  [INFO] Tests run: 14, Failures: 0, Errors: 0, Skipped: 0, Time elapsed: 54.03 s -- in dev.selenium.browsers.FirefoxTest
962:  [INFO] Running dev.selenium.browsers.ChromeTest
963:  07:23:44.771 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:  07:23:45.200 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
965:  07:23:45.642 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
966:  07:23:46.088 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
967:  07:23:46.529 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
968:  07:23:46.961 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
969:  07:23:47.769 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
970:  07:23:48.399 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
971:  07:23:48.845 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:  07:23:49.540 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:  07:23:52.297 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:  07:23:52.741 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:  07:23:53.174 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:  07:23:53.619 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
977:  07:23:54.180 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
978:  [INFO] Tests run: 15, Failures: 0, Errors: 0, Skipped: 0, Time elapsed: 9.850 s -- in dev.selenium.browsers.ChromeTest
979:  [INFO] Running dev.selenium.waits.WaitsTest
980:  07:23:54.616 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
981:  07:23:56.221 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
982:  07:23:56.803 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
983:  07:23: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
984:  07:24:00.063 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
985:  [INFO] Tests run: 5, Failures: 0, Errors: 0, Skipped: 0, Time elapsed: 7.060 s -- in dev.selenium.waits.WaitsTest
986:  [INFO] Running dev.selenium.troubleshooting.LoggingTest
987:  07:24:01.317 WARN [LoggingTest.logging] - this is a warning
988:  07:24:01.317 INFO [LoggingTest.logging] - this is useful information
989:  07:24:01.318 DEBUG [LoggingTest.logging] - this is detailed debug information
990:  [INFO] Tests run: 1, Failures: 0, Errors: 0, Skipped: 0, Time elapsed: 0.005 s -- in dev.selenium.troubleshooting.LoggingTest
991:  [INFO] Running dev.selenium.actions_api.KeysTest
992:  07:24:01.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
993:  07:24:02.386 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
994:  07:24:03.086 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
995:  07:24:03.611 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
996:  07:24:04.132 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
997:  [ERROR] Tests run: 5, Failures: 3, Errors: 0, Skipped: 0, Time elapsed: 2.961 s <<< FAILURE! -- in dev.selenium.actions_api.KeysTest
998:  [ERROR] dev.selenium.actions_api.KeysTest.keyUp -- Time elapsed: 0.532 s <<< FAILURE!
999:  org.opentest4j.AssertionFailedError: expected: <Ab> 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.keyUp(KeysTest.java:38)
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.keyDown -- Time elapsed: 0.508 s <<< FAILURE!
1020:  org.opentest4j.AssertionFailedError: expected: <A> but was: <>
1021:  at org.junit.jupiter.api.AssertionFailureBuilder.build(AssertionFailureBuilder.java:151)
...

1025:  at org.junit.jupiter.api.AssertEquals.assertEquals(AssertEquals.java:177)
1026:  at org.junit.jupiter.api.Assertions.assertEquals(Assertions.java:1145)
1027:  at dev.selenium.actions_api.KeysTest.keyDown(KeysTest.java:23)
1028:  at java.base/java.lang.reflect.Method.invoke(Method.java:569)
1029:  at java.base/java.util.concurrent.ForkJoinTask.doExec(ForkJoinTask.java:373)
1030:  at java.base/java.util.concurrent.ForkJoinTask.awaitDone(ForkJoinTask.java:436)
1031:  at java.base/java.util.concurrent.ForkJoinTask.join(ForkJoinTask.java:670)
1032:  at java.base/java.util.concurrent.ForkJoinTask.doExec(ForkJoinTask.java:373)
1033:  at java.base/java.util.concurrent.ForkJoinTask.awaitDone(ForkJoinTask.java:436)
1034:  at java.base/java.util.concurrent.ForkJoinTask.join(ForkJoinTask.java:670)
1035:  at java.base/java.util.concurrent.ForkJoinTask.doExec(ForkJoinTask.java:373)
1036:  at java.base/java.util.concurrent.ForkJoinPool$WorkQueue.topLevelExec(ForkJoinPool.java:1182)
1037:  at java.base/java.util.concurrent.ForkJoinPool.scan(ForkJoinPool.java:1655)
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:  [ERROR] dev.selenium.actions_api.KeysTest.sendKeysToActiveElement -- Time elapsed: 0.517 s <<< FAILURE!
1041:  org.opentest4j.AssertionFailedError: expected: <abc> but was: <>
1042:  at org.junit.jupiter.api.AssertionFailureBuilder.build(AssertionFailureBuilder.java:151)
...

1059:  at java.base/java.util.concurrent.ForkJoinPool.runWorker(ForkJoinPool.java:1622)
1060:  at java.base/java.util.concurrent.ForkJoinWorkerThread.run(ForkJoinWorkerThread.java:165)
1061:  [INFO] Running dev.selenium.actions_api.MouseTest
1062:  07:24:04.650 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:  07:24:05.292 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:  07:24:05.965 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
1065:  07:24:06.959 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
1066:  07:24:07.672 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:  07:24:08.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
1068:  07:24:09.136 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
1069:  07:24:09.843 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
1070:  07:24:10.526 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:  07:24:11.326 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
1072:  07:24:12.045 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
1073:  07:24:12.804 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: 12, Failures: 0, Errors: 0, Skipped: 0, Time elapsed: 8.863 s -- in dev.selenium.actions_api.MouseTest
1075:  [INFO] Running dev.selenium.actions_api.ActionsTest
1076:  07:24:13.522 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:  07:24:14.220 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
1078:  [INFO] Tests run: 2, Failures: 0, Errors: 0, Skipped: 0, Time elapsed: 3.398 s -- in dev.selenium.actions_api.ActionsTest
1079:  [INFO] Running dev.selenium.actions_api.WheelTest
1080:  07:24:16.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
1081:  07:24:17.762 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
1082:  07:24:19.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
1083:  07:24:19.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
1084:  07:24:20.700 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: 5, Failures: 0, Errors: 0, Skipped: 0, Time elapsed: 4.585 s -- in dev.selenium.actions_api.WheelTest
1086:  [INFO] Running dev.selenium.actions_api.PenTest
1087:  07:24:21.494 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
1088:  07:24:22.134 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
1089:  [INFO] Tests run: 2, Failures: 0, Errors: 0, Skipped: 0, Time elapsed: 1.538 s -- in dev.selenium.actions_api.PenTest
1090:  [INFO] Running dev.selenium.elements.FileUploadTest
1091:  07:24:23.038 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
1092:  [INFO] Tests run: 1, Failures: 0, Errors: 0, Skipped: 0, Time elapsed: 0.853 s -- in dev.selenium.elements.FileUploadTest
1093:  [INFO] Running dev.selenium.elements.InformationTest
1094:  07:24:23.889 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
1095:  [INFO] Tests run: 1, Failures: 0, Errors: 0, Skipped: 0, Time elapsed: 0.671 s -- in dev.selenium.elements.InformationTest
1096:  [INFO] Running dev.selenium.elements.InteractionTest
1097:  07:24:24.551 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
1098:  [INFO] Tests run: 1, Failures: 0, Errors: 0, Skipped: 0, Time elapsed: 0.697 s -- in dev.selenium.elements.InteractionTest
1099:  [INFO] Running dev.selenium.getting_started.UsingSeleniumTest
1100:  07:24:25.248 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
1101:  [INFO] Tests run: 1, Failures: 0, Errors: 0, Skipped: 0, Time elapsed: 0.753 s -- in dev.selenium.getting_started.UsingSeleniumTest
1102:  [INFO] Running dev.selenium.support.SelectListTest
1103:  07:24:26.016 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
1104:  07:24:26.795 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
1105:  07:24:27.357 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
1106:  [INFO] Tests run: 3, Failures: 0, Errors: 0, Skipped: 0, Time elapsed: 2.178 s -- in dev.selenium.support.SelectListTest
1107:  [INFO] Running dev.selenium.bidirectional.webdriver_bidi.ScriptTest
1108:  [INFO] Tests run: 24, Failures: 0, Errors: 0, Skipped: 0, Time elapsed: 76.16 s -- in dev.selenium.bidirectional.webdriver_bidi.ScriptTest
1109:  [INFO] Running dev.selenium.bidirectional.webdriver_bidi.ScriptEventsTest
1110:  [WARNING] Tests run: 3, Failures: 0, Errors: 0, Skipped: 1, Time elapsed: 5.875 s -- in dev.selenium.bidirectional.webdriver_bidi.ScriptEventsTest
1111:  [INFO] Running dev.selenium.bidirectional.webdriver_bidi.BrowsingContextInspectorTest
1112:  [INFO] Tests run: 9, Failures: 0, Errors: 0, Skipped: 0, Time elapsed: 27.94 s -- in dev.selenium.bidirectional.webdriver_bidi.BrowsingContextInspectorTest
1113:  [INFO] Running dev.selenium.bidirectional.webdriver_bidi.NetworkCommandsTest
1114:  [INFO] Tests run: 6, Failures: 0, Errors: 0, Skipped: 0, Time elapsed: 23.52 s -- in dev.selenium.bidirectional.webdriver_bidi.NetworkCommandsTest
1115:  [INFO] Running dev.selenium.bidirectional.webdriver_bidi.BrowsingContextTest
1116:  [INFO] Tests run: 26, Failures: 0, Errors: 0, Skipped: 0, Time elapsed: 80.63 s -- in dev.selenium.bidirectional.webdriver_bidi.BrowsingContextTest
1117:  [INFO] Running dev.selenium.bidirectional.webdriver_bidi.user_context.MultipleInstanceParallelTest
1118:  [INFO] Tests run: 3, Failures: 0, Errors: 0, Skipped: 0, Time elapsed: 9.240 s -- in dev.selenium.bidirectional.webdriver_bidi.user_context.MultipleInstanceParallelTest
1119:  [INFO] Running dev.selenium.bidirectional.webdriver_bidi.user_context.SingleInstanceCookieParallelTest
1120:  [INFO] Tests run: 3, Failures: 0, Errors: 0, Skipped: 0, Time elapsed: 3.666 s -- in dev.selenium.bidirectional.webdriver_bidi.user_context.SingleInstanceCookieParallelTest
1121:  [INFO] Running dev.selenium.bidirectional.webdriver_bidi.LogTest
1122:  [INFO] Tests run: 5, Failures: 0, Errors: 0, Skipped: 0, Time elapsed: 14.85 s -- in dev.selenium.bidirectional.webdriver_bidi.LogTest
1123:  [INFO] Running dev.selenium.bidirectional.webdriver_bidi.ActionsTest
1124:  [INFO] Tests run: 2, Failures: 0, Errors: 0, Skipped: 0, Time elapsed: 6.563 s -- in dev.selenium.bidirectional.webdriver_bidi.ActionsTest
1125:  [INFO] Running dev.selenium.bidirectional.webdriver_bidi.LocateNodesTest
1126:  [WARNING] Tests run: 10, Failures: 0, Errors: 0, Skipped: 1, Time elapsed: 26.13 s -- in dev.selenium.bidirectional.webdriver_bidi.LocateNodesTest
1127:  [INFO] Running dev.selenium.bidirectional.webdriver_bidi.high_level.LogTest
1128:  [INFO] Tests run: 4, Failures: 0, Errors: 0, Skipped: 0, Time elapsed: 11.96 s -- in dev.selenium.bidirectional.webdriver_bidi.high_level.LogTest
1129:  [INFO] Running dev.selenium.bidirectional.webdriver_bidi.NetworkEventsTest
1130:  [INFO] Tests run: 5, Failures: 0, Errors: 0, Skipped: 0, Time elapsed: 15.04 s -- in dev.selenium.bidirectional.webdriver_bidi.NetworkEventsTest
1131:  [INFO] Running dev.selenium.interactions.InteractionsTest
1132:  07:29:29.777 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:  07:29:30.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
1134:  [INFO] Tests run: 2, Failures: 0, Errors: 0, Skipped: 0, Time elapsed: 1.359 s -- in dev.selenium.interactions.InteractionsTest
1135:  [INFO] Running dev.selenium.interactions.AlertsTest
1136:  07:29:31.139 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:  07:29:31.757 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:  07:29:32.102 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:  07:29:33.058 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:  07:29:33.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:  07:29:34.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
1142:  07:29:35.065 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
1143:  07:29:35.831 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:  07:29:36.441 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:  07:29:37.575 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
1146:  07:29:38.182 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
1147:  [INFO] Tests run: 10, Failures: 0, Errors: 0, Skipped: 0, Time elapsed: 7.674 s -- in dev.selenium.interactions.AlertsTest
1148:  [INFO] Running dev.selenium.interactions.FramesTest
1149:  07:29:38.792 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
1150:  [INFO] Tests run: 1, Failures: 0, Errors: 0, Skipped: 0, Time elapsed: 0.750 s -- in dev.selenium.interactions.FramesTest
1151:  [INFO] Running dev.selenium.interactions.VirtualAuthenticatorTest
1152:  07:29:39.554 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:  07:29:40.007 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:  07:29:40.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
1155:  07:29:40.857 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:  07:29:41.289 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:  07:29:41.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
1158:  07:29:42.162 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
1159:  07:29:42.586 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:  07:29:43.027 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
1161:  07:29:43.453 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
1162:  [INFO] Tests run: 10, Failures: 0, Errors: 0, Skipped: 0, Time elapsed: 4.346 s -- in dev.selenium.interactions.VirtualAuthenticatorTest
1163:  [INFO] Running dev.selenium.interactions.PrintsPageTest
1164:  07:29:43.994 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:  07:29:44.744 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:  [INFO] Tests run: 2, Failures: 0, Errors: 0, Skipped: 0, Time elapsed: 1.691 s -- in dev.selenium.interactions.PrintsPageTest
1167:  [INFO] Running dev.selenium.interactions.SavingTest
1168:  07:29:45.584 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: 1, Failures: 0, Errors: 0, Skipped: 0, Time elapsed: 0.824 s -- in dev.selenium.interactions.SavingTest
1170:  [INFO] Running dev.selenium.interactions.PrintOptionsTest
1171:  07:29:46.433 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:  07:29:47.098 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
1173:  07:29:47.749 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
1174:  07:29:48.417 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:  07:29:49.064 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:  07:29:49.737 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
1177:  07:29:50.394 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
1178:  [INFO] Tests run: 7, Failures: 0, Errors: 0, Skipped: 0, Time elapsed: 4.659 s -- in dev.selenium.interactions.PrintOptionsTest
1179:  [INFO] Running dev.selenium.interactions.WindowsTest
1180:  07:29:51.079 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
1181:  [INFO] Tests run: 1, Failures: 0, Errors: 0, Skipped: 0, Time elapsed: 0.795 s -- in dev.selenium.interactions.WindowsTest
1182:  [INFO] Running dev.selenium.interactions.CookiesTest
1183:  07:29:51.885 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:  07:29:52.381 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:  07:29:52.929 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:  07:29:53.438 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:  07:29:53.938 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:  07:29:54.431 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
1189:  07:29:54.931 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
1190:  [INFO] Tests run: 7, Failures: 0, Errors: 0, Skipped: 0, Time elapsed: 3.557 s -- in dev.selenium.interactions.CookiesTest
1191:  [INFO] Running dev.selenium.interactions.NavigationTest
1192:  07:29:55.426 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
1193:  [INFO] Tests run: 1, Failures: 0, Errors: 0, Skipped: 0, Time elapsed: 0.937 s -- in dev.selenium.interactions.NavigationTest
1194:  [INFO] Running dev.selenium.bidi.cdp.ScriptTest
1195:  07:29:56.367 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:  07:29:58.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
1197:  [INFO] Tests run: 2, Failures: 0, Errors: 0, Skipped: 0, Time elapsed: 2.630 s -- in dev.selenium.bidi.cdp.ScriptTest
1198:  [INFO] Running dev.selenium.bidi.cdp.LoggingTest
1199:  07:29:58.993 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
1200:  [INFO] Tests run: 1, Failures: 0, Errors: 0, Skipped: 0, Time elapsed: 0.635 s -- in dev.selenium.bidi.cdp.LoggingTest
1201:  [INFO] Running dev.selenium.bidi.cdp.NetworkTest
1202:  07:29:59.625 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
1203:  07:30:00.173 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
1204:  07:30:00.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
1205:  07:30:01.831 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
1206:  07:30:02.412 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
1207:  07:30:03.030 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
1208:  07:30:03.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
1209:  [INFO] Tests run: 7, Failures: 0, Errors: 0, Skipped: 0, Time elapsed: 4.679 s -- in dev.selenium.bidi.cdp.NetworkTest
1210:  [INFO] Running dev.selenium.bidi.cdp.CdpTest
1211:  07:30:04.309 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
1212:  [INFO] Tests run: 1, Failures: 0, Errors: 0, Skipped: 0, Time elapsed: 0.667 s -- in dev.selenium.bidi.cdp.CdpTest
1213:  [INFO] Running dev.selenium.bidi.cdp.CdpApiTest
1214:  [INFO] Tests run: 2, Failures: 0, Errors: 0, Skipped: 0, Time elapsed: 5.249 s -- in dev.selenium.bidi.cdp.CdpApiTest
1215:  [INFO] Running dev.selenium.actions_api.KeysTest
1216:  07:30:10.238 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
1217:  07:30:10.749 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
1218:  07:30:11.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
1219:  [ERROR] Tests run: 3, Failures: 3, Errors: 0, Skipped: 0, Time elapsed: 1.547 s <<< FAILURE! -- in dev.selenium.actions_api.KeysTest
1220:  [ERROR] dev.selenium.actions_api.KeysTest.keyUp -- Time elapsed: 0.519 s <<< FAILURE!
1221:  org.opentest4j.AssertionFailedError: expected: <Ab> but was: <>
1222:  at org.junit.jupiter.api.AssertionFailureBuilder.build(AssertionFailureBuilder.java:151)
1223:  at org.junit.jupiter.api.AssertionFailureBuilder.buildAndThrow(AssertionFailureBuilder.java:132)
1224:  at org.junit.jupiter.api.AssertEquals.failNotEqual(AssertEquals.java:197)
1225:  at org.junit.jupiter.api.AssertEquals.assertEquals(AssertEquals.java:182)
1226:  at org.junit.jupiter.api.AssertEquals.assertEquals(AssertEquals.java:177)
1227:  at org.junit.jupiter.api.Assertions.assertEquals(Assertions.java:1145)
1228:  at dev.selenium.actions_api.KeysTest.keyUp(KeysTest.java:38)
1229:  at java.base/java.lang.reflect.Method.invoke(Method.java:569)
1230:  at java.base/java.util.concurrent.ForkJoinTask.doExec(ForkJoinTask.java:373)
1231:  at java.base/java.util.concurrent.ForkJoinTask.awaitDone(ForkJoinTask.java:436)
1232:  at java.base/java.util.concurrent.ForkJoinTask.join(ForkJoinTask.java:670)
1233:  at java.base/java.util.concurrent.ForkJoinTask.doExec(ForkJoinTask.java:373)
1234:  at java.base/java.util.concurrent.ForkJoinPool$WorkQueue.topLevelExec(ForkJoinPool.java:1182)
1235:  at java.base/java.util.concurrent.ForkJoinPool.scan(ForkJoinPool.java:1655)
1236:  at java.base/java.util.concurrent.ForkJoinPool.runWorker(ForkJoinPool.java:1622)
1237:  at java.base/java.util.concurrent.ForkJoinWorkerThread.run(ForkJoinWorkerThread.java:165)
1238:  [ERROR] dev.selenium.actions_api.KeysTest.sendKeysToActiveElement -- Time elapsed: 0.502 s <<< FAILURE!
1239:  org.opentest4j.AssertionFailedError: expected: <abc> but was: <>
1240:  at org.junit.jupiter.api.AssertionFailureBuilder.build(AssertionFailureBuilder.java:151)
1241:  at org.junit.jupiter.api.AssertionFailureBuilder.buildAndThrow(AssertionFailureBuilder.java:132)
1242:  at org.junit.jupiter.api.AssertEquals.failNotEqual(AssertEquals.java:197)
1243:  at org.junit.jupiter.api.AssertEquals.assertEquals(AssertEquals.java:182)
1244:  at org.junit.jupiter.api.AssertEquals.assertEquals(AssertEquals.java:177)
1245:  at org.junit.jupiter.api.Assertions.assertEquals(Assertions.java:1145)
1246:  at dev.selenium.actions_api.KeysTest.sendKeysToActiveElement(KeysTest.java:50)
1247:  at java.base/java.lang.reflect.Method.invoke(Method.java:569)
1248:  at java.base/java.util.concurrent.ForkJoinTask.doExec(ForkJoinTask.java:373)
1249:  at java.base/java.util.concurrent.ForkJoinTask.awaitDone(ForkJoinTask.java:436)
1250:  at java.base/java.util.concurrent.ForkJoinTask.join(ForkJoinTask.java:670)
1251:  at java.base/java.util.concurrent.ForkJoinTask.doExec(ForkJoinTask.java:373)
1252:  at java.base/java.util.concurrent.ForkJoinPool$WorkQueue.topLevelExec(ForkJoinPool.java:1182)
1253:  at java.base/java.util.concurrent.ForkJoinPool.scan(ForkJoinPool.java:1655)
1254:  at java.base/java.util.concurrent.ForkJoinPool.runWorker(ForkJoinPool.java:1622)
1255:  at java.base/java.util.concurrent.ForkJoinWorkerThread.run(ForkJoinWorkerThread.java:165)
1256:  [ERROR] dev.selenium.actions_api.KeysTest.keyDown -- Time elapsed: 0.525 s <<< FAILURE!
1257:  org.opentest4j.AssertionFailedError: expected: <A> but was: <>
1258:  at org.junit.jupiter.api.AssertionFailureBuilder.build(AssertionFailureBuilder.java:151)
...

1263:  at org.junit.jupiter.api.Assertions.assertEquals(Assertions.java:1145)
1264:  at dev.selenium.actions_api.KeysTest.keyDown(KeysTest.java:23)
1265:  at java.base/java.lang.reflect.Method.invoke(Method.java:569)
1266:  at java.base/java.util.concurrent.ForkJoinTask.doExec(ForkJoinTask.java:373)
1267:  at java.base/java.util.concurrent.ForkJoinTask.awaitDone(ForkJoinTask.java:436)
1268:  at java.base/java.util.concurrent.ForkJoinTask.join(ForkJoinTask.java:670)
1269:  at java.base/java.util.concurrent.ForkJoinTask.doExec(ForkJoin...

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