mirror of
https://github.com/TracksApp/tracks.git
synced 2025-12-16 23:30:12 +01:00
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:
parent
4927f39594
commit
d9db33bc0d
194 changed files with 75 additions and 48324 deletions
|
|
@ -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
|
||||
Loading…
Add table
Add a link
Reference in a new issue