Table of Contents

Class GetInlineStylesForNodeCommandResponse

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

Response for Returns the styles defined inline (explicitly in the "style" attribute and implicitly, using DOM attributes) for a DOM node identified by nodeId.

public sealed class GetInlineStylesForNodeCommandResponse : ICommandResponse<GetInlineStylesForNodeCommandSettings>, ICommandResponse
Inheritance
GetInlineStylesForNodeCommandResponse
Implements
Inherited Members
Extension Methods

Properties

AttributesStyle

Attribute-defined element style (e.g. resulting from "width=20 height=100%").

[JsonPropertyName("attributesStyle")]
[JsonIgnore(Condition = JsonIgnoreCondition.WhenWritingDefault)]
public CSSStyle? AttributesStyle { get; set; }

Property Value

CSSStyle

InlineStyle

Inline style for the specified DOM node.

[JsonPropertyName("inlineStyle")]
[JsonIgnore(Condition = JsonIgnoreCondition.WhenWritingDefault)]
public CSSStyle? InlineStyle { get; set; }

Property Value

CSSStyle