Table of Contents

Class NavigationEntry

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

Navigation history entry.

public sealed class NavigationEntry
Inheritance
NavigationEntry
Inherited Members

Properties

Id

Unique id of the navigation history entry.

[JsonPropertyName("id")]
public long Id { get; set; }

Property Value

long

Title

Title of the navigation history entry.

[JsonPropertyName("title")]
public string Title { get; set; }

Property Value

string

TransitionType

Transition type.

[JsonPropertyName("transitionType")]
public TransitionType TransitionType { get; set; }

Property Value

TransitionType

Url

URL of the navigation history entry.

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

Property Value

string

UserTypedURL

URL that the user typed in the url bar.

[JsonPropertyName("userTypedURL")]
public string UserTypedURL { get; set; }

Property Value

string