Uses of Interface
org.htmlunit.html.SubmittableElement
-
Packages that use SubmittableElement Package Description org.htmlunit.html Classes specific to HTML pages, particularly theHtmlPagewhich 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 classHtmlButtonWrapper for the HTML element "button".classHtmlButtonInputWrapper for the HTML element "input" where type is "button".classHtmlCheckBoxInputWrapper for the HTML element "input".classHtmlColorInputWrapper for the HTML element "input" where type is "color".classHtmlDateInputWrapper for the HTML element "input" where type is "date".classHtmlDateTimeLocalInputWrapper for the HTML element "input" where type is "datetime-local".classHtmlEmailInputWrapper for the HTML element "input" where type is "email".classHtmlFileInputWrapper for the HTML element "input".classHtmlHiddenInputWrapper for the HTML element "input" of type "hidden".classHtmlImageInputWrapper for the HTML element "input".classHtmlInputWrapper for the HTML element "input".classHtmlIsIndexWrapper for the HTML element "isindex".classHtmlMonthInputWrapper for the HTML element "input" where type is "month".classHtmlNumberInputWrapper for the HTML element "input" with type is "number".classHtmlPasswordInputWrapper for the HTML element "input".classHtmlRadioButtonInputWrapper for the HTML element "input".classHtmlRangeInputWrapper for the HTML element "input" where type is "range".classHtmlResetInputWrapper for the HTML element "input".classHtmlSearchInputWrapper for the HTML element "input" where type is "search".classHtmlSelectWrapper for the HTML element "select".classHtmlSelectableTextInputAbstract parent class to shareSelectableTextInputimplementation and typing support.classHtmlSubmitInputWrapper for the HTML element "input".classHtmlTelInputWrapper for the HTML element "input" where type is "tel".classHtmlTextAreaWrapper for the HTML element "textarea".classHtmlTextInputWrapper for the HTML element "input" with type="text".classHtmlTimeInputWrapper for the HTML element "input" where type is "time".classHtmlUrlInputWrapper for the HTML element "input" where type is "url".classHtmlWeekInputWrapper 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 ofNameValuePairs 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.WebRequestHtmlForm. 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 booleanHtmlForm. isSubmittable(HtmlElement element, SubmittableElement submitElement)Returnstrueif the specified element gets submitted when this form is submitted, assuming that the form is submitted using the specified submit element.private static booleanHtmlForm. isValidForSubmission(HtmlElement element, SubmittableElement submitElement)voidHtmlForm. submit(SubmittableElement submitElement)INTERNAL API - SUBJECT TO CHANGE AT ANY TIME - USE AT YOUR OWN RISK.private voidHtmlForm. updateHtml5Attributes(SubmittableElement submitElement)Check if element which cause submit contains new html5 attributes (formaction, formmethod, formtarget, formenctype) and override existing values
-