Uses of Class
org.openqa.selenium.devtools.layertree.model.LayerId
-
Packages that use LayerId Package Description org.openqa.selenium.devtools.layertree org.openqa.selenium.devtools.layertree.model -
-
Uses of LayerId in org.openqa.selenium.devtools.layertree
Methods in org.openqa.selenium.devtools.layertree with parameters of type LayerId Modifier and Type Method Description static Command<LayerTree.CompositingReasonsResponse>
LayerTree. compositingReasons(LayerId layerId)
Provides the reasons why the given layer was composited.static Command<SnapshotId>
LayerTree. makeSnapshot(LayerId layerId)
Returns the layer snapshot identifier. -
Uses of LayerId in org.openqa.selenium.devtools.layertree.model
Methods in org.openqa.selenium.devtools.layertree.model that return LayerId Modifier and Type Method Description LayerId
Layer. getLayerId()
The unique id for this layer.LayerId
LayerPainted. getLayerId()
The id of the painted layer.Methods in org.openqa.selenium.devtools.layertree.model that return types with arguments of type LayerId Modifier and Type Method Description java.util.Optional<LayerId>
StickyPositionConstraint. getNearestLayerShiftingContainingBlock()
The nearest sticky layer that shifts the containing blockjava.util.Optional<LayerId>
StickyPositionConstraint. getNearestLayerShiftingStickyBox()
The nearest sticky layer that shifts the sticky boxjava.util.Optional<LayerId>
Layer. getParentLayerId()
The id of parent (not present for root).Constructors in org.openqa.selenium.devtools.layertree.model with parameters of type LayerId Constructor Description Layer(LayerId layerId, java.util.Optional<LayerId> parentLayerId, java.util.Optional<BackendNodeId> backendNodeId, java.lang.Number offsetX, java.lang.Number offsetY, java.lang.Number width, java.lang.Number height, java.util.Optional<java.util.List<java.lang.Number>> transform, java.util.Optional<java.lang.Number> anchorX, java.util.Optional<java.lang.Number> anchorY, java.util.Optional<java.lang.Number> anchorZ, java.lang.Integer paintCount, java.lang.Boolean drawsContent, java.util.Optional<java.lang.Boolean> invisible, java.util.Optional<java.util.List<ScrollRect>> scrollRects, java.util.Optional<StickyPositionConstraint> stickyPositionConstraint)
LayerPainted(LayerId layerId, Rect clip)
Constructor parameters in org.openqa.selenium.devtools.layertree.model with type arguments of type LayerId Constructor Description Layer(LayerId layerId, java.util.Optional<LayerId> parentLayerId, java.util.Optional<BackendNodeId> backendNodeId, java.lang.Number offsetX, java.lang.Number offsetY, java.lang.Number width, java.lang.Number height, java.util.Optional<java.util.List<java.lang.Number>> transform, java.util.Optional<java.lang.Number> anchorX, java.util.Optional<java.lang.Number> anchorY, java.util.Optional<java.lang.Number> anchorZ, java.lang.Integer paintCount, java.lang.Boolean drawsContent, java.util.Optional<java.lang.Boolean> invisible, java.util.Optional<java.util.List<ScrollRect>> scrollRects, java.util.Optional<StickyPositionConstraint> stickyPositionConstraint)
StickyPositionConstraint(Rect stickyBoxRect, Rect containingBlockRect, java.util.Optional<LayerId> nearestLayerShiftingStickyBox, java.util.Optional<LayerId> nearestLayerShiftingContainingBlock)
-