这是我所拥有的:
visit "..."
fill_in "Email", with: user.email
fill_in "Password", with: user.password
click_button "Sign in"
p current_url
p page.body
save_and_open_page
fill_in "Email", with: "lol@lol.com"
click_button "Update"
current_url 是正确的
但是 page.body 给出了一个只有 DOCTYPE 的空页面,它是一个旧的 HTML4 DOCTYPE,在应用程序的任何地方都不存在!
save_and_open_page 也给出空页。
有什么线索吗?