Table of Contents

Class NavigateCommandSettings

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

Navigates current page to the given URL.

public sealed class NavigateCommandSettings : ICommand
Inheritance
NavigateCommandSettings
Implements
Inherited Members

Properties

CommandName

Gets the name of the command.

[JsonIgnore]
public string CommandName { get; }

Property Value

string

FrameId

Frame id to navigate, if not specified navigates the top frame.

[JsonPropertyName("frameId")]
[JsonIgnore(Condition = JsonIgnoreCondition.WhenWritingDefault)]
public string? FrameId { get; set; }

Property Value

string

Referrer

Referrer URL.

[JsonPropertyName("referrer")]
[JsonIgnore(Condition = JsonIgnoreCondition.WhenWritingDefault)]
public string? Referrer { get; set; }

Property Value

string

ReferrerPolicy

Referrer-policy used for the navigation.

[JsonPropertyName("referrerPolicy")]
[JsonIgnore(Condition = JsonIgnoreCondition.WhenWritingDefault)]
public ReferrerPolicy? ReferrerPolicy { get; set; }

Property Value

ReferrerPolicy?

TransitionType

Intended transition type.

[JsonPropertyName("transitionType")]
[JsonIgnore(Condition = JsonIgnoreCondition.WhenWritingDefault)]
public TransitionType? TransitionType { get; set; }

Property Value

TransitionType?

Url

URL to navigate the page to.

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

Property Value

string