3

我正在编写测试来测试确认和驳回构象弹出窗口的工作。但是,我收到错误:

And I dismiss popup                                     # features/step_definitions/web_steps.rb:74
  undefined method `switch_to' for #<Capybara::RackTest::Browser:0xa6f0dec> (NoMethodError)
  ./features/step_definitions/web_steps.rb:75:in `/^I confirm popup$/'
  features/add_session.feature:121:in `And I confirm popup'

运行我的测试时。

我的 .features 文件中的步骤如下所示:

And I press "Delete"
And I confirm popup

在 web_steps.rb 中,我定义了以下内容:

When /^I confirm popup$/ do
  #page.evaluate_script('window.confirm = function() { return true; }')
  #page.click('OK')
  page.driver.browser.switch_to.alert.accept
  #popup.confirm 
end

When /^I dismiss popup$/ do
  page.driver.browser.switch_to.alert.dismiss
  #page.evaluate_script('window.confirm = function() { return true; }')
  #page.click('Cancel')
  #popup.dismiss
end

我正在使用我在 Gemfile 中包含的 prickle gem:

group :test do
  gem 'cucumber-rails'
  gem 'prickle'
end

我在我的 Gemfile 中添加了几行,如此处所述包括 prickle。我最初像 World 那样拥有它,就像它们在 github 页面上显示的那样,但这给了我错误,因为 World 被使用了两次(另一次在黄瓜库中)。这是我添加到 env.rb 文件中的行:

require 'prickle/capybara'    # require

module Prickle_helper
  include Capybara::DSL
  include Prickle::Capybara  # include  Prickle
end

World(Prickle_helper)

关于可能导致我的错误的任何想法?谢谢!

4

1 回答 1

0

我在要使用 selenium 的方法之前省略了 @javascript。例如:

@javascript
Scenario: Delete the class
  Given I am on the home page
  And I press "Delete"
  And I confirm popup
  Then I am on the homepage
  And I should not see the deleted class
于 2012-11-05T06:54:59.373 回答