Class AttributeModified
- java.lang.Object
-
- org.openqa.selenium.devtools.v112.dom.model.AttributeModified
-
public class AttributeModified extends java.lang.Object
Fired when `Element`'s attribute is modified.
-
-
Constructor Summary
Constructors Constructor Description AttributeModified(NodeId nodeId, java.lang.String name, java.lang.String value)
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description java.lang.String
getName()
Attribute name.NodeId
getNodeId()
Id of the node that has changed.java.lang.String
getValue()
Attribute value.
-
-
-
Constructor Detail
-
AttributeModified
public AttributeModified(NodeId nodeId, java.lang.String name, java.lang.String value)
-
-
Method Detail
-
getNodeId
public NodeId getNodeId()
Id of the node that has changed.
-
getName
public java.lang.String getName()
Attribute name.
-
getValue
public java.lang.String getValue()
Attribute value.
-
-