Back
I am using Selenium Remote Control. During executing the tests the actual Firefox window is so small. I want it full screen so I can see what is happening. How can I maximize the browser screen?
Try the windowmaximize() command:
selenium.windowMaximize();
You can also set the width and the height of the firefox window using the following command:
selenium.getEval("window.resizeTo(X, Y); window.moveTo(0,0);")
where X: width and Y: height.
31k questions
32.8k answers
501 comments
693 users