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

tests: fix logout sequence for nc 26

This commit is contained in:
downtownallday 2023-04-20 09:59:17 -04:00
parent 037b1b7570
commit dc30558833

View File

@ -35,8 +35,15 @@ class NextcloudAutomation(object):
def logout(self): def logout(self):
d = self.d d = self.d
d.say("Logout of Nextcloud") d.say("Logout of Nextcloud")
d.find_el('#settings .avatardiv').click() el = d.find_el('#user-menu > a', throws=False)
d.find_el('[data-id="logout"] a').click() if not el:
# nc < 26
d.find_el('#settings .avatardiv').click()
d.find_el('[data-id="logout"] a').click()
else:
# nc >= 26
el.click()
d.find_el('#logout > a').click()
def open_contacts(self): def open_contacts(self):
d = self.d d = self.d