Sha256: 4ea70c94b8a99bf94a3d7159b9d74f5c37ea8d890fe955aed78e79aea98e406c

Contents?: true

Size: 517 Bytes

Versions: 4

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).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

4 entries across 4 versions & 1 rubygems

Version Path
jqueryui_widgets-0.5 features/step_definitions/basic_dialog_steps.rb
jqueryui_widgets-0.4 features/step_definitions/basic_dialog_steps.rb
jqueryui_widgets-0.3 features/step_definitions/basic_dialog_steps.rb
jqueryui_widgets-0.2 features/step_definitions/basic_dialog_steps.rb