I am using Ruby on Rails with Cucumber and Capybara.
How would I go about testing a simple confirm command ("Are you sure?")?
Also, where could I find further documentation on this issue?
Thank you!
|
I am using Ruby on Rails with Cucumber and Capybara. How would I go about testing a simple confirm command ("Are you sure?")? Also, where could I find further documentation on this issue? Thank you! |
|||
|
|
|
Seems like there's no way to do it in Capybara, unfortunately. But if you're running your tests with the Selenium driver (and probably other drivers that support JavaScript), you can hack it. Just before performing the action that would bring up the confirm dialog, override the
|
|||||||
|
|
The selenium driver now supports this From Capybara you would access it like this:
or
or
|
|||||||||||
|
|
I've implemented these two web steps in
|
||||
|
|
|
If you want to specifically test the message being displayed, here's a particularly hacky way to do so. I don't endorse it as beautiful code, but it gets the job done. You'll need to load http://plugins.jquery.com/node/1386/release, or change it to do cookies natively if you don't want jQuery. Use this sort of story:
And these steps
|
|||||||
|
|
Prickle adds some handy convenience methods for working with popups in selenium and webkit |
|||
|
|
|
This gist has steps to test a JS confirm dialog in Rails 2 and 3 with any Capybara driver. It's an adaptation of a previous answer, but doesn't need the jQuery Cookie plugin. |
|||
|
|
|
The capybara-webkit driver supports this as well. |
|||
|
|