I added 2 variables (john, santa123) from input dialog box and then tried to navigate to a url from a browser scope.
Following is the navigate to URL.
I'm unable to navigate to the input values. What am I doing wrong?
This navigates me to:
whereas I want it to navigate to
Kindly point me to the right direction.
Without seeing the workflow, I would guess you have not broken out of your string and concatenated your variables when trying to navigate to the URL.
You have done the following in the browser URL property:
"https://abcd.com/un=username&pw=pass"
When you should have done this:
"https://abcd.com/un="+username+"&pw="+pass
Here is an example workflow I built to demonstrate this in practice: