require File.expand_path(File.dirname(__FILE__) + "/../spec_helper") describe "within" do before do @session = Webrat::TestSession.new end it "should click links within a scope" do @session.response_body = <<-EOS Link
EOS @session.should_receive(:get).with("/page2", {}) @session.within "#container" do |scope| scope.clicks_link "Link" end end it "should submit forms within a scope" do @session.response_body = <<-EOS EOS @session.should_receive(:get).with("/form2", "email" => "test@example.com") @session.within "#form2" do |scope| scope.fill_in "Email", :with => "test@example.com" scope.clicks_button end end it "should not find buttons outside of the scope" do @session.response_body = <<-EOS EOS @session.within "#form2" do |scope| lambda { scope.clicks_button }.should raise_error end end end