python中如何调用casperjs写的程序?


用scrapy写了个爬虫,用casperjs写了个模拟登陆的文件,要在scrapy的爬虫文件中调用casperjs的执行,怎么写?

python2.7 python-爬虫 scrapy

请转账付费 9 years, 2 months ago

这个文件是可执行的么?如.bat或.sh。

如果是的话,那就有好多方法。


 import os
import commands

os.system('./xxx.sh')

status, output = commands.getstatusoutput('./xxx.sh')

os.popen('./xxx.sh')

手机码的,还未验证。

NoelLoo answered 9 years, 2 months ago

Your Answer