Table of Contents

Class SetAttributeValueCommandSettings

Namespace
OpenQA.Selenium.DevTools.V147.DOM
Assembly
Selenium.WebDriver.dll

Sets attribute for an element with given id.

public sealed class SetAttributeValueCommandSettings : ICommand
Inheritance
SetAttributeValueCommandSettings
Implements
Inherited Members

Properties

CommandName

Gets the name of the command.

[JsonIgnore]
public string CommandName { get; }

Property Value

string

Name

Attribute name.

[JsonPropertyName("name")]
public string Name { get; set; }

Property Value

string

NodeId

Id of the element to set attribute for.

[JsonPropertyName("nodeId")]
public long NodeId { get; set; }

Property Value

long

Value

Attribute value.

[JsonPropertyName("value")]
public string Value { get; set; }

Property Value

string