How to scrape for different pages

Describe the problem.
there are multiple pages inside any side... how scrape all those in one go.
also...
how to scraps those which open new tabs.

Below link contains multiple pages...
Url: The Top Private B2B SaaS Companies

Below link will open the new link in new tab once you click "Learn More"

Since they use different URL you can use Link Selector
https://webscraper.io/documentation/selectors/link-selector

thanks it worked .. but websites like
The Top Private B2B SaaS Companies where it contains arond 1300 pages... web scrapper stopped after 311 page.
sitemap i used:
{"_id":"getlatka_pages","startUrl":["The Top Private B2B SaaS Companies > a","multiple":true,"delay":0},{"id":"saas_name","parentSelectors":["_root","pagination"],"type":"SelectorLink","selector":"a.cells_link__PfQot","multiple":true,"delay":0},{"id":"saas_links","parentSelectors":["saas_name"],"type":"SelectorLink","selector":"a[aria-label='personal website url']","multiple":false,"delay":0}]}

Also website like this which has "show more" button to load more item.. how can we scrape them.
I tried to use " Pagination(Beta)" selector but something is wrong. I am not able to do it properly.
https://www.capterra.com/web-to-print-software/
I used this site map for Capterra:

{"_id":"capterra_showmore_button","startUrl":["https://www.capterra.com/categories"],"selectors":[{"delay":0,"id":"category","multiple":true,"parentSelectors":["_root"],"selector":".show a","type":"SelectorLink"},{"id":"pagination","paginationType":"auto","parentSelectors":["category","pagination"],"selector":".nb-button-secondary div.nb-mx-3xs","type":"SelectorPagination"},{"delay":0,"id":"saas_name","multiple":true,"parentSelectors":["category","pagination"],"regex":"","selector":"a.nb-link[target='_blank']","type":"SelectorText"},{"delay":0,"id":"saas_link","multiple":true,"parentSelectors":["category","pagination"],"selector":".nb-hidden a.nb-button-preferred","type":"SelectorLink"}]}

Getlake
you are using two Link selectors side by side. it will not work properly. Also, the selector link was aiming for the "Next" button.
Next button is not usually supported. Have in mind that the "load more" button is not the same as the Next button. One loads more content on the same page, and the other changes the existing content to other (sometimes also refresh the page).

In this case using pagination will work.

You may also use the dynamic link on metadata
https://getlatka.com/saas-companies?page=[1-1300]

try this:
{"_id":"forum_getlatka","startUrl":["https://getlatka.com/saas-companies?page=1"],"selectors":[{"id":"pagination","parentSelectors":["_root","pagination"],"paginationType":"auto","selector":".pagination_pages_wrapper__jaoYz a","type":"SelectorPagination"},{"id":"saas_name","parentSelectors":["pagination"],"type":"SelectorLink","selector":"a.cells_link__PfQot","multiple":true,"delay":0},{"id":"saas_links","parentSelectors":["saas_name"],"type":"SelectorLink","selector":"a[aria-label='personal website url']","multiple":false,"delay":0}]}

Capterra
there are two main issues here.
1 - usually the selector to grab attributes is not set as Multiple. Otherwise content from other selectors would not line up in the same line. So you always want to use an Element select (that is set as Multiple) to group up content that will be retrieved not set as Multiple.

2 - Seems that you trust too much the "select" feature of Webscrape. Even though it is helpful, many times you need to understand the HTML and manually write the correct selector.
ex.: the .show does not show during the scrape, so the process stops for not finding matches.

Try this
{"_id":"forum_capterra","startUrl":["https://www.capterra.com/categories"],"selectors":[{"id":"category","parentSelectors":["_root"],"type":"SelectorLink","selector":".browse a","multiple":true,"delay":0},{"id":"pagination","parentSelectors":["category"],"type":"SelectorElementClick","clickElementSelector":".nb-button-secondary div.nb-mx-3xs","clickElementUniquenessType":"uniqueText","clickType":"clickMore","delay":1500,"discardInitialElements":"discard","multiple":true,"selector":"div.nb-px-0"},{"id":"saas_name","parentSelectors":["saas"],"type":"SelectorText","selector":"h2 a.nb-link","multiple":false,"delay":0,"regex":""},{"id":"saas_link","parentSelectors":["saas"],"type":"SelectorLink","selector":"div.nb-hidden > a.nb-button","multiple":false,"delay":0},{"id":"saas","parentSelectors":["pagination"],"type":"SelectorElement","selector":"div[data-testid=\"product-card\"]","multiple":true,"delay":0}]}

Thanks much!!!! It is great learning.
Is there anything for mouse over events like in this site.. once you go over saas category it will show you the category list.

My intention is same like going over each category and and scraps the links for saas companies from "visit website" button.

In this case, you don´t need to hover to get the links.
Usually, menu options do not load dynamically, they are just hidden through CSS.

Look here:

You may use a link selector with this CSS selector .listing-cats a
image

There are 202 links listed.

Hello I am back with one of my doubt. How to fetch those links which are being redirected.
Means once you click the button it will redirect you to new url. which is my intentions to captures.
Like in the below link

once you are inside categories.. there are multiple pages... each page contains "Try" "Free Try" Demo and Try" buttons like this...
once you click these.. it will land you to the product page and I want to captures those product page link.
Any help here.
I used this sitemap: ( Not Working )

{"_id":"logiciels_pro","startUrl":["https://www.logiciels.pro/"],"selectors":[{"id":"Categories","parentSelectors":["_root"],"type":"SelectorLink","selector":".vc_col-sm-3 a","multiple":true,"delay":0},{"id":"saas_links","parentSelectors":["Categories","pagination"],"type":"SelectorLink","selector":"a.re_track_btn","multiple":true,"delay":0},{"id":"pagination","parentSelectors":["Categories","pagination"],"type":"SelectorLink","selector":"a.page-numbers","multiple":true,"delay":0},{"id":"saas_name","parentSelectors":["Categories","pagination"],"type":"SelectorText","selector":"h3.font130","multiple":true,"delay":0,"regex":""}]}