Random typing speed ( keyboard emulation )

myndeswx

Client
Регистрация
15.05.2017
Сообщения
399
Благодарностей
88
Баллы
28
Hello, maybe someone has a working solution for this, here's the idea-
Now we have the option to set a static typing speed and all the long text would be typed with 15ms delay in this example

94391


Wouldn't it be more realistic to have random delays? For example typing 3 letters with 15ms delay, then pause for a second , then type again with 50ms delay.
You get the idea. Just to mimic real user behavior. Since we know websites are tracking the mouse movement, it's more than likely that typing speed is also being tracked.

Maybe such solution exists and we don't need to reinvent the bicycle ? :-) :bt:
 

myndeswx

Client
Регистрация
15.05.2017
Сообщения
399
Благодарностей
88
Баллы
28
Made a simple code so you can better understand what I am talking about-

It is working, but the problem is that the spaces are ignored o_O
C#:
string text = "a simple test";


string[] textSplit = text.Split();


foreach(string ch in textSplit)
    
{
 Random r = new Random();
 int rInt = r.Next(1, 1000);
    instance.SendText(ch,rInt);

}
 
  • Спасибо
Реакции: fudge

Кто просматривает тему: (Всего: 1, Пользователи: 0, Гости: 1)