I have one HTML file where a JavaScript method (say) postIt() is defined inside the <script> tag. Its tag is preceded by two references to external JavaScript files which no longer exist. All these <script> tags are inside <body>.
I had to set WebClient.setThrowExceptionOnFailingStatusCode to false, so that I can proceed with the non-existent JavaScript files.
But when I try calling page.executeJavascript("postIt()"), I get Reference not found error!
- What is the reason for this and do we have any possible workaround?
- Does the JavaScript engine run in its own thread?