我有一个搜索过滤器。我需要能够检查页面上的所有字段是否都存在并包含值(如果它们是选择框)。
我已经使用 MethodFinder gem 成功地做到了这一点,但我想知道是否有任何方法只使用 PageObject gem。
require 'methodfinder'
class BasicSearchFilter
include PageObject
text_field(:facility_name, :id => "facility-name")
text_field(:queue, :id => "queue")
select_list(:from, :id => "from")
button(:continue, :id => "continue")
def get_search_filter_elements
methods = MethodFinder.find_in_class_or_module('BasicSearchFilter', '.*_element$')
elements = []
methods.each do |method|
elements << send(method)
end
end
end
我已经成功使用了上述方法,但现在我无法使用我想做的页面对象方法。我希望能够以某种方式提供有效“元素”列表,这只是元素的 PageObject 版本。
编辑:所以事实证明正在发生一些非常可疑的事情。我有一个 RSpec 测试从上面的类中获取字段。它看起来像这样:
it "the basic filter dropdowns should not contain duplicate values"
on_page(BasicSearchFilter).get_search_filter_elements.each do |element|
if element.tag_name == "select"
p element
puts "a select tag #{element}"
end
end
end
现在根据文档, your_element_element 命令应该返回 watir 元素。这发生了一次。第二个 put 以某种方式变回 PageObject 对象。我现在根本不知道发生了什么。这是上面的一些输出。
#<Watir::Select:0x4c6bdfa4 located=true selector={:id=>"facility-name", :tag_name=>"select"}>
a select tag #<PageObject::Elements::SelectList:0x3101538>