I get an exception on web elements click() method. element is not clickable at point. Other element would receive the click. on applying scrollTo javascript method before clicking web element.
WebElement row;
List<WebElement> element = driver.findElements(By.className("transparent"));
Iterator<WebElement> i=element.iterator();
while (i.hasNext()) {
row = i.next();
js.executeScript("window.scrollTo("+row.getLocation().getX()+","+row.getLocation().getY()+");");
row.click();
}