Table of Contents

Class FrameResource

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

Information about the Resource on the page.

public sealed class FrameResource
Inheritance
FrameResource
Inherited Members

Properties

Canceled

True if the resource was canceled during loading.

[JsonPropertyName("canceled")]
[JsonIgnore(Condition = JsonIgnoreCondition.WhenWritingDefault)]
public bool? Canceled { get; set; }

Property Value

bool?

ContentSize

Resource content size.

[JsonPropertyName("contentSize")]
[JsonIgnore(Condition = JsonIgnoreCondition.WhenWritingDefault)]
public double? ContentSize { get; set; }

Property Value

double?

Failed

True if the resource failed to load.

[JsonPropertyName("failed")]
[JsonIgnore(Condition = JsonIgnoreCondition.WhenWritingDefault)]
public bool? Failed { get; set; }

Property Value

bool?

LastModified

last-modified timestamp as reported by server.

[JsonPropertyName("lastModified")]
[JsonIgnore(Condition = JsonIgnoreCondition.WhenWritingDefault)]
public double? LastModified { get; set; }

Property Value

double?

MimeType

Resource mimeType as determined by the browser.

[JsonPropertyName("mimeType")]
public string MimeType { get; set; }

Property Value

string

Type

Type of this resource.

[JsonPropertyName("type")]
public ResourceType Type { get; set; }

Property Value

ResourceType

Url

Resource URL.

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

Property Value

string