class Capybara::Driver::Base

Public Instance Methods

current_url() click to toggle source
# File lib/capybara/driver/base.rb, line 2
def current_url
  raise NotImplementedError
end
evaluate_script(script) click to toggle source
# File lib/capybara/driver/base.rb, line 26
def evaluate_script(script)
  raise Capybara::NotSupportedByDriverError, 'Capybara::Driver::Base#evaluate_script'
end
execute_script(script) click to toggle source
# File lib/capybara/driver/base.rb, line 22
def execute_script(script)
  raise Capybara::NotSupportedByDriverError, 'Capybara::Driver::Base#execute_script'
end
find_css(query) click to toggle source
# File lib/capybara/driver/base.rb, line 14
def find_css(query)
  raise NotImplementedError
end
find_xpath(query) click to toggle source
# File lib/capybara/driver/base.rb, line 10
def find_xpath(query)
  raise NotImplementedError
end
html() click to toggle source
# File lib/capybara/driver/base.rb, line 18
def html
  raise NotImplementedError
end
invalid_element_errors() click to toggle source
# File lib/capybara/driver/base.rb, line 50
def invalid_element_errors
  []
end
needs_server?() click to toggle source
# File lib/capybara/driver/base.rb, line 61
def needs_server?
  false
end
reset!() click to toggle source
# File lib/capybara/driver/base.rb, line 58
def reset!
end
response_headers() click to toggle source
# File lib/capybara/driver/base.rb, line 34
def response_headers
  raise Capybara::NotSupportedByDriverError, 'Capybara::Driver::Base#response_headers'
end
save_screenshot(path, options={}) click to toggle source
# File lib/capybara/driver/base.rb, line 30
def save_screenshot(path, options={})
  raise Capybara::NotSupportedByDriverError, 'Capybara::Driver::Base#save_screenshot'
end
status_code() click to toggle source
# File lib/capybara/driver/base.rb, line 38
def status_code
  raise Capybara::NotSupportedByDriverError, 'Capybara::Driver::Base#status_code'
end
visit(path) click to toggle source
# File lib/capybara/driver/base.rb, line 6
def visit(path)
  raise NotImplementedError
end
wait?() click to toggle source
# File lib/capybara/driver/base.rb, line 54
def wait?
  false
end
within_frame(frame_handle) click to toggle source
# File lib/capybara/driver/base.rb, line 42
def within_frame(frame_handle)
  raise Capybara::NotSupportedByDriverError, 'Capybara::Driver::Base#within_frame'
end
within_window(handle) click to toggle source
# File lib/capybara/driver/base.rb, line 46
def within_window(handle)
  raise Capybara::NotSupportedByDriverError, 'Capybara::Driver::Base#within_window'
end