Table of Contents

Class FrameRequestedNavigationEventArgs

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

Fired when a renderer-initiated navigation is requested. Navigation may still be cancelled after the event is issued.

public sealed class FrameRequestedNavigationEventArgs : EventArgs
Inheritance
FrameRequestedNavigationEventArgs
Inherited Members

Properties

Disposition

The disposition for the navigation.

[JsonPropertyName("disposition")]
public ClientNavigationDisposition Disposition { get; set; }

Property Value

ClientNavigationDisposition

FrameId

Id of the frame that is being navigated.

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

Property Value

string

Reason

The reason for the navigation.

[JsonPropertyName("reason")]
public ClientNavigationReason Reason { get; set; }

Property Value

ClientNavigationReason

Url

The destination URL for the requested navigation.

[JsonPropertyName("url")]
public string Url { get; set; }

Property Value

string