class Capybara::Driver::Base

Public Instance Methods

body() click to toggle source
# File lib/capybara/driver/base.rb, line 18
def body
  raise NotImplementedError
end
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
end
execute_script(script) click to toggle source
# File lib/capybara/driver/base.rb, line 22
def execute_script(script)
  raise Capybara::NotSupportedByDriverError
end
find(query) click to toggle source
# File lib/capybara/driver/base.rb, line 10
def find(query)
  raise NotImplementedError
end
has_shortcircuit_timeout?() click to toggle source
# File lib/capybara/driver/base.rb, line 60
def has_shortcircuit_timeout?
  false
end
invalid_element_errors() click to toggle source
# File lib/capybara/driver/base.rb, line 46
def invalid_element_errors
  []
end
reset!() click to toggle source
# File lib/capybara/driver/base.rb, line 57
def reset!
end
response_headers() click to toggle source
# File lib/capybara/driver/base.rb, line 30
def response_headers
  raise Capybara::NotSupportedByDriverError
end
source() click to toggle source
# File lib/capybara/driver/base.rb, line 14
def source
  raise NotImplementedError
end
status_code() click to toggle source
# File lib/capybara/driver/base.rb, line 34
def status_code
  raise Capybara::NotSupportedByDriverError
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 50
def wait?
  false
end
wait_until(*args) click to toggle source
# File lib/capybara/driver/base.rb, line 54
def wait_until(*args)
end
within_frame(frame_id) click to toggle source
# File lib/capybara/driver/base.rb, line 38
def within_frame(frame_id)
  raise Capybara::NotSupportedByDriverError
end
within_window(handle) click to toggle source
# File lib/capybara/driver/base.rb, line 42
def within_window(handle)
  raise Capybara::NotSupportedByDriverError
end