Table of Contents

Class NavigatedWithinDocumentEventArgs

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

Fired when same-document navigation happens, e.g. due to history API usage or anchor navigation.

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

Constructors

NavigatedWithinDocumentEventArgs(FrameId, string, string)

Fired when same-document navigation happens, e.g. due to history API usage or anchor navigation.

public NavigatedWithinDocumentEventArgs(FrameId FrameId, string Url, string NavigationType)

Parameters

FrameId FrameId

Id of the frame.

Url string

Frame's new url.

NavigationType string

Navigation type

Properties

FrameId

Id of the frame.

public FrameId FrameId { get; init; }

Property Value

FrameId

NavigationType

Navigation type

public string NavigationType { get; init; }

Property Value

string

Url

Frame's new url.

public string Url { get; init; }

Property Value

string