From bd76c02b66f9e98ccfecaf50473c018649a0aea7 Mon Sep 17 00:00:00 2001 From: Laila Los <44241786+ElectronicBlueberry@users.noreply.github.com> Date: Thu, 21 Nov 2024 15:22:58 +0100 Subject: [PATCH] wait for save to complete --- lib/galaxy_test/selenium/framework.py | 1 + 1 file changed, 1 insertion(+) diff --git a/lib/galaxy_test/selenium/framework.py b/lib/galaxy_test/selenium/framework.py index 9c300dc7b0de..d9cdb995a386 100644 --- a/lib/galaxy_test/selenium/framework.py +++ b/lib/galaxy_test/selenium/framework.py @@ -455,6 +455,7 @@ def assert_workflow_has_changes_and_save(self): save_button.wait_for_visible() assert not save_button.has_class("disabled") save_button.wait_for_and_click() + save_button.wait_for_absent() self.sleep_for(self.wait_types.UX_RENDER) @retry_assertion_during_transitions