Reputation: 323
I have to click on a jquery dropdown with selenium. Found that
MouseUp[xpath=//a[contains(text(),'itemname')]
works in IDE. But am at loss, as I cannot simulate this in ruby webdriver. Is it possible to simulate it with actions class? If so how? Kindly help me out.
Upvotes: 3
Views: 178
Reputation: 717
Check out the Filling out forms part on the Selenium WebDriver Docs http://seleniumhq.org/docs/03_webdriver.jsp#user-input-filling-in-forms
This should lead you in the right direction for your problem.
Upvotes: 1