From a685955f2963481fcb674d1e42aa557c35b218de Mon Sep 17 00:00:00 2001 From: downtownallday Date: Tue, 18 Jun 2024 13:23:29 -0400 Subject: [PATCH] QA: attempt fixing logout click intercepted exception on github actions #2 --- tests/lib/python/browser/NextcloudAutomation.py | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/tests/lib/python/browser/NextcloudAutomation.py b/tests/lib/python/browser/NextcloudAutomation.py index 16e02419..da209bb0 100644 --- a/tests/lib/python/browser/NextcloudAutomation.py +++ b/tests/lib/python/browser/NextcloudAutomation.py @@ -49,8 +49,9 @@ class NextcloudAutomation(object): try: el.click() except ElementClickInterceptedException as e: - d.wait_tick(100) + self.close_first_run_wizard() el.click() + d.wait_tick(100) def logout(self): d = self.d