-
-
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
[grid] Ignored options when they are prefixed, safari specif as well #15574
base: trunk
Are you sure you want to change the base?
Conversation
PR Reviewer Guide 🔍Here are some key observations to aid the review process:
|
PR Code Suggestions ✨Explore these optional code suggestions:
|
CI Feedback 🧐A test triggered by this PR failed. Here is an AI-generated analysis of the failure:
|
User description
🔗 Related Issues
Fixes #15481
Fixes #14485
💥 What does this PR do?
This will ignore any prefixed
options
capability in theDefaultSlotMatcher
. This was wrongly considered during the matching process, and it should not be. It needs to be passed along so the remote end deals with it.🔧 Implementation Notes
This resolves the core problem of the linked issues. It is true that
options
should not be handled as they are.💡 Additional Considerations
No.
🔄 Types of changes
PR Type
Bug fix, Tests
Description
Added "safari:" to ignored extension capability prefixes in
DefaultSlotMatcher
.Excluded "options" capabilities from matching in
DefaultSlotMatcher
.Introduced a new test to verify "options" capabilities are ignored for matching.
Changes walkthrough 📝
DefaultSlotMatcher.java
Update DefaultSlotMatcher to ignore specific capabilities
java/src/org/openqa/selenium/grid/data/DefaultSlotMatcher.java
DefaultSlotMatcherTest.java
Add test for ignoring "options" capabilities in matching
java/test/org/openqa/selenium/grid/data/DefaultSlotMatcherTest.java
matching.