Answers for "how to get height of web page"

0

how to get height of web page

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

Browse Popular Code Answers by Language