-
-
Notifications
You must be signed in to change notification settings - Fork 8.4k
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
[py] expected_conditions: correct type annotation #15337
Conversation
PR Reviewer Guide 🔍Here are some key observations to aid the review process:
|
PR Code Suggestions ✨Explore these optional code suggestions:
|
@Delta456 doh! you beat me by 5 minutes :) I'm closing my PR and will review yours. |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
see updated change request
FWIW, the linter is failing on this... you can break your change into 2 lines to fix it. see: https://github.com/SeleniumHQ/selenium/actions/runs/13528688990/job/37805902044?pr=15337 |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
break into 2 lines to satisfy linter
57de908
to
c43acab
Compare
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
LGTM 👍
* Revert "add alias attr to all edge structs" This reverts commit f17dd08dd32998a310510f0abc44e5b484202a4d. * Reapply "add alias attr to all edge structs" This reverts commit cc16e3f. oops * [py] expected_conditions: correct type annotation * lint --------- Co-authored-by: Diego Molina <diemol@users.noreply.github.com>
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.
Motivation and Context
Fixes #15334
Types of changes
Checklist
PR Type
Bug fix, Documentation
Description
Updated type annotation for
frame_to_be_available_and_switch_to_it
function to includeWebElement
.Improved docstring to reflect updated type annotation and clarify parameter usage.
Ensured alignment of type annotations with function implementation and behavior.
Changes walkthrough 📝
expected_conditions.py
Update type annotation and docstring for
frame_to_be_available_and_switch_to_it
py/selenium/webdriver/support/expected_conditions.py
locator
parameter to includeWebElement
.