Forked from sidane/capybara_selenium_resize_window.rb
Created
August 3, 2013 13:36
-
-
Save ryancheung/6146467 to your computer and use it in GitHub Desktop.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# Resize selenium browser window to avoid Selenium::WebDriver::Error::MoveTargetOutOfBoundsError errors | |
# | |
# Example usage with Rspec (in spec/support/spec_helper.rb): | |
# | |
# config.before(:each) do | |
# set_selenium_window_size(1250, 800) if Capybara.current_driver == :selenium | |
# end | |
# | |
def set_selenium_window_size(width, height) | |
window = Capybara.current_session.driver.browser.manage.window | |
window.resize_to(width, height) | |
end |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment