How can you specify the size of the browser window opened when you call the following with watir-webdriver?
browser = Watir::Browser.new(:firefox)
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)