Integration test for auto wizard.

This commit is contained in:
Martin Edenhofer 2015-04-09 01:39:27 +02:00
parent 68ea235192
commit d92992c670

View file

@ -0,0 +1,26 @@
# encoding: utf-8
require 'browser_test_helper'
class AutoWizardTest < TestCase
def test_auto_wizard
@browser = browser_instance
location( :url => browser_url )
watch_for(
:css => 'body',
:value => 'Invite',
:timeout => 10,
)
click( :css => '.content .btn--primary' )
watch_for(
:css => '.user-menu .user a',
:attribute => 'title',
:value => 'hans.atila@zammad.org',
:timeout => 20,
)
end
end