Add something to a string

Hello,

if I open a Category I get all items by using "?limit=2000" at the end of the string.

But how could I tell this to the webscraper?

This is the Webscraper code: .list-view-alphabetical a

And this opens step by step all categories. How can I add the ?limit=2000 to it?

Thank you
Steveee

You can add an nth selector to limit it. Something like:

.list-view-alphabetical:nth-of-type(-n+2000) a

You should test first with a smaller number, say 5, and use Element preview to see if it works.

Thank you for helping. But I do not think that this works.

The Link in the website comes without the ?limit=2000

So e.q. https://www.domain.de/toern-produkte.html.

But webscraper should open it with

https://www.domain.de/toern-produkte.html?limit=2000

Do you have an idea?

Thank you
Stephan