Error when executing PhantomJs procedure - File does not exist or is not executable: bin/phantomjs
PhantomJSの実行ファイルを任意で準備(配置)した場合に、実行ファイル「phantomjs」のパスを指定していないと発生するエラーです。
以下のように「Client」に対して「setPath」を設定することにより解消できます。
1 2 3 4 |
use JonnyW\PhantomJs\Client; $client = Client::getInstance(); $client->getEngine()->setPath('[設置したphantomjsファイルへのパス]'); //この行を追加 |