是否可以使用 Capybara 和 Selenium 驱动器访问 Rspec 中的会话变量?
我将如何做这样的事情(我正在使用omniauth-facebook)?
require 'spec_helper'
describe 'Api' do
def login_with_oauth
visit "/auth/facebook"
end
it 'get location count for specific user' do
login_with_oauth
@user=User.find(session[:user_id])
#puts "here is response body: #{response.body}"
我看到 如何使用 Capybara 和 RSpec 检查会话哈希?但没有得到我真正想要的。
谢谢