Trying another fix for a chrome error

This commit is contained in:
Martin Stockhammer 2017-06-10 01:25:53 +02:00
parent 0643a0fb3f
commit 5aab7ac1b9

View File

@ -623,6 +623,7 @@ public void clickButtonWithLocator( String locator, boolean wait )
public <V> V tryClick(By clickableLocator, Function<? super WebDriver, V> conditions, String message, int attempts, int maxWaitTimeInS) {
getWebDriver().manage().window().maximize();
int count = attempts;
WebDriverWait wait = new WebDriverWait( getWebDriver(), maxWaitTimeInS );
V result = null;
@ -634,9 +635,7 @@ public <V> V tryClick(By clickableLocator, Function<? super WebDriver, V> condit
{
el = wait.until(ExpectedConditions.elementToBeClickable( clickableLocator ));
Actions actions = new Actions(getWebDriver());
actions.moveToElement(el);
actions.perform();
el.click();
actions.moveToElement(el).click().perform();
result = wait.until( conditions );
return result;
} catch (Exception e) {