chrome_remote_shell是一个库,可以很容易与谷歌Chrome远程调试外壳从Python的沟通与NBSP;为了使外壳可用,Chrome浏览器开始使用此选项:
谷歌铬--remote壳口= 9222
然后你就可以用Python通过这样的代码连接:
>>>进口chrome_remote_shell
>>>壳= chrome_remote_shell.open(端口= 9222)
>>> shell.request('DevToolsService',命令='平')
{u'data“:u'ok',u'command”:u'ping',u'result':0}
该协议是在详细地描述:
http://code.google.com/p/chromedevtools/wiki/ChromeDevToolsProtocol
为方便起见,外壳连接对象提供的方法,通过注射到JavaScript的第一个选项卡,Chrome浏览器的命令在新标签中打开一个URL:
shell.open_url('http://www.aldaily.com/')
Requirements:
- Python
- 谷歌Chrome浏览器
评论没有发现