Answers for "how to find the size of a web page selenium"

0

how to find the size of a web page selenium

Dimension initial_size = driver.manage().window().getSize();
    int height = initial_size.getHeight();
    int width = initial_size.getWidth();
Posted by: Guest on February-04-2021

Code answers related to "how to find the size of a web page selenium"

Browse Popular Code Answers by Language