How to Paginate pages on a site that the URL does not change?

@Need-Help

Hi,

first of all you have to avoid special characters in URLs, like brackets and quotes, and use, say, a URL Encoder (available at W3Schools). It will be correctly decoded by your browser afterwards anyway.

The correctly encoded URL you brought should look like this:

https://wuzzuf.net/search/jobs/?start=0&filters%5Bcountry%5D%5B0%5D=Egypt&filters%5Bcountry%5D%5B1%5D=Saudi%20Arabia&filters%5Bcountry%5D%5B2%5D=United%20Arab%20Emirates&filters%5Bcountry%5D%5B3%5D=Bahrain&filters%5Bcountry%5D%5B4%5D=Kuwait&filters%5Bcountry%5D%5B5%5D=United%20States&filters%5Bcountry%5D%5B6%5D=China&filters%5Bcountry%5D%5B7%5D=Oman

So now you can add pagination brackets, as there's a number hidden in URL:

https://wuzzuf.net/search/jobs/?start=0 ... rest of url

Adding brackets:

https://wuzzuf.net/search/jobs/?start=[1-9]0 ... rest of url

That will result in 9 pages full of results, no button clicks needed at all.

Thank you for your help :wink: