Sha256: a0baae3096b1d97b3b04d40ee815a75df11440142d639a166bccd6eb54df9cbb

Contents?: true

Size: 517 Bytes

Versions: 3

Compression:

Stored size: 517 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).the_dialog_title.should == title
end

When /^the content should include "(.+)"$/ do |content|
  on(BasicDialogPage).the_dialog_content.should include content
end

When /^I close the basic dialog$/ do
  on(BasicDialogPage).close_the_dialog
end

Then /^the basic dialog should not be visible$/ do
  on(BasicDialogPage).the_dialog_element.should_not be_visible
end

Version data entries

3 entries across 3 versions & 1 rubygems

Version Path
jqueryui_widgets-1.0 features/step_definitions/basic_dialog_steps.rb
jqueryui_widgets-0.7.1 features/step_definitions/basic_dialog_steps.rb
jqueryui_widgets-0.6 features/step_definitions/basic_dialog_steps.rb