Hello, Can anyone describe what is the correct way to pass variable in the run javascript action from the javascript package in A360.
I am trying to read the filed value of an input element from browser but not able to get the output.
Hello, Can anyone describe what is the correct way to pass variable in the run javascript action from the javascript package in A360.
I am trying to read the filed value of an input element from browser but not able to get the output.
Howdy. I had the same problem. I solved it by putting the function and its variables into a string, writing it to file, then calling the file using the Javascript in browser. Works a treat. Like this;
function getFieldValue () {var field = document.querySelector("#id");return field.value;}
Now it is completing without any error but the output returned is also an empty value.
Same snippet I use it in the console of the browser it gives the desired output.
Any specific form of encoding that I need to save the file, in the log to file command?
Enter your E-mail address. We'll send you an e-mail with instructions to reset your password.