Skip to content

Instantly share code, notes, and snippets.

@sidane
Last active June 3, 2022 13:27
Show Gist options
  • Star 16 You must be signed in to star a gist
  • Fork 2 You must be signed in to fork a gist
  • Save sidane/2204218 to your computer and use it in GitHub Desktop.
Save sidane/2204218 to your computer and use it in GitHub Desktop.
Resize browser window with Capybara Selenium
# 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.current_window.resize_to
window.resize_to(width, height)
end
@iainbeeston
Copy link

Useful, thanks!

@beydogan
Copy link

beydogan commented Oct 6, 2015

Excellent! Thank you

@roc
Copy link

roc commented Apr 15, 2016

👍

@rattrayalex
Copy link

this appears to be deprecated in favor of:
Capybara.current_session.current_window.resize_to

@francois-tilkee
Copy link

👍

@sidane
Copy link
Author

sidane commented Oct 11, 2017

Gist updated to use Capybara.current_session.current_window.resize_to. Thanks @rattrayalex.

@nroose
Copy link

nroose commented Jan 30, 2018

Thanks, but the update kinda breaks it. Either do it in one line, or take the resize_to off of the first line. Thanks, though!!!

@sroller
Copy link

sroller commented Oct 12, 2018

doesn't work with capybara 3.90
I get the error

C:/Ruby25-x64/lib/ruby/gems/2.5.0/gems/capybara-3.9.0/lib/capybara/rack_test/driver.rb:18:in `initialize': rack-test requires a rack application, but none was given (ArgumentError)

@pertamaks
Copy link

opt_fox = Selenium::WebDriver::Firefox::Options.new
opt_fox.add_argument('--width=1024') #your preferred size
opt_fox.add_argument('--height=700') #your preferred size

Capybara.register_driver :firefox do |app|
Capybara::Selenium::Driver.new(app, browser: :firefox, options: opt_fox)
end

For firefox,
Will leave it here, maybe someone in need too,
or, maybe someone can make it better,

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment