Class RuleMatch
- java.lang.Object
-
- org.openqa.selenium.devtools.v108.css.model.RuleMatch
-
public class RuleMatch extends java.lang.Object
Match data for a CSS rule.
-
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description java.util.List<java.lang.Integer>
getMatchingSelectors()
Matching selector indices in the rule's selectorList selectors (0-based).CSSRule
getRule()
CSS rule in the match.
-
-
-
Constructor Detail
-
RuleMatch
public RuleMatch(CSSRule rule, java.util.List<java.lang.Integer> matchingSelectors)
-
-
Method Detail
-
getRule
public CSSRule getRule()
CSS rule in the match.
-
getMatchingSelectors
public java.util.List<java.lang.Integer> getMatchingSelectors()
Matching selector indices in the rule's selectorList selectors (0-based).
-
-