Uses of Class
org.htmlunit.html.HtmlSelect
-
Packages that use HtmlSelect Package Description com.xceptance.xlt.api.actions Provides abstract super classes for different types of actions.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 HtmlSelect in com.xceptance.xlt.api.actions
Methods in com.xceptance.xlt.api.actions with parameters of type HtmlSelect Modifier and Type Method Description protected voidAbstractHtmlPageAction. loadPageBySelect(HtmlSelect select, java.lang.String optionValue)Loads the page by selecting an option of the given HTML select element.protected voidAbstractHtmlPageAction. loadPageBySelect(HtmlSelect select, java.lang.String optionValue, long waitingTime)Loads the page by selecting an option from the given HTML select element.protected voidAbstractHtmlPageAction. loadPageBySelect(HtmlSelect select, HtmlOption option)Loads the page by selecting an option form the given HTML select element.protected voidAbstractHtmlPageAction. loadPageBySelect(HtmlSelect select, HtmlOption option, long waitingTime)Loads the page by selecting an option from the given HTML select element. -
Uses of HtmlSelect in com.xceptance.xlt.api.util
Methods in com.xceptance.xlt.api.util that return HtmlSelect Modifier and Type Method Description static HtmlSelectHtmlPageUtils. getSelectEndingWith(HtmlForm form, java.lang.String suffix)Returns the first select element that ends with this suffix.static HtmlSelectHtmlPageUtils. getSelectStartingWith(HtmlForm form, java.lang.String prefix)Returns the first select element that starts with this prefix. -
Uses of HtmlSelect in org.htmlunit.html
Methods in org.htmlunit.html that return HtmlSelect Modifier and Type Method Description HtmlSelectHtmlOption. getEnclosingSelect()Gets the enclosing select of this option.HtmlSelectHtmlOptionGroup. getEnclosingSelect()Gets the enclosing select of this HtmlOptionGroup.HtmlSelectHtmlForm. getSelectByName(java.lang.String name)Returns the firstHtmlSelectelement in this form that has the specified name.Methods in org.htmlunit.html that return types with arguments of type HtmlSelect Modifier and Type Method Description java.util.List<HtmlSelect>HtmlForm. getSelectsByName(java.lang.String name)Returns all theHtmlSelectelements in this form that have the specified name.
-