simualte and automate need to be there in SeleniumSession too

This commit is contained in:
Bryan Helmkamp 2008-12-08 04:02:39 -05:00
parent 0d028e92fa
commit 2d427ed89e

View File

@ -21,6 +21,13 @@ module Webrat
def initialize(*args) # :nodoc:
end
def simulate
end
def automate
yield
end
def visit(url)
selenium.open(url)
end