Pythonからphantomjsプロセスを開始しようとしていますが、何らかの理由でスクリプトファイルが見つかりません。
PHANTOM = 'C:\\Users\\ahald1\\phantomjs'
SCRIPT = 'C:\\Users\\ahald1\\hello.js'
params = [PHANTOM, SCRIPT]
exitcode = subprocess.call(params)
hello.jsに含まれる場所:
console.log('Hello, world!');
phantom.exit();
これはCan't open 'C:\Users\ahald1\hello.js'
cmdからこれを行おうとすると、同じエラーが返されますがphantomjs --version
、値は返されます。私はWindows7でpython2.7.3を実行しています。
初心者の質問でごめんなさい、そして事前にどうもありがとう!