Can the URL be set as a parameter from an Excel spreadsheet?

I cant seem to capture the address bar as an object so the script is using the “Navigate to URL” keyword…but scripts will run on multiple environments (staging, Qa, prod) so URL needs to be a param.

Is there another way to set the URL as a parameter from an excel spreadsheet?

1 Like

I simply used the same process as you can for fields within website but had to make sure that the variable is in lowercase

You can set the URL as the GlobalVariable inside your execution profile so it will change with the profile (e.g. staging, QA, production,…)

Of course you can.
Like this:
WebUI.navigateToUrl(YourGlobalVariable)

Thank you both. It works… :slight_smile: