[java] [test] Unignore bidi network conditions tests for Firefox#17385
Conversation
Review Summary by QodoUnignore BiDi network conditions tests for Firefox
WalkthroughsDescription• Remove @NotYetImplemented(FIREFOX) annotations from two test methods • Indicates Firefox now supports BiDi network conditions functionality • Clean up unused imports (Browser.FIREFOX and NotYetImplemented) File Changes1. java/test/org/openqa/selenium/bidi/emulation/SetNetworkConditionsTest.java
|
Code Review by Qodo
1. canSetNetworkConditionsOfflineWithContext ungated
|
There was a problem hiding this comment.
Pull request overview
This PR updates the Java BiDi emulation test suite to start running the “set network conditions” (offline/online) tests on Firefox by removing the Firefox-specific @NotYetImplemented exclusions.
Changes:
- Removed
@NotYetImplemented(FIREFOX)from two network-conditions tests so they now execute on Firefox. - Cleaned up now-unused imports (
FIREFOXandNotYetImplemented) in the test file.
|
Only ruby fails. |
Seems now FF supports it.
💥 What does this PR do?
This pull request makes a small change to the
SetNetworkConditionsTest.javatest suite by removing the@NotYetImplemented(FIREFOX)annotation from two test methods. This means these tests will now run for Firefox as well, indicating improved cross-browser support. No other significant changes are present.🤖 AI assistance
💡 Additional Considerations
To see whether CI is green.
🔄 Types of changes