-
Notifications
You must be signed in to change notification settings - Fork 1.4k
-
"Is there a way to slow down sb.cdp.press_keys()
?
I got detected even when using press_key()
.
Does it support fine-grained configuration to adjust its speed?
Beta Was this translation helpful? Give feedback.
All reactions
If these aren't slow enough as is to avoid detection...
sb.cdp.gui_press_key(key) sb.cdp.gui_press_keys(keys)
...then you can create a for
loop, where you add sb.sleep(seconds)
to slow things down as much as you want.
Replies: 1 comment 1 reply
-
If these aren't slow enough as is to avoid detection...
sb.cdp.gui_press_key(key) sb.cdp.gui_press_keys(keys)
...then you can create a for
loop, where you add sb.sleep(seconds)
to slow things down as much as you want.
Beta Was this translation helpful? Give feedback.
All reactions
-
Thank you for your helpful response!
I’ll try implementing it to see if it helps avoid detection. Appreciate your guidance!
Beta Was this translation helpful? Give feedback.