Java org.openqa.selenium.support.ui Select fields, constructors, methods, implement or subclass

Example usage for Java org.openqa.selenium.support.ui Select fields, constructors, methods, implement or subclass

Introduction

In this page you can find the methods, fields and constructors for org.openqa.selenium.support.ui Select.

The text is from its open source code.

Subclass

org.openqa.selenium.support.ui.Select has subclasses.
Click this link to see all its subclasses.

Constructor

Method

voiddeselectAll()
Clear all selected entries.
voiddeselectByIndex(int index)
Deselect the option at the given index.
voiddeselectByValue(String value)
Deselect all options that have a value matching the argument.
voiddeselectByVisibleText(String text)
Deselect all options that display text matching the argument.
ListgetAllSelectedOptions()
WebElementgetFirstSelectedOption()
ListgetOptions()
booleanisMultiple()
voidselectByIndex(int index)
Select the option at the given index.
voidselectByValue(String value)
Select all options that have a value matching the argument.
voidselectByVisibleText(String text)
Select all options that display text matching the argument.