Quindi, ho iniziato a creare alcuni test di unità Ruby che utilizzano Selenium RC per testare la mia app Web direttamente nel browser. Sto usando il Selenum-Client per rubino. Ho creato una classe base per tutti i miei altri test sul selenio da cui ereditare.Selenium RC: Esegui test in più browser automaticamente
Questo crea numerose istanze SeleniumDriver e tutti i metodi che mancano vengono richiamati su ogni istanza. Questo essenzialmente esegue i test in parallelo.
Come altre persone lo hanno automatizzato?
Questa è la mia realizzazione:
class SeleniumTest < Test::Unit::TestCase
def setup
@seleniums = %w(*firefox *iexplore).map do |browser|
puts 'creating browser ' + browser
Selenium::SeleniumDriver.new("localhost", 4444, browser, "http://localhost:3003", 10000)
end
start
open start_address
end
def teardown
stop
end
#sub-classes should override this if they want to change it
def start_address
"http://localhost:3003/"
end
# Overrides standard "open" method
def open(addr)
method_missing 'open', addr
end
# Overrides standard "type" method
def type(inputLocator, value)
method_missing 'type', inputLocator, value
end
# Overrides standard "select" method
def select(inputLocator, optionLocator)
method_missing 'select', inputLocator, optionLocator
end
def method_missing(method_name, *args)
@seleniums.each do |selenium_driver|
if args.empty?
selenium_driver.send method_name
else
selenium_driver.send method_name, *args
end
end
end
end
Questo funziona, ma se uno del browser non riesce, l'intera prova fallisce e non c'è modo di sapere quale browser non è riuscito a.
Ciao Daniel, ho una domanda simile. Mi stavo chiedendo se puoi aiutare. [Selenium RC: Come avviare test interattivi con più browser] (http://stackoverflow.com/questions/2836313/selenium-rchow-to-launch-interactive-testing-with-multiple-browsers) – onesith