summaryrefslogtreecommitdiff
path: root/crocoite/test_devtools.py
AgeCommit message (Collapse)AuthorFilesLines
2018-12-24Use f-strings where possibleLars-Dominik Braun1-5/+9
Replaces str.format, which is less readable due to its separation of format and arguments.
2018-11-19Coding styleLars-Dominik Braun1-1/+1
Fix a few random issues pointed out by pylint, mainly unused imports.
2018-11-14Async chrome process startupLars-Dominik Braun1-5/+14
Move it to .devtools. Seems more fitting.
2018-11-08devtools: Disable websocket pings to ChromeLars-Dominik Braun1-0/+10
Chrome does not like that.
2018-11-06Add simple asyncio-based DevTool communicationLars-Dominik Braun1-0/+153
Inspired by pychrome/aiochrome, but includes crash handling and async get() instead of callbacks.