我的rails应用程序中有一个表单,可以远程向控制器操作发送数据。然后有JavaScript等待成功的AJAX响应,然后更新页面的各个部分。
使用Turnip,Rspec和Capybara进行测试时,current_page
会重定向到JSON响应,而不是像我期望的那样停留在页面上。
以下是一些代码:
正在点击控制器操作
def update
@conversation.update(conversation_params)
@conversation.save
render json: @conversation, serializer: ConversationSerializer
end
表格
= simple_form_for(convo, remote: true, method: :json) do |f|
- f.fields_for :messages, Message.new(conversation: f.object) do |msg|
= msg.input :text, label: 'Message'
= msg.submit 'Post Message', id: 'message-submit'
Coffeescript倾听成功
$(document).on 'ajax:success', 'form[data-remote]', (xhr, data, status) ->
new_message_id = data.conversation.conversation_messages.pop().id
$.get '/conversation_messages/'+new_message_id+'/partial', (data) ->
$('#conversation .message').last().after(data)
$(document).on 'ajax:success', 'a[data-remote]', (xhr, data, status) ->
location.reload()
$(document).on 'ajax:success', 'form[data-remote]', (xhr, data, status) ->
location.reload()
显示错误内容的测试
step 'I say :message' do |message|
fill_in 'Message', with: message
click_on 'Post Message'
end
step 'I see the conversation message :message from :username' do |message, username|
expect(page).to have_selector('.conversation-message-sender', text: username)
expect(page).to have_selector('.conversation-message-text', text: message)
end
答案 0 :(得分:1)
您需要使用支持JavaScript的驱动程序才能使用Ajax提交工作 - 请参阅https://github.com/jnicklas/capybara#drivers