Siteprism 部分不会响应 has_element

Siteprism section won't respond to has_element

我正在尝试将 SitePrism 与我的 ruby/capybara/selenium 测试套件一起使用,但我继续收到关于期望元素响应的错误 has_<element_name>? 规范的最后一行是失败的.它给我一个错误说:

expected #<PageObjects::Pages::SalesPage:0x00000000066782b0> to respond to 'has_toolbar_title?'

sales_page.rb

module PageObjects
  module Pages
    class SalesPage < SitePrism::Page

      set_url "REDACTED"
      section :toolbar, PageObjects::Sections::Toolbar, '#qHybridViewToolbar'

    end
  end
end

toolbar.rb

module PageObjects
  module Sections
    class Toolbar < SitePrism::Section
      element :new_button,    '#ToolBtnNew'
      element :edit_button,   '#ToolBtnUpdate'
      element :delete_button, '#ToolBtnDelete'
      element :toolbar_title, '#qToolbarViewTitle'
    end
  end
end

my_spec.rb

require 'spec_helper'

describe 'On sales page' do

  context 'without a password' do
    it "does the things" do
      sales_page = PageObjects::Pages::SalesPage.new
      sales_page.load

      expect(sales_page).to have_toolbar

      sales_page.toolbar.new_button.click
      puts sales_page.toolbar.toolbar_title
      puts sales_page.toolbar.toolbar_title.text
      expect(sales_page).to have_toolbar_title

    end
  end
end

这个错误是完全正确的。您询问页面是否有 toolbar_title,但 toolbar_title 实际上在工具栏上。您需要致电

expect(sales_page.toolbar).to have_toolbar_title