-
-
Notifications
You must be signed in to change notification settings - Fork 729
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
fix: seeAttributesOnElements check condition #4029
Conversation
@kobenguyent With this update we are seeing issue when we use
any solution ? |
@basalingayyakaramadi please give us a sample code to reproduce your issue |
Eg:
i will setup actual code and let you know. |
You are correct, reason being Playwright returns non-value attributes as booleans and this mr started using .includes which is string method. Change also makes attribute selectors essentially wildcards as any substring match will pass. Which is something likely not wanted. Therefore href should be handled separately from others. |
Motivation/Description of the PR
Applicable helpers:
Type of change
Checklist:
npm run docs
)npm run lint
)npm test
)