Checkout our demo site to practice selenium https://magento.softwaretestingboard.com/

0 like 0 dislike
474 views
in Test Automation by
I creating selenium scripts for mobile devices. Our site shows responsiveness based on screen size. I want to develop my script on desktop browser first. I need to resize browser window to get responsive design. How do I resize my browser window?

1 Answer

0 like 0 dislike
by The go-to Tester (181 points)
selected by
 
Best answer

You can get a reference to the current window with driver.manage().window(). And the window has a setSize() method, so you could try

Dimension dimension = new Dimension(800, 600);
driver.manage().window().setSize(dimension);

 


This site is for software testing professionals, where you can ask all your questions and get answers from 1300+ masters of the profession. Click here to submit yours now!

1.4k questions

1.6k answers

866 comments

1.9k users

...