Verification of Element in Viewport in Selenium
问题 How to verify whether an element is visible in viewport(visibility of browser) or not using Selenium? I've tried with the below code, but Point object(Y value) returns huge value as page is scrollable. Here am getting element dimensions, location and Dimensions of Browser and comparing them. Dimension weD = element.getSize(); //to get the element Dimensions Point weP = element.getLocation(); // getting the location of the element in the page. Dimension d = driver.manage().window().getSize();