-
-
Notifications
You must be signed in to change notification settings - Fork 8.2k
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
[bidi][java] Enable chrome tests #13770
Conversation
PR Description updated to latest commit (4dbbce9)
|
PR Review(Review updated until commit f1032eb)
✨ Review tool usage guide:Overview: The tool can be triggered automatically every time a new PR is opened, or can be invoked manually by commenting on any PR.
See the review usage page for a comprehensive guide on using this tool. |
PR Code Suggestions
✨ Improve tool usage guide:Overview:
See the improve usage page for a comprehensive guide on using this tool. |
Codecov ReportAll modified and coverable lines are covered by tests ✅
❗ Your organization needs to install the Codecov GitHub app to enable full functionality. Additional details and impacted files@@ Coverage Diff @@
## trunk #13770 +/- ##
=======================================
Coverage 58.63% 58.63%
=======================================
Files 86 86
Lines 5272 5272
Branches 218 218
=======================================
Hits 3091 3091
Misses 1963 1963
Partials 218 218 ☔ View full report in Codecov by Sentry. |
PR Description updated to latest commit (f1032eb)
|
Persistent review updated to latest commit f1032eb |
PR Code Suggestions
✨ Improve tool usage guide:Overview:
See the improve usage page for a comprehensive guide on using this tool. |
User description
Thanks for contributing to Selenium!
A PR well described will help maintainers to quickly review and merge it
Before submitting your PR, please check our contributing guidelines.
Avoid large PRs, help reviewers by making them as simple and short as possible.
Description
Ensure all BiDi test run where applicable in Chrome since Selenium supports BiDi in Chrome too.
Motivation and Context
Types of changes
Checklist
Type
enhancement, tests
Description
ChromeDriverInfo
.Changes walkthrough
1 files
ChromeDriverInfo.java
Enable BiDi Support for Chrome in ChromeDriverInfo
java/src/org/openqa/selenium/chrome/ChromeDriverInfo.java
true
inisSupportingBiDi
method.
10 files
BrowsingContextInspectorTest.java
Enable BiDi Tests for Chrome in BrowsingContextInspectorTest
java/test/org/openqa/selenium/bidi/browsingcontext/BrowsingContextInspectorTest.java
@NotYetImplemented(CHROME)
annotations to enable BiDi testsfor Chrome.
BrowsingContextTest.java
Enable BiDi Tests for Chrome in BrowsingContextTest
java/test/org/openqa/selenium/bidi/browsingcontext/BrowsingContextTest.java
@NotYetImplemented(CHROME)
annotations to enable BiDi testsfor Chrome.
CombinedInputActionsTest.java
Mark Test as Not Yet Implemented for Chrome in
CombinedInputActionsTest
java/test/org/openqa/selenium/bidi/input/CombinedInputActionsTest.java
@NotYetImplemented(CHROME)
annotation, indicating a test not yetimplemented for Chrome.
DefaultMouseTest.java
Ignore Specific Mouse Tests for Chrome in DefaultMouseTest
java/test/org/openqa/selenium/bidi/input/DefaultMouseTest.java
@Ignore(value = CHROME, gitHubActions = true)
to tests,indicating they should be ignored for Chrome on GitHub Actions.
NetworkCommandsTest.java
Enable Network Command Tests for Chrome in NetworkCommandsTest
java/test/org/openqa/selenium/bidi/network/NetworkCommandsTest.java
@NotYetImplemented(CHROME)
annotations to enable network commandtests for Chrome.
NetworkEventsTest.java
Enable Network Events Tests for Chrome in NetworkEventsTest
java/test/org/openqa/selenium/bidi/network/NetworkEventsTest.java
@NotYetImplemented(CHROME)
annotations to enable network eventstests for Chrome.
LocalValueTest.java
Enable Script Local Value Tests for Chrome in LocalValueTest
java/test/org/openqa/selenium/bidi/script/LocalValueTest.java
@NotYetImplemented(CHROME)
annotations to enable script localvalue tests for Chrome.
ScriptCommandsTest.java
Enable Script Command Tests for Chrome in ScriptCommandsTest
java/test/org/openqa/selenium/bidi/script/ScriptCommandsTest.java
@NotYetImplemented(CHROME)
annotations to enable scriptcommand tests for Chrome.
ScriptEventsTest.java
Enable Script Event Tests for Chrome in ScriptEventsTest
java/test/org/openqa/selenium/bidi/script/ScriptEventsTest.java
@NotYetImplemented(CHROME)
annotations to enable script eventtests for Chrome.
StorageCommandsTest.java
Enable Storage Command Tests for Chrome in StorageCommandsTest
java/test/org/openqa/selenium/bidi/storage/StorageCommandsTest.java
@NotYetImplemented(CHROME)
annotations to enable storagecommand tests for Chrome.
6 files
BUILD.bazel
Include Chrome in Large Test Suites in BUILD.bazel
java/test/org/openqa/selenium/bidi/browser/BUILD.bazel
BUILD.bazel
Include Chrome in BrowsingContext Large Test Suites in BUILD.bazel
java/test/org/openqa/selenium/bidi/browsingcontext/BUILD.bazel
BUILD.bazel
Include Chrome in Input Large Test Suites in BUILD.bazel
java/test/org/openqa/selenium/bidi/input/BUILD.bazel
BUILD.bazel
Include Chrome in Log Large Test Suites in BUILD.bazel
java/test/org/openqa/selenium/bidi/log/BUILD.bazel
BUILD.bazel
Include Chrome in Script Large Test Suites in BUILD.bazel
java/test/org/openqa/selenium/bidi/script/BUILD.bazel
BUILD.bazel
Include Chrome in Storage Large Test Suites in BUILD.bazel
java/test/org/openqa/selenium/bidi/storage/BUILD.bazel