public void testSuggestionsPageLength2() {
openTestURL();
WebElement textboxPageLength2 = $(ComboBoxElement.class).get(1)
.findElement(By.tagName("input"));
textboxPageLength2.sendKeys("e");
assertSuggestions("cde", "efg");
}
private void assertSuggestions(String... expected) {
assertEquals(Arrays.asList(expected), getSuggestionsOnScreen());