我的代码是这样的:
my_array.each do |element|
within element do
some_element.click #it will take me to next page
some_other_element.click #it will take me to previous page for next iteration
end
end
在siteprism页面中是这样的:
elements :array, 'ul.class li'
当我运行时,它在第一次迭代中成功执行,但在第二次迭代中它的抛出错误就像cache element not available
如果我导航到不同的页面,那么我会失去my_array
元素的范围??
谁能帮我这个...??