无法使用带有Selenium / testNG的xpath节点获取yt通道名称

时间:2013-10-11 15:03:44

标签: java html xpath selenium testng

我的任务是打开浏览器,转到YT,输入搜索词“qtp”,点击“搜索”按钮。在结果页面上,我想获取频道名称。为了实现这一点,我使用Firebug应用程序为前3个通道名称获取以下路径:

当我使用Selenium / testNG执行以下代码时,我捕获了异常,其中指出“未找到元素”。 我只用Selenium尝试了类似的代码(没有TestNG),但仍然没有用。尝试使用WebDriver,仍然无法正常工作。

我确实理解它可能与节点有些问题,但我无法弄明白。

使用的罐子: 硒 - 服务器 - 独立-2.35.0.jar,junit的-4.10.jar,硒 - java的2.35.0.jar,硒 - 服务器2.35.0.jar;

import org.testng.annotations.AfterTest;
import org.testng.annotations.BeforeTest;
import org.testng.annotations.Test;
import com.thoughtworks.selenium.DefaultSelenium;
import com.thoughtworks.selenium.SeleneseTestCase;
import com.thoughtworks.selenium.SeleniumException;


public class YT1 extends SeleneseTestCase{
@BeforeTest
public void beforeTest(){
System.out.println("Before");
selenium = new DefaultSelenium("localhost", 4444,"*firefox","http://www.youtube.com"); 
    selenium.start();
}

@Test
public void myTest() throws Exception{
    System.out.println("Test");
    selenium.open("/");
    selenium.type("//*[@id='masthead-search-term']", "qtp");
    selenium.click("//*[@id='search-btn']");
    Thread.sleep(3000);
    try {
    System.out.println(selenium.getText("//html/body/div[2]/div[4]/div/div[3]/div/div/div[2]/div[2]/div[2]/div[2]/ol/li[1]/div[2]/div/ul/li/a"));
    }
    catch (SeleniumException se1){
        System.out.println("Element not Found because: " + se1);
    }
    try {
    System.out.println(selenium.getText("//html/body/div[2]/div[4]/div/div[3]/div/div/div[2]/div[2]/div[2]/div[2]/ol/li[2]/div[2]/div/ul/li/a"));
        }
        catch (SeleniumException se2){
            System.out.println("Element not Found because: " + se2);
        }
    try {
        System.out.println(selenium.getText("//html/body/div[2]/div[4]/div/div[3]/div/div/div[2]/div[2]/div[2]/div[2]/ol/li[3]/div[2]/div/ul/li/a"));
        }
        catch (SeleniumException se3){
            System.out.println("Element not Found because: " + se3);
    }
}
@AfterTest
public void ShutDown(){
    System.out.println("After Test");
    selenium.close();
}

}

2 个答案:

答案 0 :(得分:0)

我会使用以下XPath表达式:

.//div[@id="results"]
    /ol[@id="search-results"]/li
        /div[contains(@class, "yt-lockup-content")]
            /div[contains(@class, "yt-lockup-meta")]
                //a[contains(@class, "yt-user-name")]

答案 1 :(得分:0)

@ pault解决方案的替代方案是使用CSS。 It's cleaner, quicker, and more readable.

div#results > ol#search-results > li > div.yt-lookup-content > div.yt-lookup-meta a.yt-user-name