obrok / futile

lightweight functional/blackbox/acceptance testing package for web pages
8 stars 0 forks source link

Scope finders #2

Open michalbugno opened 15 years ago

michalbugno commented 15 years ago

Something like #within method to enable scoped search of links/buttons to click.

app.within("#menu") do
  app.within("div[@name='test']") do
    app.click_link("Testing")
  end
end