Class Runtime.GetPropertiesResponse
- java.lang.Object
-
- org.openqa.selenium.devtools.runtime.Runtime.GetPropertiesResponse
-
- Enclosing class:
- Runtime
public static class Runtime.GetPropertiesResponse extends java.lang.Object
-
-
Constructor Summary
Constructors Constructor Description GetPropertiesResponse(java.util.List<PropertyDescriptor> result, java.util.Optional<java.util.List<InternalPropertyDescriptor>> internalProperties, java.util.Optional<java.util.List<PrivatePropertyDescriptor>> privateProperties, java.util.Optional<ExceptionDetails> exceptionDetails)
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description java.util.Optional<ExceptionDetails>
getExceptionDetails()
Exception details.java.util.Optional<java.util.List<InternalPropertyDescriptor>>
getInternalProperties()
Internal object properties (only of the element itself).java.util.Optional<java.util.List<PrivatePropertyDescriptor>>
getPrivateProperties()
Object private properties.java.util.List<PropertyDescriptor>
getResult()
Object properties.
-
-
-
Constructor Detail
-
GetPropertiesResponse
public GetPropertiesResponse(java.util.List<PropertyDescriptor> result, java.util.Optional<java.util.List<InternalPropertyDescriptor>> internalProperties, java.util.Optional<java.util.List<PrivatePropertyDescriptor>> privateProperties, java.util.Optional<ExceptionDetails> exceptionDetails)
-
-
Method Detail
-
getResult
public java.util.List<PropertyDescriptor> getResult()
Object properties.
-
getInternalProperties
public java.util.Optional<java.util.List<InternalPropertyDescriptor>> getInternalProperties()
Internal object properties (only of the element itself).
-
getPrivateProperties
public java.util.Optional<java.util.List<PrivatePropertyDescriptor>> getPrivateProperties()
Object private properties.
-
getExceptionDetails
public java.util.Optional<ExceptionDetails> getExceptionDetails()
Exception details.
-
-