Scrape from pagination

Describe the problem.

Hi, I want to scrap the Directors/Senior management from the details tab

I currently encounter two problems:

  1. I can not switch to the details tab, I tried selector link and element link selector but both failed.
  2. I want the scraped data to be something like this:

|name|position|
|xxx|xxx|
|xxx|xxx|
...

However, It seems I can not select the name and position as an element and then separately select the text as the tutorial does.

Can anyone help me with the two problems?

Url: https://www.asx.com.au/asx/share-price-research/company/1PG

Sitemap:
{"_id":"test_tab","startUrl":["https://www.asx.com.au/asx/share-price-research/company/1PG"],"selectors":[{"id":"details","type":"SelectorElementClick","parentSelectors":["_root"],"selector":"div.primary","multiple":false,"delay":0,"clickElementSelector":"li.ng-isolate-scope.active","clickType":"clickOnce","discardInitialElements":false,"clickElementUniquenessType":"uniqueText"},{"id":"name","type":"SelectorText","parentSelectors":["details"],"selector":"table.table-people:nth-of-type(2) th.ng-binding","multiple":true,"regex":"","delay":0},{"id":"postion","type":"SelectorText","parentSelectors":["details"],"selector":"table.table-people:nth-of-type(2) td.ng-binding","multiple":true,"regex":"","delay":0}]}