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 theHtmlPage
which 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 void
AbstractHtmlPageAction. loadPageBySelect(HtmlSelect select, java.lang.String optionValue)
Loads the page by selecting an option of the given HTML select element.protected void
AbstractHtmlPageAction. loadPageBySelect(HtmlSelect select, java.lang.String optionValue, long waitingTime)
Loads the page by selecting an option from the given HTML select element.protected void
AbstractHtmlPageAction. loadPageBySelect(HtmlSelect select, HtmlOption option)
Loads the page by selecting an option form the given HTML select element.protected void
AbstractHtmlPageAction. 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 HtmlSelect
HtmlPageUtils. getSelectEndingWith(HtmlForm form, java.lang.String suffix)
Returns the first select element that ends with this suffix.static HtmlSelect
HtmlPageUtils. 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 HtmlSelect
HtmlOption. getEnclosingSelect()
Gets the enclosing select of this option.HtmlSelect
HtmlOptionGroup. getEnclosingSelect()
Gets the enclosing select of this HtmlOptionGroup.HtmlSelect
HtmlForm. getSelectByName(java.lang.String name)
Returns the firstHtmlSelect
element 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 theHtmlSelect
elements in this form that have the specified name.
-