Reputation: 433
I am trying to scrape data off the site below however it seems I can't seem to find a css selector where it will display a correct output.
For this website, I have tried: .row:nth-child(1) span
as well as other css selectors.
I am yet to find a working xpath as it is not like Nth-childs to try to see if it makes any difference
I've posted my full code here
Upvotes: 0
Views: 68
Reputation: 52665
Below XPath should return you desired output:
//tr[starts-with(@id, "twirl_element_")][1]/td[@class="win odds"]//span
Upvotes: 1