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

#663 - fixed test assertion

parent 1760c6a7
No related branches found
No related tags found
No related merge requests found
......@@ -125,7 +125,7 @@ class NewTransactionRecurringTest extends SeleniumTestBase
List<WebElement> transactionsRows = driver.findElements(By.cssSelector(".transaction-container .hide-on-med-and-down.transaction-row-top"));
assertThat(transactionsRows).hasSizeGreaterThan(2);
final WebElement row = transactionsRows.get(transactionsRows.size() - 3);
final WebElement row = transactionsRows.get(transactionsRows.size() - 2);
final List<WebElement> columns = row.findElements(By.className("col"));
assertThat(columns).hasSize(6);
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment