Get-HtmlBrowserFormField
August 3, 2026 ยท View on GitHub
SYNOPSIS
Cmdlet that returns all form input fields from HTML content or a URL.
SYNTAX
Content (Default)
Get-HtmlBrowserFormField -Content <string> [<CommonParameters>]
Url
Get-HtmlBrowserFormField -Url <uri> [-Proxy <string>] [-ProxyCredential <pscredential>] [<CommonParameters>]
DESCRIPTION
Cmdlet that returns all form input fields from HTML content or a URL.
EXAMPLES
EXAMPLE 1
Get-HtmlBrowserFormField -Content 'Value'
EXAMPLE 2
Get-HtmlBrowserFormField -Url 'Value'
PARAMETERS
-Content
HTML content to parse.
Type: String
Parameter Sets: Content
Aliases: None
Possible values:
Required: True
Position: named
Default value: None
Accept pipeline input: True (ByValue, ByPropertyName)
Accept wildcard characters: False
-Proxy
Proxy server address used when downloading.
Type: String
Parameter Sets: Url
Aliases: None
Possible values:
Required: False
Position: named
Default value: None
Accept pipeline input: False
Accept wildcard characters: False
-ProxyCredential
Credentials for the proxy server.
Type: PSCredential
Parameter Sets: Url
Aliases: None
Possible values:
Required: False
Position: named
Default value: None
Accept pipeline input: False
Accept wildcard characters: False
-Url
URL of the page to download.
Type: Uri
Parameter Sets: Url
Aliases: Uri
Possible values:
Required: True
Position: named
Default value: None
Accept pipeline input: False
Accept wildcard characters: False
CommonParameters
This cmdlet supports the common parameters: -Debug, -ErrorAction, -ErrorVariable, -InformationAction, -InformationVariable, -OutVariable, -OutBuffer, -PipelineVariable, -Verbose, -WarningAction, and -WarningVariable. For more information, see about_CommonParameters.
INPUTS
System.String
OUTPUTS
HtmlTinkerX.HtmlFormField
RELATED LINKS
- None