Class FilledField
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
HtmlTypestringThe type of the field, e.g text, password etc.
Idstringthe html id
Namestringthe html name
Valuestringthe field value
AutofillTypestringThe actual field type, e.g FAMILY_NAME
FillingStrategyFillingStrategyThe filling strategy
FrameIdFrameIdThe frame the field belongs to
FieldIdBackendNodeIdThe form field's DOM node
Properties
AutofillType
The actual field type, e.g FAMILY_NAME
public string AutofillType { get; init; }
Property Value
FieldId
The form field's DOM node
public BackendNodeId FieldId { get; init; }
Property Value
FillingStrategy
The filling strategy
public FillingStrategy FillingStrategy { get; init; }
Property Value
FrameId
The frame the field belongs to
public FrameId FrameId { get; init; }
Property Value
HtmlType
The type of the field, e.g text, password etc.
public string HtmlType { get; init; }
Property Value
Id
the html id
public string Id { get; init; }
Property Value
Name
the html name
public string Name { get; init; }
Property Value
Value
the field value
public string Value { get; init; }