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