Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
カピバラを使用して要素にマウスを合わせる必要があります。FF15では問題なく動いています。でもFF13にはありません。誰でもこの問題を解決するのを手伝ってもらえますか?
Capybara + Selenium ドライバーを使用して「マウス ホバー」をシミュレートする方法を見つけました。
module Capybara module Node class Element def hover @session.driver.browser.action.move_to(self.native).perform end end end end