Class PropertyPreview
- java.lang.Object
-
- org.openqa.selenium.devtools.runtime.model.PropertyPreview
-
@Beta public class PropertyPreview extends java.lang.Object
-
-
Nested Class Summary
Nested Classes Modifier and Type Class Description static classPropertyPreview.Subtypestatic classPropertyPreview.Type
-
Constructor Summary
Constructors Constructor Description PropertyPreview(java.lang.String name, PropertyPreview.Type type, java.lang.String value, ObjectPreview valuePreview, PropertyPreview.Subtype subtype)
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description java.lang.StringgetName()Property name.PropertyPreview.SubtypegetSubtype()Object subtype hint.PropertyPreview.TypegetType()Object type.java.lang.StringgetValue()User-friendly property value string.ObjectPreviewgetValuePreview()Nested value preview.
-
-
-
Constructor Detail
-
PropertyPreview
public PropertyPreview(java.lang.String name, PropertyPreview.Type type, java.lang.String value, ObjectPreview valuePreview, PropertyPreview.Subtype subtype)
-
-
Method Detail
-
getName
public java.lang.String getName()
Property name.
-
getType
public PropertyPreview.Type getType()
Object type. Accessor means that the property itself is an accessor property.
-
getValue
public java.lang.String getValue()
User-friendly property value string.
-
getValuePreview
public ObjectPreview getValuePreview()
Nested value preview.
-
getSubtype
public PropertyPreview.Subtype getSubtype()
Object subtype hint. Specified for `object` type values only.
-
-