小编典典

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

selenium

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

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

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

我不知道该怎么做


阅读 557

收藏
2020-06-26

共1个答案

小编典典

产生行动链

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

 Actions builder = new Actions(driver); 
 Action dragAndDrop = builder.clickAndHold(someElement)
    .moveToElement(otherElement)
    .release(otherElement)
    .build(); 
 dragAndDrop.perform();
2020-06-26