pip install Ghost.py
from ghost import Ghost ghost = Ghost() page, resources = ghost.open('http://my.web.page')该方法以元组的形式返回网页的主要资源(网页内容)和该网页需要加载的资源(比如CSS、js、图片等文件)。这些资源都被存储到HttpResource对象中。
result, resources = ghost.evaluate( "document.getElementById('my-input').getAttribute('value');")
result是javascript的执行结果,resources是加载的资源。
result, resources = ghost.set_field_value("input[name=username]", "jeanphix")
ghost.capture_to('www.png'")
当前目录下会生成图片www.png。
更多内容,请移步官网。