Quote from
Gaev on October 19, 2022, 5:19 pm
@rob-maggs
re-edited due to typo in original response !!!
Been stumped by combining (concatenating) a Variable with a string
SetVar [First Name] "Rob"
SetVar [Fullname] "[FirstName] Maggs"
I want to navigate to Google in an iframe and submit a query, for example: https://www.google.com/search?q=%5Bquery%5D
Assuming your search value is stored in variable [query] ...
SetVar [url] "https://www.google.com/search?q=[query]"
... and verify it with ...
AlertBox "url" "[url]" ""
For more information about strings, see https://webhelp.visualneo.com/UsingVariables.html
@rob-maggs
re-edited due to typo in original response !!!
Been stumped by combining (concatenating) a Variable with a string
SetVar [First Name] "Rob"
SetVar [Fullname] "[FirstName] Maggs"
I want to navigate to Google in an iframe and submit a query, for example: https://www.google.com/search?q=%5Bquery%5D
Assuming your search value is stored in variable [query] ...
SetVar [url] "https://www.google.com/search?q=[query]"
... and verify it with ...
AlertBox "url" "[url]" ""
For more information about strings, see https://webhelp.visualneo.com/UsingVariables.html
luishp and Rob Maggs have reacted to this post.