List<?> countryList = autocompleteList.getByXPath("div/div/div/div/div");
Assert.assertEquals(30, countryList.size());
HtmlInput input = (HtmlInput) page.getElementById("form:myAutocompleteInput");
Assert.assertNotNull(input);
input.type("al");
for (int i = 0; i < 20; i++) {
synchronized (page) {
autocompleteList = (HtmlElement) page.getElementById("form:myAutocompleteList");
Assert.assertNotNull(autocompleteList);