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 -- Posted via http://www.ruby-forum.com/.
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, > SarahHi 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
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 -- Posted via http://www.ruby-forum.com/.
On Mon, Dec 22, 2008 at 11:30 PM, Jeremiah Heller <jeremiah at itmustbe.com>wrote:> 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#q2This might also be of help http://reference.sitepoint.com/css/understandingnthchildexpressions -- Rick DeNatale Blog: http://talklikeaduck.denhaven2.com/ Twitter: http://twitter.com/RubyRedRick -------------- next part -------------- An HTML attachment was scrubbed... URL: <http://rubyforge.org/pipermail/rspec-users/attachments/20081223/9b315740/attachment.html>