How to scrap table with colspan in header

Hello
I want to automatize export data from a dynamic html table but in the header, 2 column have colspan attribute (10 col in header, 12 col in table).
Then web scraper export only the 10th first column, shift the titles and skip the last 2 column.
Can I scrap table without header ?

Url: https://extranet.ffta.fr/iframe/classements/11104.html

Sitemap:
{"id":"s2hcl","startUrl":["https://extranet.ffta.fr/iframe/classements/11104.html"],"selectors":[{"id":"data_s2hcl","type":"SelectorTable","parentSelectors":["root"],"selector":"table.orbe3","multiple":true,"columns":[{"header":"Inscr.","name":"Inscr","extract":true},{"header":"Quota","name":"Quota","extract":true},{"header":"Rang","name":"Rang","extract":true},{"header":"Archer","name":"Archer","extract":true},{"header":"Club","name":"Club","extract":true},{"header":"S1","name":"S1","extract":true},{"header":"S2","name":"S2","extract":true},{"header":"S3","name":"S3_","extract":true},{"header":"Moy.","name":"Moy","extract":true},{"header":"Préinscrire","name":"Préinscrire","extract":true}],"delay":0,"tableDataRowSelector":".main tr","tableHeaderRowSelector":"thead tr"}]}

If the table selector is not working properly, you can manually create row selectors and select the columns, something like this:

{"_id":"extranet-ffta","startUrl":["https://extranet.ffta.fr/iframe/classements/11104.html"],"selectors":[{"id":"Row electors","type":"SelectorElement","parentSelectors":["_root"],"selector":".main tr","multiple":true,"delay":0},{"id":"Insc","type":"SelectorText","parentSelectors":["Row electors"],"selector":"td:nth-of-type(1)","multiple":false,"regex":"","delay":0},{"id":"Quota","type":"SelectorText","parentSelectors":["Row electors"],"selector":"td:nth-of-type(2)","multiple":false,"regex":"","delay":0},{"id":"Rang","type":"SelectorText","parentSelectors":["Row electors"],"selector":"td:nth-of-type(3)","multiple":false,"regex":"","delay":0},{"id":"Archer","type":"SelectorText","parentSelectors":["Row electors"],"selector":"td:nth-of-type(4)","multiple":false,"regex":"","delay":0},{"id":"Player","type":"SelectorText","parentSelectors":["Row electors"],"selector":"td:nth-of-type(5) a","multiple":false,"regex":"","delay":0}]}

Wow thanks so lot !
It's just what I've want to do. :+1: