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

本文标签: