Uses of Class
org.htmlunit.html.HtmlInput
-
Packages that use HtmlInput Package Description org.htmlunit.html Classes specific to HTML pages, particularly theHtmlPagewhich represents an HTML document and provides access to its content.org.htmlunit.html.serializer Contains the html serializer implementations.org.htmlunit.javascript.host.html Implementations of the HTML JavaScript host objects - users of HtmlUnit shouldn't need anything in this package. -
-
Uses of HtmlInput in org.htmlunit.html
Subclasses of HtmlInput in org.htmlunit.html Modifier and Type Class Description 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".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".classHtmlSelectableTextInputAbstract parent class to shareSelectableTextInputimplementation and typing support.classHtmlSubmitInputWrapper for the HTML element "input".classHtmlTelInputWrapper for the HTML element "input" where type is "tel".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 with type parameters of type HtmlInput Modifier and Type Method Description <I extends HtmlInput>
IHtmlForm. getInputByName(java.lang.String name)Returns the first input element which is a member of this form and has the specified name.<I extends HtmlInput>
IHtmlForm. getInputByValue(java.lang.String value)Returns the first input in this form with the specified value.Methods in org.htmlunit.html that return HtmlInput Modifier and Type Method Description HtmlInputHtmlInput. changeType(java.lang.String newType, boolean setThroughAttribute)INTERNAL API - SUBJECT TO CHANGE AT ANY TIME - USE AT YOUR OWN RISK.
Changes the type of the current HtmlInput.Methods in org.htmlunit.html that return types with arguments of type HtmlInput Modifier and Type Method Description java.util.List<HtmlInput>HtmlForm. getInputsByName(java.lang.String name)Returns all input elements which are members of this form and have the specified name.java.util.List<HtmlInput>HtmlForm. getInputsByValue(java.lang.String value)Returns all the inputs in this form with the specified value.Methods in org.htmlunit.html with parameters of type HtmlInput Modifier and Type Method Description protected voidHtmlDateTimeLocalInput. adjustValueAfterTypeChange(HtmlInput oldInput, BrowserVersion browserVersion)protected voidHtmlFileInput. adjustValueAfterTypeChange(HtmlInput oldInput, BrowserVersion browserVersion)protected voidHtmlInput. adjustValueAfterTypeChange(HtmlInput oldInput, BrowserVersion browserVersion)protected voidHtmlMonthInput. adjustValueAfterTypeChange(HtmlInput oldInput, BrowserVersion browserVersion)protected voidHtmlTimeInput. adjustValueAfterTypeChange(HtmlInput oldInput, BrowserVersion browserVersion)protected voidHtmlWeekInput. adjustValueAfterTypeChange(HtmlInput oldInput, BrowserVersion browserVersion) -
Uses of HtmlInput in org.htmlunit.html.serializer
Methods in org.htmlunit.html.serializer with parameters of type HtmlInput Modifier and Type Method Description protected voidHtmlSerializerNormalizedText. appendInput(HtmlSerializerNormalizedText.HtmlSerializerTextBuilder builder, HtmlInput htmlInput)ProcessHtmlInput.protected voidHtmlSerializerVisibleText. appendInput(HtmlSerializerVisibleText.HtmlSerializerTextBuilder builder, HtmlInput htmlInput, HtmlSerializerVisibleText.Mode mode)ProcessHtmlInput. -
Uses of HtmlInput in org.htmlunit.javascript.host.html
Methods in org.htmlunit.javascript.host.html that return HtmlInput Modifier and Type Method Description HtmlInputHTMLInputElement. getDomNodeOrDie()Returns the DOM node that corresponds to this JavaScript object or throw an exception if one cannot be found.
-