Need help scraping table from this site

This is a dynamic table having multiple tables inside it. the problem is that i have to manually click on each "+" sign to expand tables. I need the data from the "Market" tables which are present inside "District". I tried using element click but i am not having success with that. can anyone experienced give this a look please. It seems fairly simple but i am not able to get it.

Url:Agriculture Marketing

@baldeeptiwana Hi, you should be able to open all of the tables by using an 'Element click' selector and extract the data using 'Element' in a combination with 'Text' selectors.

Example:

{"_id":"agmarknet-gov-in","startUrl":["https://agmarknet.gov.in/SearchCmmMkt.aspx?Tx_Commodity=1&Tx_State=MP&Tx_District=0&Tx_Market=0&DateFrom=11-Jan-2000&DateTo=11-Jan-2023&Fr_Date=11-Jan-2000&To_Date=11-Jan-2023&Tx_Trend=1&Tx_CommodityHead=Wheat&Tx_StateHead=Madhya+Pradesh&Tx_DistrictHead=--Select--&Tx_MarketH"],"selectors":[{"clickElementSelector":"input[src*=\"images/plus.png\"]","clickElementUniquenessType":"uniqueCSSSelector","clickType":"clickOnce","delay":2000,"discardInitialElements":"do-not-discard","id":"expand-table","multiple":true,"parentSelectors":["_root"],"selector":"body","type":"SelectorElementClick"},{"id":"market-wrapper","multiple":true,"parentSelectors":["_root"],"selector":"#cphBody_GridArrivalData_gvOrders_0 .tableagmark tr:nth-of-type(n+2)","type":"SelectorElement"},{"id":"market","multiple":false,"parentSelectors":["market-wrapper"],"regex":"","selector":"td:nth-of-type(1)","type":"SelectorText"},{"id":"arrival","multiple":false,"parentSelectors":["market-wrapper"],"regex":"","selector":"td:nth-of-type(2)","type":"SelectorText"}]}