# File lib/capybara/session.rb, line 179
    def within(*args)
      new_scope = find(*args)
      begin
        scopes.push(new_scope)
        yield
      ensure
        scopes.pop
      end
    end