Table of Contents

Class LoadNetworkResourceCommandSettings

Namespace
OpenQA.Selenium.DevTools.V146.Network
Assembly
Selenium.WebDriver.dll

Fetches the resource and returns the content.

public sealed class LoadNetworkResourceCommandSettings : ICommand
Inheritance
LoadNetworkResourceCommandSettings
Implements
Inherited Members

Properties

CommandName

Gets the name of the command.

[JsonIgnore]
public string CommandName { get; }

Property Value

string

FrameId

Frame id to get the resource for. Mandatory for frame targets, and should be omitted for worker targets.

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

Property Value

string

Options

Options for the request.

[JsonPropertyName("options")]
public LoadNetworkResourceOptions Options { get; set; }

Property Value

LoadNetworkResourceOptions

Url

URL of the resource to get content for.

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

Property Value

string