How to scrap table after click "View Fitment" button from this website

Please anyone help, I am new to this scraping.
How do I scrap the table after clicking the "View Fitment" button

The table shows off the motorcycle model.
Please someone helps me by starting with 2 of these links.

https://www.tucker.com/ITMINQ06?Item_Seq=3&item=203004
https://www.tucker.com/ITMINQ06?Item_Seq=3&item=203006

@tortor55 Hello, if you are only targeting the 'fitement' table you will have to use an 'Element click' selector.

Example:

{"_id":"tucker-com","startUrl":["https://www.tucker.com/ITMINQ06?Item_Seq=3&item=203004"],"selectors":[{"clickElementSelector":"span.view-fitment-link","clickElementUniquenessType":"uniqueCSSSelector","clickType":"clickOnce","delay":1200,"discardInitialElements":"discard-when-click-element-exists","id":"view-fitment","multiple":true,"parentSelectors":["_root"],"selector":".show tbody tr","type":"SelectorElementClick"},{"id":"make","multiple":false,"parentSelectors":["view-fitment"],"regex":"","selector":"td:nth-of-type(1)","type":"SelectorText"},{"id":"model","multiple":false,"parentSelectors":["view-fitment"],"regex":"","selector":"td:nth-of-type(2)","type":"SelectorText"},{"id":"year","multiple":false,"parentSelectors":["view-fitment"],"regex":"","selector":"td:nth-of-type(3)","type":"SelectorText"},{"id":"notes","multiple":false,"parentSelectors":["view-fitment"],"regex":"","selector":"td:nth-of-type(4)","type":"SelectorText"}]}

Thank you very very much!