I do I reduce the size of the selenium frame, in order to increase the frame of the website I am testing?
+2
A:
You can start the Selenium server in a multiwindow mode:
-multiWindow: puts you into a mode where the test web site executes in a separate window, and selenium supports frames
http://seleniumhq.org/docs/05_selenium_rc.html#server-options
Igor Brejc
2009-04-22 08:22:02
great!!!!!!!!!!!!!!
flybywire
2009-04-22 08:28:06
That link now seems to be broken. :-/
Brandon Craig Rhodes
2010-08-05 18:06:31
I've updated the link.
Igor Brejc
2010-08-09 07:18:33
A:
If you want to resize the window once you've done multiWindow mode, you can also do getEval("window.resizeTo(X, Y); window.moveTo(0,0);") where X and Y are the width and height of the window you want.
Patrick Lightbody
2009-04-26 18:19:33