NM Execute Script
-
Can we access the assigned variable or arguments inside the OpenRPA.NM Execute Script? If yes can you show me how @Allan-Zimmermann
-
No, but the script can be assigned as an string variable .. so just create a string with your script and the inject the variables like that.
then myscript could be assign something like"top.location.href = '" & url & "';"
Use VbCrLf to add new lines
"top.location.href = '" & url & "';" & VbCrLF & "console.log('hi mom');"
-
@rohit Thanks it's working for my use case now @Allan-Zimmermann
-
@allan-zimmermann
Hi. How to get a string from a script? -
@tcfto-sk yes, use result
-
Where to see an example of returning data from a script? I don't understand how to do it.
-
-
@allan-zimmermann Yes. It's working. Thanks.
-