1 min readDec 6, 2019
Hi Marc-Antoine, unfortunately it’s impossible to switch pages from the console.
To do so, we would need a runtime environment such as nodeJS.
With node, it gets easy then since HackerRank learderboard is following a “classical” and incremental url model ending with: ?page=X
Then we can script the increase by 1 for X with something like that:
var offset = Number(window.location.search.split(‘?’)[0].split(‘=’)[1]);
window.location.search = window.location.search.replace(‘offset=’+ offset, ‘offset=’+(offset + 1));
But easier solutions do exist… Contact me at noe.antona@sonarsource.com if you want some more hints