Class ObjectPreview
java.lang.Object
org.openqa.selenium.devtools.v126.runtime.model.ObjectPreview
Object containing abbreviated remote object value.
-
Nested Class Summary
Nested ClassesModifier and TypeClassDescriptionstatic enum
static enum
-
Constructor Summary
ConstructorsConstructorDescriptionObjectPreview
(ObjectPreview.Type type, Optional<ObjectPreview.Subtype> subtype, Optional<String> description, Boolean overflow, List<PropertyPreview> properties, Optional<List<EntryPreview>> entries) -
Method Summary
Modifier and TypeMethodDescriptionString representation of the object.List of the entries.True iff some of the properties or entries of the original object did not fit.List of the properties.Object subtype hint.getType()
Object type.
-
Constructor Details
-
ObjectPreview
public ObjectPreview(ObjectPreview.Type type, Optional<ObjectPreview.Subtype> subtype, Optional<String> description, Boolean overflow, List<PropertyPreview> properties, Optional<List<EntryPreview>> entries)
-
-
Method Details
-
getType
Object type. -
getSubtype
Object subtype hint. Specified for `object` type values only. -
getDescription
String representation of the object. -
getOverflow
True iff some of the properties or entries of the original object did not fit. -
getProperties
List of the properties. -
getEntries
List of the entries. Specified for `map` and `set` subtype values only.
-