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:
parent
771895a243
commit
626e2290e7
@ -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
|
||||
|
Loading…
Reference in New Issue
Block a user