diff --git a/test/integration/otrs_import_browser_test.rb b/test/integration/otrs_import_browser_test.rb new file mode 100644 index 000000000..7ca777e46 --- /dev/null +++ b/test/integration/otrs_import_browser_test.rb @@ -0,0 +1,27 @@ +# 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