vote up 2 vote down star
1

Hi,

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 selenium's commands. Can it be done?

flag

2 Answers

vote up 2 vote down check

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.

link|flag
Awesome, it worked. Thanks!! – David Thibault Aug 31 at 16:01
vote up 1 vote down

there is only one (horrible) solution for this. You will have to interact with the slider thought its jquery api.

selenium has a runScript method where you can pass some javascript to run. Do this only as your last resort though, as this will lead you down a slippery slope

link|flag

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.