Hi Troy,
If I understand you correctly, you are trying to pass the browser handle created in script 1 to a child script 2. This works for me. See code snippet below:
Script1defVar --name browserId
--type Browser
webStart --name browser
--type "Chrome" browserId=value
executeScript --name script2
--parameters "in_param_browserId=
${browserId}"
Script2
defVar --name in_param_browserId
--type Browser
--parameter
webAttach --browser ${in_param_browserId} --name browser------------------------------
NIGEL CROWTHER
------------------------------