Selenium Webdriverを使用してマウスホバー機能を実行するには?
テスト ケースは、たとえば、Yahoo サイトを開くと、サインインの横にリンク (メール) があるようなものです。マウスをホバーすると、ツールチップが表示されます。
以下のコードを試してみると、マウスが正確な場所にホバリングするのではなく、別の場所にホバリングします。どこが間違っていますか?
また、ツールチップをキャプチャする方法を教えてください。
import org.openqa.selenium.By;
import org.openqa.selenium.WebDriver;
import org.openqa.selenium.WebElement;
import org.openqa.selenium.firefox.FirefoxDriver;
import org.openqa.selenium.interactions.Actions;
public class Sample
{
public static void main(String[] args)
{
WebDriver driver=new FirefoxDriver();
driver.get("http://www.yahoo.com");
driver.manage().window().maximize();
try
{
Thread.sleep(5000);
} catch (InterruptedException e)
{
// TODO Auto-generated catch block
e.printStackTrace();
}
WebElement lMail=driver.findElement(By.xpath("//*[@title='Mail']"));
Actions builder=new Actions(driver);
builder.moveToElement(lMail).build().perform();
}
}