Table of Contents

Class AttributeModifiedEventArgs

Namespace
Selenium.WebDriver.BiDi.Cdp.DOM
Assembly
Selenium.WebDriver.BiDi.Cdp.dll

Fired when Element's attribute is modified.

public sealed record AttributeModifiedEventArgs : EventArgs, IEquatable<EventArgs>, IEquatable<AttributeModifiedEventArgs>
Inheritance
EventArgs
AttributeModifiedEventArgs
Implements
IEquatable<EventArgs>
Inherited Members
EventArgs.ToString()
EventArgs.GetHashCode()
EventArgs.Equals(EventArgs)
EventArgs.<Clone>$()
EventArgs.BiDi
EventArgs.AdditionalData
EventArgs.AdditionalMessageData

Constructors

AttributeModifiedEventArgs(NodeId, string, string)

Fired when Element's attribute is modified.

public AttributeModifiedEventArgs(NodeId NodeId, string Name, string Value)

Parameters

NodeId NodeId

Id of the node that has changed.

Name string

Attribute name.

Value string

Attribute value.

Properties

Name

Attribute name.

public string Name { get; init; }

Property Value

string

NodeId

Id of the node that has changed.

public NodeId NodeId { get; init; }

Property Value

NodeId

Value

Attribute value.

public string Value { get; init; }

Property Value

string