From eade161ca221e5f99ea22ef636f351a5d5954538 Mon Sep 17 00:00:00 2001 From: Ahmed Awan Date: Tue, 10 Dec 2024 19:01:52 -0600 Subject: [PATCH] fix seleniums to wait for disabled tabs in invocation view --- lib/galaxy_test/selenium/test_workflow_run.py | 2 ++ 1 file changed, 2 insertions(+) diff --git a/lib/galaxy_test/selenium/test_workflow_run.py b/lib/galaxy_test/selenium/test_workflow_run.py index c47b835f47c3..36a4a60af080 100644 --- a/lib/galaxy_test/selenium/test_workflow_run.py +++ b/lib/galaxy_test/selenium/test_workflow_run.py @@ -37,6 +37,7 @@ class TestWorkflowRun(SeleniumTestCase, UsesHistoryItemAssertions, RunsWorkflows def test_workflow_export_file_rocrate(self): self._setup_simple_invocation_for_export_testing() invocations = self.components.invocations + self.workflow_run_wait_for_ok(hid=2) invocations.export_tab.wait_for_and_click() self.screenshot("invocation_export_formats") invocations.export_output_format(type="ro-crate").wait_for_and_click() @@ -60,6 +61,7 @@ def test_workflow_export_file_rocrate(self): def test_workflow_export_file_native(self): self._setup_simple_invocation_for_export_testing() invocations = self.components.invocations + self.workflow_run_wait_for_ok(hid=2) invocations.export_tab.wait_for_and_click() self.screenshot("invocation_export_formats") invocations.export_output_format(type="default-file").wait_for_and_click()