Table of Contents

Class GetAppIdCommandResponse

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

Response for Returns the unique (PWA) app id. Only returns values if the feature flag 'WebAppEnableManifestId' is enabled

public sealed class GetAppIdCommandResponse : ICommandResponse<GetAppIdCommandSettings>, ICommandResponse
Inheritance
GetAppIdCommandResponse
Implements
Inherited Members
Extension Methods

Properties

AppId

App id, either from manifest's id attribute or computed from start_url

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

Property Value

string

RecommendedId

Recommendation for manifest's id attribute to match current id computed from start_url

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

Property Value

string