So, I want to test clicking a link in a table and found this handy
example by Aslak:
http://github.com/aslakhellesoy/cucumber_rails/tree/master/features/step_definitions/lorry_steps.rb
When /^I delete the (\d+)(?:st|nd|rd|th) lorry$/ do |pos|
visit lorries_url
within("table > tr:nth-child(#{pos.to_i+1})") do
click_link "Destroy"
end
end
What if I wanted to destroy the lorry with "name 3" instead of the 3rd
lorry? I looked up 'within' in the Webrat docs
http://gitrdoc.com/brynary/webrat/tree/master/ but there was no
description and the source is a bit mysterious.
Could someone describe what "table > tr:nth-child(#{pos.to_i+1})" does?
by semantic pattern matching I could guess that "ol >
li:nth-child(#{pos.to_i+1})" would also work, but it would be nifty to
know why.
Thanks,
Sarah
on 2008-12-23 01:03
on 2008-12-23 05:43
On 22 Dec 2008, at 16:03, Sarah Allen wrote: > Could someone describe what "table > tr:nth-child(#{pos.to_i+1})" > does? > by semantic pattern matching I could guess that "ol > > li:nth-child(#{pos.to_i+1})" would also work, but it would be nifty to > know why. > > Thanks, > Sarah Hi Sarah - et al, I'm a newb too - thanks for the sweet tools! The W3 explains the css selector syntax: http://www.w3.org/TR/CSS2/selector.html#q2 HTH Jeremiah
on 2008-12-23 09:13
Sarah Allen wrote: > What if I wanted to destroy the lorry with "name 3" instead of the 3rd > lorry? I was trying to solve a similar problem a few weeks ago. You might be interested in the response I got: http://www.ruby-forum.com/topic/171269 HTH Paul
on 2008-12-23 13:59
On Mon, Dec 22, 2008 at 11:30 PM, Jeremiah Heller <jeremiah@itmustbe.com>wrote: > > Hi Sarah - et al, I'm a newb too - thanks for the sweet tools! The W3 > explains the css selector syntax: > http://www.w3.org/TR/CSS2/selector.html#q2 This might also be of help http://reference.sitepoint.com/css/understandingnthchildexpressions -- Rick DeNatale Blog: http://talklikeaduck.denhaven2.com/ Twitter: http://twitter.com/RubyRedRick
Please log in before posting. Registration is free and takes only a minute.
Existing account
(Switch to SSL-encrypted connection)
NEW: Do you have a Google/GoogleMail or Yahoo account? No registration required!
Log in with Google account | Log in with Yahoo account
Log in with Google account | Log in with Yahoo account
No account? Register here.