无法使用Selenium中的xpath节点获取yt频道名称/ testNG

我的任务是打开浏览器,转到YT,输入搜索词“qtp”,单击搜索按钮。在结果页面上,我想要获取频道名称。为了达到这个目的,我使用Firebug应用程序获得了第一个3通道名称的以下路径:无法使用Selenium中的xpath节点获取yt频道名称/ testNG

当我使用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();

}

}

回答:

我将使用以下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")]

回答:

的替代@ 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 

以上是 无法使用Selenium中的xpath节点获取yt频道名称/ testNG 的全部内容, 来源链接: utcz.com/qa/258010.html

回到顶部