Sha256: 3c3ae7b611f640a0aff3cf8ebd37973f9ef270605fe15daa9ea5f6e94d826704
Contents?: true
Size: 523 Bytes
Versions: 1
Compression:
Stored size: 523 Bytes
Contents
Given /^I am on the basic dialog page$/ do visit BasicDialogPage end Then /^the basic dialog title should be "([^"]*)"$/ do |title| on(BasicDialogPage).basic_dialog.title.should == title end When /^the content should include "([^"]*)"$/ do |content| on(BasicDialogPage).basic_dialog.content.should include content end When /^I close the basic dialog$/ do on(BasicDialogPage).basic_dialog.close end Then /^the basic dialog should not be visible$/ do on(BasicDialogPage).basic_dialog.should_not be_visible end
Version data entries
1 entries across 1 versions & 1 rubygems
Version | Path |
---|---|
jqueryui_widgets-0.1 | features/step_definitions/basic_dialog_steps.rb |