我想拖放一个元素。但它在某些版本的Firefox浏览器中工作正常但是对于其他版本它不起作用(表示拖放)。我没有更改用selenium web驱动程序编写的任何代码,但仍然是出乎意料的行为。
代码示例:
if(dragElement.isDisplayed() && dropElement.isDisplayed())
{
Actions action = new Actions(getWebDriver());
action.clickAndHold(dragElement);
action.moveToElement(dropElement).release().build().perform();
}