I have multiple sets of select_list and check boxes with the same properties. While I can differentiate them using index => 0
, index => 1
and so on, is there a way to achieve this using an indexed_property?
When I tried:
indexed_property(:my_index_prop,
[[:select_list, :my_select, {:name => 'my_select',:index => '%d'}],
[:checkbox, :my_check, {:name => 'my_check',:index => '%d'}]]
)
It resulted in the error 'expected fixnum got string "0"'.
If indexed_property cannot be used, is there a way to pass the index during runtime and identify an element? For example:
for cnt in 0 .. 6
# identify element using index
end
The problem is that the Page-Object is sending the :index value as a String when Watir-WebDriver requires the :index value to be a number.
Solution 1 - Use Element Collections
Given that you are only using the indexed property to specify the :index locator, you could define element collections instead.
Assuming that your page is something like:
You could define the page object as:
The two element collections are arrays, meaning you can specify the index by using the
[]
method:The problem with this solution is that you do not get the benefit of the different accessor methods.
Solution 2 - Use XPath
Another option would be to use the :xpath locator with the indexed_property:
The benefit of this is that you get the usual accessor methods created:
The disadvantage here is that you have to write XPaths, which is not a big deal when it is simple.
Solution 3 - Modify Page-Object
Lastly, you could modify the Page-Object gem to turn the :index into a number before passing it to Watir. This can be done by adding the monkey-patch:
This would allow the page object to be defined as expected:
Which is used the same as the prior solution:
The disadvantage of course is that you have to patch the Page-Object gem. Though you could request the change be made to the project.