1

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

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

我确实知道节点可能存在问题,但我无法弄清楚。

使用的罐子:selenium-server-standalone-2.35.0.jar,junit-4.10.jar,selenium-java-2.35.0.jar,selenium-server-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();
}

}

4

2 回答 2

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")]
于 2013-10-11T16:15:02.490 回答
0

@pault 解决方案的替代方案是使用 CSS。它更干净、更快、更易读。

div#results > ol#search-results > li > div.yt-lookup-content > div.yt-lookup-meta a.yt-user-name
于 2013-10-11T17:23:40.780 回答