Table of Contents

Class GetAppManifestCommandResponse

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

Response for Gets the processed manifest for this current document. This API always waits for the manifest to be loaded. If manifestId is provided, and it does not match the manifest of the current document, this API errors out. If there is not a loaded page, this API errors out immediately.

public sealed class GetAppManifestCommandResponse : ICommandResponse<GetAppManifestCommandSettings>, ICommandResponse
Inheritance
GetAppManifestCommandResponse
Implements
Inherited Members
Extension Methods

Properties

Data

Manifest content.

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

Property Value

string

Errors

Gets or sets the errors

[JsonPropertyName("errors")]
public AppManifestError[] Errors { get; set; }

Property Value

AppManifestError[]

Manifest

Gets or sets the manifest

[JsonPropertyName("manifest")]
public WebAppManifest Manifest { get; set; }

Property Value

WebAppManifest

Parsed

Parsed manifest properties. Deprecated, use manifest instead.

[JsonPropertyName("parsed")]
[JsonIgnore(Condition = JsonIgnoreCondition.WhenWritingDefault)]
public AppManifestParsedProperties? Parsed { get; set; }

Property Value

AppManifestParsedProperties

Url

Manifest location.

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

Property Value

string