Class PrivatePropertyDescriptor

java.lang.Object
org.openqa.selenium.devtools.v85.runtime.model.PrivatePropertyDescriptor

@Beta public class PrivatePropertyDescriptor extends Object
Object private field descriptor.
  • Constructor Details

  • Method Details

    • getName

      public String getName()
      Private property name.
    • getValue

      public Optional<RemoteObject> getValue()
      The value associated with the private property.
    • getGet

      public Optional<RemoteObject> getGet()
      A function which serves as a getter for the private property, or `undefined` if there is no getter (accessor descriptors only).
    • getSet

      public Optional<RemoteObject> getSet()
      A function which serves as a setter for the private property, or `undefined` if there is no setter (accessor descriptors only).