Random Value
Now fill generate random value into form fields
On this page
Try it yourself: download the random-value.json example automation, import it via Automations → Import, then open test.getautoclicker.com to watch it run. Refresh the test page to get new random values each time.
Action
| Element Finder | Value |
|---|---|
The pattern inside
<random…>is a regular expression — the generated value matches it. A pattern is required: bare<random>(without a pattern) is left unchanged.
| <random> | Description (Generate Random value) |
|---|---|
<random[a-z]{6}> | [a-z] a character in range a–z; 6 length 6 |
<random[A-Z]{6}> | [A-Z] a character in range A–Z; 6 length 6 |
<random[a-z]{6,12}> | 12 between 6 and 12 characters |
<random[\d]{6}> | [\d] a digit; 6 length 6 |
<random[\w]{6}> | [\w] a word character; 6 length 6 |
<random[custom]{6}> | [custom] custom character set (e.g., custom); 6 length 6 |
Regular-expression rules apply inside the pattern: [.] matches a literal dot (it generates ...... for
<random[.]\{6\}>), and a bare . matches any character — including uncommon Unicode ones — so prefer explicit
character sets like [a-zA-Z0-9].