I get the response by scrapy shell. WHen I use view(reponse)
, and see the result on browser, there is tbody
tag. But I check the tbody
tag in the shell, it's lost. I want to know the reason.
It's scrapy version 1.7 and python3.6. I use Chrome Inspect tool to check the element, I find the tag <tbody>
, like that:
But I check in the shell:
[in] "tbody" in response.text
[out] False
[in] "tr" in response.text
[out] True
So, I think it's weird. why does it happen?