how to get heioioght of a webpage using selenium code example
Example: how to find the height of a web page selenium
Dimension initial_size = driver.manage().window().getSize();
int height = initial_size.getHeight();
int width = initial_size.getWidth();