Uses of Class
org.openqa.selenium.devtools.css.model.CSSStyle
-
Packages that use CSSStyle Package Description org.openqa.selenium.devtools.css org.openqa.selenium.devtools.css.model -
-
Uses of CSSStyle in org.openqa.selenium.devtools.css
Methods in org.openqa.selenium.devtools.css that return types with arguments of type CSSStyle Modifier and Type Method Description java.util.Optional<CSSStyle>
CSS.GetInlineStylesForNodeResponse. getAttributesStyle()
Attribute-defined element style (e.g.java.util.Optional<CSSStyle>
CSS.GetMatchedStylesForNodeResponse. getAttributesStyle()
Attribute-defined element style (e.g.java.util.Optional<CSSStyle>
CSS.GetInlineStylesForNodeResponse. getInlineStyle()
Inline style for the specified DOM node.java.util.Optional<CSSStyle>
CSS.GetMatchedStylesForNodeResponse. getInlineStyle()
Inline style for the specified DOM node.static Command<java.util.List<CSSStyle>>
CSS. setStyleTexts(java.util.List<StyleDeclarationEdit> edits)
Applies specified style edits one after another in the given order.Constructor parameters in org.openqa.selenium.devtools.css with type arguments of type CSSStyle Constructor Description GetInlineStylesForNodeResponse(java.util.Optional<CSSStyle> inlineStyle, java.util.Optional<CSSStyle> attributesStyle)
GetMatchedStylesForNodeResponse(java.util.Optional<CSSStyle> inlineStyle, java.util.Optional<CSSStyle> attributesStyle, java.util.Optional<java.util.List<RuleMatch>> matchedCSSRules, java.util.Optional<java.util.List<PseudoElementMatches>> pseudoElements, java.util.Optional<java.util.List<InheritedStyleEntry>> inherited, java.util.Optional<java.util.List<CSSKeyframesRule>> cssKeyframesRules)
-
Uses of CSSStyle in org.openqa.selenium.devtools.css.model
Methods in org.openqa.selenium.devtools.css.model that return CSSStyle Modifier and Type Method Description CSSStyle
CSSKeyframeRule. getStyle()
Associated style declaration.CSSStyle
CSSRule. getStyle()
Associated style declaration.Methods in org.openqa.selenium.devtools.css.model that return types with arguments of type CSSStyle Modifier and Type Method Description java.util.Optional<CSSStyle>
InheritedStyleEntry. getInlineStyle()
The ancestor node's inline style, if any, in the style inheritance chain.Constructors in org.openqa.selenium.devtools.css.model with parameters of type CSSStyle Constructor Description CSSKeyframeRule(java.util.Optional<StyleSheetId> styleSheetId, StyleSheetOrigin origin, Value keyText, CSSStyle style)
CSSRule(java.util.Optional<StyleSheetId> styleSheetId, SelectorList selectorList, StyleSheetOrigin origin, CSSStyle style, java.util.Optional<java.util.List<CSSMedia>> media)
Constructor parameters in org.openqa.selenium.devtools.css.model with type arguments of type CSSStyle Constructor Description InheritedStyleEntry(java.util.Optional<CSSStyle> inlineStyle, java.util.List<RuleMatch> matchedCSSRules)
-