Skip to content

Instantly share code, notes, and snippets.

@mattheworiordan
Forked from matschaffer/example.feature
Created April 14, 2011 08:16
Show Gist options
  • Star 4 You must be signed in to star a gist
  • Fork 1 You must be signed in to fork a gist
  • Save mattheworiordan/919116 to your computer and use it in GitHub Desktop.
Save mattheworiordan/919116 to your computer and use it in GitHub Desktop.
@javascript
Scenario: confiming when saving inactive
Given I expect to click "OK" on a confirmation box saying "Are you sure?"
When I press "Save"
Then the confirmation box should have been displayed
And I should see "TV" in the "Campaign Keywords" section
Scenario: alert when form is not valid
Given I expect to click on an alert box saying "Please complete all fields in this form"
When I press "Save"
Then the alert box should have been displayed
Given /^I expect to click "([^"]*)" on a confirmation box saying "([^"]*)"$/ do |option, message|
retval = (option == "OK") ? "true" : "false"
page.evaluate_script("window.confirm = function (msg) {
$.cookie('confirm_message', msg, {path: '/'});
return #{retval};
}")
@expected_message = message
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
Given /^I expect to click on an alert box saying "([^"]*)"$/ do |message|
page.evaluate_script("window.alert = function (msg) {
$.cookie('alert_message', msg, {path: '/'});
return true;
}")
@expected_message = message
end
Then /^the alert box should have been displayed$/ do
page.evaluate_script("$.cookie('alert_message')").should_not be_nil
page.evaluate_script("$.cookie('alert_message')").should eq(@expected_message)
page.evaluate_script("$.cookie('alert_message', null)")
end
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment