mirror of
https://github.com/apache/archiva.git
synced 2025-02-21 09:24:54 +00:00
Trying another fix for a chrome error
This commit is contained in:
parent
0643a0fb3f
commit
5aab7ac1b9
@ -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) {
|
||||
|
Loading…
x
Reference in New Issue
Block a user