[java] guard tests broken in chrome 149#17426
Conversation
Review Summary by QodoGuard TinyMCE tests against Chrome 149 failures
WalkthroughsDescription• Guard TinyMCE tests against Chrome 149 compatibility issues • Add version checks to skip tests on Chrome 149+ • Import TestUtilities for Chrome version detection File Changes1. java/test/org/openqa/selenium/ContentEditableTest.java
|
Code Review by Qodo
1.
|
There was a problem hiding this comment.
Pull request overview
This PR adds a temporary guard to skip the TinyMCE contenteditable tests when running against Chrome/ChromeDriver 149+, addressing CI failures seen in Chrome 149 but not 148.
Changes:
- Introduce a Chrome/ChromeDriver major-version assumption to skip two TinyMCE-related tests for 149+.
- Add
TestUtilitiesusage to read the ChromeDriver major version from capabilities.
💥 What does this PR do?
Fix CI failures
These tests work in 148 but not in 149
🔧 Implementation Notes
I'd like it if Java had a better way to guard this, but this is what we have for now.
🤖 AI assistance