2009-12-09 15:43:40 -05:00
|
|
|
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-12 15:46:08 -05:00
|
|
|
def wait?
|
|
|
|
false
|
2009-12-09 15:43:40 -05:00
|
|
|
end
|
|
|
|
end
|