How to test URL query in editor? [Solved]

I have a workflow on page load where I need to read URL query parameters.
Im trying to use Browser.query.
When I paste my query string to url in Editor right after page path, Browser.query is empty. when I reload page with new query string, it redirects to my home page so I cannot get my workflow tested.
I tried to create ?query variables, doesn’t work either. i’m doing something wrong :slight_smile:

How to test url query in Editor? how to acquire/extract it correctly from string?

This should work as long as the variable name matches the query name in the URL.

Can you share a few screenshots or, even better, a screen recording of how things are setup on your side?

you append the query parameter after your editor url

editor.weweb…/6f03946f-53ab-44cd-acec-6dafb705a4f7/897a3426-66c6-4faa-ad0c-9e522b24f685 ?your_query=goes_here

You can also create a variable of type query, what you put inside the path should automatically be parsed and put inside the variable

Thank you all, it was my mistake.

In URL, I have added not one variable but few: ?param1=x&param2=y, and misunderstood that it should be parsed as few query parameters. But i removed second param and “?param1=x” works well in URL

1 Like

Hi everyone,

I’m trying to sand a date string to a query parameter

For example button is a link to a page and query param is dt then a dynamic date object formatted with

formatDate({dataobject},”MM/DD/YYYY”)

the output is a date string for example “11/24/2025“
But when I’m clicking the link it does not Populate the variable dt which I set to be a query type,

When I’m trying to send the full date object it does work

Can anyone advise please

Thank you

Hi @Shimon :waving_hand:

Would you mind creating a new dedicated on the topic with screenshots or a video walkthrough of what you have attempted and where you are stuck?

This will help the community provide a thoughtful answer and hopefully point you in the right direction :slight_smile:

1 Like