我必须创建自动化测试以在 Html 画布中自动单击和拖放。
问问题
2148 次
3 回答
1
这个关于高级用户操作的文档可能很有用。
于 2013-08-09T08:27:20.910 回答
1
长话短说,我们可以使用 Actions 类来做到这一点。下面的代码应该可以帮助您入门。
Actions act = new Actions(driver);
act.dragAndDrop(fromLocation, toLocation).perform();
只需确保 fromLocation 和 toLocation 都是 web 元素。干杯
于 2013-08-09T15:50:27.290 回答
0
Actions act=new Actions(driver);
act.DragAndDrop(webElement_Source, webElement_Target)).Build().Perform();
于 2013-12-19T10:01:02.363 回答