We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 63fc1ba commit f7cfffcCopy full SHA for f7cfffc
src/test/java/org/htmlunit/html/HtmlImageInputTest.java
@@ -111,8 +111,8 @@ public void click_Position() throws Exception {
111
+ "</form></body></html>";
112
final WebDriver webDriver = loadPage2(html);
113
114
- WebElement elem = webDriver.findElement(By.name("button"));
115
- Actions actions = new Actions(webDriver);
+ final WebElement elem = webDriver.findElement(By.name("button"));
+ final Actions actions = new Actions(webDriver);
116
actions.moveToElement(elem).moveByOffset(1, 4).click().perform();
117
if (useRealBrowser()) {
118
Thread.sleep(400);
0 commit comments