本文介绍了在HTML5页面中使用量角器进行拖放操作不起作用的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!
问题描述
我有一个场景,我必须拖放列。但是,我尝试了以下命令,但没有一个起作用
I have a scenario where i had to drag and drop the columns. However, i tried below commands but none of them are working
browser.actions().mouseDown(elements).perform();
browser.actions().mouseMove({x:20, y:120}).perform();
browser.actions().mouseDown(elements).perform();
browser.actions().mouseMove({x:20, y:120}).perform();
browser.actions().mouseUp().perform();
browser.actions().dragAndDrop(elements,{x:20 , y:120}).mouseMove(elements).perform();
browser.actions().dragAndDrop(elements,a).mouseUp().perform()
该命令仅突出显示该列,但不会拖动到该位置。
The command just highlights the column but doesn't drag to the location.
推荐答案
; drop功能是使用HTML5实现的,您需要模拟拖放事件。
if the drag&drop functionality was implemented with HTML5 you need simulate the drag&drop events.
请参阅此解决方案
这篇关于在HTML5页面中使用量角器进行拖放操作不起作用的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!