forked from SeleniumHQ/selenium
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
11 changed files
with
124 additions
and
59 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
82 changes: 82 additions & 0 deletions
82
java/test/org/openqa/selenium/interactions/ActionDurationTest.java
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,82 @@ | ||
// Licensed to the Software Freedom Conservancy (SFC) under one | ||
// or more contributor license agreements. See the NOTICE file | ||
// distributed with this work for additional information | ||
// regarding copyright ownership. The SFC licenses this file | ||
// to you under the Apache License, Version 2.0 (the | ||
// "License"); you may not use this file except in compliance | ||
// with the License. You may obtain a copy of the License at | ||
// | ||
// http://www.apache.org/licenses/LICENSE-2.0 | ||
// | ||
// Unless required by applicable law or agreed to in writing, | ||
// software distributed under the License is distributed on an | ||
// "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY | ||
// KIND, either express or implied. See the License for the | ||
// specific language governing permissions and limitations | ||
// under the License. | ||
|
||
package org.openqa.selenium.interactions; | ||
|
||
import static org.junit.jupiter.api.Assertions.assertEquals; | ||
import static org.junit.jupiter.api.Assertions.assertFalse; | ||
import static org.junit.jupiter.api.Assertions.assertTrue; | ||
|
||
import java.time.Duration; | ||
import org.junit.jupiter.api.Tag; | ||
import org.junit.jupiter.api.Test; | ||
import org.openqa.selenium.By; | ||
import org.openqa.selenium.JavascriptExecutor; | ||
import org.openqa.selenium.WebElement; | ||
import org.openqa.selenium.testing.JupiterTestBase; | ||
|
||
@Tag("UnitTests") | ||
class ActionDurationTest extends JupiterTestBase { | ||
@Test | ||
void shouldScrollToElementWithCustomDuration() { | ||
driver.get( | ||
appServer.whereIs("scrolling_tests/frame_with_nested_scrolling_frame_out_of_view.html")); | ||
WebElement iframe = driver.findElement(By.tagName("iframe")); | ||
|
||
assertFalse(inViewport(iframe)); | ||
|
||
new Actions(driver, Duration.ofMillis(111)).scrollToElement(iframe).perform(); | ||
|
||
assertTrue(inViewport(iframe)); | ||
} | ||
|
||
@Test | ||
void shouldScrollFromViewportByGivenAmountWithCustomDuration() { | ||
driver.get( | ||
appServer.whereIs("scrolling_tests/frame_with_nested_scrolling_frame_out_of_view.html")); | ||
WebElement footer = driver.findElement(By.tagName("footer")); | ||
int deltaY = footer.getRect().y; | ||
|
||
new Actions(driver, Duration.ofMillis(111)).scrollByAmount(0, deltaY).perform(); | ||
|
||
assertTrue(inViewport(footer)); | ||
} | ||
|
||
@Test | ||
void shouldBeDefaultActionDuration250ms() { | ||
Actions actions = new Actions(driver); | ||
assertEquals(Duration.ofMillis(250), actions.getActionDuration()); | ||
} | ||
|
||
@Test | ||
void shouldBeCustomDuration110ms() { | ||
Actions actions = new Actions(driver, Duration.ofMillis(110)); | ||
assertEquals(Duration.ofMillis(110), actions.getActionDuration()); | ||
} | ||
|
||
private boolean inViewport(WebElement element) { | ||
|
||
String script = | ||
"for(var e=arguments[0],f=e.offsetTop,t=e.offsetLeft,o=e.offsetWidth,n=e.offsetHeight;\n" | ||
+ "e.offsetParent;)f+=(e=e.offsetParent).offsetTop,t+=e.offsetLeft;\n" | ||
+ "return" | ||
+ " f<window.pageYOffset+window.innerHeight&&t<window.pageXOffset+window.innerWidth&&f+n>\n" | ||
+ "window.pageYOffset&&t+o>window.pageXOffset"; | ||
|
||
return (boolean) ((JavascriptExecutor) driver).executeScript(script, element); | ||
} | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters