Uses of Class
org.openqa.selenium.devtools.dom.model.RGBA
-
Packages that use RGBA Package Description org.openqa.selenium.devtools.emulation org.openqa.selenium.devtools.overlay org.openqa.selenium.devtools.overlay.model -
-
Uses of RGBA in org.openqa.selenium.devtools.emulation
Method parameters in org.openqa.selenium.devtools.emulation with type arguments of type RGBA Modifier and Type Method Description static Command<java.lang.Void>
Emulation. setDefaultBackgroundColorOverride(java.util.Optional<RGBA> color)
Sets or clears an override of the default background color of the frame. -
Uses of RGBA in org.openqa.selenium.devtools.overlay
Method parameters in org.openqa.selenium.devtools.overlay with type arguments of type RGBA Modifier and Type Method Description static Command<java.lang.Void>
Overlay. highlightFrame(FrameId frameId, java.util.Optional<RGBA> contentColor, java.util.Optional<RGBA> contentOutlineColor)
Highlights owner element of the frame with given id.static Command<java.lang.Void>
Overlay. highlightQuad(Quad quad, java.util.Optional<RGBA> color, java.util.Optional<RGBA> outlineColor)
Highlights given quad.static Command<java.lang.Void>
Overlay. highlightRect(java.lang.Integer x, java.lang.Integer y, java.lang.Integer width, java.lang.Integer height, java.util.Optional<RGBA> color, java.util.Optional<RGBA> outlineColor)
Highlights given rectangle. -
Uses of RGBA in org.openqa.selenium.devtools.overlay.model
Methods in org.openqa.selenium.devtools.overlay.model that return RGBA Modifier and Type Method Description RGBA
HighlightConfig. getBorderColor()
The border highlight fill color (default: transparent).RGBA
HighlightConfig. getContentColor()
The content box highlight fill color (default: transparent).RGBA
HighlightConfig. getCssGridColor()
The grid layout color (default: transparent).RGBA
HighlightConfig. getEventTargetColor()
The event target element highlight fill color (default: transparent).RGBA
HighlightConfig. getMarginColor()
The margin highlight fill color (default: transparent).RGBA
HighlightConfig. getPaddingColor()
The padding highlight fill color (default: transparent).RGBA
HighlightConfig. getShapeColor()
The shape outside fill color (default: transparent).RGBA
HighlightConfig. getShapeMarginColor()
The shape margin fill color (default: transparent).Constructors in org.openqa.selenium.devtools.overlay.model with parameters of type RGBA Constructor Description HighlightConfig(java.lang.Boolean showInfo, java.lang.Boolean showStyles, java.lang.Boolean showRulers, java.lang.Boolean showExtensionLines, RGBA contentColor, RGBA paddingColor, RGBA borderColor, RGBA marginColor, RGBA eventTargetColor, RGBA shapeColor, RGBA shapeMarginColor, RGBA cssGridColor)
-