mirror of
https://github.com/mail-in-a-box/mailinabox.git
synced 2025-04-05 00:27:25 +00:00
QA: extent tick wait from 1ms to 100ms to avoid ElementNotInteractableException
This commit is contained in:
parent
da2d88e4f4
commit
c884d63dda
@ -18,7 +18,7 @@ class NextcloudAutomation(object):
|
|||||||
def __init__(self, d):
|
def __init__(self, d):
|
||||||
''' `d` is a browser.automation TestDriver object '''
|
''' `d` is a browser.automation TestDriver object '''
|
||||||
self.d = d
|
self.d = d
|
||||||
|
|
||||||
def wait_for_login_screen(self, secs=7):
|
def wait_for_login_screen(self, secs=7):
|
||||||
d = self.d
|
d = self.d
|
||||||
d.say("Wait for login screen")
|
d.say("Wait for login screen")
|
||||||
@ -40,14 +40,14 @@ class NextcloudAutomation(object):
|
|||||||
el = d.find_el('#user-menu > a', throws=False)
|
el = d.find_el('#user-menu > a', throws=False)
|
||||||
if not el:
|
if not el:
|
||||||
el = d.find_el('#user-menu > button', throws=False)
|
el = d.find_el('#user-menu > button', throws=False)
|
||||||
|
|
||||||
if not el:
|
if not el:
|
||||||
# nc < 26
|
# nc < 26
|
||||||
d.find_el('#settings .avatardiv').click()
|
d.find_el('#settings .avatardiv').click()
|
||||||
else:
|
else:
|
||||||
# nc >= 26
|
# nc >= 26
|
||||||
el.click()
|
el.click()
|
||||||
d.wait_tick(1)
|
d.wait_tick(100)
|
||||||
|
|
||||||
def logout(self):
|
def logout(self):
|
||||||
d = self.d
|
d = self.d
|
||||||
@ -58,7 +58,7 @@ class NextcloudAutomation(object):
|
|||||||
if not el:
|
if not el:
|
||||||
# nc >= 26
|
# nc >= 26
|
||||||
el = d.find_el('#logout > a', throws=False)
|
el = d.find_el('#logout > a', throws=False)
|
||||||
|
|
||||||
if el:
|
if el:
|
||||||
el.click()
|
el.click()
|
||||||
else:
|
else:
|
||||||
@ -84,15 +84,15 @@ class NextcloudAutomation(object):
|
|||||||
vue = d.find_el('#app-content-vue', throws=False)
|
vue = d.find_el('#app-content-vue', throws=False)
|
||||||
if not vue: vue = d.find_el('#app-dashboard', throws=False)
|
if not vue: vue = d.find_el('#app-dashboard', throws=False)
|
||||||
jquery = d.find_el('#app-content', throws=False)
|
jquery = d.find_el('#app-content', throws=False)
|
||||||
|
|
||||||
if vue:
|
if vue:
|
||||||
d.wait_tick(1000)
|
d.wait_tick(1000)
|
||||||
|
|
||||||
elif jquery:
|
elif jquery:
|
||||||
d.say_verbose('Waiting on a jquery app')
|
d.say_verbose('Waiting on a jquery app')
|
||||||
d.wait_until_true('return window.$.active == 0', secs=secs)
|
d.wait_until_true('return window.$.active == 0', secs=secs)
|
||||||
|
|
||||||
else:
|
else:
|
||||||
raise NoSuchElementException('#app-dashboard, #app-content or #app-content-vue')
|
raise NoSuchElementException('#app-dashboard, #app-content or #app-content-vue')
|
||||||
|
|
||||||
def close_first_run_wizard(self):
|
def close_first_run_wizard(self):
|
||||||
@ -103,5 +103,5 @@ class NextcloudAutomation(object):
|
|||||||
# ElementNotInteractableException
|
# ElementNotInteractableException
|
||||||
# d.find_el('#firstrunwizard span.close-icon').click()
|
# d.find_el('#firstrunwizard span.close-icon').click()
|
||||||
d.execute_script('document.querySelector("#firstrunwizard span.close-icon").click()')
|
d.execute_script('document.querySelector("#firstrunwizard span.close-icon").click()')
|
||||||
|
|
||||||
d.wait_tick(1)
|
d.wait_tick(1)
|
||||||
|
Loading…
Reference in New Issue
Block a user