I am trying to automate a testcase where textbox provides intelligence to autocomplete the field. Please find the link below for autocomplete text box : http://demoqa.com/autocomplete/
Please find the code written by me
dr.findElement(By.id("tagss")).sendKeys("a");
Thread.sleep(300);
// dr.findElement(By.id("ui-id-53")).click();
Actions act = new Actions(dr);
act.moveToElement(dr.findElement(By.id("ui-id-53"))).click().build().perform();
This code is unable to find and locate options in intelligence provided by browser. Please help.