Query Param
Fetch values passed in url of web page and use same to fill the forms.
On this page
Action
| Element Finder | Value |
|---|---|
Supported Patterns
| Pattern | Description | Example |
|---|---|---|
Query::param | Replace with the value of query parameter param from the URL. If not found, returns the key. | Query::userId → 123 (if ?userId=123 in URL) |
<query::param> | Replace all occurrences of <query::param> with the value of query parameter param from the URL. Useful for templates. | Hello <query::name>! → Hello John! (if ?name=John in URL) |
Usage
Use Query::param for single value replacement, and <query::param> for replacing within a string or template.