1

从许多论坛搜索我得到了将鼠标悬停在元素上的代码。我想将鼠标悬停在缩略图上。我将 html 元素".thumbnail"放在classfind_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

由于这个问题,它不会将鼠标移到缩略图上。

4

1 回答 1

1

在 Webdriver(java) 中,我们可以像这样执行鼠标悬停动作:

Actions actions = new Actions(driver);
WebElement imageSpan = driver.findElement(By.className("badgeFeatured"));
actions.moveToElement(imageSpan);
于 2013-05-17T05:39:48.740 回答