iI do want to render my page and exit phantomJSPhantomJS in the evaluate function, because iI want to trigger it when a specific event is fired. I've
I've tried something like this:
page.evaluate(page, function (page, phantom) { //do some stuff on my page //i want to execute this in an eventhandler of my page though thats not the problem page.render('imgName.png'); page.render('pdfName.pdf'); phantom.exit(); }, page, phantom); This doesn't work in my example, because page.render seems to be undefined. Maybe there is a serializer for the arguments which is not serializing functions of the obj?
Is this even possible? Anyone knowsDoes anyone know a solution for my issue?
I know iI could set a while loop in my evaluate function and prevent its termination and do this page render stuff outside afterwards. I dontdon't like this though.