DragAndDrop 的所有可能方式
Posted
技术标签:
【中文标题】DragAndDrop 的所有可能方式【英文标题】:All possible ways for DragAndDrop 【发布时间】:2014-01-01 05:47:06 【问题描述】:我知道我们有不同的方法在 Webdriver 中执行 DragAndDrop 我不知道,
任何人都可以帮助我他们是什么,哪一个是最好的方法。
有时即使相同的拖放代码也无法在所有浏览器中运行,有没有人对此有想法?
提前致谢
【问题讨论】:
***.com/questions/14210051/… 【参考方案1】:试试这个代码
driver=new FirefoxDriver();
Actions act=new Actions(driver);
driver.navigate().to("http://dev.css-zibaldone.com/onwebdev/post/jquery-drag-and-drop.html");
driver.manage().timeouts().pageLoadTimeout(25,TimeUnit.SECONDS);
WebElement drag=driver.findElement(By.id("draggable"));
WebElement drop=driver.findElement(By.id("droppable"));
act.dragAndDrop(drag,drop).perform();
【讨论】:
以上是关于DragAndDrop 的所有可能方式的主要内容,如果未能解决你的问题,请参考以下文章
在 ASP.NET MVC 中:从 Razor 视图调用控制器操作方法的所有可能方式