trabajo-afectivo/test/integration/otrs_import_browser_test.rb

28 lines
386 B
Ruby
Raw Normal View History

# encoding: utf-8
require 'browser_test_helper'
class OtrsImportBrowserTest < TestCase
def test_import
@browser = browser_instance
location(url: browser_url)
watch_for(
css: 'body',
value: 'xxxx',
timeout: 10,
)
# click import
# click otrs
# enter otrs url + key
# watch for import start
# watch for import end
end
end