Skip to content

Commit

Permalink
Merge pull request cdapio#253 from GnsP/fix-wait-for-element-to-be-cl…
Browse files Browse the repository at this point in the history
…ickable

use the correct wait method inside the overloaded one
  • Loading branch information
itsankit-google authored Oct 24, 2024
2 parents 77a33ea + aeda854 commit 72be4e8
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/main/java/io/cdap/e2e/utils/WaitHelper.java
Original file line number Diff line number Diff line change
Expand Up @@ -159,7 +159,7 @@ public static WebElement waitForElementToBeClickable(WebElement element, long ti
* @return WebElement
*/
public static WebElement waitForElementToBeClickable(WebElement element) {
return waitForElementToBeDisplayed(element, ConstantsUtil.DEFAULT_TIMEOUT_SECONDS);
return waitForElementToBeClickable(element, ConstantsUtil.DEFAULT_TIMEOUT_SECONDS);
}

/**
Expand Down

0 comments on commit 72be4e8

Please sign in to comment.