There is a pop that is displayed which has a content that large that will have to scroll to view it completely. Is there was to scroll the content within the div that is sho
// Initialize Javascript executor JavascriptExecutor js = (JavascriptExecutor) driver; // Scroll inside web element vertically (e.g. 100 pixel) js.executeScript("arguments[0].scrollTop = arguments[1];",driver.findElement(By.id("")), 100);
This should help to scroll within DIV element.