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 的所有可能方式的主要内容,如果未能解决你的问题,请参考以下文章

创建大小为 n 的布尔数组的所有可能方式?

以最快的方式找到所有可能的子字符串[重复]

在 ASP.NET MVC 中:从 Razor 视图调用控制器操作方法的所有可能方式

Jquery UI 对话框关闭事件所有可能的方式合二为一

尽管我尝试了 *** 上建议的所有可能方式,但 html 站点找不到 css [重复]

如何从 php 数组中删除具有特定值的所有元素? (以尽可能最短的方式)[重复]