1
0
mirror of https://github.com/mail-in-a-box/mailinabox.git synced 2025-04-01 23:57:05 +00:00

QA: attempt fixing logout click intercepted exception on github actions

This commit is contained in:
downtownallday 2024-06-18 12:57:48 -04:00
parent 771895a243
commit 626e2290e7

View File

@ -46,8 +46,11 @@ class NextcloudAutomation(object):
d.find_el('#settings .avatardiv').click()
else:
# nc >= 26
el.click()
d.wait_tick(100)
try:
el.click()
except ElementClickInterceptedException as e:
d.wait_tick(100)
el.click()
def logout(self):
d = self.d