Hi,
I am attempting to pass a variable from a function in C# to my Javascript via InvokeScript, with the following code
however when I investigate the name variable on the javascript side, it is listed as an empty string. I've spent a good amount of time looking but have yet to see any hint that I am doing something wrong.
Any assistance would be highly appreciated.
I am attempting to pass a variable from a function in C# to my Javascript via InvokeScript, with the following code
String name =
".username"
;
Actions.InvokeScript(
"buildPath(name)"
);
Any assistance would be highly appreciated.