I am trying to add a CefSharp WebView to my WPF application in place of the original WebBrowsers that we used. The WebBrowser has an InvokeScript function (http://msdn.microsoft.com/en-us/library/cc452443(v=vs.110).aspx) Which allows you to invoke a JavaScript function and optionally pass in an obj array of inputs to that JS function.
Is there any way to do something similar with the CefSharp WebView where I can pass input parameters to the JavaScript function? For example, I can do:
this.webBrowser.InvokeScript("scriptName", input0, input1, input2);
with the WebBrowser, is there any equivalent function, or multiple functions, that would allow for this with the CefSharp WebView?