Table of Contents

Class FrameScheduledNavigationEventArgs

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

Fired when frame schedules a potential navigation.

public sealed class FrameScheduledNavigationEventArgs : EventArgs
Inheritance
FrameScheduledNavigationEventArgs
Inherited Members

Properties

Delay

Delay (in seconds) until the navigation is scheduled to begin. The navigation is not guaranteed to start.

[JsonPropertyName("delay")]
public double Delay { get; set; }

Property Value

double

FrameId

Id of the frame that has scheduled a navigation.

[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 scheduled navigation.

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

Property Value

string