Skip to content

Commit

Permalink
debug
Browse files Browse the repository at this point in the history
  • Loading branch information
AnkitCLI committed Mar 22, 2024
1 parent c6c91d8 commit aad1327
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);
// waitTillConnectionDataLoadingCompletes(ConstantsUtil.DEFAULT_TIMEOUT_SECONDS);
WaitHelper.waitForElementToBeClickable(CdfConnectionLocators.searchDirectoryInput, 120);
ElementHelper.sendKeys(CdfConnectionLocators.searchDirectoryInput, dataRow);
WaitHelper.waitForTextToBePresentInElementValue(CdfConnectionLocators.searchDirectoryInput, dataRow);
int attempts = 0;
Expand Down

0 comments on commit aad1327

Please sign in to comment.