| Package | Description |
|---|---|
| org.jboss.arquillian.graphene.component.object.api.autocomplete |
| Modifier and Type | Method and Description |
|---|---|
Suggestion<T> |
AutocompleteComponent.getFirstSuggestion()
Returns the first suggestion if available, that is, the top suggestion from the list of suggestions.
|
Suggestion<T> |
AutocompleteComponent.getNthSuggestion(int order)
Returns the suggestion which is in order determined by param
order. |
Suggestion<T> |
SuggestionParser.parse(org.openqa.selenium.WebElement rootOfSuggestion)
Will construct suggestion from the given suggestion root.
|
| Modifier and Type | Method and Description |
|---|---|
List<Suggestion<T>> |
AutocompleteComponent.getAllSuggestions()
Returns all suggestions available, also these which need to be scrolled down to be visible.
|
List<Suggestion<T>> |
AutocompleteComponent.getFirstNSuggestions(int n)
Returns first n suggestions, that is the the first n most top suggestions, if there are some available.
|
List<Suggestion<T>> |
AutocompleteComponent.getSelectedSuggestions()
Returns the selected suggestions from the input, the way of suggestions separating is determined by the currently set
separator, the default one is space.
|
List<Suggestion<T>> |
AutocompleteComponent.typeAndReturn(String value)
Types to the autocomplete input the provided string and returns the suggestions if available.
|
| Modifier and Type | Method and Description |
|---|---|
boolean |
AutocompleteComponent.autocompleteWithSuggestion(Suggestion<T> sugg)
Autocompletes the input with given suggestion
|
boolean |
AutocompleteComponent.autocompleteWithSuggestion(Suggestion<T> sugg,
ScrollingType scrollingType)
Autocompletes the input with suggestion determined by param
sugg, and the suggestion is chosen by the way
determined by param scrollingType |
Copyright © 2013 JBoss by Red Hat. All Rights Reserved.