我正在使用这段代码,试图弄清楚如何通过 XPATH 提取标题信息,并且由于它位于内部网络上,因此我无法访问 Firepath 之类的东西。
<div style="float:left">
<table border="0">
<tbody>
<tr width="100%">
<td valign="top">Code that does not matter</td>
<td colspan="2">
<span class="textinfo">
<a href="http.....">
<b> HI! I am the TITLE!</b>
</a>
</span>
</td>
</tr>
<tr></tr>
<tr></tr>
<tr width="100%">
<td valign="top">Code that does not matter</td>
<td colspan="2">
<span class="textinfo">
<a href="http.....">
<b> HI! Here is another TITLE!</b>
</a>
</span>
</td>
</tr>
</tbody>
</table>
</div>
这种情况持续了一段时间。基本上有 10 个结果,我试图弄清楚如何获得所有标题。有任何想法吗?我是否提供了足够的信息?谢谢!