Skip to content

Commit f441d69

Browse files
iampopovichtitusfortnerpujagani
authored andcommitted
[java] custom duration for Actions constructor (SeleniumHQ#14085)
Co-authored-by: Titus Fortner <[email protected]> Co-authored-by: Puja Jagani <[email protected]>
1 parent f25f184 commit f441d69

File tree

2 files changed

+95
-3
lines changed

2 files changed

+95
-3
lines changed

java/src/org/openqa/selenium/interactions/Actions.java

+13-3
Original file line numberDiff line numberDiff line change
@@ -54,9 +54,15 @@ public class Actions {
5454
private PointerInput activePointer;
5555
private KeyInput activeKeyboard;
5656
private WheelInput activeWheel;
57+
private Duration actionDuration;
5758

5859
public Actions(WebDriver driver) {
60+
this(driver, Duration.ofMillis(250));
61+
}
62+
63+
public Actions(WebDriver driver, Duration duration) {
5964
this.driver = Require.nonNull("Driver", driver);
65+
this.actionDuration = duration;
6066
}
6167

6268
/**
@@ -215,7 +221,7 @@ public Actions release(WebElement target) {
215221
*/
216222
public Actions scrollToElement(WebElement element) {
217223
WheelInput.ScrollOrigin scrollOrigin = WheelInput.ScrollOrigin.fromElement(element);
218-
return tick(getActiveWheel().createScroll(0, 0, 0, 0, Duration.ofMillis(250), scrollOrigin));
224+
return tick(getActiveWheel().createScroll(0, 0, 0, 0, this.actionDuration, scrollOrigin));
219225
}
220226

221227
/**
@@ -229,7 +235,7 @@ public Actions scrollToElement(WebElement element) {
229235
public Actions scrollByAmount(int deltaX, int deltaY) {
230236
WheelInput.ScrollOrigin scrollOrigin = WheelInput.ScrollOrigin.fromViewport();
231237
return tick(
232-
getActiveWheel().createScroll(0, 0, deltaX, deltaY, Duration.ofMillis(250), scrollOrigin));
238+
getActiveWheel().createScroll(0, 0, deltaX, deltaY, this.actionDuration, scrollOrigin));
233239
}
234240

235241
/**
@@ -249,7 +255,7 @@ public Actions scrollFromOrigin(WheelInput.ScrollOrigin scrollOrigin, int deltaX
249255
int x = scrollOrigin.getxOffset();
250256
int y = scrollOrigin.getyOffset();
251257
return tick(
252-
getActiveWheel().createScroll(x, y, deltaX, deltaY, Duration.ofMillis(250), scrollOrigin));
258+
getActiveWheel().createScroll(x, y, deltaX, deltaY, this.actionDuration, scrollOrigin));
253259
}
254260

255261
/**
@@ -548,6 +554,10 @@ public WheelInput getActiveWheel() {
548554
return this.activeWheel;
549555
}
550556

557+
public Duration getActionDuration() {
558+
return this.actionDuration;
559+
}
560+
551561
/**
552562
* Generates a composite action containing all actions so far, ready to be performed (and resets
553563
* the internal builder state, so subsequent calls to this method will contain fresh sequences).
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,82 @@
1+
// Licensed to the Software Freedom Conservancy (SFC) under one
2+
// or more contributor license agreements. See the NOTICE file
3+
// distributed with this work for additional information
4+
// regarding copyright ownership. The SFC licenses this file
5+
// to you under the Apache License, Version 2.0 (the
6+
// "License"); you may not use this file except in compliance
7+
// with the License. You may obtain a copy of the License at
8+
//
9+
// http://www.apache.org/licenses/LICENSE-2.0
10+
//
11+
// Unless required by applicable law or agreed to in writing,
12+
// software distributed under the License is distributed on an
13+
// "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
14+
// KIND, either express or implied. See the License for the
15+
// specific language governing permissions and limitations
16+
// under the License.
17+
18+
package org.openqa.selenium.interactions;
19+
20+
import static org.junit.jupiter.api.Assertions.assertEquals;
21+
import static org.junit.jupiter.api.Assertions.assertFalse;
22+
import static org.junit.jupiter.api.Assertions.assertTrue;
23+
24+
import java.time.Duration;
25+
import org.junit.jupiter.api.Tag;
26+
import org.junit.jupiter.api.Test;
27+
import org.openqa.selenium.By;
28+
import org.openqa.selenium.JavascriptExecutor;
29+
import org.openqa.selenium.WebElement;
30+
import org.openqa.selenium.testing.JupiterTestBase;
31+
32+
@Tag("UnitTests")
33+
class ActionDurationTest extends JupiterTestBase {
34+
@Test
35+
void shouldScrollToElementWithCustomDuration() {
36+
driver.get(
37+
appServer.whereIs("scrolling_tests/frame_with_nested_scrolling_frame_out_of_view.html"));
38+
WebElement iframe = driver.findElement(By.tagName("iframe"));
39+
40+
assertFalse(inViewport(iframe));
41+
42+
new Actions(driver, Duration.ofMillis(111)).scrollToElement(iframe).perform();
43+
44+
assertTrue(inViewport(iframe));
45+
}
46+
47+
@Test
48+
void shouldScrollFromViewportByGivenAmountWithCustomDuration() {
49+
driver.get(
50+
appServer.whereIs("scrolling_tests/frame_with_nested_scrolling_frame_out_of_view.html"));
51+
WebElement footer = driver.findElement(By.tagName("footer"));
52+
int deltaY = footer.getRect().y;
53+
54+
new Actions(driver, Duration.ofMillis(111)).scrollByAmount(0, deltaY).perform();
55+
56+
assertTrue(inViewport(footer));
57+
}
58+
59+
@Test
60+
void shouldBeDefaultActionDuration250ms() {
61+
Actions actions = new Actions(driver);
62+
assertEquals(Duration.ofMillis(250), actions.getActionDuration());
63+
}
64+
65+
@Test
66+
void shouldBeCustomDuration110ms() {
67+
Actions actions = new Actions(driver, Duration.ofMillis(110));
68+
assertEquals(Duration.ofMillis(110), actions.getActionDuration());
69+
}
70+
71+
private boolean inViewport(WebElement element) {
72+
73+
String script =
74+
"for(var e=arguments[0],f=e.offsetTop,t=e.offsetLeft,o=e.offsetWidth,n=e.offsetHeight;\n"
75+
+ "e.offsetParent;)f+=(e=e.offsetParent).offsetTop,t+=e.offsetLeft;\n"
76+
+ "return"
77+
+ " f<window.pageYOffset+window.innerHeight&&t<window.pageXOffset+window.innerWidth&&f+n>\n"
78+
+ "window.pageYOffset&&t+o>window.pageXOffset";
79+
80+
return (boolean) ((JavascriptExecutor) driver).executeScript(script, element);
81+
}
82+
}

0 commit comments

Comments
 (0)