Thank you in advance !
i need to hover on the stars and select the 5th star.
please find my code :-
private static void setRating(String star) {
//new Actions(driver).moveToElement(driver.findElement(By.xpath("//*[@id='qid10']/option[1]"))).perform();
List<WebElement> rating = driver.findElements(By.xpath("//span[@class='ui_bubble_rating fl bubble_00']"));
rating.size();
List<WebElement> ele = driver.findElements(By.xpath("//div[@class='easyClear bigRatingParent']"));
System.out.println(ele.size());
for(WebElement ratings:ele) {
System.out.println(ratings);
}
new Actions(driver).moveToElement(driver.findElement(By.xpath("//div[@class='question rating bigRating labelAndInput required ']/child::label/following-sibling::div/child::span"))).perform();
driver.findElement(By.xpath("//*[@id='qid10']/option[6]")).click();
}
}