Skip to content

Commit

Permalink
increasing the time to wait for the result of the source connectivity…
Browse files Browse the repository at this point in the history
… test in Schrodinger test
  • Loading branch information
skublik committed Sep 25, 2020
1 parent a4edccb commit 7c20449
Showing 1 changed file with 3 additions and 3 deletions.
Expand Up @@ -59,11 +59,11 @@ public ResourceResultsHandlersTab selectTabResultHandlers() {
}

public TestConnectionModal<EditResourceConfigurationPage> clickSaveAndTestConnection() {
$(Schrodinger.byDataId("testConnection")).waitUntil(Condition.visible, MidPoint.TIMEOUT_DEFAULT_2_S).click();
$(Schrodinger.byDataId("testConnection")).waitUntil(Condition.visible, MidPoint.TIMEOUT_EXTRA_LONG_1_M).click();
SelenideElement testModalBox = $(Schrodinger
.byElementAttributeValue("div", "aria-labelledby", "Test connection result(s)"))
.waitUntil(Condition.exist, MidPoint.TIMEOUT_LONG_1_M)
.waitUntil(Condition.visible, MidPoint.TIMEOUT_DEFAULT_2_S);
.waitUntil(Condition.exist, MidPoint.TIMEOUT_EXTRA_LONG_1_M)
.waitUntil(Condition.visible, MidPoint.TIMEOUT_EXTRA_LONG_1_M);

return new TestConnectionModal<>(this, testModalBox);
}
Expand Down

0 comments on commit 7c20449

Please sign in to comment.