I have been searching exhaustively in StackOverflow, but can't find any appropriate solution.
I am testing my javascript in a Ruby on Rails app, using RSpec + Capybara and Selenium driver.
For authentication, I am using the authlogic gem.
The feature I want to test consists on a page that is loaded and rendered by 3 different requests to the server. This is: the layout is rendered in one request, then the outer elements, and the the main content of the page.
I successfully logged in (through filling in the form) and the first request is successfully completed. But then, when the second request is made, there is no user in session, it has dissappeared.
What can I do to persist the user session between two requests in the same test?
UPDATE: my RSpec looks like:
require 'spec_helper'
describe 'activity tracker', :js => true do
let(:student) {login_via_form_as('Student')}
let(:course) {Factory.create(:course)}
let!(:course_student) {Factory.create(:course_student, :course_id => course.id, :user_id => student.id)}
let(:quiz) {Factory.create(:quiz, :course_id => course.id)}
let(:lesson) {Factory.create(:lesson, :course_id => course.id)}
let!(:lesson_item) {Factory.create(:lesson_item_quiz, :lesson => lesson, :item => quiz)}
it "should track exercise activity in quiz", :driver => :selenium do
exercise = Factory.create(:exercise, :parent => quiz)
expect {
visit course_quiz_exercise_path(:course_id => course.label, :quiz_id => quiz.id, :id => exercise.id, :locale => 'es')
}.to change{Activity.count}.by(1)
page.should have_css('div#container.single-exercise')
Activity.last.action.should eq('start')
end
end
And the login_via_form_as method is defined as:
def login_via_form_as(type='Admin')
user = Factory.create(type.downcase.to_sym)
visit login_path
fill_in "Email", :with => user.email
fill_in "Password", :with => "1234"
click_on "Login"
within(".end") do
page.should have_content("Logout")
end
The thing is that the request to course_quiz_exercise_path then launches two Ajax request to load other parts of the page, and is in these second and third requests where the session info has been lost.
Any suggestions?