I am trying to execute javascript which is inside an iframe document using Dotnetbrowser 1.11.
In the following code returnValue.IsFunction() returns false.
JSValue returnValue = browser.ExecuteJavaScriptAndReturnValue(FunctionName);
if (returnValue.IsFunction){//something}
ExecuteJavaScript works fine if the script is in the current loaded document. But when the script is loaded in an iframe document which is inside the current loaded document, the same is not found.
Please assist regarding the same.