Grope - 无GUI浏览器环境
BSD
跨平台
Ruby
软件简介
Grope 是无GUI浏览器环境,使用WebKit Framework + RubyCocoa。
使用:
载入URL
env.load('http://example.com')
env.document.title //=> "Example Web Page"
搜索
env.find('//a').href //=> "http://www.rfc-editor.org/rfc/rfc2606.txt"
env.find('//a').offsetWidth //=> 58
屏幕截图
# capture whole page and save to 'capture.png'
@env.capture
# capture specified element
@env.capture(@env.find('id("header")'), 'capture_header.png')