我的任务是打开浏览器,转到 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();
}
}