我正在尝试自动化电子商务网站,我有一个问题如何在selenium RC中使用鼠标悬停。
看看下面的情景。
访问angara.com
转到标题菜单并将鼠标悬停在“RINGS”上,然后点击Shop by stone Section中的“Blue Sapphire”。
我坚持要点。 2.Below是我为上面写的代码。
public void angara_product(){
Selenium selenium = new DefaultSelenium("QAvinod", 4444, "*firefox",
"http://www.angara.com");
selenium.start();
selenium.open("/");
selenium.click("xpath=/html/body/div[5]/div/div[4]/div/div/div[2]/div[2]/div/div/a/img");
selenium.mouseOver("xpath=//li[@class='first-nav']/a/@href");
selenium.click("xpath=//a[text()='Blue Sapphire']/@href");