Sha256: 5c856f069c831b7c761fe32778474f711c600a267f188f404f759f69470d1645

Contents?: true

Size: 495 Bytes

Versions: 3

Compression:

Stored size: 495 Bytes

Contents

Given /^I am on the Progress Bar page$/ do
  visit_page ProgressBarPage
end

Then /^the minimum value should be "(.+)"$/ do |minimum_value|
  on(ProgressBarPage).progress_bar.minimum.should == minimum_value.to_i
end

Then /^the maximum value should be "(.+)"$/ do |maximum_value|
  on(ProgressBarPage).progress_bar.maximum.should == maximum_value.to_i
end

Then /^the current value should be "(.+)"$/ do |current_value|
  on(ProgressBarPage).progress_bar.current.should == current_value.to_i
end

Version data entries

3 entries across 3 versions & 1 rubygems

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