How can i can get/capture the value of a JavaScript object on the page rendered in a webbrowser control, or alternatively capture the return value of a function?
The only example I saw is the following in delphi. Looking for a better solution in C#
How can i can get/capture the value of a JavaScript object on the page rendered in a webbrowser control, or alternatively capture the return value of a function?
The only example I saw is the following in delphi. Looking for a better solution in C#
One piece of info missing is what you want to capture it to. I personally use Firefox with Firebug. It allows you to use the Javascript command console.log(object); to log an object to the Firebug console. Same applies for function return values, console.log(myFunc());.