Table of Contents

Class InstallabilityError

Namespace
Selenium.WebDriver.BiDi.Cdp.Page
Assembly
Selenium.WebDriver.BiDi.Cdp.dll

The installability error

public sealed record InstallabilityError : IEquatable<InstallabilityError>
Inheritance
InstallabilityError
Implements
Inherited Members

Constructors

InstallabilityError(string, ImmutableArray<InstallabilityErrorArgument>)

The installability error

public InstallabilityError(string ErrorId, ImmutableArray<InstallabilityErrorArgument> ErrorArguments)

Parameters

ErrorId string

The error id (e.g. 'manifest-missing-suitable-icon').

ErrorArguments ImmutableArray<InstallabilityErrorArgument>

The list of error arguments (e.g. {name:'minimum-icon-size-in-pixels', value:'64'}).

Properties

ErrorArguments

The list of error arguments (e.g. {name:'minimum-icon-size-in-pixels', value:'64'}).

public ImmutableArray<InstallabilityErrorArgument> ErrorArguments { get; init; }

Property Value

ImmutableArray<InstallabilityErrorArgument>

ErrorId

The error id (e.g. 'manifest-missing-suitable-icon').

public string ErrorId { get; init; }

Property Value

string