Skip to content
Snippets Groups Projects
Commit d436b798 authored by Robert Goldmann's avatar Robert Goldmann
Browse files

stabilized integration tests

parent 5fdc618a
No related branches found
No related tags found
No related merge requests found
Pipeline #4076 failed
......@@ -135,9 +135,10 @@ public class IntegrationTestHelper
private void createAccountOnImport(String accountName)
{
WebDriverWait wait = new WebDriverWait(driver, 5);
wait.until(ExpectedConditions.visibilityOfElementLocated(By.className("button-new-account")));
driver.findElement(By.className("button-new-account")).click();
WebDriverWait wait = new WebDriverWait(driver, 5);
wait.until(ExpectedConditions.visibilityOfElementLocated(By.id("account-name")));
WebElement inputAccountName = driver.findElement(By.id("account-name"));
inputAccountName.sendKeys(accountName);
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment