从许多论坛搜索我得到了将鼠标悬停在元素上的代码。我想将鼠标悬停在缩略图上。我将 html 元素".thumbnail"
放在class
find_element 方法中。我不知道应该在 find_element 方法中放置哪个参数?
我的 html 元素如下所示。
<a class="thumbnail">
<span class="badgeFeatured">featured</span>
<img alt="" src="https://do3dm75n3e02m.cloudfront.net/arts/preview_3ds/14/original/open-uri20121128-5897-wh90rf_1354148717.png20121128-5897-194vld7-0?1354148717">
<p>Flourish Happy Birthday</p>
</a>
el = driver.find_element(:class => "thumbnail")
driver.move_to.(el).perform
由于这个问题,它不会将鼠标移到缩略图上。