Selecting Table Data on multiple pages

Hello, Im struggling to get data scraped from the next pages. I've tried using element click but it doesn't work. See image attached. I can get the data from the first page but not subsequent pages.

Url: http://example.com

Sitemap:
{id:"sitemap code"}

@mculver Hello, you will have to inspect the HTML of this page and create the selector manually.

For example: .active page + a

If you have difficulties creating this yourself, please, provide the targeted URL.

Hello, Thanks for the reply. I can't seem to get it. This is all I found in the html
"masterJquery('#evokelogo').attr('href', result.Menu.Url);
var sMenu = '

    ';
    var active = window.location.href == result.Menu.Url;
    sMenu += '
  • Home
  • ';

            for (var i = 0; i < result.Menu.Children.length; i++) {
                sMenu += buildMenuString(result.Menu.Children[i]);"