I have a link on a page which only appears when hovering over a certain element. But I can't figure out how to emulate this and then click on the link so I can cucumber test it using Capybara and Selenium.

Anyone know how to do this? I've tried executing javascript and and also trying to talk to the selenium driver directly but so far I'm not having much luck...

link|improve this question

feedback

2 Answers

Use Selenium's fireEvent on a mouseover event and then pause for your required hover time.

link|improve this answer
Hmm... I must be doing something stupid. I've tried the line: page.driver.browser.fireEvent(selector, "mouseover") in my web step but I get the following error: undefined method `fireEvent' for #<Selenium::WebDriver::Driver:0x10501bde0 browser=:firefox> (NoMethodError) any ideas? – Ganesh Shankar Jun 19 '11 at 23:46
feedback

I have worked on similar one i used following see this might help you.

Using Selenium IDE.
1. Navigate to the required page.
2. Start selenium IDE and Get the Link target.
3. Change the Command to mouseOver Double click the the command in Selenium IDE.
4. It will Show the link wchich you needed.
5. Again Start recording and record the required Link.

When you Double click the mouseOver command it creates the simulation of mouse over through IDE and you can Use your mouse to record the popup link.

Thanks

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

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