Uses of Interface
org.htmlunit.html.SubmittableElement
-
Packages that use SubmittableElement Package Description org.htmlunit.html Classes specific to HTML pages, particularly theHtmlPage
which represents an HTML document and provides access to its content. -
-
Uses of SubmittableElement in org.htmlunit.html
Classes in org.htmlunit.html that implement SubmittableElement Modifier and Type Class Description class
HtmlButton
Wrapper for the HTML element "button".class
HtmlButtonInput
Wrapper for the HTML element "input" where type is "button".class
HtmlCheckBoxInput
Wrapper for the HTML element "input".class
HtmlColorInput
Wrapper for the HTML element "input" where type is "color".class
HtmlDateInput
Wrapper for the HTML element "input" where type is "date".class
HtmlDateTimeLocalInput
Wrapper for the HTML element "input" where type is "datetime-local".class
HtmlEmailInput
Wrapper for the HTML element "input" where type is "email".class
HtmlFileInput
Wrapper for the HTML element "input".class
HtmlHiddenInput
Wrapper for the HTML element "input" of type "hidden".class
HtmlImageInput
Wrapper for the HTML element "input".class
HtmlInput
Wrapper for the HTML element "input".class
HtmlIsIndex
Wrapper for the HTML element "isindex".class
HtmlMonthInput
Wrapper for the HTML element "input" where type is "month".class
HtmlNumberInput
Wrapper for the HTML element "input" with type is "number".class
HtmlPasswordInput
Wrapper for the HTML element "input".class
HtmlRadioButtonInput
Wrapper for the HTML element "input".class
HtmlRangeInput
Wrapper for the HTML element "input" where type is "range".class
HtmlResetInput
Wrapper for the HTML element "input".class
HtmlSearchInput
Wrapper for the HTML element "input" where type is "search".class
HtmlSelect
Wrapper for the HTML element "select".class
HtmlSelectableTextInput
Abstract parent class to shareSelectableTextInput
implementation and typing support.class
HtmlSubmitInput
Wrapper for the HTML element "input".class
HtmlTelInput
Wrapper for the HTML element "input" where type is "tel".class
HtmlTextArea
Wrapper for the HTML element "textarea".class
HtmlTextInput
Wrapper for the HTML element "input" with type="text".class
HtmlTimeInput
Wrapper for the HTML element "input" where type is "time".class
HtmlUrlInput
Wrapper for the HTML element "input" where type is "url".class
HtmlWeekInput
Wrapper for the HTML element "input" where type is "week".Methods in org.htmlunit.html that return types with arguments of type SubmittableElement Modifier and Type Method Description (package private) java.util.Collection<SubmittableElement>
HtmlForm. getSubmittableElements(SubmittableElement submitElement)
Returns a collection of elements that represent all the "submittable" elements in this form, assuming that the specified element is used to submit the form.Methods in org.htmlunit.html with parameters of type SubmittableElement Modifier and Type Method Description java.util.List<NameValuePair>
HtmlForm. getParameterListForSubmit(SubmittableElement submitElement)
INTERNAL API - SUBJECT TO CHANGE AT ANY TIME - USE AT YOUR OWN RISK.
Returns a list ofNameValuePair
s that represent the data that will be sent to the server when this form is submitted.(package private) java.util.Collection<SubmittableElement>
HtmlForm. getSubmittableElements(SubmittableElement submitElement)
Returns a collection of elements that represent all the "submittable" elements in this form, assuming that the specified element is used to submit the form.WebRequest
HtmlForm. getWebRequest(SubmittableElement submitElement)
INTERNAL API - SUBJECT TO CHANGE AT ANY TIME - USE AT YOUR OWN RISK.
Gets the request for a submission of this form with the specified SubmittableElement.private static boolean
HtmlForm. isSubmittable(HtmlElement element, SubmittableElement submitElement)
Returnstrue
if the specified element gets submitted when this form is submitted, assuming that the form is submitted using the specified submit element.private static boolean
HtmlForm. isValidForSubmission(HtmlElement element, SubmittableElement submitElement)
void
HtmlForm. submit(SubmittableElement submitElement)
INTERNAL API - SUBJECT TO CHANGE AT ANY TIME - USE AT YOUR OWN RISK.private void
HtmlForm. updateHtml5Attributes(SubmittableElement submitElement)
Check if element which cause submit contains new html5 attributes (formaction, formmethod, formtarget, formenctype) and override existing values
-