File tree Expand file tree Collapse file tree 1 file changed +2
-2
lines changed
src/main/java/uk/co/evoco/webdriver/utils Expand file tree Collapse file tree 1 file changed +2
-2
lines changed Original file line number Diff line number Diff line change @@ -18,11 +18,11 @@ public final class ClickUtils extends TolerantInteraction {
1818 * @throws Throwable any unhandled or un-tolerated exception
1919 */
2020 public static void tolerantClick (WebElement webElement , int timeout ) throws Throwable {
21- new SendKeysUtils ().tolerantInteraction (webElement , Optional .empty (), timeout );
21+ new ClickUtils ().tolerantInteraction (webElement , Optional .empty (), timeout );
2222 }
2323
2424 public static void tolerantClick (WebElement webElement ) throws Throwable {
25- new SendKeysUtils ().tolerantInteraction (webElement , Optional .empty (),
25+ new ClickUtils ().tolerantInteraction (webElement , Optional .empty (),
2626 TestConfigHelper .get ().getTolerantActionWaitTimeoutInSeconds ());
2727 }
2828}
You can’t perform that action at this time.
0 commit comments