2021-06-01 12:20:20 +00:00
|
|
|
# Copyright (C) 2012-2021 Zammad Foundation, http://zammad-foundation.org/
|
|
|
|
|
2016-06-18 15:20:59 +00:00
|
|
|
require 'browser_test_helper'
|
|
|
|
|
|
|
|
class AaaAutoWizardBaseSetupTest < TestCase
|
|
|
|
|
|
|
|
def test_auto_wizard
|
|
|
|
@browser = browser_instance
|
|
|
|
location(url: "#{browser_url}/#getting_started/auto_wizard")
|
|
|
|
watch_for(
|
2018-12-19 17:31:51 +00:00
|
|
|
css: '.user-menu .user a',
|
2016-06-18 15:20:59 +00:00
|
|
|
attribute: 'title',
|
2021-08-17 12:10:02 +00:00
|
|
|
value: 'admin@example.com',
|
2018-12-19 17:31:51 +00:00
|
|
|
timeout: 14,
|
2016-06-18 15:20:59 +00:00
|
|
|
)
|
|
|
|
end
|
|
|
|
|
|
|
|
end
|