1
0
Fork 0
mirror of https://github.com/teamcapybara/capybara.git synced 2022-11-09 12:08:07 -05:00
teamcapybara--capybara/lib/capybara/driver/base.rb

21 lines
303 B
Ruby
Raw Normal View History

class Capybara::Driver::Base
def visit(path)
raise "Not implemented"
end
def find(query)
raise "Not implemented"
end
def body
raise "Not implemented"
end
2009-12-14 09:30:29 -05:00
def evaluate_script(script)
raise Capybara::NotSupportedByDriverError
end
def wait?
false
end
end