Skip to content

Commit

Permalink
Merge pull request cdapio#248 from cloudsufi/debug_intermittent_issues
Browse files Browse the repository at this point in the history
debugging intermittent failures
  • Loading branch information
itsankit-google authored Mar 27, 2024
2 parents c6c91d8 + d8e1c98 commit 65ba38c
Showing 1 changed file with 2 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -126,7 +126,8 @@ public static void waitTillConnectionDataLoadingCompletes(long timeoutInSeconds)
* Example : For GCS pass actual bucket name as parameter.
*/
private static void selectConnectionDataRow(String dataRow) {
waitTillConnectionDataLoadingCompletes(ConstantsUtil.DEFAULT_TIMEOUT_SECONDS);
WaitHelper.waitForElementToBeClickable(CdfConnectionLocators.searchDirectoryInput,
ConstantsUtil.DEFAULT_TIMEOUT_SECONDS);
ElementHelper.sendKeys(CdfConnectionLocators.searchDirectoryInput, dataRow);
WaitHelper.waitForTextToBePresentInElementValue(CdfConnectionLocators.searchDirectoryInput, dataRow);
int attempts = 0;
Expand Down

0 comments on commit 65ba38c

Please sign in to comment.