How can you specify the size of the browser window opened when you call the following with watir-webdriver?

browser = Watir::Browser.new(:firefox)

link|improve this question

feedback

2 Answers

up vote 5 down vote accepted

This works only for Firefox at the moment:

browser.window.resize_to(800, 600)

and you can move the browser, too:

browser.window.move_to(0, 0)
link|improve this answer
Thanks will try it tomorrow :-) – Alastair Montgomery May 25 '11 at 15:16
Thanks, this was the answer I didn't know I needed, too. It really helped with Jarmo's Win32Screenshot capability, too: Win32::Screenshot::Take.of(:desktop, :area => [0,0,1024,768]) – adam reed May 26 '11 at 19:11
2  
@adam: watir-webdriver has screen shots built in: browser.driver.save_screenshot("file_name.png") – Željko Filipin May 27 '11 at 9:13
Make that two answers I didn't know I needed. I was experimenting with vanilla watir & Jarmo's library first before pulling it into the latest webdriver script - looks like I would be better-served with this one. Thanks! – adam reed May 31 '11 at 16:45
I'm glad I could help. More gems like these will soon be in my Watir book. watir.com/book :) – Željko Filipin Jun 1 '11 at 8:10
feedback

I'm using ruby+watir-webdriver and this code works for both FF and IE browsers (I have not checked in others browsers)

screen_width = browser.execute_script("return screen.width;")
screen_height = browser.execute_script("return screen.height;")
browser.driver.manage.window.resize_to(screen_width,screen_height)
browser.driver.manage.window.move_to(0,0)
link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.