>>> from chromote import Chromote >>> chrome = Chromote() >>> chrome Chromote(host="localhost", port=9222) >>> print chrome [Chromote(tabs=1)] >>> tab = chrome.tabs[0] >>> print tab Google - https://www.google.co.uk/ >>> print tab.url https://www.google.co.uk/ >>> tab.reload() '{"result":{},"id":1}' >>> tab.set_url('https://github.com/chromote') '{"id":2,"result":{}}' >>> tab.set_zoom(1.2) '{"id":

