X-Git-Url: https://git.arvados.org/arvados.git/blobdiff_plain/7b5c84ead3ac279088a02ae07f3354d5bba9c9aa..4d95f6cc422bc4dea97da79bbfbb2e7809ee20fc:/apps/workbench/test/diagnostics/pipeline_test.rb diff --git a/apps/workbench/test/diagnostics/pipeline_test.rb b/apps/workbench/test/diagnostics/pipeline_test.rb index 3a4ad64bbf..f9e324ca41 100644 --- a/apps/workbench/test/diagnostics/pipeline_test.rb +++ b/apps/workbench/test/diagnostics/pipeline_test.rb @@ -4,22 +4,25 @@ class PipelineTest < DiagnosticsTest pipelines_to_test = Rails.configuration.pipelines_to_test.andand.keys setup do - need_javascript + need_selenium 'to make websockets work' end pipelines_to_test.andand.each do |pipeline_to_test| - test "visit home page for user #{pipeline_to_test}" do + test "run pipeline: #{pipeline_to_test}" do visit_page_with_token 'active' pipeline_config = Rails.configuration.pipelines_to_test[pipeline_to_test] # Search for tutorial template + find '.navbar-fixed-top' within('.navbar-fixed-top') do page.find_field('search').set pipeline_config['template_uuid'] page.find('.glyphicon-search').click end # Run the pipeline - find('a,button', text: 'Run').click + assert_triggers_dom_event 'shown.bs.modal' do + find('a,button', text: 'Run').click + end # Choose project within('.modal-dialog') do @@ -36,6 +39,7 @@ class PipelineTest < DiagnosticsTest wait_for_ajax # All needed input are filled in. Run this pipeline now + find('a,button', text: 'Components').click find('a,button', text: 'Run').click # Pipeline is running. We have a "Stop" button instead now. @@ -61,7 +65,9 @@ class PipelineTest < DiagnosticsTest look_for_file = nil end - inputs_needed[0].click + assert_triggers_dom_event 'shown.bs.modal' do + inputs_needed[0].click + end within('.modal-dialog') do if look_for_uuid