Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

I'm trying to run some phantomJS by sending it in via Standard Input, but my webpage open does not respond.

Here is the javascript I'm trying to execute:

require('webpage').create().open('http://google.com', function() { console.log('done'); phantom.exit(); });

Pretty straight forward, right?

Put that in a file.js, and use

phantomjs.exe file.js

and it works, but execute it via REPL

phantomjs.exe
phantomjs> require('webpage').create().open('http://google.com', function() { console.log('done'); phantom.exit(); });

and it never hits the callback. Listening to onResourceRequested shows it is being requested the same, but onResourceReceived never comes back.

This is running on windows 7. Is there anything special I need to do for page.open to work for REPL?

Edit: I should have mentioned, I'm running this from C# in an environment where executing from a file isn't really feasible

share|improve this question

1 Answer

up vote 1 down vote accepted

Same for me. After a quick look on git repository, it seems it's a known issue : https://github.com/ariya/phantomjs/issues/10518

share|improve this answer
Ahh, your github searchy skills are better than mine. Thanks. – XwipeoutX Mar 19 at 22:00

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.