Ruby on Rails with Cucumber and Capybara。
単純な確認コマンド(「Are you sure?」)をテストするにはどうすればよいですか?
また、この問題に関する詳細なドキュメントはどこで入手できますか?
残念ながら、カピバラにはそれをする方法がないようです。ただし、Seleniumドライバー(およびおそらくJavaScriptをサポートする他のドライバー)を使用してテストを実行している場合は、ハックすることができます。確認ダイアログを表示するアクションを実行する直前に、confirm
メソッドをオーバーライドして常にtrueを返します。そうすれば、ダイアログは表示されなくなり、ユーザーがOKボタンを押したかのようにテストを続行できます。逆をシミュレートする場合は、falseを返すように変更します。
page.evaluate_script('window.confirm = function() { return true; }')
page.click('Remove')
Seleniumドライバー 現在これをサポートしています
カピバラからは次のようにアクセスします。
page.driver.browser.switch_to.alert.accept
または
page.driver.browser.switch_to.alert.dismiss
または
page.driver.browser.switch_to.alert.text
これら2つのWebステップを/features/step_definitions/web_steps.rb
に実装しました:
When /^I confirm popup$/ do
page.driver.browser.switch_to.alert.accept
end
When /^I dismiss popup$/ do
page.driver.browser.switch_to.alert.dismiss
end
表示されているメッセージを具体的にテストしたい場合は、特にハックする方法があります。私はそれを美しいコードとして推奨していませんが、それで仕事は完了です。 http://plugins.jquery.com/node/1386/release を読み込むか、jQueryが必要ない場合はネイティブにCookieを実行するように変更する必要があります。
次のようなストーリーを使用します。
Given I am on the menu page for the current booking
And a confirmation box saying "The menu is £3.50 over budget. Click Ok to confirm anyway, or Cancel if you want to make changes." should pop up
And I want to click "Ok"
When I press "Confirm menu"
Then the confirmation box should have been displayed
そして、これらの手順
Given /^a confirmation box saying "([^"]*)" should pop up$/ do |message|
@expected_message = message
end
Given /^I want to click "([^"]*)"$/ do |option|
retval = (option == "Ok") ? "true" : "false"
page.evaluate_script("window.confirm = function (msg) {
$.cookie('confirm_message', msg)
return #{retval}
}")
end
Then /^the confirmation box should have been displayed$/ do
page.evaluate_script("$.cookie('confirm_message')").should_not be_nil
page.evaluate_script("$.cookie('confirm_message')").should eq(@expected_message)
page.evaluate_script("$.cookie('confirm_message', null)")
end
Capybaraの現在のリリースのためにこれを更新します。現在、ほとんどのCapybaraドライバーはモーダルAPIをサポートしています。確認モードを受け入れるには、次のようにします
accept_confirm do # dismiss_confirm if not accepting
click_link 'delete' # whatever action triggers the modal to appear
end
これは次のようなものでキュウリで使用できます
When /^(?:|I )press "([^"]*)" and confirm "([^"]*)"$/ do |button, msg|
accept_confirm msg do
click_button(button)
end
end
名前付きボタンをクリックし、msgに一致するテキストを含む確認ボックスを受け入れます
Scenario: Illustrate an example has dialog confirm with text
#
When I confirm the browser dialog with tile "Are you sure?"
#
=====================================================================
my step definition here:
And(/^I confirm the browser dialog with title "([^"]*)"$/) do |title|
if page.driver.class == Capybara::Selenium::Driver
page.driver.browser.switch_to.alert.text.should eq(title)
page.driver.browser.switch_to.alert.accept
elsif page.driver.class == Capybara::Webkit::Driver
sleep 1 # prevent test from failing by waiting for popup
page.driver.browser.confirm_messages.should eq(title)
page.driver.browser.accept_js_confirms
else
raise "Unsupported driver"
end
end
capybara-webkit ドライバーもこれをサポートしています。
Prickle は、Seleniumおよびwebkitでポップアップを操作するための便利な便利なメソッドを追加します
この要点 には、Capybaraドライバーを使用してRails 2および3でJS確認ダイアログをテストするステップがあります。
これは以前の回答を適応したものですが、jQuery Cookieプラグインは必要ありません。
運のない上記の答えを試してみました。結局、これは私のために働いた:
@browser.alert.ok