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

fixed selenium test

parent 8adb110f
Branches
Tags
2 merge requests!239V2 15 0,!238V2 15 0
Pipeline #7234 passed
...@@ -381,7 +381,11 @@ class ChartTest extends SeleniumTestBase ...@@ -381,7 +381,11 @@ class ChartTest extends SeleniumTestBase
Actions actions = new Actions(driver); Actions actions = new Actions(driver);
actions.moveToElement(driver.findElement(By.className("plot-container"))).perform(); actions.moveToElement(driver.findElement(By.className("plot-container"))).perform();
actions.moveByOffset(-450, 25).keyDown(Keys.SHIFT).click().keyUp(Keys.SHIFT).perform(); actions.moveByOffset(-250, 25)
.keyDown(Keys.SHIFT)
.click()
.keyUp(Keys.SHIFT)
.perform();
wait = new WebDriverWait(driver, Duration.ofSeconds(5)); wait = new WebDriverWait(driver, Duration.ofSeconds(5));
wait.until(ExpectedConditions.visibilityOfElementLocated(By.id("matchingTransactionsTitle"))); wait.until(ExpectedConditions.visibilityOfElementLocated(By.id("matchingTransactionsTitle")));
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment