Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

I am new to PhantomJS and to JavaScript. My question is very basic, but it has been giving me a lot of difficulty.

I have successfully added the PATH of the executable file to my system variables and when I type "phantomjs --version" into the command prompt, the correct version (1.7.0) is displayed.

However, when I try testing one of the examples, for instance hello.js, I receive the following message "Can't find variable: hello"

Originally I kept the examples files in the folder "examples" but have also tried moving them to the main phantomjs folder, where the executable file resides. Neither option works.

I also tried opening the examples using the following statement, from the command prompt: "phantomjs examples/hello.js" and I received the following statement "Can't open 'examples/hello.js'".

I know there have been a few other similar questions regarding this on the forum, but the solutions have not worked for me. Any fresh advice would be great, thanks!

share|improve this question

1 Answer

Assuming hello.js file is in your current working directory, you need to type:

phantomjs hello.js

in your terminal or command prompt, and not in PhantomJS prompt.

share|improve this answer

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.