Capybara::SpecHelper.spec '#within_frame', :requires => [:frames] do before(:each) do @session.visit('/within_frames') end it "should find the div in frameOne" do @session.within_frame("frameOne") do expect(@session.find("//*[@id='divInFrameOne']").text).to eql 'This is the text of divInFrameOne' end end it "should find the div in FrameTwo" do @session.within_frame("frameTwo") do expect(@session.find("//*[@id='divInFrameTwo']").text).to eql 'This is the text of divInFrameTwo' end end it "should find the text div in the main window after finding text in frameOne" do @session.within_frame("frameOne") do expect(@session.find("//*[@id='divInFrameOne']").text).to eql 'This is the text of divInFrameOne' end expect(@session.find("//*[@id='divInMainWindow']").text).to eql 'This is the text for divInMainWindow' end it "should find the text div in the main window after finding text in frameTwo" do @session.within_frame("frameTwo") do expect(@session.find("//*[@id='divInFrameTwo']").text).to eql 'This is the text of divInFrameTwo' end expect(@session.find("//*[@id='divInMainWindow']").text).to eql 'This is the text for divInMainWindow' end it "should return the result of executing the block" do expect(@session.within_frame("frameOne") { "return value" }).to eql "return value" end it "should find the div given Element" do element = @session.find(:id, 'frameOne') @session.within_frame element do expect(@session.find("//*[@id='divInFrameOne']").text).to eql 'This is the text of divInFrameOne' end end it "should find multiple nested frames" do @session.within_frame 'parentFrame' do @session.within_frame 'childFrame' do @session.within_frame 'grandchildFrame1' do end @session.within_frame 'grandchildFrame2' do end end end end it "should reset scope when changing frames" do @session.within(:css, '#divInMainWindow') do @session.within_frame 'parentFrame' do expect(@session.has_selector?(:css, "iframe#childFrame")).to be true end end end end