Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/owncloud/client.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
path: root/test
diff options
context:
space:
mode:
authorArtur Neumann <artur@jankaritech.com>2021-12-03 15:37:30 +0300
committerGitHub <noreply@github.com>2021-12-03 15:37:30 +0300
commit3687741a951b5f90d599ea0ac073ae822b2053fc (patch)
treef7a3a90b1f3d00e27f809c787c2c7dfb50a67ce7 /test
parent55a027e48a97e8706f540306cdff83191fe0201b (diff)
reduce time waiting for password box (#9254)
Diffstat (limited to 'test')
-rw-r--r--test/gui/shared/scripts/pageObjects/AccountConnectionWizard.py3
1 files changed, 3 insertions, 0 deletions
diff --git a/test/gui/shared/scripts/pageObjects/AccountConnectionWizard.py b/test/gui/shared/scripts/pageObjects/AccountConnectionWizard.py
index aaef3decd..8bec3ae17 100644
--- a/test/gui/shared/scripts/pageObjects/AccountConnectionWizard.py
+++ b/test/gui/shared/scripts/pageObjects/AccountConnectionWizard.py
@@ -99,8 +99,11 @@ class AccountConnectionWizard:
syncPath = createUserSyncPath(context, clientDetails['user'])
try:
+ oldwaitForObjectTimeout = squish.testSettings.waitForObjectTimeout
+ squish.testSettings.waitForObjectTimeout = 1000
squish.clickButton(squish.waitForObject(self.ERROR_OK_BUTTON))
except LookupError:
+ squish.testSettings.waitForObjectTimeout = oldwaitForObjectTimeout
pass
squish.clickButton(squish.waitForObject(self.SELECT_LOCAL_FOLDER))
squish.mouseClick(squish.waitForObject(self.DIRECTORY_NAME_BOX))