Table of Contents

Class FrameAttachedEventArgs

Namespace
Selenium.WebDriver.BiDi.Cdp.Page
Assembly
Selenium.WebDriver.BiDi.Cdp.dll

Fired when frame has been attached to its parent.

public sealed record FrameAttachedEventArgs : EventArgs, IEquatable<EventArgs>, IEquatable<FrameAttachedEventArgs>
Inheritance
EventArgs
FrameAttachedEventArgs
Implements
IEquatable<EventArgs>
Inherited Members
EventArgs.ToString()
EventArgs.GetHashCode()
EventArgs.Equals(EventArgs)
EventArgs.<Clone>$()
EventArgs.BiDi
EventArgs.AdditionalData
EventArgs.AdditionalMessageData

Constructors

FrameAttachedEventArgs(FrameId, FrameId, StackTrace?)

Fired when frame has been attached to its parent.

public FrameAttachedEventArgs(FrameId FrameId, FrameId ParentFrameId, StackTrace? Stack = null)

Parameters

FrameId FrameId

Id of the frame that has been attached.

ParentFrameId FrameId

Parent frame identifier.

Stack StackTrace

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

Properties

FrameId

Id of the frame that has been attached.

public FrameId FrameId { get; init; }

Property Value

FrameId

ParentFrameId

Parent frame identifier.

public FrameId ParentFrameId { get; init; }

Property Value

FrameId

Stack

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

public StackTrace? Stack { get; init; }

Property Value

StackTrace