So, with respect to integration testing using Capybara and RSpec, I know I can do this:
page.driver.browser.manage.window.resize_to(x,y)
pe
Perhaps due to a recent change in Capybara, what worked for me was:
before do Capybara.page.current_window.resize_to(x, y) end