I need help with Pagination

I need to extract details about garages from google Maps and I am able to extract all the data one the first page, but when I use pagination methods mentioned in the video tutorials, it goes in an infinite loop where it keeps switching between two pages and does not even scrape any data from the pages. So I have removed the pagination part of the Sitemap and am uploading it here. Please I need help with this Sitemap as soon as possible.

Url: https://www.google.com/search?rlz=1C1CHZL_enIN807IN807&sxsrf=ACYBGNRJo2AtXlHFRqVD8OyJ8iv65Qcbtg:1576824644750&q=auto+parts+dealers+in+mumbai&npsic=0&rflfq=1&rlha=0&rllag=19013551,72838775,6850&tbm=lcl&ved=2ahUKEwjP7srG0cPmAhW0W3wKHSVWBEMQjGp6BAgMEEI&tbs=lrf:!1m4!1u3!2m2!3m1!1e1!1m4!1u2!2m2!2m1!1e1!1m4!1u16!2m2!16m1!1e1!1m4!1u16!2m2!16m1!1e2!2m1!1e2!2m1!1e3!2m1!1e16!3sIAE,lf:1,lf_ui:10&rldoc=1#rlfi=hd:;si:;mv:[[19.2216943,72.90405690000001],[18.9407374,72.8096991]];tbs:lrf:!1m4!1u3!2m2!3m1!1e1!1m4!1u2!2m2!2m1!1e1!1m4!1u16!2m2!16m1!1e1!1m4!1u16!2m2!16m1!1e2!2m1!1e2!2m1!1e3!2m1!1e16!3sIAE,lf:1,lf_ui:10

Sitemap:
{"_id":"final1","startUrl":["https://www.google.com/search?sxsrf=ACYBGNSlTRZaWx4fPd76C0EaRXMhx1hoNA:1576822663955&q=auto+parts+dealers+in+mumbai&npsic=0&rflfq=1&rlha=0&rllag=18956539,72816163,114&tbm=lcl&ved=2ahUKEwiZ24iWysPmAhVSzTgGHfDhCOsQjGp6BAgMEEY&tbs=lrf:!1m4!1u3!2m2!3m1!1e1!1m4!1u2!2m2!2m1!1e1!1m4!1u16!2m2!16m1!1e1!1m4!1u16!2m2!16m1!1e2!2m1!1e2!2m1!1e3!2m1!1e16!3sIAE,lf:1,lf_ui:10&rldoc=1#rlfi=hd:;si:;mv:[[19.1270889,72.9222578],[19.056971,72.8406914]];start:20"],"selectors":[{"id":"link","type":"SelectorElementClick","parentSelectors":["_root"],"selector":".immersive-container > div:nth-of-type(1)","multiple":true,"delay":0,"clickElementSelector":".rlfl__tls div:nth-of-type(n+2) div:nth-of-type(n+2) .dbg0pd div","clickType":"clickOnce","discardInitialElements":"do-not-discard","clickElementUniquenessType":"uniqueText"},{"id":"wrapper","type":"SelectorElement","parentSelectors":["link"],"selector":"div.g","multiple":true,"delay":0},{"id":"name","type":"SelectorText","parentSelectors":["wrapper"],"selector":".kno-ecr-pt span","multiple":false,"regex":"","delay":0},{"id":"Address","type":"SelectorText","parentSelectors":["wrapper"],"selector":".EfDVh span.LrzXr","multiple":false,"regex":"","delay":0},{"id":"Contact","type":"SelectorText","parentSelectors":["wrapper"],"selector":".LrzXr span span","multiple":false,"regex":"","delay":0},{"id":"Type","type":"SelectorText","parentSelectors":["wrapper"],"selector":"span.YhemCb","multiple":false,"regex":"","delay":0}]}

Try this one, which will stop at page 5, giving you 100 results (each page has 20 results). It will actually click through to page 6, which is identified by the text " Showing results 101 - 120"), but it only scrapes pages 1-5.

If you want more/fewer pages, you'll need to do some math to figure out the page ranges and then change the Paginator selector,
div.section-layout-root:not(":contains('101 - 120')")

{"_id":"google-maps-paginate","startUrl":["https://www.google.com/maps/search/auto+parts+mumbai/"],"selectors":[{"id":"Row wrappers","type":"SelectorElement","parentSelectors":["_root","Paginator"],"selector":"div.section-result:nth-of-type(n+1) div.section-result-content","multiple":true,"delay":0},{"id":"Name","type":"SelectorText","parentSelectors":["Row wrappers"],"selector":".section-result-title span","multiple":false,"regex":"","delay":0},{"id":"Rating","type":"SelectorText","parentSelectors":["Row wrappers"],"selector":"span.cards-rating-score","multiple":false,"regex":"","delay":0},{"id":"Addr","type":"SelectorText","parentSelectors":["Row wrappers"],"selector":"span.section-result-location","multiple":false,"regex":"","delay":0},{"id":"Paginator","type":"SelectorElementClick","parentSelectors":["_root"],"selector":"div.section-layout-root:not(\":contains('101 - 120')\")","multiple":false,"delay":"2500","clickElementSelector":"span[class$='button-next-icon']","clickType":"clickMore","discardInitialElements":"discard-when-click-element-exists","clickElementUniquenessType":"uniqueCSSSelector"}]}