While scraping this page:
in google chrome key F12, I see the xpath
t//*[@id="equity_future"]
has a thead and a tbody. The tbody is available.
However, inside python3 debugger, with
wdriver = webdriver.PhantomJS()
wdriver.get(url)
soup = BeautifulSoup(wdriver.page_source,"lxml")
I do see the thead children but the tbody appears empty
<tbody>
</tbody>
Any ideas?
29,879
29,412