@Arran 已解决,selenium 不能与
text() 函数一起使用,已将 xpath 更新为 ://table[@width=200]/tbody/tr[1]/td/a
我需要操纵一个内部系统,它永远不会准时。
我将超时加载和脚本更改为 30 小时,以查看它确实是一个时间问题。
我禁用了javascript。
没有任何效果。
我创建了一个非常小的 Selenium 代码版本和一个放在我的网络服务器上的最小的纯 html 文件版本。
当我在 Chrome 上打开并在控制台上键入 $x('//table[@width=200]/tbody/tr[1]/td/a/text()') 时,xpath 得到了我想要的。
但是当我在 PhantomJSDriver 上做同样的事情时,有一个永无止境的过程(我知道超时设置为 30 小时)
当我通过 Fiddler 进行比较时,内容是相同的。
我在这里不需要 GPU,但是当我尝试 ChromeDriver 时,它会抛出与 gpu 相关的异常:
[4588:4592:0519/143844:ERROR:gpu_info_collector_win.cc(140)] 无法从评估结果中读取游戏分数。
最小的 html 是:
<html>
<head>
<title>Its a test</title>
</head>
<body>
<table width=200>
<tbody>
<tr>
<td>
<a href='http://uej65ge.com/lnk001.html'>text01</a>
</td>
<td>
<a href='http://uej65ge.com/lnk002.html'>text02</a>
</td>
</tr>
<tr>
<td>
<a href='http://uej65ge.com/lnk003.html'>text03</a>
</td>
<td>
<a href='http://uej65ge.com/lnk004.html'>text04</a>
</td>
</tr>
</tbody>
</table>
</body>
</html>
WebDriver 代码为:
//-------------------------------------------------------- ------
public void start() throws FileNotFoundException {
WebDriver driver;
driver = getPhanthomDriver();
scrapTest(driver);
}
//------------------------------------------------ -
private WebDriver getPhanthomDriver() {
WebDriver driver = null;
try {
DesiredCapabilities caps = new DesiredCapabilities();
String pathToPhantom = ConfigProvider.getStringConfig("pathToPhantom");
caps.setCapability(PhantomJSDriverService.PHANTOMJS_EXECUTABLE_PATH_PROPERTY, pathToPhantom);
caps.setJavascriptEnabled(false);
driver = new PhantomJSDriver(caps);
} catch (IOException ex) {
ConsoleHelper.printMessage("ERRO_io:" + ex.getMessage(), new Date());
} catch (Exception ex) {
ConsoleHelper.printMessage("ERRO_ex:" + ex.getMessage(), new Date());
}
return driver;
}
//------------------------------------------------ -
private WebDriver getChromeDriver() {
// [4588:4592:0519/143844:ERROR:gpu_info_collector_win.cc(140)] Could not read gaming score from assessment results.
// I dont need GPU here !!!
WebDriver driver = null;
try {
String pathToChrome = ConfigProvider.getStringConfig("pathToChrome");
System.setProperty("webdriver.chrome.driver", pathToChrome);
driver = new ChromeDriver();
} catch (Exception ex) {
ConsoleHelper.printMessage("ERRO_ex:" + ex.getMessage(), new Date());
}
return driver;
}
//------------------------------------------------ -
public void scrapTest(WebDriver driver) throws FileNotFoundException {
// this its form more than 05 minutes without return
try {
long pollingForSecond = 1;
long timeOutInSeconds = 999999;
if(driver == null){ throw new Exception("Erro, driver informado era nulo");}
String initialUrl = "http://devw7lng:8080/CPS/xpts.html";
driver.manage().timeouts().pageLoadTimeout(30, TimeUnit.HOURS);
driver.manage().timeouts().setScriptTimeout(30, TimeUnit.HOURS);
driver.get(initialUrl);
final String xpath_categoriasTexto = "'//table[@width=200]/tbody/tr[1]/td/a/text()'";
List<WebElement> elements = null;
try {
Wait<WebDriver> wait = new FluentWait<WebDriver>(driver)
.withTimeout(timeOutInSeconds, TimeUnit.SECONDS)
.pollingEvery(pollingForSecond, TimeUnit.SECONDS)
.ignoring(NoSuchElementException.class)
.ignoring(org.apache.http.NoHttpResponseException.class);
elements = wait.until(new Function<WebDriver, List<WebElement>>() {
@Override
public List<WebElement> apply(WebDriver driver) {
System.out.print(".");
return driver.findElements(By.xpath(xpath_categoriasTexto));
}
});
} catch (Exception err) {
}
boolean ok = false;
ok = ((elements != null) && (elements.size() > 0));
int x = 0;
} catch (Exception ex) {
ConsoleHelper.printMessage("ERRO_ex:" + ex.getMessage(), new Date());
}
}
//------------------------------------------------ -