Kaydet (Commit) fadf31b3 authored tarafından Markus Mohrhard's avatar Markus Mohrhard

uitest: wait twice as long for blocking actions

Change-Id: Ib54a12e9bce3f0be9b31c57550d01754323832c6
üst 0bdbd099
......@@ -198,7 +198,8 @@ class UITest(object):
with EventListener(self._xContext, ["DialogExecute", "ModelessDialogExecute"]) as event:
thread.start()
time_ = 0
while time_ < MAX_WAIT:
# wait twice as long as we are potentially executing a second action
while time_ < 2*MAX_WAIT:
if event.executed:
xDlg = self._xUITest.getTopFocusWindow()
if dialog_element:
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment