- Joined
- Feb 23, 2018
- Messages
- 225
- Reaction score
- 35
- Achievement
Hello, If you wonder what's bounce rate is, please read https://en.wikipedia.org/wiki/Bounce_rate
So, to reduce the bounce rate as well as increase time on site, we need to make some interactions, in this case, I would like to click on a random link on my site. The script may be simple like this
It's should click to a random link for every 10s.
Or I can delay in a random time range like this
You can custom the script to make the interaction more like-human.
Let try it and see if it improving the bounce rate and time-on-site issue
So, to reduce the bounce rate as well as increase time on site, we need to make some interactions, in this case, I would like to click on a random link on my site. The script may be simple like this
JavaScript:
while(true)
{
await Delay (10000,);
await ClickRandomInternalLink();
}
Or I can delay in a random time range like this
JavaScript:
while(true)
{
await Delay (10000, 20000);
await ClickRandomInternalLink();
}
Let try it and see if it improving the bounce rate and time-on-site issue
Last edited: