gitextract_a3lak9ot/ ├── .circleci/ │ └── config.yml ├── .coveragerc ├── .gitignore ├── .noserc ├── .pre-commit-config.yaml ├── CHANGELOG.md ├── CONTRIBUTING.md ├── LICENSE ├── README.md ├── docs/ │ ├── Makefile │ ├── _static/ │ │ └── custom.css │ ├── _templates/ │ │ └── layout.html │ ├── changes.md │ ├── conf.py │ ├── index.md │ ├── make.bat │ ├── reference.md │ └── server.py ├── pyppeteer/ │ ├── __init__.py │ ├── browser.py │ ├── chromium_downloader.py │ ├── command.py │ ├── connection.py │ ├── coverage.py │ ├── dialog.py │ ├── element_handle.py │ ├── emulation_manager.py │ ├── errors.py │ ├── execution_context.py │ ├── frame_manager.py │ ├── helper.py │ ├── input.py │ ├── launcher.py │ ├── multimap.py │ ├── navigator_watcher.py │ ├── network_manager.py │ ├── options.py │ ├── page.py │ ├── target.py │ ├── tracing.py │ ├── us_keyboard_layout.py │ ├── util.py │ └── worker.py ├── pyproject.toml ├── spell.txt ├── tests/ │ ├── __init__.py │ ├── base.py │ ├── closeme.py │ ├── dumpio.py │ ├── file-to-upload.txt │ ├── frame_utils.py │ ├── server.py │ ├── static/ │ │ ├── beforeunload.html │ │ ├── button.html │ │ ├── cached/ │ │ │ ├── one-style.css │ │ │ └── one-style.html │ │ ├── checkbox.html │ │ ├── csp.html │ │ ├── csscoverage/ │ │ │ ├── involved.html │ │ │ ├── media.html │ │ │ ├── multiple.html │ │ │ ├── simple.html │ │ │ ├── sourceurl.html │ │ │ ├── stylesheet1.css │ │ │ ├── stylesheet2.css │ │ │ └── unused.html │ │ ├── detect-touch.html │ │ ├── error.html │ │ ├── es6/ │ │ │ ├── es6import.js │ │ │ ├── es6module.js │ │ │ └── es6pathimport.js │ │ ├── fileupload.html │ │ ├── frame-204.html │ │ ├── frame.html │ │ ├── grid.html │ │ ├── historyapi.html │ │ ├── huge-page.html │ │ ├── injectedfile.js │ │ ├── injectedstyle.css │ │ ├── jscoverage/ │ │ │ ├── eval.html │ │ │ ├── involved.html │ │ │ ├── multiple.html │ │ │ ├── ranges.html │ │ │ ├── script1.js │ │ │ ├── script2.js │ │ │ ├── simple.html │ │ │ ├── sourceurl.html │ │ │ └── unused.html │ │ ├── keyboard.html │ │ ├── mobile.html │ │ ├── modernizr.js │ │ ├── mouse-helper.js │ │ ├── nested-frames.html │ │ ├── offscreenbuttons.html │ │ ├── one-frame.html │ │ ├── one-style.css │ │ ├── one-style.html │ │ ├── popup/ │ │ │ ├── popup.html │ │ │ └── window-open.html │ │ ├── resetcss.html │ │ ├── script.js │ │ ├── scrollable.html │ │ ├── select.html │ │ ├── self-request.html │ │ ├── serviceworkers/ │ │ │ ├── empty/ │ │ │ │ ├── sw.html │ │ │ │ └── sw.js │ │ │ └── fetch/ │ │ │ ├── style.css │ │ │ ├── sw.html │ │ │ └── sw.js │ │ ├── shadow.html │ │ ├── simple-extension/ │ │ │ ├── index.js │ │ │ └── manifest.json │ │ ├── simple.json │ │ ├── style.css │ │ ├── sw.js │ │ ├── temperable.html │ │ ├── textarea.html │ │ ├── touches.html │ │ ├── two-frames.html │ │ ├── worker/ │ │ │ ├── worker.html │ │ │ └── worker.js │ │ └── wrappedlink.html │ ├── test_abnormal_crash.py │ ├── test_browser.py │ ├── test_browser_context.py │ ├── test_connection.py │ ├── test_coverage.py │ ├── test_dialog.py │ ├── test_element_handle.py │ ├── test_execution_context.py │ ├── test_frame.py │ ├── test_input.py │ ├── test_launcher.py │ ├── test_misc.py │ ├── test_network.py │ ├── test_page.py │ ├── test_pyppeteer.py │ ├── test_screenshot.py │ ├── test_target.py │ ├── test_tracing.py │ ├── test_worker.py │ └── utils.py └── tox.ini