- Joined
- May 17, 2019
- Messages
- 31
- Reaction score
- 0
Hi
I am using macro and make clicks 3~4 times to redirect pages, however the bounce rate is too high.
For example, I send about 370 visits, but in the analytics it only accept only 70~80 visits.
I use await WaitForLoading() function on each page, what do you think the problem is, any solution or suggestions?
The followings are part of my macro script
await WaitForLoading(); //
await Delay (Random(5000, 10000));
for(var i5 = 1;i5<=DelayCount;i5++){ // page stay
await SendMouseWheel (0, Random(-1000,1000));
await Delay(Random(10, 15)*1000);
}
await ClickByXpath('//div[@id="root"]/div[2]/div/div/div[9]/div[3]/ul/li[' + Random(1,6) + ']/a/div');
I am using macro and make clicks 3~4 times to redirect pages, however the bounce rate is too high.
For example, I send about 370 visits, but in the analytics it only accept only 70~80 visits.
I use await WaitForLoading() function on each page, what do you think the problem is, any solution or suggestions?
The followings are part of my macro script
await WaitForLoading(); //
await Delay (Random(5000, 10000));
for(var i5 = 1;i5<=DelayCount;i5++){ // page stay
await SendMouseWheel (0, Random(-1000,1000));
await Delay(Random(10, 15)*1000);
}
await ClickByXpath('//div[@id="root"]/div[2]/div/div/div[9]/div[3]/ul/li[' + Random(1,6) + ']/a/div');