如何使用selenium RC和java处理鼠标悬停

时间:2014-03-03 08:40:57

标签: java selenium selenium-rc

我正在尝试自动化电子商务网站,我有一个问题如何在selenium RC中使用鼠标悬停。

看看下面的情景。

  1. 访问angara.com

  2. 转到标题菜单并将鼠标悬停在“RINGS”上,然后点击Shop by stone Section中的“Blue Sapphire”。

  3. 我坚持要点。 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"); 
    

0 个答案:

没有答案