我正在使用Chrome浏览器处理这个webdriver程序。除了拖放功能外,一切正常。
它没有抛出我的错误,但它仍然没有执行动作。你能帮帮我吗?感谢
WebElement name = driver.findElement(By.xpath("xpath id"));
WebElement target = driver.findElement(By.xpath("xpath id"));
Actions builder = new Actions(driver);
Action dragAndDrop = builder.clickAndHold(name)
.moveToElement(target)
.release(target)
.build();
dragAndDrop.perform();
}
答案 0 :(得分:0)
似乎是这个Chrome错误(我自己也遇到过这个问题)https://code.google.com/p/chromedriver/issues/detail?id=841 相同的代码在Firefox中运行良好。