我正在学习如何使用htmlunit,并在尝试获取表元素时发现了一个问题。 我使用以下Java代码:
for (final HtmlTableRow row : table.getRows()) {
System.out.println("Found row");
for (final HtmlTableCell cell : row.getCells()) {
System.out.println(" Found cell: " + cell.asText());
}
}
如htmlunit web页面中所述。我试图从代码中获取元素,其中元素来自document.write()
函数,因此我得到了空元素。我在谷歌搜索了答案但没有结果。