Random Date of Birth generator

selenium ide excecute scripts examples here

The one you need are:

  • return 1950+Math.floor(Math.random()*60) - random year between 1950 and 2010
  • return 1+Math.floor(Math.random()*28) - random day between 1…28
  • return 1+Math.floor(Math.random()*11) - random month between 1…12
1 Like