Table of Contents

Class NavigationEntry

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

Navigation history entry.

public sealed record NavigationEntry : IEquatable<NavigationEntry>
Inheritance
NavigationEntry
Implements
Inherited Members

Constructors

NavigationEntry(long, string, string, string, TransitionType)

Navigation history entry.

public NavigationEntry(long Id, string Url, string UserTypedURL, string Title, TransitionType TransitionType)

Parameters

Id long

Unique id of the navigation history entry.

Url string

URL of the navigation history entry.

UserTypedURL string

URL that the user typed in the url bar.

Title string

Title of the navigation history entry.

TransitionType TransitionType

Transition type.

Properties

Id

Unique id of the navigation history entry.

public long Id { get; init; }

Property Value

long

Title

Title of the navigation history entry.

public string Title { get; init; }

Property Value

string

TransitionType

Transition type.

public TransitionType TransitionType { get; init; }

Property Value

TransitionType

Url

URL of the navigation history entry.

public string Url { get; init; }

Property Value

string

UserTypedURL

URL that the user typed in the url bar.

public string UserTypedURL { get; init; }

Property Value

string