[browser test] Wait longer for save in multiedit workflow.

This timeout caused the only test failure overnight Mar 25.
Timeouts are bad.

Change-Id: I070c3362271ad23b7c38922858ad4079d0754a45
This commit is contained in:
cmcmahon 2014-03-26 08:48:30 -07:00
parent 460bb9b884
commit b15627f0ec

View file

@ -27,5 +27,5 @@ When(/^I click Save page another time$/) do
end
Then(/^the saved page should contain all three edits\.$/) do
on(VisualEditorPage).page_text_element.when_present.text.should match(@third_edit_text + @second_edit_text + "Editing with " + @random_string + " " + @first_edit_text)
on(VisualEditorPage).page_text_element.when_present(10).text.should match(@third_edit_text + @second_edit_text + "Editing with " + @random_string + " " + @first_edit_text)
end