Real Time Scenario:
-----------------------------------
https://accounts.google.com/signup/v2...
Enter the Alphanumeric Password:
8 or more characters
numbers
symbols
Alphanumeric:
-----------------------
It is a combination of characters and numbers. The combination of characters,numbers and special Characters are mainly useful
to generate the strong password.
ASCII Characters:
-------------------------
In order to generate the alphanumeric password the ASCII characters and the corresponding decimal numbers are required to know:
Reference Link : http://www.asciitable.com/
Decimal Number : Character
----------------------------------------------
65-90 A-Z
97-122 a-z: (char) (97 + rand.nextInt(26)
33-47 Special Characters : [!,",#,$,%,&,',(,),*,+,-,.,/]
JAVA API:
------------------
java.util.Random class helps to generate the Random Number.
So our objective is to generate the random number and convert into the corresponding characters.
Github Link:
https://github.com/totalqa9/SeleniumF...
https://github.com/totalqa9/SeleniumF...