Scrape Forbes 2000 companies list

I am trying to scrape Forbes 2000 companies list using the code provided in forum concering the billionaires list.

Unfortunatley the site seems to be structured slightly different. There are blocks of entries and the query returns only the first entry of each block. Rest works fine. Can somebody help?

Greatly appreciated, thanks!

Url: The Global 2000 2022

Sitemap:
{"_id":"forbes","startUrl":["https://www.forbes.com/lists/global2000/"],"selectors":[{"clickElementSelector":"[xmlns] path","clickElementUniquenessType":"uniqueCSSSelector","clickType":"clickOnce","delay":2000,"discardInitialElements":"discard-when-click-element-exists","id":"forbes-com","multiple":true,"parentSelectors":["_root"],"selector":"div.table:nth-of-type(n+1)","type":"SelectorElementClick"},{"delay":0,"id":"Rank","multiple":false,"parentSelectors":["forbes-com"],"regex":"","selector":"div.rank","type":"SelectorText"},{"delay":0,"id":"Name","multiple":false,"parentSelectors":["forbes-com"],"regex":"","selector":"div.organizationName","type":"SelectorText"},{"delay":0,"id":"Country","multiple":false,"parentSelectors":["forbes-com"],"regex":"","selector":"div.country","type":"SelectorText"},{"delay":0,"id":"Sales","multiple":false,"parentSelectors":["forbes-com"],"regex":"","selector":"div.revenue","type":"SelectorText"},{"delay":0,"id":"Profit","multiple":false,"parentSelectors":["forbes-com"],"regex":"","selector":"div.profits","type":"SelectorText"},{"delay":0,"id":"Assets","multiple":false,"parentSelectors":["forbes-com"],"regex":"","selector":"div.assets","type":"SelectorText"},{"delay":0,"id":"Value","multiple":false,"parentSelectors":["forbes-com"],"regex":"","selector":"div.marketValue","type":"SelectorText"}]}

@Mac Hi, you will have to update the 'Element click' selector as it does not seem to be functional.

Hi viesturs, thank you

I updated, the click element, but is still does not show the full entries.
Element preview shows the selection but data preview does not:


Here the updated code:
{"_id":"forbes","startUrl":["https://www.forbes.com/lists/global2000/"],"selectors":[{"clickElementSelector":".table-footer div:nth-of-type(n+2)","clickElementUniquenessType":"uniqueCSSSelector","clickType":"clickOnce","delay":2000,"discardInitialElements":"discard-when-click-element-exists","id":"forbes-com","multiple":true,"parentSelectors":["_root"],"selector":"div.table-row-group:nth-of-type(n+1)","type":"SelectorElementClick"},{"delay":0,"id":"Rank","multiple":false,"parentSelectors":["forbes-com"],"regex":"","selector":"div.rank","type":"SelectorText"},{"delay":0,"id":"Name","multiple":false,"parentSelectors":["forbes-com"],"regex":"","selector":"div.organizationName","type":"SelectorText"},{"delay":0,"id":"Country","multiple":false,"parentSelectors":["forbes-com"],"regex":"","selector":"div.country","type":"SelectorText"},{"delay":0,"id":"Sales","multiple":false,"parentSelectors":["forbes-com"],"regex":"","selector":"div.revenue","type":"SelectorText"},{"delay":0,"id":"Profit","multiple":false,"parentSelectors":["forbes-com"],"regex":"","selector":"div.profits","type":"SelectorText"},{"delay":0,"id":"Assets","multiple":false,"parentSelectors":["forbes-com"],"regex":"","selector":"div.assets","type":"SelectorText"},{"delay":0,"id":"Value","multiple":false,"parentSelectors":["forbes-com"],"regex":"","selector":"div.marketValue","type":"SelectorText"}]}

@Mac Please, be sure to update the selectors as seen in the screenshot.

It worked, great, thanks so much!