module Capybara::Selenium::Driver::MarionetteDriver
Public Instance Methods
refresh()
click to toggle source
Calls superclass method
# File lib/capybara/selenium/driver_specializations/marionette_driver.rb, line 26 def refresh # Accept any "will repost content" confirmation that occurs accept_modal :confirm, wait: 0.1 do super end rescue Capybara::ModalNotFound # rubocop:disable Lint/HandleExceptions # No modal was opened - page has refreshed - ignore end
reset!()
click to toggle source
Calls superclass method
# File lib/capybara/selenium/driver_specializations/marionette_driver.rb, line 17 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/marionette_driver.rb, line 6 def resize_window_to(handle, width, height) within_given_window(handle) do # Don't set the size if already set - See https://github.com/mozilla/geckodriver/issues/643 if window_size(handle) == [width, height] {} else super end end end
switch_to_frame(frame)
click to toggle source
Calls superclass method
# File lib/capybara/selenium/driver_specializations/marionette_driver.rb, line 35 def switch_to_frame(frame) return super unless frame == :parent # geckodriver/firefox has an issue if the current frame is removed from within it # so we have to move to the default_content and iterate back through the frames handles = @frame_handles[current_window_handle] browser.switch_to.default_content handles.tap(&:pop).each { |fh| browser.switch_to.frame(fh) } end
Private Instance Methods
build_node(native_node)
click to toggle source
# File lib/capybara/selenium/driver_specializations/marionette_driver.rb, line 46 def build_node(native_node) ::Capybara::Selenium::MarionetteNode.new(self, native_node) end