Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

I know this is a very silly question. Yet, am not able to find how to make the browser open in fullscreen mode using watir webdriver. i tried using maximize() but in vain. This is how the code looks like:

require "rubygems"
require "watir-webdriver"
ff = Watir::Browser.new(:firefox)
ff.goto("http://google.com")
ff.maximize()

getting the error "undefined method maximize"

share|improve this question

3 Answers

up vote 2 down vote accepted

If you know screen size, you can move the browser to the top left corner and set it's size to screen size: Setting browser window size in Watir-webdriver.

share|improve this answer
Thanks for replying. Trust me I posted this question only after seeing the post you've mentioned in your reply. And in fact, that is still there in the next tab of the browser :) I thought there would be some command like maximize() that would make the browser full mode – Chandiran Jul 14 '11 at 9:53
Y does this command browser.execute_script('window.resizeTo(800,600)') work in firefox but not in Chrome ? – Chandiran Jul 14 '11 at 10:09
Maybe there is, you should ask webdriver people. Add webdriver and/or selenium tag(s) to the question, or ask at their mailing list. – Željko Filipin Jul 14 '11 at 10:09
Any error messages? What do you mean by does not work? – Željko Filipin Jul 14 '11 at 10:10
The browser (Chrome) is not getting resized to the size i mention. It stays in the default window size. No error message is displayed – Chandiran Jul 14 '11 at 10:15
show 2 more comments

I'm using ruby+watir-webdriver and this code works for both Firefox and IE browsers (I have not checked in other 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)
share|improve this answer

Right now, it's possible to maximize the browser doing:

require "rubygems"
require "watir-webdriver"
browser = Watir::Browser.new(:firefox)
browser.goto("http://google.com")    
browser.driver.manage.window.maximize

Actually is going down to Selenium Driver to handle it, and AFAIK it works fine in Firefox and Chrome.

share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

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