如何使用Selenium Webdriver移动jQuery的水平滑块或垂直滑块

我想制作selenium脚本,该脚本移动以下站点上给出的滑块

示例名称是如何更改jQuery UI Slider的方向

http://jqueryui.com/demos/slider/

我不知道该怎么做

回答:

产生行动链

Actions链生成器实现了Builder模式,以创建包含一组其他操作的CompositeAction。这应该通过配置一个Actions链生成器实例并调用它的build()方法来获得复杂的动作,从而简化构建动作:

 Actions builder = new Actions(driver); 

Action dragAndDrop = builder.clickAndHold(someElement)

.moveToElement(otherElement)

.release(otherElement)

.build();

dragAndDrop.perform();

以上是 如何使用Selenium Webdriver移动jQuery的水平滑块或垂直滑块 的全部内容, 来源链接: utcz.com/qa/419236.html

回到顶部