Does Capybara require sleep to work?
问题 Apparently, sleep or wait_until are not valid using recent versions of Capybara, according to the webpage updates. However, I have a set of tests that only work on fast machines if I add a sleep(1) call to the test. That is, a test that looks like: describe "dosimeters page" do before do click_link("Dosimeter Read History", :match=>:first) end ... becomes describe "dosimeters page" do before do unix_wait click_link("Dosimeter Read History", :match=>:first) end ... where I've defined unix_wait