Parent element does not contain selected element

Describe the problem.
I'm trying to select data from a table on Guiness fantasy six nations website.

I have set up a selector to change the view to the one I want (here you can see it's the right one that says 'Player Stats'

I've then set up a pagination, pretty happy this works:

Then I run into trouble. As per the video tutorials, I've tried to create a 'player_wrapper' selector, but am struggling. I can't get the element select to get the whole line, it only automatically senses the first box for player name:

I then shift+click to get the other boxes:


I then save that selector.

But then when I come to try to select the text in the wrapped elements, it's only registered the name, i get the 'Parent element does not contain selected element'.

How do i get the parent element to include all the cells in that row of the table?

Url: Guinness Six Nations Fantasy Rugby Game (Will need a free login)

Sitemap:
{"_id":"week_statistics","startUrl":["https://fantasy.sixnationsrugby.com/#/game/play/me"],"selectors":[{"clickElementSelector":"i.fs-icon-classement","clickElementUniquenessType":"uniqueText","clickType":"clickOnce","delay":2000,"discardInitialElements":"do-not-discard","id":"select_player_stats","multiple":true,"parentSelectors":["_root"],"selector":"i.fs-icon-classement","type":"SelectorElementClick"},{"id":"pagination","paginationType":"auto","parentSelectors":["_root","pagination"],"selector":".ctr-statistiques .mat-paginator-navigation-next path","type":"SelectorPagination"},{"id":"player_wrapper","multiple":true,"parentSelectors":["pagination"],"selector":"tr:nth-of-type(1) td","type":"SelectorElement"},{"id":"name","multiple":false,"parentSelectors":["player_wrapper"],"regex":"","selector":"a","type":"SelectorText"}]}

Thank you very much!!!