current_url()
click to toggle source
def current_url
raise NotImplementedError
end
evaluate_script(script)
click to toggle source
def evaluate_script(script)
raise Capybara::NotSupportedByDriverError, 'Capybara::Driver::Base#evaluate_script'
end
execute_script(script)
click to toggle source
def execute_script(script)
raise Capybara::NotSupportedByDriverError, 'Capybara::Driver::Base#execute_script'
end
find_css(query)
click to toggle source
def find_css(query)
raise NotImplementedError
end
find_xpath(query)
click to toggle source
def find_xpath(query)
raise NotImplementedError
end
html()
click to toggle source
def html
raise NotImplementedError
end
invalid_element_errors()
click to toggle source
def invalid_element_errors
[]
end
needs_server?()
click to toggle source
def needs_server?
false
end
reset!()
click to toggle source
save_screenshot(path, options={})
click to toggle source
def save_screenshot(path, options={})
raise Capybara::NotSupportedByDriverError, 'Capybara::Driver::Base#save_screenshot'
end
status_code()
click to toggle source
def status_code
raise Capybara::NotSupportedByDriverError, 'Capybara::Driver::Base#status_code'
end
visit(path)
click to toggle source
def visit(path)
raise NotImplementedError
end
wait?()
click to toggle source
within_frame(frame_handle)
click to toggle source
def within_frame(frame_handle)
raise Capybara::NotSupportedByDriverError, 'Capybara::Driver::Base#within_frame'
end
within_window(handle)
click to toggle source
def within_window(handle)
raise Capybara::NotSupportedByDriverError, 'Capybara::Driver::Base#within_window'
end