Uses of Class
org.htmlunit.html.HtmlInput
-
Packages that use HtmlInput Package Description com.xceptance.xlt.api.util Provides various utility classes to make writing test cases easier.org.htmlunit.html Classes specific to HTML pages, particularly theHtmlPagewhich represents an HTML document and provides access to its content. -
-
Uses of HtmlInput in com.xceptance.xlt.api.util
Methods in com.xceptance.xlt.api.util with type parameters of type HtmlInput Modifier and Type Method Description static <T extends HtmlInput>
THtmlPageUtils. getInputEndingWith(HtmlForm form, java.lang.String suffix)Returns the first input element that ends with this suffix.static <T extends HtmlInput>
THtmlPageUtils. getInputStartingWith(HtmlForm form, java.lang.String prefix)Returns the first input element that starts with this prefix.Methods in com.xceptance.xlt.api.util that return HtmlInput Modifier and Type Method Description static HtmlInputHtmlPageUtils. createInput(HtmlForm form, java.lang.String type, java.lang.String name, java.lang.String value)Creates a new input HTML element, initializes it with the specified type, name, and value, and inserts it to the given form. -
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 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.
-