Problem with paging

Hello!
Thanks you very much for reading, I need to download the information of the job offers from that link that covers a profession and a specific city, what happens is that I do the steps so that I read all the pages but I do not get only the first page with the filters that I place and from there it jumps to another page that I don't need and the scrape is closed

Url: Ofertas de Empleo Administración de empresas en Cali Abril 2021 - elempleo.com

Sitemap:
{id:"sitemap code"}

Console:
AppMeasurement Debug: https://eltiempo.112.2o7.net/b/ss/eltiempoelempleoprod/1/H.27.5/s58937563102754?AQB=1&ndh=1&t=18%2F3%2F2021%2011%3A3%3A54%200%20300&fid=2371EB527F7D3114-2AED7E8E1783B7FE&ce=UTF-8&pageName=elempleo%3A%20personas%3A%20resultados%20de%20busqueda&g=https%3A%2F%2Fwww.elempleo.com%2Fco%2Fofertas-empleo%2FCali%3F%26trabajo%3DAdministraci%C3%B3n%20de%20empresas&r=https%3A%2F%2Fwww.elempleo.com%2Fco%2F&cc=COP&ch=elempleo%3A%20personas%3Abusquedas&server=www.elempleo.com&events=event1%2Cevent2&v2=D%3Dc3&c3=Sunday|12%3A00PM&v3=Administración%20de%20empresas&c4=D%3Dv3&v4=D%3DpageName&c5=elempleo%3A%20personas%3A%20home%20cross&v5=New&c6=D%3Dr&v6=D%3Dc8&c7=1&v7=%2B1&c8=First%20Visit&c10=D%3Dg&c15=D%3Dv24&v22=D%3Dch&v23=D%3Dserver&v24=149&v76=https%3A%2F%2Fwww.elempleo.com%2Fco%2Fofertas-empleo%2FCali%3F%26trabajo%3DAdministraci%C3%B3n%20de%20empresas&h1=elempleo%3Apersonas%3Aresultados%20de%20busqueda&s=1366x768&c=24&j=1.6&v=N&k=Y&bw=1366&bh=315&p=Chrome%20PDF%20Plugin%3BChrome%20PDF%20Viewer%3BNative%20Client%3B&AQE=1
https://eltiempo.112.2o7.net/b/ss/eltiempoelempleoprod/1/H.27.5/s58937563102754?AQB=1
ndh=1
t=18/3/2021 11:3:54 0 300
fid=2371EB527F7D3114-2AED7E8E1783B7FE
ce=UTF-8
pageName=elempleo: personas: resultados de busqueda
g=https://www.elempleo.com/co/ofertas-empleo/Cali?&trabajo=Administraci%C3%B3n%20de%20empresas
r=https://www.elempleo.com/co/
cc=COP
ch=elempleo: personas:busquedas
server=www.elempleo.com
events=event1,event2
v2=D=c3
c3=Sunday|12:00PM
v3=Administración de empresas
c4=D=v3
v4=D=pageName
c5=elempleo: personas: home cross
v5=New
c6=D=r
v6=D=c8
c7=1
v7=+1
c8=First Visit
c10=D=g
c15=D=v24
v22=D=ch
v23=D=server
v24=149
v76=https://www.elempleo.com/co/ofertas-empleo/Cali?&trabajo=Administraci%C3%B3n%20de%20empresas
h1=elempleo:personas:resultados de busqueda
s=1366x768
c=24
j=1.6
v=N
k=Y
bw=1366
bh=315
p=Chrome PDF Plugin;Chrome PDF Viewer;Native Client;
AQE=1

Hi @Alejandro_Perez_Lugo In this case, you will need to use the Element-Click selector, because the link stays the same each of the times you click on the next page.

See my sitemap example:

{"_id":"elempleo-com","startUrl":["https://www.elempleo.com/co/ofertas-empleo/Cali?&trabajo=Administraci%C3%B3n%20de%20empresas"],"selectors":[{"id":"wrapper-click-pagination","type":"SelectorElementClick","parentSelectors":["_root"],"selector":"div.result-item","multiple":true,"delay":2000,"clickElementSelector":"a[aria-label=\"Next\"]","clickType":"clickMore","discardInitialElements":"do-not-discard","clickElementUniquenessType":"uniqueCSSSelector"},{"id":"title","type":"SelectorText","parentSelectors":["wrapper-click-pagination"],"selector":"a","multiple":false,"regex":"","delay":0}]}

Helpful Video: Web Scraper << How to >> Set up pagination with "Next" button using Element Click selector

Hope it helps.