in my karate-config.js, I have set up a default url for an endpoint I use in my tests:
var config = {
env: env,
pricingApiUrl: 'http://localhost:8080'
}
and in my tests that need this endpoint, I assign 'url' to that endpoint * url pricingApiUrl
I know about setting up different environments in the karate-config.js file, but in certain situations I don't know the exact url for the 'pricingApiUrl' until runtime.
So I wanted know if it's possible to set the 'pricingApiUrl' via a commandline flag when I run the tests at the command line.