黄瓜高级步骤定义 - 语法错误,意外的tIDENTIFIER,期待keyword_end

时间:2017-04-10 09:20:55

标签: android ruby cucumber calabash calabash-android

我跟着Reuse Cucumber steps

对于Ruby和Cucumber来说,我是个菜鸟 我正在使用calabash-android 0.9.0和黄瓜2.4.0

我的calabash_steps.rb:

require 'calabash-android/calabash_steps'

Then /^I add the 1st bestsellers product to bag$/ do
    steps %Q {
         # App restarts and Onboarding screen shows again
         Given I see the text "next"
         Then I press the "next" button
    }
end

完整的堆栈跟踪:

❯ bundle exec calabash-android run app/build/outputs/apk/app-staging-debug.apk -t @bag
/Users/eric/AndroidStudioProjects/xxx/features/step_definitions/calabash_steps.rb:7: syntax error, unexpected tIDENTIFIER, expecting keyword_end
Then I press the "next" button
                              ^ (SyntaxError)
/Users/eric/.rbenv/versions/2.4.0/lib/ruby/gems/2.4.0/gems/cucumber-2.4.0/lib/cucumber/rb_support/rb_language.rb:96:in `load'
/Users/eric/.rbenv/versions/2.4.0/lib/ruby/gems/2.4.0/gems/cucumber-2.4.0/lib/cucumber/rb_support/rb_language.rb:96:in `load_code_file'
/Users/eric/.rbenv/versions/2.4.0/lib/ruby/gems/2.4.0/gems/cucumber-2.4.0/lib/cucumber/runtime/support_code.rb:142:in `load_file'
/Users/eric/.rbenv/versions/2.4.0/lib/ruby/gems/2.4.0/gems/cucumber-2.4.0/lib/cucumber/runtime/support_code.rb:84:in `block in load_files!'
/Users/eric/.rbenv/versions/2.4.0/lib/ruby/gems/2.4.0/gems/cucumber-2.4.0/lib/cucumber/runtime/support_code.rb:83:in `each'
/Users/eric/.rbenv/versions/2.4.0/lib/ruby/gems/2.4.0/gems/cucumber-2.4.0/lib/cucumber/runtime/support_code.rb:83:in `load_files!'
/Users/eric/.rbenv/versions/2.4.0/lib/ruby/gems/2.4.0/gems/cucumber-2.4.0/lib/cucumber/runtime.rb:253:in `load_step_definitions'
/Users/eric/.rbenv/versions/2.4.0/lib/ruby/gems/2.4.0/gems/cucumber-2.4.0/lib/cucumber/runtime.rb:61:in `run!'
/Users/eric/.rbenv/versions/2.4.0/lib/ruby/gems/2.4.0/gems/cucumber-2.4.0/lib/cucumber/cli/main.rb:32:in `execute!'
/Users/eric/.rbenv/versions/2.4.0/lib/ruby/gems/2.4.0/gems/cucumber-2.4.0/bin/cucumber:8:in `<top (required)>'
/Users/eric/.rbenv/versions/2.4.0/bin/cucumber:22:in `load'
/Users/eric/.rbenv/versions/2.4.0/bin/cucumber:22:in `<main>'

1 个答案:

答案 0 :(得分:0)

问题是steps %Q {中的额外空格,将其更改为steps %Q{会导致问题消失 我习惯在Java和Javascript中滥用空格字符以便于阅读

要求&#39; calabash-android / calabash_steps&#39;

Then /^I add the 1st bestsellers product to bag$/ do
    steps %Q{
         # App restarts and Onboarding screen shows again
         Given I see the text "next"
         Then I press the "next" button
    }
end