New page scrape

I have success so far scraping data from https://www.portalsolar.com.br/fornecedores/empresas-de-energia-solar/lista

But I am having a hard time trying to get data from "Saiba Mais" button, I manage to open the new page, but i get no data, and I cant close the new pages.

Url: https://www.portalsolar.com.br/fornecedores/empresas-de-energia-solar/lista

Sitemap:
{"_id":"portalsolar","startUrl":["https://www.portalsolar.com.br/fornecedores/empresas-de-energia-solar/lista"],"selectors":[{"id":"elementos","type":"SelectorElement","parentSelectors":["_root","Paginas"],"selector":"div.content-field","multiple":true,"delay":0},{"id":"Empresa","type":"SelectorText","parentSelectors":["elementos"],"selector":"p.title a","multiple":false,"regex":"","delay":0},{"id":"Projetos","type":"SelectorText","parentSelectors":["elementos"],"selector":"div.additional-info:nth-of-type(3) p.additional-info-count","multiple":false,"regex":"","delay":0},{"id":"KWP","type":"SelectorText","parentSelectors":["elementos"],"selector":"div.additional-info:nth-of-type(4) p.additional-info-count","multiple":false,"regex":"","delay":0},{"id":"Paginas","type":"SelectorLink","parentSelectors":["_root","Paginas"],"selector":"div.next a","multiple":false,"delay":"200"},{"id":"saibamais","type":"SelectorElementClick","parentSelectors":["elementos"],"selector":"parent","multiple":false,"delay":"500","clickElementSelector":"button.more-info","clickType":"clickOnce","discardInitialElements":false,"clickElementUniquenessType":"uniqueText"},{"id":"endereco","type":"SelectorText","parentSelectors":["saibamais"],"selector":"address p","multiple":false,"regex":"","delay":0},{"id":"email","type":"SelectorText","parentSelectors":["saibamais"],"selector":"address span:nth-of-type(1)","multiple":false,"regex":"","delay":0},{"id":"telefone","type":"SelectorText","parentSelectors":["saibamais"],"selector":"address span:nth-of-type(2)","multiple":false,"regex":"","delay":0},{"id":"site","type":"SelectorText","parentSelectors":["saibamais"],"selector":"address span:nth-of-type(3)","multiple":false,"regex":"","delay":0}]}

A fixed a few things up.

1 - Instead of Pagination click, I use a URL Range (As each new page changes the URL in a predictable manner (see medidata)
2 - To click into each company, you used element click, it should be link click (As the URL Changes) I fixed this also.

New Site Map

{"_id":"portalsolar","startUrl":["https://www.portalsolar.com.br/fornecedores/empresas-de-energia-solar/lista?page=[1-35]"],"selectors":[{"id":"elementos","type":"SelectorElement","parentSelectors":["_root"],"selector":"div.content-field","multiple":true,"delay":0},{"id":"Empresa","type":"SelectorText","parentSelectors":["elementos"],"selector":"p.title a","multiple":false,"regex":"","delay":0},{"id":"Projetos","type":"SelectorText","parentSelectors":["elementos"],"selector":"div.additional-info:nth-of-type(3) p.additional-info-count","multiple":false,"regex":"","delay":0},{"id":"KWP","type":"SelectorText","parentSelectors":["elementos"],"selector":"div.additional-info:nth-of-type(4) p.additional-info-count","multiple":false,"regex":"","delay":0},{"id":"saibamais","type":"SelectorLink","parentSelectors":["elementos"],"selector":"div.bottom-wrapper a","multiple":false,"delay":"500"},{"id":"endereco","type":"SelectorText","parentSelectors":["saibamais"],"selector":"address p","multiple":false,"regex":"","delay":0},{"id":"email","type":"SelectorText","parentSelectors":["saibamais"],"selector":"address span:nth-of-type(1)","multiple":false,"regex":"","delay":0},{"id":"telefone","type":"SelectorText","parentSelectors":["saibamais"],"selector":"address span:nth-of-type(2)","multiple":false,"regex":"","delay":0},{"id":"site","type":"SelectorText","parentSelectors":["saibamais"],"selector":"address span:nth-of-type(3)","multiple":false,"regex":"","delay":0}]}

Great work, thank you for the very fast reply!