admin管理员组文章数量:1344413
So i have a "Delete" link that brings up a html confirm modal. In my rspec system test though, it keeps erroring out with both errror messages Capybara::ModalNotFound
and Selenium::WebDriver::Error::UnexpectedAlertOpenError
.
Here are 2 different attempts I've tried so far. First was a pretty standard but got those 2 errors.
expect(page).to have_selector(:link_or_button, "Delete")
click_on "Delete"
page.driver.browser.switch_to.alert.accept
expect(page).to have_text("Team was successfully destroyed.")
Second, I thought it might be a timing/speed issue so i tried this approach next. The message result is correct, but still getting the same errors.
expect(page).to have_selector(:link_or_button, "Delete")
messege = accept_confirm do
click_link "Delete"
end
wait_for { messege }.to eq("Are you sure you want to DELETE #{team.name}")
Rails: 8
capybara: 3.40
selenium-webdriver: 4.29
本文标签:
版权声明:本文标题:ruby on rails - Caypbararspec throwing both `Capybara::ModalNotFound` and `Selenium::WebDriver::Error::UnexpectedAlertOpenError` 内容由网友自发贡献,该文观点仅代表作者本人, 转载请联系作者并注明出处:http://www.betaflare.com/web/1743751125a2532667.html, 本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。如发现本站有涉嫌抄袭侵权/违法违规的内容,一经查实,本站将立刻删除。
发表评论