How to test the jQuery UI slider widget with Selenium IDE?

后端 未结 4 1559
忘了有多久
忘了有多久 2021-02-15 21:08

We are using the jQuery UI slider widget in our web application and we want to automate testing of the UI with selenium IDE. We can\'t find a way to move the slider with seleniu

4条回答
  •  感情败类
    2021-02-15 21:25

    You can use the dragAndDrop command to move the slider. The following worked for me:

    dragAndDrop | css=.ui-slider-handle | +100,0
    

    This moves the slider 100 pixels to the right of its current position.

提交回复
热议问题