Scraped table cells gets stored in separate rows

Hi!

I am trying to scrape the two dynamic tables "OFFICIAL PROFESSIONAL FIGHT RECORD" and "AMATEUR CAREER STATISTICS" on fighter pages on mixedmartialarts.com, for example https://www.mixedmartialarts.com/fighter/Conor-McGregor:C280482C339CDEB6.

My problem: The "Table" selector in Webscraper only get the text in the table cells. I need to also get the links. Therefor I use the "Element" selector on the tables. I have read this thread but I can't get it to work. When I export the results, each data point is written to a separate row. I want all the datapoint (table cells) on the same row.

Url: https://www.mixedmartialarts.com/fighter/Conor-McGregor:C280482C339CDEB6

Sitemap (only a test of the table "OFFICIAL PROFESSIONAL FIGHT RECORD"):

{"_id":"test","startUrl":["https://themeadow.se/mmath/index.html"],"selectors":[{"id":"Fighter Link","type":"SelectorLink","parentSelectors":["_root"],"selector":"a","multiple":true,"delay":0},{"id":"Professional Record Table","type":"SelectorElement","parentSelectors":["Fighter Link"],"selector":"table#DataTables_Table_0","multiple":false,"delay":0},{"id":"Offical","type":"SelectorHTML","parentSelectors":["Professional Record Table"],"selector":"td[tabindex]","multiple":true,"regex":"","delay":0},{"id":"Date","type":"SelectorText","parentSelectors":["Professional Record Table"],"selector":"td:nth-of-type(2)","multiple":true,"regex":"","delay":0},{"id":"Result","type":"SelectorText","parentSelectors":["Professional Record Table"],"selector":"td:nth-of-type(3) span","multiple":true,"regex":"","delay":0},{"id":"Opponent","type":"SelectorLink","parentSelectors":["Professional Record Table"],"selector":"td:nth-of-type(4) a","multiple":true,"delay":0},{"id":"Weightclass","type":"SelectorText","parentSelectors":["Professional Record Table"],"selector":"td:nth-of-type(5)","multiple":true,"regex":"","delay":0},{"id":"Method/Event","type":"SelectorText","parentSelectors":["Professional Record Table"],"selector":"td:nth-of-type(6)","multiple":true,"regex":"","delay":0},{"id":"Round","type":"SelectorText","parentSelectors":["Professional Record Table"],"selector":"td.text-center","multiple":true,"regex":"","delay":0},{"id":"Time","type":"SelectorText","parentSelectors":["Professional Record Table"],"selector":"td.text-right","multiple":true,"regex":"","delay":0},{"id":"Title Fight","type":"SelectorHTML","parentSelectors":["Professional Record Table"],"selector":"td:nth-of-type(9)","multiple":true,"regex":"","delay":0}]}

Thank you!