Uses of Class
org.openqa.selenium.devtools.v141.css.model.SourceRange
Packages that use SourceRange
Package
Description
-
Uses of SourceRange in org.openqa.selenium.devtools.v141.css
Methods in org.openqa.selenium.devtools.v141.css that return types with arguments of type SourceRangeModifier and TypeMethodDescriptionstatic org.openqa.selenium.devtools.Command<List<SourceRange>> CSS.getLocationForSelector(StyleSheetId styleSheetId, String selectorText) Given a CSS selector text and a style sheet ID, getLocationForSelector returns an array of locations of the CSS selector in the style sheet.Methods in org.openqa.selenium.devtools.v141.css with parameters of type SourceRangeModifier and TypeMethodDescriptionstatic org.openqa.selenium.devtools.Command<CSSRule> CSS.addRule(StyleSheetId styleSheetId, String ruleText, SourceRange location, Optional<NodeId> nodeForPropertySyntaxValidation) Inserts a new rule with the given `ruleText` in a stylesheet with given `styleSheetId`, at the position specified by `location`.static org.openqa.selenium.devtools.Command<CSSContainerQuery> CSS.setContainerQueryText(StyleSheetId styleSheetId, SourceRange range, String text) Modifies the expression of a container query.static org.openqa.selenium.devtools.Command<Value> CSS.setKeyframeKey(StyleSheetId styleSheetId, SourceRange range, String keyText) Modifies the keyframe rule key text.static org.openqa.selenium.devtools.Command<CSSMedia> CSS.setMediaText(StyleSheetId styleSheetId, SourceRange range, String text) Modifies the rule selector.static org.openqa.selenium.devtools.Command<Value> CSS.setPropertyRulePropertyName(StyleSheetId styleSheetId, SourceRange range, String propertyName) Modifies the property rule property name.static org.openqa.selenium.devtools.Command<SelectorList> CSS.setRuleSelector(StyleSheetId styleSheetId, SourceRange range, String selector) Modifies the rule selector.static org.openqa.selenium.devtools.Command<CSSScope> CSS.setScopeText(StyleSheetId styleSheetId, SourceRange range, String text) Modifies the expression of a scope at-rule.static org.openqa.selenium.devtools.Command<CSSSupports> CSS.setSupportsText(StyleSheetId styleSheetId, SourceRange range, String text) Modifies the expression of a supports at-rule. -
Uses of SourceRange in org.openqa.selenium.devtools.v141.css.model
Methods in org.openqa.selenium.devtools.v141.css.model that return SourceRangeModifier and TypeMethodDescriptionStyleDeclarationEdit.getRange()The range of the style text in the enclosing stylesheet.Methods in org.openqa.selenium.devtools.v141.css.model that return types with arguments of type SourceRangeModifier and TypeMethodDescriptionCSSContainerQuery.getRange()The associated rule header range in the enclosing stylesheet (if available).CSSLayer.getRange()The associated rule header range in the enclosing stylesheet (if available).CSSMedia.getRange()The associated rule (@media or @import) header range in the enclosing stylesheet (if available).CSSProperty.getRange()The entire property range in the enclosing style declaration (if available).CSSScope.getRange()The associated rule header range in the enclosing stylesheet (if available).CSSStartingStyle.getRange()The associated rule header range in the enclosing stylesheet (if available).CSSStyle.getRange()Style declaration range in the enclosing stylesheet (if available).CSSSupports.getRange()The associated rule header range in the enclosing stylesheet (if available).Value.getRange()Value range in the underlying resource (if available).MediaQueryExpression.getValueRange()The associated range of the value text in the enclosing stylesheet (if available).Constructors in org.openqa.selenium.devtools.v141.css.model with parameters of type SourceRangeModifierConstructorDescriptionStyleDeclarationEdit(StyleSheetId styleSheetId, SourceRange range, String text) Constructor parameters in org.openqa.selenium.devtools.v141.css.model with type arguments of type SourceRangeModifierConstructorDescriptionCSSContainerQuery(String text, Optional<SourceRange> range, Optional<StyleSheetId> styleSheetId, Optional<String> name, Optional<PhysicalAxes> physicalAxes, Optional<LogicalAxes> logicalAxes, Optional<Boolean> queriesScrollState, Optional<Boolean> queriesAnchored) CSSLayer(String text, Optional<SourceRange> range, Optional<StyleSheetId> styleSheetId) CSSScope(String text, Optional<SourceRange> range, Optional<StyleSheetId> styleSheetId) CSSStartingStyle(Optional<SourceRange> range, Optional<StyleSheetId> styleSheetId) CSSSupports(String text, Boolean active, Optional<SourceRange> range, Optional<StyleSheetId> styleSheetId) MediaQueryExpression(Number value, String unit, String feature, Optional<SourceRange> valueRange, Optional<Number> computedLength) Value(String text, Optional<SourceRange> range, Optional<Specificity> specificity)