当我尝试scroll.to
特定元素时,出现了未知错误。例如:
@browser.scroll.to page_element_xy
#=> "Don't know how to scroll to: #< Watir::Div:0x... >! (ArgumentError)"
正常scroll.to
:top
/ :bottom
仍在以某种方式运作。
DIV是问题还是scroll.to
功能一般都有变化?
在搜索中,我发现以下内容对我有用:
page_element_xy.scroll.to :center
很高兴知道现在推荐什么。
答案 0 :(得分:3)
从Watir-Scroll v0.2开始,浏览器级滚动不再支持滚动到元素。
相当于:
@browser.scroll.to page_element_xy
现在:
page_element_xy.scroll.to :top
滚动到元素顶部是默认设置,因此您只需执行以下操作:
page_element_xy.scroll.to