require File.expand_path(File.dirname(__FILE__) + "/../spec_helper") describe "within" do it "should work when nested" do with_html <<-HTML
Link
Link
HTML webrat_session.should_receive(:get).with("/page2", {}) within "#container" do within "div" do click_link "Link" end end end it "should click links within a scope" do with_html <<-HTML Link
Link
HTML webrat_session.should_receive(:get).with("/page2", {}) within "#container" do click_link "Link" end end it "should submit forms within a scope" do with_html <<-HTML