gpt4 book ai didi

java - 无法使用带有 Selenium/testNG 的 xpath 节点获取 yt channel 名称

转载 作者:行者123 更新时间:2023-12-01 04:17:16 25 4
gpt4 key购买 nike

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

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

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

使用的 jar :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();
}

}

最佳答案

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

关于java - 无法使用带有 Selenium/testNG 的 xpath 节点获取 yt channel 名称,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/19321404/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com