How to reduce bounce rate

fastsnail78

New Member
Joined
May 17, 2019
Messages
34
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');
 

fastsnail78

New Member
Joined
May 17, 2019
Messages
34
Reaction score
0
brusshless1 post_id=1927 time=1559737116 user_id=384 said:
Browser setting -> Disable Cookies Rate -> "1"
Thank you so much for the advice,

I was used to set it to 10, what about "0" ? it's worse than "1"?
 

daniel

Administrator
Staff member
VIP
Joined
Feb 23, 2018
Messages
268
Reaction score
36
Achievement
Hi, did you read this
https://forum.9hits.com/viewtopic.php?f=8&t=11
 

fastsnail78

New Member
Joined
May 17, 2019
Messages
34
Reaction score
0
daniel post_id=1931 time=1559788253 user_id=2 said:
Hi, did you read this
https://forum.9hits.com/viewtopic.php?f=8&t=11
Thanks Daniel, I already read it.
The problem is the visit does not seem to be delivered to final target page. do not know why.
maybe some clicks are missed, are there any ways to check each visit delivered correctly to final target page without miss click?
 

MauroS5

Administrator
Staff member
Rule The Galaxy
Joined
May 10, 2018
Messages
199
Reaction score
15
Location
Spain
Website
9hitspoints.tk
Achievement
Code:
await WaitForLoading ();
var url1 = await GetUrl();
#ClickWhereYouWant
while (true){
    await WaitForLoading ();
    var url2 = await GetUrl();
        if (url1 == url2){
        #ClickAgain
    }else{
        #DoSomething
    }
}
Just a example to how make a check if script click where he needs or no, and on negative case click again
(Only works when this click redirect you to other page)
 

fastsnail78

New Member
Joined
May 17, 2019
Messages
34
Reaction score
0
maurosayan5 post_id=1967 time=1559864598 user_id=106 said:
Code:
await WaitForLoading ();
var url1 = await GetUrl();
#ClickWhereYouWant
while (true){
    await WaitForLoading ();
    var url2 = await GetUrl();
        if (url1 == url2){
        #ClickAgain
    }else{
        #DoSomething
    }
}
Just a example to how make a check if script click where he needs or no, and on negative case click again
(Only works when this click redirect you to other page)
Thank you maurosayan5, I will try, Big thanks.
 

About us

  • Our community has been around for many years and pride ourselves on offering unbiased, critical discussion among people of all different backgrounds. We are working every day to make sure our community is one of the best.

Quick Navigation

User Menu