CaptchaAI is definitely a helpful tool for solving captchas. Any challenging captcha will be solved quickly and efficiently. It is capable of solving an unlimited number of hcaptcha, as well as other types of captchas such as reCAPTCHA, hCaptcha, and many more. Therefore, highly recommend CaptchaAI for all your captcha solving needs.
The problem when converting String to Number
-
I am testing a random number function with the following order:
[[VLENGHT]] = "10-20"
Math.floor(Math.random() * ((([[VLENGHT]].split("-"))[1]) - (([[VLENGHT]].split("-"))[0]) + 1)) + (([[VLENGHT]].split("-"))[0])
But the result is 0 or 010
Please fix it for me. Thank you -
@vip764 Hi, there is "Random Number" action which does exactly what you indent to do with javascript.

The problem with your code is that you need to convert string to number
(([[VLENGHT]].split("-"))[1])To
parseInt((([[VLENGHT]].split("-"))[1]))