Table of Contents

Class DomMutationData

Namespace
OpenQA.Selenium
Assembly
WebDriver.dll

Provides data about the changes in the value of an attribute on an element.

public class DomMutationData
Inheritance
DomMutationData
Inherited Members

Properties

AttributeName

Gets the name of the attribute that is changing.

[JsonPropertyName("name")]
[JsonInclude]
public string AttributeName { get; }

Property Value

string

AttributeOriginalValue

Gets the value from which the attribute has been changed.

[JsonPropertyName("oldValue")]
[JsonInclude]
public string AttributeOriginalValue { get; }

Property Value

string

AttributeValue

Gets the value to which the attribute is being changed.

[JsonPropertyName("value")]
[JsonInclude]
public string AttributeValue { get; }

Property Value

string

Element

Stores the element associated with the target ID

public IWebElement Element { get; }

Property Value

IWebElement

TargetId

Gets the ID of the element whose value is changing.

[JsonPropertyName("target")]
[JsonInclude]
public string TargetId { get; }

Property Value

string

Methods

ToString()

Returns a string that represents the current object.

public override string ToString()

Returns

string

A string that represents the current object.