SetTEXT as random

Hi,
We have text input fields that require unique names. How can we automate that with some random input?

thanks

import java.security.SecureRandom


SecureRandom randomNumbers = new SecureRandom()
String randomValue = randomNumbers.nextInt(1000000) as String

1 Like

Thank you very much… It really helped me