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

#733 - fixed selenium test

parent 4d237449
No related branches found
No related tags found
No related merge requests found
...@@ -542,7 +542,7 @@ class CsvImportTest extends SeleniumTestBase ...@@ -542,7 +542,7 @@ class CsvImportTest extends SeleniumTestBase
final WebDriverWait wait = new WebDriverWait(driver, Duration.ofSeconds(5)); final WebDriverWait wait = new WebDriverWait(driver, Duration.ofSeconds(5));
wait.until(ExpectedConditions.visibilityOfElementLocated(By.cssSelector(".autocomplete-content li"))); wait.until(ExpectedConditions.visibilityOfElementLocated(By.cssSelector(".autocomplete-content li")));
assertThat(driver.findElements(By.cssSelector(".autocomplete-content li"))).hasSize(3); assertThat(driver.findElements(By.cssSelector(".autocomplete-content li"))).hasSizeGreaterThan(0);
} }
private void uploadAndSetColumnSettings() private void uploadAndSetColumnSettings()
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment