Table of Contents

Class GetAnimatedStylesForNodeCommandResponse

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

Response for Returns the styles coming from animations & transitions including the animation & transition styles coming from inheritance chain.

public sealed class GetAnimatedStylesForNodeCommandResponse : ICommandResponse<GetAnimatedStylesForNodeCommandSettings>, ICommandResponse
Inheritance
GetAnimatedStylesForNodeCommandResponse
Implements
Inherited Members
Extension Methods

Properties

AnimationStyles

Styles coming from animations.

[JsonPropertyName("animationStyles")]
[JsonIgnore(Condition = JsonIgnoreCondition.WhenWritingDefault)]
public CSSAnimationStyle[]? AnimationStyles { get; set; }

Property Value

CSSAnimationStyle[]

Inherited

Inherited style entries for animationsStyle and transitionsStyle from the inheritance chain of the element.

[JsonPropertyName("inherited")]
[JsonIgnore(Condition = JsonIgnoreCondition.WhenWritingDefault)]
public InheritedAnimatedStyleEntry[]? Inherited { get; set; }

Property Value

InheritedAnimatedStyleEntry[]

TransitionsStyle

Style coming from transitions.

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

Property Value

CSSStyle