"Next" button doesn't work :-(

Here's my site map..
{"_id":"LinuxRecruit","startUrl":["https://www.linuxrecruit.co.uk/jobs"],"selectors":[{"id":"pagination","paginationType":"clickMore","parentSelectors":["_root","pagination"],"selector":"a.pagination__btn","type":"SelectorPagination"},{"id":"view-more","linkType":"linkFromHref","multiple":true,"parentSelectors":["pagination"],"selector":"a.jc__btn","type":"SelectorLink"},{"id":"specialism","multiple":false,"parentSelectors":["view-more"],"regex":"","selector":"li:nth-of-type(1) p.sj__descr","type":"SelectorText"},{"id":"location","multiple":false,"parentSelectors":["view-more"],"regex":"","selector":"li:nth-of-type(3) p.sj__descr","type":"SelectorText"},{"id":"job-type","multiple":false,"parentSelectors":["view-more"],"regex":"","selector":"li:nth-of-type(2) p.sj__descr","type":"SelectorText"},{"id":"salary","multiple":false,"parentSelectors":["view-more"],"regex":"","selector":"li:nth-of-type(4) p.sj__descr","type":"SelectorText"},{"id":"description","multiple":false,"parentSelectors":["view-more"],"regex":"","selector":".section-job__descr-block p","type":"SelectorText"},{"id":"contact-name","multiple":false,"parentSelectors":["view-more"],"regex":"","selector":"div.rb__name","type":"SelectorText"},{"id":"contact-phone","multiple":false,"parentSelectors":["view-more"],"regex":"","selector":"a.rb__tel","type":"SelectorText"},{"id":"contact-email","multiple":false,"parentSelectors":["view-more"],"regex":"(?<=mailto:)([\\w.-]+@[\\w.-]+)","selector":".rb__social-box","type":"SelectorHTML"}]}

I'm trying to get the pagination working but none of the relevant formats work. The Next Page button looks like this.

<a href="" class="pagination__btn pagination__btn--next" onclick="load('jobs/search', 'consultant=', 'page=3')">Next page</a>

Does anyone have any idea how to fix this?

Thanks in advance!

Morgan

@morgan Hi, it seems that current 'pagination' selector matches both of the pagination buttons(previous and next).

To fix this, please, be sure to specify the selector to target only the Next button - a.pagination__btn--next

Dear ViestursWS,
That worked perfectly. It's so obvious now when I look at it, I think I didn't fully understand the selector process and that in the event of there being multiple class attributes in a href, choose the most specific class. I got more hung up on the fact that it was using a javascript call to a function for pagination, but that that call format did not match the Pagination Type exactly, and that was where the fault probably was. Wrong. I needed to be more exact and chose pagination__btn--next instead of just pagination__btn in the a href class.

Anyway, thanks so much for your help which was invaluable! Much appreciation, thanks and best wishes for Christmas and the New Year.

Yours sincerely,

Morgan