Ok. Maybe I understand it.
The refresh after the scroll is too fast and Google AdSense see the navigation as a fraud.
We need to insert a delay before window.location.reload();
I tried some codes but they don’t work.
Could you suggest me something
I tried
try {
Thread.sleep(1000); //1000 milliseconds is one second.
} catch(InterruptedException ex) {
Thread.currentThread().interrupt();
}