Table of Contents

Class SelectOptionValue

Namespace
Microsoft.Playwright
Assembly
Microsoft.Playwright.dll
public class SelectOptionValue
Inheritance
SelectOptionValue
Inherited Members

Constructors

SelectOptionValue()

public SelectOptionValue()

Properties

Index

Matches by the index. Optional.

[JsonPropertyName("index")]
public int? Index { get; set; }

Property Value

int?

Label

Matches by option.label. Optional.

[JsonPropertyName("label")]
public string? Label { get; set; }

Property Value

string

Value

Matches by option.value. Optional.

[JsonPropertyName("value")]
public string? Value { get; set; }

Property Value

string