Table of Contents

Class FilledField

Namespace
Selenium.WebDriver.BiDi.Cdp.Autofill
Assembly
Selenium.WebDriver.BiDi.Cdp.dll
public sealed record FilledField : IEquatable<FilledField>
Inheritance
FilledField
Implements
Inherited Members

Constructors

FilledField(string, string, string, string, string, FillingStrategy, FrameId, BackendNodeId)

public FilledField(string HtmlType, string Id, string Name, string Value, string AutofillType, FillingStrategy FillingStrategy, FrameId FrameId, BackendNodeId FieldId)

Parameters

HtmlType string

The type of the field, e.g text, password etc.

Id string

the html id

Name string

the html name

Value string

the field value

AutofillType string

The actual field type, e.g FAMILY_NAME

FillingStrategy FillingStrategy

The filling strategy

FrameId FrameId

The frame the field belongs to

FieldId BackendNodeId

The form field's DOM node

Properties

AutofillType

The actual field type, e.g FAMILY_NAME

public string AutofillType { get; init; }

Property Value

string

FieldId

The form field's DOM node

public BackendNodeId FieldId { get; init; }

Property Value

BackendNodeId

FillingStrategy

The filling strategy

public FillingStrategy FillingStrategy { get; init; }

Property Value

FillingStrategy

FrameId

The frame the field belongs to

public FrameId FrameId { get; init; }

Property Value

FrameId

HtmlType

The type of the field, e.g text, password etc.

public string HtmlType { get; init; }

Property Value

string

Id

the html id

public string Id { get; init; }

Property Value

string

Name

the html name

public string Name { get; init; }

Property Value

string

Value

the field value

public string Value { get; init; }

Property Value

string