I am using Cheezy's page-object gem. It works wonderfully in most cases but I can't seem to utilize it when working with dynamically created elements. I have a method for clicking on a cell by passing the text contents of the cell to the method and identifying the element at the time of action
def select_row (row_contents)
cell(:row, :text => /#{row_contents}/i)
self.row.click
end
I'm fairly sure this isn't working because the element is not having methods generated for it at run time. Can someone show me a way to create elements with page-objects dynamically in this manner?
The change is, the
cell
method should be called on theclass
of thepageobject
since it is a class level method