Class PseudoElementMatches
- java.lang.Object
-
- org.openqa.selenium.devtools.v107.css.model.PseudoElementMatches
-
public class PseudoElementMatches extends java.lang.Object
CSS rule collection for a single pseudo style.
-
-
Constructor Summary
Constructors Constructor Description PseudoElementMatches(PseudoType pseudoType, java.util.Optional<java.lang.String> pseudoIdentifier, java.util.List<RuleMatch> matches)
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description java.util.List<RuleMatch>
getMatches()
Matches of CSS rules applicable to the pseudo style.java.util.Optional<java.lang.String>
getPseudoIdentifier()
Pseudo element custom ident.PseudoType
getPseudoType()
Pseudo element type.
-
-
-
Constructor Detail
-
PseudoElementMatches
public PseudoElementMatches(PseudoType pseudoType, java.util.Optional<java.lang.String> pseudoIdentifier, java.util.List<RuleMatch> matches)
-
-
Method Detail
-
getPseudoType
public PseudoType getPseudoType()
Pseudo element type.
-
getPseudoIdentifier
public java.util.Optional<java.lang.String> getPseudoIdentifier()
Pseudo element custom ident.
-
getMatches
public java.util.List<RuleMatch> getMatches()
Matches of CSS rules applicable to the pseudo style.
-
-