Skip to content

Commit 11f8567

Browse files
committed
[java] add test for keyboard and pen combination action
1 parent c87aa5a commit 11f8567

File tree

2 files changed

+50
-5
lines changed

2 files changed

+50
-5
lines changed

java/test/org/openqa/selenium/interactions/CombinedInputActionsTest.java

+45
Original file line numberDiff line numberDiff line change
@@ -43,11 +43,14 @@
4343
import org.openqa.selenium.Point;
4444
import org.openqa.selenium.WaitingConditions;
4545
import org.openqa.selenium.WebElement;
46+
import org.openqa.selenium.remote.RemoteWebDriver;
4647
import org.openqa.selenium.testing.Ignore;
4748
import org.openqa.selenium.testing.JUnit4TestBase;
4849
import org.openqa.selenium.testing.NotYetImplemented;
4950
import org.openqa.selenium.testing.SwitchToTopAfterTest;
5051

52+
import java.time.Duration;
53+
import java.util.Arrays;
5154
import java.util.List;
5255

5356
/**
@@ -107,6 +110,48 @@ public void testShiftClickingOnMultiSelectionList() {
107110
.isEqualTo("roquefort parmigiano cheddar");
108111
}
109112

113+
@Test
114+
@Ignore(IE)
115+
@Ignore(LEGACY_FIREFOX_XPI)
116+
@NotYetImplemented(SAFARI)
117+
public void testPenAndKeyboardCombination() {
118+
driver.get(pages.formSelectionPage);
119+
120+
List<WebElement> options = driver.findElements(By.tagName("option"));
121+
122+
PointerInput defaultPen = new PointerInput(PointerInput.Kind.PEN, "default pen");
123+
Sequence actionListPen = new Sequence(defaultPen, 0)
124+
.addAction(defaultPen.createPointerMove(Duration.ZERO, PointerInput.Origin.fromElement(options.get(1)), 0, 0))
125+
.addAction(defaultPen.createPointerDown(0))
126+
.addAction(defaultPen.createPointerUp(0))
127+
.addAction(new Pause(defaultPen, Duration.ZERO))
128+
.addAction(defaultPen.createPointerMove(Duration.ZERO, PointerInput.Origin.fromElement(options.get(3)), 0, 0))
129+
.addAction(defaultPen.createPointerDown(0))
130+
.addAction(defaultPen.createPointerUp(0))
131+
.addAction(new Pause(defaultPen, Duration.ZERO));
132+
133+
KeyInput defaultKeyboard = new KeyInput("default keyboard");
134+
Sequence actionListKeyboard = new Sequence(defaultKeyboard, 0)
135+
.addAction(new Pause(defaultPen, Duration.ZERO))
136+
.addAction(new Pause(defaultPen, Duration.ZERO))
137+
.addAction(new Pause(defaultPen, Duration.ZERO))
138+
.addAction(defaultKeyboard.createKeyDown(Keys.SHIFT.getCodePoint()))
139+
.addAction(new Pause(defaultPen, Duration.ZERO))
140+
.addAction(new Pause(defaultPen, Duration.ZERO))
141+
.addAction(new Pause(defaultPen, Duration.ZERO))
142+
.addAction(defaultKeyboard.createKeyUp(Keys.SHIFT.getCodePoint()));
143+
144+
((RemoteWebDriver) driver).perform(Arrays.asList(actionListKeyboard, actionListPen));
145+
146+
WebElement showButton = driver.findElement(By.name("showselected"));
147+
showButton.click();
148+
149+
WebElement resultElement = driver.findElement(By.id("result"));
150+
assertThat(resultElement.getText())
151+
.describedAs("Should have picked the last three options")
152+
.isEqualTo("roquefort parmigiano cheddar");
153+
}
154+
110155
@Test
111156
@Ignore(IE)
112157
@Ignore(LEGACY_FIREFOX_XPI)

java/test/org/openqa/selenium/interactions/PenPointerTest.java

+5-5
Original file line numberDiff line numberDiff line change
@@ -227,7 +227,7 @@ public void testShouldAllowUsersToHoverOverElements() {
227227
@NotYetImplemented(SAFARI)
228228
public void testHoverPersists() throws Exception {
229229
driver.get(pages.javascriptPage);
230-
// Move to a different element to make sure the mouse is not over the
230+
// Move to a different element to make sure the pen is not over the
231231
// element with id 'item1' (from a previous test).
232232

233233
WebElement dynamo = driver.findElement(By.id("dynamo"));
@@ -256,7 +256,7 @@ public void testHoverPersists() throws Exception {
256256

257257
@Test
258258
@NotYetImplemented(HTMLUNIT)
259-
public void testMovingMouseByRelativeOffset() {
259+
public void testMovingPenByRelativeOffset() {
260260
driver.get(pages.mouseTrackerPage);
261261

262262
WebElement trackerDiv = driver.findElement(By.id("mousetracker"));
@@ -278,7 +278,7 @@ public void testMovingMouseByRelativeOffset() {
278278

279279
@Test
280280
@NotYetImplemented(HTMLUNIT)
281-
public void testMovingMouseToRelativeElementOffset() {
281+
public void testMovingPenToRelativeElementOffset() {
282282
driver.get(pages.mouseTrackerPage);
283283

284284
WebElement trackerDiv = driver.findElement(By.id("mousetracker"));
@@ -294,7 +294,7 @@ public void testMovingMouseToRelativeElementOffset() {
294294

295295
@Test
296296
@NotYetImplemented(HTMLUNIT)
297-
public void testMovingMouseToRelativeZeroElementOffset() {
297+
public void testMovingPenToRelativeZeroElementOffset() {
298298
driver.get(pages.mouseTrackerPage);
299299

300300
WebElement trackerDiv = driver.findElement(By.id("mousetracker"));
@@ -334,7 +334,7 @@ public void testMoveRelativeToBody() {
334334
@Ignore(value = FIREFOX, issue = "https://github.com/mozilla/geckodriver/issues/789")
335335
@NotYetImplemented(HTMLUNIT)
336336
@NotYetImplemented(SAFARI)
337-
public void testMoveMouseByOffsetOverAndOutOfAnElement() {
337+
public void testMovePenByOffsetOverAndOutOfAnElement() {
338338
driver.get(pages.mouseOverPage);
339339

340340
WebElement greenbox = driver.findElement(By.id("greenbox"));

0 commit comments

Comments
 (0)