fix #990 by moving rsel scripts to cucumber and removing selenium-on-rails plugin

Signed-off-by: Reinier Balt <lrbalt@gmail.com>
This commit is contained in:
Reinier Balt 2011-09-14 11:29:50 +02:00
parent 4927f39594
commit d9db33bc0d
194 changed files with 75 additions and 48324 deletions

View file

@ -1,34 +0,0 @@
require 'singleton'
require 'selenium'
class SeleniumDriverManager
include Singleton
def running_selenium_driver
start
driver
end
def start
return if running?
driver.start
@running = true
end
def stop
return unless running?
driver.stop
@running = false
end
def running?
@running
end
protected
def driver
@driver ||= Selenium::SeleniumDriver.new("localhost", 4444, "*chrome", "http://localhost", 15000)
end
end