如何獲取嵌套在其他表和表單標籤中的錶行。 我嘗試了幾個代碼,但似乎沒有工作。如何獲取在scrapy spider中使用xpath嵌套在其他表中的錶行
我已經使用了下面的Python代碼,但沒能得到任何
def parse(self, response):
t = response.xpath('//table[@class="DataGrid"]/tbody/tr')
for tr_obj in enumerate(t):
print(tr_obj.xpath('td[1]/text()').extract_first())
下面是HTML代碼,並在此我需要得到具有類名作爲gridTable
<html>
<body>
<table></table>
<table>
<tbody>
<tr>
<td>
<span></span>
<script></script>
<form>
<table class="dPage1">
<tbody>
<tr></tr>
<tr>
<td>
<table>
<tbody>
<tr>
<td>
<table class="gridTable">
</table>
</td>
</tr>
</tbody>
</table>
</td>
</tr>
</tbody>
</table>
</form>
</td>
</tr>
</tbody>
</table>
</body>
</html>
表
解決方案
for tr_obj in enumerate(response.xpath('//table[@class="DataGrid"]/tr')):
print(tr_obj.xpath('td[1]/text()').extract_first())
我已經與我使用的Python代碼更新,但無法獲取任何行 – Sharath
你能提供的網址是什麼? – rongon
其實網址不能透露在這裏對不起,因爲我們需要提交數據,然後它給了我們結果,但我已經指定了確切的html它看起來如何 – Sharath