Kura Monni wrote: > Hoblaa! > > I'm writing a test for modifying a list structure. Say I have a list of > objects in the view along the lines of: > Object1 View Edit Delete > Object2 View Edit Delete > Object3 View Edit Delete > Object4 View Edit Delete > > I want to be able to write a test in Cucumber that'll perform an action > on one of the objects, i.e. Object2. How can I pinpoint the correct > View/Edit/Delete link from the list? I can't really use the standard > > [code] I follow "View" > [/code] > > because it will just follow the View link for Object1 (I assume). > > Thanks in advance.
I'm about to try dealing with a similar problem. Webrat will match objects by CSS selector; I don't know yet (because I haven't yet tried!) whether Cucumber's default webrat_steps will work with that matching strategy, but if not, it shouldn't be too hard to write new steps that do work. Best, -- Marnen Laibow-Koser http://www.marnen.org [email protected] -- Posted via http://www.ruby-forum.com/.
-- You received this message because you are subscribed to the Google Groups "Ruby on Rails: Talk" group. To post to this group, send email to [email protected]. To unsubscribe from this group, send email to [email protected]. For more options, visit this group at http://groups.google.com/group/rubyonrails-talk?hl=en.

