Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
BudgetMaster
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Wiki
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Releases
Model registry
Operate
Environments
Monitor
Incidents
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
Robert Goldmann
BudgetMaster
Commits
98c43bd1
Commit
98c43bd1
authored
2 years ago
by
Robert Goldmann
Browse files
Options
Downloads
Patches
Plain Diff
fixed selenium test
parent
8adb110f
Branches
Branches containing commit
Tags
Tags containing commit
2 merge requests
!239
V2 15 0
,
!238
V2 15 0
Pipeline
#7234
passed
2 years ago
Stage: external
Changes
1
Pipelines
1
Show whitespace changes
Inline
Side-by-side
Showing
1 changed file
BudgetMasterServer/src/test/java/de/deadlocker8/budgetmaster/integration/selenium/ChartTest.java
+5
-1
5 additions, 1 deletion
...dlocker8/budgetmaster/integration/selenium/ChartTest.java
with
5 additions
and
1 deletion
BudgetMasterServer/src/test/java/de/deadlocker8/budgetmaster/integration/selenium/ChartTest.java
+
5
−
1
View file @
98c43bd1
...
@@ -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"
)));
...
...
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment