Sha256: de1ac9586b86cbeff6b047d91c81f3f1d9570e4d51576fb7576d309e275db11b

Contents?: true

Size: 1.15 KB

Versions: 7

Compression:

Stored size: 1.15 KB

Contents

require File.expand_path(File.dirname(__FILE__) + '../../../spec/applications/calculator')

include Autogui::Input

After('@calculator') do
  if @calculator
    @calculator.close(:wait_for_close => true) if @calculator.running?
    @calculator.should_not be_running
  end
end

Given /^a GUI application named calculator$/ do
  @calculator = Calculator.new
  @calculator.should be_running
end

When /^I type in "([^"]*)"$/ do |string|
  @calculator.set_focus
  type_in(string)
end

# "the window text should match" allows regex in the partial_output, if
# you don't need regex, use "the output should contain" instead since
# that way, you don't have to escape regex characters that
# appear naturally in the output
Then /^the edit window text should match \/([^\/]*)\/$/ do |partial_output|
  @calculator.edit_window.text.should =~ /#{partial_output}/
end

Then /^the edit window text should contain exactly "([^"]*)"$/ do |exact_output|
  @calculator.edit_window.text.should == unescape(exact_output)
end

Then /^the edit window text should contain exactly:$/ do |exact_output|
  @calculator.edit_window.text.should == exact_output
end

Version data entries

7 entries across 7 versions & 1 rubygems

Version Path
win32-autogui-0.5.3 features/step_definitions/calculator_steps.rb
win32-autogui-0.5.2 features/step_definitions/calculator_steps.rb
win32-autogui-0.5.1 features/step_definitions/calculator_steps.rb
win32-autogui-0.5.0 features/step_definitions/calculator_steps.rb
win32-autogui-0.4.3 features/step_definitions/calculator_steps.rb
win32-autogui-0.4.2 features/step_definitions/calculator_steps.rb
win32-autogui-0.4.1 features/step_definitions/calculator_steps.rb