summaryrefslogtreecommitdiff
path: root/crocoite/test_devtools.py
AgeCommit message (Collapse)AuthorFilesLines
2019-10-19devtools: Fix load testcaseLars-Dominik Braun1-18/+35
Handle new *ExtraInfo events, but do not use them in browser yet, since they’re still marked experimental.
2019-06-17devtools: Fix testcaseLars-Dominik Braun1-3/+18
The body is only available after receiving the loadingFinished event.
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.