Table of Contents

Class FrameAttachedEventArgs

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

Fired when frame has been attached to its parent.

public sealed class FrameAttachedEventArgs : EventArgs
Inheritance
FrameAttachedEventArgs
Inherited Members

Properties

FrameId

Id of the frame that has been attached.

[JsonPropertyName("frameId")]
public string FrameId { get; set; }

Property Value

string

ParentFrameId

Parent frame identifier.

[JsonPropertyName("parentFrameId")]
public string ParentFrameId { get; set; }

Property Value

string

Stack

JavaScript stack trace of when frame was attached, only set if frame initiated from script.

[JsonPropertyName("stack")]
[JsonIgnore(Condition = JsonIgnoreCondition.WhenWritingDefault)]
public StackTrace? Stack { get; set; }

Property Value

StackTrace