I'm working with many jQuery plugins, that often create DOM elements without id or other identification properties, and the only way to get them in Capybara (for clicking for example) - is to get their neighbor (another child of its ancestor) first. But I didn't find anywhere, does Capybara support such things for example:

find('#some_button').parent.fill_in "Name:", :with => name

?

link|improve this question

Also it will be very useful for me, if you tell, does Capybara generate click on elements with { display: hidden }, and is there a way to find elements in some scope, where display != hidden ? – GearHead Feb 1 '11 at 11:51
This is a separate question, but it depends on the driver that you're using. webrat will find hidden things happily, but selenium is not as happy to click on items that you can't see. – jamuraa Feb 1 '11 at 13:54
feedback

3 Answers

up vote 11 down vote accepted

There isn't a way to do this with capybara and CSS. I've used XPath in the past to accomplish this goal though, which does have a way to get the parent element and is supported by Capybara:

find(:xpath, '//[@id="some_button"]/..').fill_in "Name:", :with => name
link|improve this answer
feedback

I really found jamuraa's answer helpful, but going for full xpath gave me a nightmare of a string in my case, so I happily made use of the ability to concatenate find's in Capybara, allowing me to mix css and xpath selection. Your example would then look like this:

find('#some_button').find(:xpath,".//..").fill_in "Name:", :with => name
link|improve this answer
Thanks for that idea -- I never would have thought of that! I was doing el.parent for a td element I found with find(:css), but for some reason I don't understand, el.parent was returning #<Capybara::Document>. el.find(:xpath,".//..") on the other hand returns #<Capybara::Element tag="tr">, which is what I needed. – Tyler Rick Dec 7 '11 at 19:07
Another way to recursively find a certain parent node is with xpath's ancestor-or-self selector. Check it out stackoverflow.com/questions/1362466/… – vrish88 May 7 at 23:05
feedback

I'm using a different approach by finding the parent element first using the text within this parent element:

find("<parent element>", text: "text within your #some_button").fill_in "Name:", with: name

Maybe this is useful in a similiar situation.

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.