我已经编写了以下代码,但找不到该元素。该网站的链接是http://plugnedit.com/。
我尝试了各种方法来定位页面上的元素以尝试拖动对象。它不工作。我收到“无法找到元素”错误。
我正在使用火狐。
谢谢。
driver.navigate().to("http://plugnedit.com/");
Actions dragAndDrop = new Actions(driver);
WebElement itemToDrag = driver.findElement(By.id("p1003upperspan"));
// drag downwards
int numberOfPixelsToDragTheScrollbarDown = 10;
for (int i=10;i<150;i=i+numberOfPixelsToDragTheScrollbarDown){
// this causes a gradual drag of the scroll bar, 10 units at a time
dragAndDrop.moveToElement(itemToDrag).clickAndHold().moveByOffset(0,numberOfPixelsToDragTheScrollbarDown).release().perform();
}