Table scrape problem

Hello everyone, I'm trying to get the data from this table, and has this header that has image and can not get the column. And I'd also like to get the selector number there, half-time or full-time.
Screenshot_1

Include a link to the page you're trying to scrape.

OK, this "And I'd also like to get the selector number there, half-time or full-time." I can do. But the table I' don't get the column, because this no have a text, and if a change the header for a row, in the page works, but other page for scraping don't works.
In preview aways works, but in scrapping gets null.

Would also need to see the part of the source that contains the table. You can also scrape using the element selector instead if needs be. To do so you would make an element selector for something like 'tbody tr' and select multiple and then create a text selector for each td such as 'td:nth-of-type(3)' for the 3rd column and make the previous element as its parent. And just to double-check, but does this table not use table headers?

1 Like

how did you solve it?