use of com.seleniumtests.uipage.htmlelements.select.NativeSelect in project seleniumRobot by bhecquet.
the class TestSelectList method testGetOptions.
@Test(groups = { "ut" })
public void testGetOptions() throws IOException {
SelectList select = new SelectList("", By.id("select"));
List<WebElement> options = select.getOptions();
Assert.assertEquals(options.size(), 2);
Assert.assertTrue(select.getSelectImplementation() instanceof NativeSelect);
}
Aggregations