I can programmatically go to the url, get the answer and parse it. But can I fire the javascript click event of the html element of this answer? For example, let the answer contain an element:
<div id="test">Click me</div>
And the page handles the click event, for example:
$("#test").on('click'..... etc.
So, is there a way I can fire this event after receiving an html response?
source
share