|
43 | 43 | import org.openqa.selenium.Point;
|
44 | 44 | import org.openqa.selenium.WaitingConditions;
|
45 | 45 | import org.openqa.selenium.WebElement;
|
| 46 | +import org.openqa.selenium.remote.RemoteWebDriver; |
46 | 47 | import org.openqa.selenium.testing.Ignore;
|
47 | 48 | import org.openqa.selenium.testing.JUnit4TestBase;
|
48 | 49 | import org.openqa.selenium.testing.NotYetImplemented;
|
49 | 50 | import org.openqa.selenium.testing.SwitchToTopAfterTest;
|
50 | 51 |
|
| 52 | +import java.time.Duration; |
| 53 | +import java.util.Arrays; |
51 | 54 | import java.util.List;
|
52 | 55 |
|
53 | 56 | /**
|
@@ -107,6 +110,48 @@ public void testShiftClickingOnMultiSelectionList() {
|
107 | 110 | .isEqualTo("roquefort parmigiano cheddar");
|
108 | 111 | }
|
109 | 112 |
|
| 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 | + |
110 | 155 | @Test
|
111 | 156 | @Ignore(IE)
|
112 | 157 | @Ignore(LEGACY_FIREFOX_XPI)
|
|
0 commit comments