我想制作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();