mirror of
https://github.com/mail-in-a-box/mailinabox.git
synced 2025-04-03 00:07: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()
|
d.find_el('#settings .avatardiv').click()
|
||||||
else:
|
else:
|
||||||
# nc >= 26
|
# nc >= 26
|
||||||
el.click()
|
try:
|
||||||
d.wait_tick(100)
|
el.click()
|
||||||
|
except ElementClickInterceptedException as e:
|
||||||
|
d.wait_tick(100)
|
||||||
|
el.click()
|
||||||
|
|
||||||
def logout(self):
|
def logout(self):
|
||||||
d = self.d
|
d = self.d
|
||||||
|
Loading…
Reference in New Issue
Block a user