How to change the Command Interval to 5s - 10s between steps?

Hi so i figured it out how to use the chrome extinction of Kantu it does the job that i require, However it does too fast the server doesn’t keep up with the kantu clicking step and i need to some how make more interval in seconds between each step !

How can i increases the Command Interval from 2s delay to 5s-10s delay ? as in the settings option 2s is the max (( is there a way to edited this manually in the extinction code perhaps ?

Hi! You can insert PAUSE commands between the steps.

Example: PAUSE | 5000 => wait five seconds.

Hello Tried it and it just pauses without Resuming after Five Seconds : here is the export

{
“CreationDate”: “2018-5-28”,
“Commands”: [
{
“Command”: “click”,
“Target”: “id=mailType”,
“Value”: “”
},
{
“Command”: “select”,
“Target”: “id=mailType”,
“Value”: “label=Hello #2
},
{
“Command”: “click”,
“Target”: “css=#mailForm > input:nth-child(4)”,
“Value”: “”
},
{
“Command”: “pause”,
“Target”: “”,
“Value”: “05”
},
{
“Command”: “selectWindow”,
“Target”: “tab=2”,
“Value”: “”
},
{
“Command”: “click”,
“Target”: “id=mailType”,
“Value”: “”
},
{
“Command”: “select”,
“Target”: “id=mailType”,
“Value”: “label=Hello #2
},
{
“Command”: “click”,
“Target”: “css=#mailForm > input:nth-child(4)”,
“Value”: “”
},
{
“Command”: “pause”,
“Target”: “”,
“Value”: “500”
},
{
“Command”: “selectWindow”,
“Target”: “tab=3”,
“Value”: “”
},
{
“Command”: “click”,
“Target”: “id=mailType”,
“Value”: “”
},
{
“Command”: “select”,
“Target”: “id=mailType”,
“Value”: “label=Hello #2
},
{
“Command”: “click”,
“Target”: “css=#mailForm > input:nth-child(4)”,
“Value”: “”
},
{
“Command”: “pause”,
“Target”: “”,
“Value”: “5000”
},
{
“Command”: “selectWindow”,
“Target”: “tab=4”,
“Value”: “”
},

I see the issue: The time needs to be in the “target” box (you have it in the “value” box). Otherwise Kantu thinks you want a Pause | 0 which indeed waits for forever (until resume is clicked). So this will work:

{
“Command”: “pause”,
“Target”: “5000”,
“Value”: “”
},
1 Like