|
| 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