run not accepting variable args

Hi All. I’m hoping this is an easy one. I’m trying to run a script in another suite and pass in arguments as a variable.

First, this work:
run(global EGGLIB & Script),“arg1,arg2”

Now I want to do this:
put “arg1,arg2” into MyArgs
run(global EGGLIB & Script),MyArgs

which doesn’t work. What happens is the arguments are not seperated by “,” and the whole thing is considered the first param in the calling script (e.g. it thinks “arg1,arg2” is the first parameter.

Any idea how I can fix this?

“as parameters”

Found it :slight_smile: