Skip to content

Latest commit

 

History

History
11 lines (9 loc) · 325 Bytes

README.md

File metadata and controls

11 lines (9 loc) · 325 Bytes

cdp: Chrome Debugging Protocol

Example usage

$ python -m scripts.cli  # Launches IPython shell
In [1]: page = devtools.CreateNewPage()
In [2]: actions.Navigate(page, 'http://www.example.com')
In [3]: page.Call('Page.reload', { 'ignoreCache': True })
In [4]: page.Page.reload(ignoreCache=True)  # Same as above