module Capybara::Selenium::Driver::ChromeDriver

Public Instance Methods

fullscreen_window(handle) click to toggle source
Calls superclass method
# File lib/capybara/selenium/driver_specializations/chrome_driver.rb, line 5
def fullscreen_window(handle)
  within_given_window(handle) do
    begin
      super
    rescue NoMethodError => err
      raise unless err.message =~ /full_screen_window/
      bridge = browser.send(:bridge)
      result = bridge.http.call(:post, "session/#{bridge.session_id}/window/fullscreen", {})
      result['value']
    end
  end
end
reset!() click to toggle source
Calls superclass method
# File lib/capybara/selenium/driver_specializations/chrome_driver.rb, line 28
def reset!
  # Use instance variable directly so we avoid starting the browser just to reset the session
  return unless @browser

  switch_to_window(window_handles.first)
  window_handles.slice(1..-1).each { |win| close_window(win) }
  super
end
resize_window_to(handle, width, height) click to toggle source
Calls superclass method
# File lib/capybara/selenium/driver_specializations/chrome_driver.rb, line 18
def resize_window_to(handle, width, height)
  super
rescue Selenium::WebDriver::Error::UnknownError => err
  raise unless err.message =~ /failed to change window state/
  # Chromedriver doesn't wait long enough for state to change when coming out of fullscreen
  # and raises unnecessary error. Wait a bit and try again.
  sleep 0.5
  super
end

Private Instance Methods

build_node(native_node) click to toggle source
# File lib/capybara/selenium/driver_specializations/chrome_driver.rb, line 39
def build_node(native_node)
  ::Capybara::Selenium::ChromeNode.new(self, native_node)
end