├── .codecov.yml ├── .editorconfig ├── .github └── workflows │ └── test.yaml ├── LICENSE ├── README.md ├── cdp.go ├── cdp_client.go ├── cdp_client_io_stream_reader.go ├── cdp_test.go ├── cmd └── cdpgen │ ├── .gitignore │ ├── README.md │ ├── lint │ └── name.go │ ├── main.go │ ├── proto │ └── proto.go │ ├── protodef │ ├── browser_protocol.json │ ├── edge.json │ ├── js_protocol.json │ └── node.json │ └── update.sh ├── devtool ├── devtool.go ├── devtool_test.go ├── doc.go ├── headless.go ├── headless_test.go └── testdata │ ├── close.out │ ├── error.golden │ ├── list.json │ ├── new.json │ ├── test.golden │ └── version.json ├── doc.go ├── error.go ├── error_test.go ├── example └── screencast │ └── main.go ├── example_advanced_test.go ├── example_dial_test.go ├── example_incognito_test.go ├── example_logging_test.go ├── example_test.go ├── go.mod ├── go.sum ├── internal ├── errors │ ├── errors.go │ ├── errors_test.go │ └── stdlib.go └── testutil │ └── testutil.go ├── protocol ├── accessibility │ ├── command.go │ ├── domain.go │ ├── event.go │ └── types.go ├── animation │ ├── command.go │ ├── domain.go │ ├── event.go │ └── types.go ├── applicationcache │ ├── command.go │ ├── domain.go │ ├── event.go │ └── types.go ├── audits │ ├── command.go │ ├── domain.go │ ├── event.go │ └── types.go ├── autofill │ ├── command.go │ ├── domain.go │ ├── event.go │ └── types.go ├── backgroundservice │ ├── command.go │ ├── domain.go │ ├── event.go │ └── types.go ├── bluetoothemulation │ ├── command.go │ ├── domain.go │ └── types.go ├── browser │ ├── command.go │ ├── domain.go │ ├── event.go │ └── types.go ├── cachestorage │ ├── command.go │ ├── domain.go │ └── types.go ├── cast │ ├── command.go │ ├── domain.go │ ├── event.go │ └── types.go ├── console │ ├── domain.go │ ├── event.go │ └── types.go ├── css │ ├── command.go │ ├── domain.go │ ├── event.go │ └── types.go ├── database │ ├── command.go │ ├── domain.go │ ├── event.go │ └── types.go ├── debugger │ ├── command.go │ ├── domain.go │ ├── event.go │ └── types.go ├── deviceaccess │ ├── command.go │ ├── domain.go │ ├── event.go │ └── types.go ├── deviceorientation │ ├── command.go │ └── domain.go ├── doc.go ├── dom │ ├── command.go │ ├── domain.go │ ├── event.go │ └── types.go ├── domdebugger │ ├── command.go │ ├── domain.go │ └── types.go ├── domsnapshot │ ├── command.go │ ├── domain.go │ └── types.go ├── domstorage │ ├── command.go │ ├── domain.go │ ├── event.go │ └── types.go ├── emulation │ ├── command.go │ ├── domain.go │ ├── event.go │ └── types.go ├── eventbreakpoints │ ├── command.go │ └── domain.go ├── extensions │ ├── command.go │ ├── domain.go │ └── types.go ├── fedcm │ ├── command.go │ ├── domain.go │ ├── event.go │ └── types.go ├── fetch │ ├── command.go │ ├── domain.go │ ├── event.go │ └── types.go ├── filesystem │ ├── command.go │ ├── domain.go │ └── types.go ├── headlessexperimental │ ├── command.go │ ├── domain.go │ ├── event.go │ └── types.go ├── heapprofiler │ ├── command.go │ ├── domain.go │ ├── event.go │ └── types.go ├── indexeddb │ ├── command.go │ ├── domain.go │ └── types.go ├── input │ ├── command.go │ ├── domain.go │ ├── event.go │ └── types.go ├── inspector │ ├── domain.go │ └── event.go ├── internal │ ├── browser.go │ ├── error.go │ ├── error_test.go │ ├── network.go │ └── page.go ├── io │ ├── command.go │ ├── domain.go │ ├── stream_reader.go │ ├── stream_reder_test.go │ └── types.go ├── layertree │ ├── command.go │ ├── domain.go │ ├── event.go │ └── types.go ├── log │ ├── command.go │ ├── domain.go │ ├── event.go │ └── types.go ├── media │ ├── domain.go │ ├── event.go │ └── types.go ├── memory │ ├── command.go │ ├── domain.go │ └── types.go ├── network │ ├── command.go │ ├── domain.go │ ├── event.go │ ├── types.go │ └── util.go ├── overlay │ ├── command.go │ ├── domain.go │ ├── event.go │ └── types.go ├── page │ ├── command.go │ ├── domain.go │ ├── event.go │ └── types.go ├── performance │ ├── command.go │ ├── domain.go │ ├── event.go │ └── types.go ├── performancetimeline │ ├── command.go │ ├── domain.go │ ├── event.go │ └── types.go ├── preload │ ├── domain.go │ ├── event.go │ └── types.go ├── profiler │ ├── command.go │ ├── domain.go │ ├── event.go │ └── types.go ├── pwa │ ├── command.go │ ├── domain.go │ └── types.go ├── runtime │ ├── command.go │ ├── domain.go │ ├── event.go │ ├── testdata │ │ ├── log.golden │ │ ├── log.html │ │ ├── log.input │ │ └── log_input_gen.go │ ├── types.go │ ├── util.go │ └── util_test.go ├── schema │ ├── command.go │ ├── domain.go │ └── types.go ├── security │ ├── command.go │ ├── domain.go │ ├── event.go │ └── types.go ├── serviceworker │ ├── command.go │ ├── domain.go │ ├── event.go │ └── types.go ├── storage │ ├── command.go │ ├── domain.go │ ├── event.go │ └── types.go ├── systeminfo │ ├── command.go │ ├── domain.go │ └── types.go ├── target │ ├── command.go │ ├── domain.go │ ├── event.go │ └── types.go ├── tethering │ ├── command.go │ ├── domain.go │ └── event.go ├── tracing │ ├── command.go │ ├── domain.go │ ├── event.go │ └── types.go ├── webaudio │ ├── command.go │ ├── domain.go │ ├── event.go │ └── types.go └── webauthn │ ├── command.go │ ├── domain.go │ ├── event.go │ └── types.go ├── rpcc ├── call.go ├── conn.go ├── conn_test.go ├── doc.go ├── socket.go ├── socket_test.go ├── stream.go ├── stream_sync.go ├── stream_sync_test.go └── stream_test.go ├── session ├── conn.go ├── doc.go ├── manager.go ├── manager_test.go ├── session.go └── session_test.go └── sync.go /.codecov.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mafredri/cdp/HEAD/.codecov.yml -------------------------------------------------------------------------------- /.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mafredri/cdp/HEAD/.editorconfig -------------------------------------------------------------------------------- /.github/workflows/test.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mafredri/cdp/HEAD/.github/workflows/test.yaml -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mafredri/cdp/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mafredri/cdp/HEAD/README.md -------------------------------------------------------------------------------- /cdp.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mafredri/cdp/HEAD/cdp.go -------------------------------------------------------------------------------- /cdp_client.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mafredri/cdp/HEAD/cdp_client.go -------------------------------------------------------------------------------- /cdp_client_io_stream_reader.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mafredri/cdp/HEAD/cdp_client_io_stream_reader.go -------------------------------------------------------------------------------- /cdp_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mafredri/cdp/HEAD/cdp_test.go -------------------------------------------------------------------------------- /cmd/cdpgen/.gitignore: -------------------------------------------------------------------------------- 1 | cdpgen 2 | -------------------------------------------------------------------------------- /cmd/cdpgen/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mafredri/cdp/HEAD/cmd/cdpgen/README.md -------------------------------------------------------------------------------- /cmd/cdpgen/lint/name.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mafredri/cdp/HEAD/cmd/cdpgen/lint/name.go -------------------------------------------------------------------------------- /cmd/cdpgen/main.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mafredri/cdp/HEAD/cmd/cdpgen/main.go -------------------------------------------------------------------------------- /cmd/cdpgen/proto/proto.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mafredri/cdp/HEAD/cmd/cdpgen/proto/proto.go -------------------------------------------------------------------------------- /cmd/cdpgen/protodef/browser_protocol.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mafredri/cdp/HEAD/cmd/cdpgen/protodef/browser_protocol.json -------------------------------------------------------------------------------- /cmd/cdpgen/protodef/edge.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mafredri/cdp/HEAD/cmd/cdpgen/protodef/edge.json -------------------------------------------------------------------------------- /cmd/cdpgen/protodef/js_protocol.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mafredri/cdp/HEAD/cmd/cdpgen/protodef/js_protocol.json -------------------------------------------------------------------------------- /cmd/cdpgen/protodef/node.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mafredri/cdp/HEAD/cmd/cdpgen/protodef/node.json -------------------------------------------------------------------------------- /cmd/cdpgen/update.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mafredri/cdp/HEAD/cmd/cdpgen/update.sh -------------------------------------------------------------------------------- /devtool/devtool.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mafredri/cdp/HEAD/devtool/devtool.go -------------------------------------------------------------------------------- /devtool/devtool_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mafredri/cdp/HEAD/devtool/devtool_test.go -------------------------------------------------------------------------------- /devtool/doc.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mafredri/cdp/HEAD/devtool/doc.go -------------------------------------------------------------------------------- /devtool/headless.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mafredri/cdp/HEAD/devtool/headless.go -------------------------------------------------------------------------------- /devtool/headless_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mafredri/cdp/HEAD/devtool/headless_test.go -------------------------------------------------------------------------------- /devtool/testdata/close.out: -------------------------------------------------------------------------------- 1 | Target is closing -------------------------------------------------------------------------------- /devtool/testdata/error.golden: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mafredri/cdp/HEAD/devtool/testdata/error.golden -------------------------------------------------------------------------------- /devtool/testdata/list.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mafredri/cdp/HEAD/devtool/testdata/list.json -------------------------------------------------------------------------------- /devtool/testdata/new.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mafredri/cdp/HEAD/devtool/testdata/new.json -------------------------------------------------------------------------------- /devtool/testdata/test.golden: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mafredri/cdp/HEAD/devtool/testdata/test.golden -------------------------------------------------------------------------------- /devtool/testdata/version.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mafredri/cdp/HEAD/devtool/testdata/version.json -------------------------------------------------------------------------------- /doc.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mafredri/cdp/HEAD/doc.go -------------------------------------------------------------------------------- /error.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mafredri/cdp/HEAD/error.go -------------------------------------------------------------------------------- /error_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mafredri/cdp/HEAD/error_test.go -------------------------------------------------------------------------------- /example/screencast/main.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mafredri/cdp/HEAD/example/screencast/main.go -------------------------------------------------------------------------------- /example_advanced_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mafredri/cdp/HEAD/example_advanced_test.go -------------------------------------------------------------------------------- /example_dial_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mafredri/cdp/HEAD/example_dial_test.go -------------------------------------------------------------------------------- /example_incognito_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mafredri/cdp/HEAD/example_incognito_test.go -------------------------------------------------------------------------------- /example_logging_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mafredri/cdp/HEAD/example_logging_test.go -------------------------------------------------------------------------------- /example_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mafredri/cdp/HEAD/example_test.go -------------------------------------------------------------------------------- /go.mod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mafredri/cdp/HEAD/go.mod -------------------------------------------------------------------------------- /go.sum: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mafredri/cdp/HEAD/go.sum -------------------------------------------------------------------------------- /internal/errors/errors.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mafredri/cdp/HEAD/internal/errors/errors.go -------------------------------------------------------------------------------- /internal/errors/errors_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mafredri/cdp/HEAD/internal/errors/errors_test.go -------------------------------------------------------------------------------- /internal/errors/stdlib.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mafredri/cdp/HEAD/internal/errors/stdlib.go -------------------------------------------------------------------------------- /internal/testutil/testutil.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mafredri/cdp/HEAD/internal/testutil/testutil.go -------------------------------------------------------------------------------- /protocol/accessibility/command.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mafredri/cdp/HEAD/protocol/accessibility/command.go -------------------------------------------------------------------------------- /protocol/accessibility/domain.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mafredri/cdp/HEAD/protocol/accessibility/domain.go -------------------------------------------------------------------------------- /protocol/accessibility/event.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mafredri/cdp/HEAD/protocol/accessibility/event.go -------------------------------------------------------------------------------- /protocol/accessibility/types.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mafredri/cdp/HEAD/protocol/accessibility/types.go -------------------------------------------------------------------------------- /protocol/animation/command.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mafredri/cdp/HEAD/protocol/animation/command.go -------------------------------------------------------------------------------- /protocol/animation/domain.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mafredri/cdp/HEAD/protocol/animation/domain.go -------------------------------------------------------------------------------- /protocol/animation/event.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mafredri/cdp/HEAD/protocol/animation/event.go -------------------------------------------------------------------------------- /protocol/animation/types.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mafredri/cdp/HEAD/protocol/animation/types.go -------------------------------------------------------------------------------- /protocol/applicationcache/command.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mafredri/cdp/HEAD/protocol/applicationcache/command.go -------------------------------------------------------------------------------- /protocol/applicationcache/domain.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mafredri/cdp/HEAD/protocol/applicationcache/domain.go -------------------------------------------------------------------------------- /protocol/applicationcache/event.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mafredri/cdp/HEAD/protocol/applicationcache/event.go -------------------------------------------------------------------------------- /protocol/applicationcache/types.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mafredri/cdp/HEAD/protocol/applicationcache/types.go -------------------------------------------------------------------------------- /protocol/audits/command.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mafredri/cdp/HEAD/protocol/audits/command.go -------------------------------------------------------------------------------- /protocol/audits/domain.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mafredri/cdp/HEAD/protocol/audits/domain.go -------------------------------------------------------------------------------- /protocol/audits/event.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mafredri/cdp/HEAD/protocol/audits/event.go -------------------------------------------------------------------------------- /protocol/audits/types.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mafredri/cdp/HEAD/protocol/audits/types.go -------------------------------------------------------------------------------- /protocol/autofill/command.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mafredri/cdp/HEAD/protocol/autofill/command.go -------------------------------------------------------------------------------- /protocol/autofill/domain.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mafredri/cdp/HEAD/protocol/autofill/domain.go -------------------------------------------------------------------------------- /protocol/autofill/event.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mafredri/cdp/HEAD/protocol/autofill/event.go -------------------------------------------------------------------------------- /protocol/autofill/types.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mafredri/cdp/HEAD/protocol/autofill/types.go -------------------------------------------------------------------------------- /protocol/backgroundservice/command.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mafredri/cdp/HEAD/protocol/backgroundservice/command.go -------------------------------------------------------------------------------- /protocol/backgroundservice/domain.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mafredri/cdp/HEAD/protocol/backgroundservice/domain.go -------------------------------------------------------------------------------- /protocol/backgroundservice/event.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mafredri/cdp/HEAD/protocol/backgroundservice/event.go -------------------------------------------------------------------------------- /protocol/backgroundservice/types.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mafredri/cdp/HEAD/protocol/backgroundservice/types.go -------------------------------------------------------------------------------- /protocol/bluetoothemulation/command.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mafredri/cdp/HEAD/protocol/bluetoothemulation/command.go -------------------------------------------------------------------------------- /protocol/bluetoothemulation/domain.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mafredri/cdp/HEAD/protocol/bluetoothemulation/domain.go -------------------------------------------------------------------------------- /protocol/bluetoothemulation/types.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mafredri/cdp/HEAD/protocol/bluetoothemulation/types.go -------------------------------------------------------------------------------- /protocol/browser/command.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mafredri/cdp/HEAD/protocol/browser/command.go -------------------------------------------------------------------------------- /protocol/browser/domain.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mafredri/cdp/HEAD/protocol/browser/domain.go -------------------------------------------------------------------------------- /protocol/browser/event.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mafredri/cdp/HEAD/protocol/browser/event.go -------------------------------------------------------------------------------- /protocol/browser/types.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mafredri/cdp/HEAD/protocol/browser/types.go -------------------------------------------------------------------------------- /protocol/cachestorage/command.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mafredri/cdp/HEAD/protocol/cachestorage/command.go -------------------------------------------------------------------------------- /protocol/cachestorage/domain.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mafredri/cdp/HEAD/protocol/cachestorage/domain.go -------------------------------------------------------------------------------- /protocol/cachestorage/types.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mafredri/cdp/HEAD/protocol/cachestorage/types.go -------------------------------------------------------------------------------- /protocol/cast/command.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mafredri/cdp/HEAD/protocol/cast/command.go -------------------------------------------------------------------------------- /protocol/cast/domain.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mafredri/cdp/HEAD/protocol/cast/domain.go -------------------------------------------------------------------------------- /protocol/cast/event.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mafredri/cdp/HEAD/protocol/cast/event.go -------------------------------------------------------------------------------- /protocol/cast/types.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mafredri/cdp/HEAD/protocol/cast/types.go -------------------------------------------------------------------------------- /protocol/console/domain.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mafredri/cdp/HEAD/protocol/console/domain.go -------------------------------------------------------------------------------- /protocol/console/event.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mafredri/cdp/HEAD/protocol/console/event.go -------------------------------------------------------------------------------- /protocol/console/types.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mafredri/cdp/HEAD/protocol/console/types.go -------------------------------------------------------------------------------- /protocol/css/command.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mafredri/cdp/HEAD/protocol/css/command.go -------------------------------------------------------------------------------- /protocol/css/domain.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mafredri/cdp/HEAD/protocol/css/domain.go -------------------------------------------------------------------------------- /protocol/css/event.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mafredri/cdp/HEAD/protocol/css/event.go -------------------------------------------------------------------------------- /protocol/css/types.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mafredri/cdp/HEAD/protocol/css/types.go -------------------------------------------------------------------------------- /protocol/database/command.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mafredri/cdp/HEAD/protocol/database/command.go -------------------------------------------------------------------------------- /protocol/database/domain.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mafredri/cdp/HEAD/protocol/database/domain.go -------------------------------------------------------------------------------- /protocol/database/event.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mafredri/cdp/HEAD/protocol/database/event.go -------------------------------------------------------------------------------- /protocol/database/types.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mafredri/cdp/HEAD/protocol/database/types.go -------------------------------------------------------------------------------- /protocol/debugger/command.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mafredri/cdp/HEAD/protocol/debugger/command.go -------------------------------------------------------------------------------- /protocol/debugger/domain.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mafredri/cdp/HEAD/protocol/debugger/domain.go -------------------------------------------------------------------------------- /protocol/debugger/event.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mafredri/cdp/HEAD/protocol/debugger/event.go -------------------------------------------------------------------------------- /protocol/debugger/types.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mafredri/cdp/HEAD/protocol/debugger/types.go -------------------------------------------------------------------------------- /protocol/deviceaccess/command.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mafredri/cdp/HEAD/protocol/deviceaccess/command.go -------------------------------------------------------------------------------- /protocol/deviceaccess/domain.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mafredri/cdp/HEAD/protocol/deviceaccess/domain.go -------------------------------------------------------------------------------- /protocol/deviceaccess/event.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mafredri/cdp/HEAD/protocol/deviceaccess/event.go -------------------------------------------------------------------------------- /protocol/deviceaccess/types.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mafredri/cdp/HEAD/protocol/deviceaccess/types.go -------------------------------------------------------------------------------- /protocol/deviceorientation/command.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mafredri/cdp/HEAD/protocol/deviceorientation/command.go -------------------------------------------------------------------------------- /protocol/deviceorientation/domain.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mafredri/cdp/HEAD/protocol/deviceorientation/domain.go -------------------------------------------------------------------------------- /protocol/doc.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mafredri/cdp/HEAD/protocol/doc.go -------------------------------------------------------------------------------- /protocol/dom/command.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mafredri/cdp/HEAD/protocol/dom/command.go -------------------------------------------------------------------------------- /protocol/dom/domain.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mafredri/cdp/HEAD/protocol/dom/domain.go -------------------------------------------------------------------------------- /protocol/dom/event.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mafredri/cdp/HEAD/protocol/dom/event.go -------------------------------------------------------------------------------- /protocol/dom/types.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mafredri/cdp/HEAD/protocol/dom/types.go -------------------------------------------------------------------------------- /protocol/domdebugger/command.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mafredri/cdp/HEAD/protocol/domdebugger/command.go -------------------------------------------------------------------------------- /protocol/domdebugger/domain.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mafredri/cdp/HEAD/protocol/domdebugger/domain.go -------------------------------------------------------------------------------- /protocol/domdebugger/types.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mafredri/cdp/HEAD/protocol/domdebugger/types.go -------------------------------------------------------------------------------- /protocol/domsnapshot/command.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mafredri/cdp/HEAD/protocol/domsnapshot/command.go -------------------------------------------------------------------------------- /protocol/domsnapshot/domain.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mafredri/cdp/HEAD/protocol/domsnapshot/domain.go -------------------------------------------------------------------------------- /protocol/domsnapshot/types.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mafredri/cdp/HEAD/protocol/domsnapshot/types.go -------------------------------------------------------------------------------- /protocol/domstorage/command.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mafredri/cdp/HEAD/protocol/domstorage/command.go -------------------------------------------------------------------------------- /protocol/domstorage/domain.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mafredri/cdp/HEAD/protocol/domstorage/domain.go -------------------------------------------------------------------------------- /protocol/domstorage/event.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mafredri/cdp/HEAD/protocol/domstorage/event.go -------------------------------------------------------------------------------- /protocol/domstorage/types.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mafredri/cdp/HEAD/protocol/domstorage/types.go -------------------------------------------------------------------------------- /protocol/emulation/command.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mafredri/cdp/HEAD/protocol/emulation/command.go -------------------------------------------------------------------------------- /protocol/emulation/domain.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mafredri/cdp/HEAD/protocol/emulation/domain.go -------------------------------------------------------------------------------- /protocol/emulation/event.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mafredri/cdp/HEAD/protocol/emulation/event.go -------------------------------------------------------------------------------- /protocol/emulation/types.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mafredri/cdp/HEAD/protocol/emulation/types.go -------------------------------------------------------------------------------- /protocol/eventbreakpoints/command.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mafredri/cdp/HEAD/protocol/eventbreakpoints/command.go -------------------------------------------------------------------------------- /protocol/eventbreakpoints/domain.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mafredri/cdp/HEAD/protocol/eventbreakpoints/domain.go -------------------------------------------------------------------------------- /protocol/extensions/command.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mafredri/cdp/HEAD/protocol/extensions/command.go -------------------------------------------------------------------------------- /protocol/extensions/domain.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mafredri/cdp/HEAD/protocol/extensions/domain.go -------------------------------------------------------------------------------- /protocol/extensions/types.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mafredri/cdp/HEAD/protocol/extensions/types.go -------------------------------------------------------------------------------- /protocol/fedcm/command.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mafredri/cdp/HEAD/protocol/fedcm/command.go -------------------------------------------------------------------------------- /protocol/fedcm/domain.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mafredri/cdp/HEAD/protocol/fedcm/domain.go -------------------------------------------------------------------------------- /protocol/fedcm/event.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mafredri/cdp/HEAD/protocol/fedcm/event.go -------------------------------------------------------------------------------- /protocol/fedcm/types.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mafredri/cdp/HEAD/protocol/fedcm/types.go -------------------------------------------------------------------------------- /protocol/fetch/command.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mafredri/cdp/HEAD/protocol/fetch/command.go -------------------------------------------------------------------------------- /protocol/fetch/domain.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mafredri/cdp/HEAD/protocol/fetch/domain.go -------------------------------------------------------------------------------- /protocol/fetch/event.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mafredri/cdp/HEAD/protocol/fetch/event.go -------------------------------------------------------------------------------- /protocol/fetch/types.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mafredri/cdp/HEAD/protocol/fetch/types.go -------------------------------------------------------------------------------- /protocol/filesystem/command.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mafredri/cdp/HEAD/protocol/filesystem/command.go -------------------------------------------------------------------------------- /protocol/filesystem/domain.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mafredri/cdp/HEAD/protocol/filesystem/domain.go -------------------------------------------------------------------------------- /protocol/filesystem/types.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mafredri/cdp/HEAD/protocol/filesystem/types.go -------------------------------------------------------------------------------- /protocol/headlessexperimental/command.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mafredri/cdp/HEAD/protocol/headlessexperimental/command.go -------------------------------------------------------------------------------- /protocol/headlessexperimental/domain.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mafredri/cdp/HEAD/protocol/headlessexperimental/domain.go -------------------------------------------------------------------------------- /protocol/headlessexperimental/event.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mafredri/cdp/HEAD/protocol/headlessexperimental/event.go -------------------------------------------------------------------------------- /protocol/headlessexperimental/types.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mafredri/cdp/HEAD/protocol/headlessexperimental/types.go -------------------------------------------------------------------------------- /protocol/heapprofiler/command.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mafredri/cdp/HEAD/protocol/heapprofiler/command.go -------------------------------------------------------------------------------- /protocol/heapprofiler/domain.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mafredri/cdp/HEAD/protocol/heapprofiler/domain.go -------------------------------------------------------------------------------- /protocol/heapprofiler/event.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mafredri/cdp/HEAD/protocol/heapprofiler/event.go -------------------------------------------------------------------------------- /protocol/heapprofiler/types.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mafredri/cdp/HEAD/protocol/heapprofiler/types.go -------------------------------------------------------------------------------- /protocol/indexeddb/command.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mafredri/cdp/HEAD/protocol/indexeddb/command.go -------------------------------------------------------------------------------- /protocol/indexeddb/domain.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mafredri/cdp/HEAD/protocol/indexeddb/domain.go -------------------------------------------------------------------------------- /protocol/indexeddb/types.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mafredri/cdp/HEAD/protocol/indexeddb/types.go -------------------------------------------------------------------------------- /protocol/input/command.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mafredri/cdp/HEAD/protocol/input/command.go -------------------------------------------------------------------------------- /protocol/input/domain.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mafredri/cdp/HEAD/protocol/input/domain.go -------------------------------------------------------------------------------- /protocol/input/event.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mafredri/cdp/HEAD/protocol/input/event.go -------------------------------------------------------------------------------- /protocol/input/types.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mafredri/cdp/HEAD/protocol/input/types.go -------------------------------------------------------------------------------- /protocol/inspector/domain.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mafredri/cdp/HEAD/protocol/inspector/domain.go -------------------------------------------------------------------------------- /protocol/inspector/event.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mafredri/cdp/HEAD/protocol/inspector/event.go -------------------------------------------------------------------------------- /protocol/internal/browser.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mafredri/cdp/HEAD/protocol/internal/browser.go -------------------------------------------------------------------------------- /protocol/internal/error.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mafredri/cdp/HEAD/protocol/internal/error.go -------------------------------------------------------------------------------- /protocol/internal/error_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mafredri/cdp/HEAD/protocol/internal/error_test.go -------------------------------------------------------------------------------- /protocol/internal/network.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mafredri/cdp/HEAD/protocol/internal/network.go -------------------------------------------------------------------------------- /protocol/internal/page.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mafredri/cdp/HEAD/protocol/internal/page.go -------------------------------------------------------------------------------- /protocol/io/command.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mafredri/cdp/HEAD/protocol/io/command.go -------------------------------------------------------------------------------- /protocol/io/domain.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mafredri/cdp/HEAD/protocol/io/domain.go -------------------------------------------------------------------------------- /protocol/io/stream_reader.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mafredri/cdp/HEAD/protocol/io/stream_reader.go -------------------------------------------------------------------------------- /protocol/io/stream_reder_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mafredri/cdp/HEAD/protocol/io/stream_reder_test.go -------------------------------------------------------------------------------- /protocol/io/types.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mafredri/cdp/HEAD/protocol/io/types.go -------------------------------------------------------------------------------- /protocol/layertree/command.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mafredri/cdp/HEAD/protocol/layertree/command.go -------------------------------------------------------------------------------- /protocol/layertree/domain.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mafredri/cdp/HEAD/protocol/layertree/domain.go -------------------------------------------------------------------------------- /protocol/layertree/event.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mafredri/cdp/HEAD/protocol/layertree/event.go -------------------------------------------------------------------------------- /protocol/layertree/types.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mafredri/cdp/HEAD/protocol/layertree/types.go -------------------------------------------------------------------------------- /protocol/log/command.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mafredri/cdp/HEAD/protocol/log/command.go -------------------------------------------------------------------------------- /protocol/log/domain.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mafredri/cdp/HEAD/protocol/log/domain.go -------------------------------------------------------------------------------- /protocol/log/event.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mafredri/cdp/HEAD/protocol/log/event.go -------------------------------------------------------------------------------- /protocol/log/types.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mafredri/cdp/HEAD/protocol/log/types.go -------------------------------------------------------------------------------- /protocol/media/domain.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mafredri/cdp/HEAD/protocol/media/domain.go -------------------------------------------------------------------------------- /protocol/media/event.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mafredri/cdp/HEAD/protocol/media/event.go -------------------------------------------------------------------------------- /protocol/media/types.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mafredri/cdp/HEAD/protocol/media/types.go -------------------------------------------------------------------------------- /protocol/memory/command.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mafredri/cdp/HEAD/protocol/memory/command.go -------------------------------------------------------------------------------- /protocol/memory/domain.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mafredri/cdp/HEAD/protocol/memory/domain.go -------------------------------------------------------------------------------- /protocol/memory/types.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mafredri/cdp/HEAD/protocol/memory/types.go -------------------------------------------------------------------------------- /protocol/network/command.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mafredri/cdp/HEAD/protocol/network/command.go -------------------------------------------------------------------------------- /protocol/network/domain.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mafredri/cdp/HEAD/protocol/network/domain.go -------------------------------------------------------------------------------- /protocol/network/event.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mafredri/cdp/HEAD/protocol/network/event.go -------------------------------------------------------------------------------- /protocol/network/types.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mafredri/cdp/HEAD/protocol/network/types.go -------------------------------------------------------------------------------- /protocol/network/util.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mafredri/cdp/HEAD/protocol/network/util.go -------------------------------------------------------------------------------- /protocol/overlay/command.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mafredri/cdp/HEAD/protocol/overlay/command.go -------------------------------------------------------------------------------- /protocol/overlay/domain.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mafredri/cdp/HEAD/protocol/overlay/domain.go -------------------------------------------------------------------------------- /protocol/overlay/event.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mafredri/cdp/HEAD/protocol/overlay/event.go -------------------------------------------------------------------------------- /protocol/overlay/types.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mafredri/cdp/HEAD/protocol/overlay/types.go -------------------------------------------------------------------------------- /protocol/page/command.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mafredri/cdp/HEAD/protocol/page/command.go -------------------------------------------------------------------------------- /protocol/page/domain.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mafredri/cdp/HEAD/protocol/page/domain.go -------------------------------------------------------------------------------- /protocol/page/event.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mafredri/cdp/HEAD/protocol/page/event.go -------------------------------------------------------------------------------- /protocol/page/types.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mafredri/cdp/HEAD/protocol/page/types.go -------------------------------------------------------------------------------- /protocol/performance/command.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mafredri/cdp/HEAD/protocol/performance/command.go -------------------------------------------------------------------------------- /protocol/performance/domain.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mafredri/cdp/HEAD/protocol/performance/domain.go -------------------------------------------------------------------------------- /protocol/performance/event.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mafredri/cdp/HEAD/protocol/performance/event.go -------------------------------------------------------------------------------- /protocol/performance/types.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mafredri/cdp/HEAD/protocol/performance/types.go -------------------------------------------------------------------------------- /protocol/performancetimeline/command.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mafredri/cdp/HEAD/protocol/performancetimeline/command.go -------------------------------------------------------------------------------- /protocol/performancetimeline/domain.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mafredri/cdp/HEAD/protocol/performancetimeline/domain.go -------------------------------------------------------------------------------- /protocol/performancetimeline/event.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mafredri/cdp/HEAD/protocol/performancetimeline/event.go -------------------------------------------------------------------------------- /protocol/performancetimeline/types.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mafredri/cdp/HEAD/protocol/performancetimeline/types.go -------------------------------------------------------------------------------- /protocol/preload/domain.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mafredri/cdp/HEAD/protocol/preload/domain.go -------------------------------------------------------------------------------- /protocol/preload/event.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mafredri/cdp/HEAD/protocol/preload/event.go -------------------------------------------------------------------------------- /protocol/preload/types.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mafredri/cdp/HEAD/protocol/preload/types.go -------------------------------------------------------------------------------- /protocol/profiler/command.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mafredri/cdp/HEAD/protocol/profiler/command.go -------------------------------------------------------------------------------- /protocol/profiler/domain.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mafredri/cdp/HEAD/protocol/profiler/domain.go -------------------------------------------------------------------------------- /protocol/profiler/event.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mafredri/cdp/HEAD/protocol/profiler/event.go -------------------------------------------------------------------------------- /protocol/profiler/types.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mafredri/cdp/HEAD/protocol/profiler/types.go -------------------------------------------------------------------------------- /protocol/pwa/command.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mafredri/cdp/HEAD/protocol/pwa/command.go -------------------------------------------------------------------------------- /protocol/pwa/domain.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mafredri/cdp/HEAD/protocol/pwa/domain.go -------------------------------------------------------------------------------- /protocol/pwa/types.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mafredri/cdp/HEAD/protocol/pwa/types.go -------------------------------------------------------------------------------- /protocol/runtime/command.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mafredri/cdp/HEAD/protocol/runtime/command.go -------------------------------------------------------------------------------- /protocol/runtime/domain.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mafredri/cdp/HEAD/protocol/runtime/domain.go -------------------------------------------------------------------------------- /protocol/runtime/event.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mafredri/cdp/HEAD/protocol/runtime/event.go -------------------------------------------------------------------------------- /protocol/runtime/testdata/log.golden: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mafredri/cdp/HEAD/protocol/runtime/testdata/log.golden -------------------------------------------------------------------------------- /protocol/runtime/testdata/log.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mafredri/cdp/HEAD/protocol/runtime/testdata/log.html -------------------------------------------------------------------------------- /protocol/runtime/testdata/log.input: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mafredri/cdp/HEAD/protocol/runtime/testdata/log.input -------------------------------------------------------------------------------- /protocol/runtime/testdata/log_input_gen.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mafredri/cdp/HEAD/protocol/runtime/testdata/log_input_gen.go -------------------------------------------------------------------------------- /protocol/runtime/types.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mafredri/cdp/HEAD/protocol/runtime/types.go -------------------------------------------------------------------------------- /protocol/runtime/util.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mafredri/cdp/HEAD/protocol/runtime/util.go -------------------------------------------------------------------------------- /protocol/runtime/util_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mafredri/cdp/HEAD/protocol/runtime/util_test.go -------------------------------------------------------------------------------- /protocol/schema/command.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mafredri/cdp/HEAD/protocol/schema/command.go -------------------------------------------------------------------------------- /protocol/schema/domain.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mafredri/cdp/HEAD/protocol/schema/domain.go -------------------------------------------------------------------------------- /protocol/schema/types.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mafredri/cdp/HEAD/protocol/schema/types.go -------------------------------------------------------------------------------- /protocol/security/command.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mafredri/cdp/HEAD/protocol/security/command.go -------------------------------------------------------------------------------- /protocol/security/domain.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mafredri/cdp/HEAD/protocol/security/domain.go -------------------------------------------------------------------------------- /protocol/security/event.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mafredri/cdp/HEAD/protocol/security/event.go -------------------------------------------------------------------------------- /protocol/security/types.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mafredri/cdp/HEAD/protocol/security/types.go -------------------------------------------------------------------------------- /protocol/serviceworker/command.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mafredri/cdp/HEAD/protocol/serviceworker/command.go -------------------------------------------------------------------------------- /protocol/serviceworker/domain.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mafredri/cdp/HEAD/protocol/serviceworker/domain.go -------------------------------------------------------------------------------- /protocol/serviceworker/event.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mafredri/cdp/HEAD/protocol/serviceworker/event.go -------------------------------------------------------------------------------- /protocol/serviceworker/types.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mafredri/cdp/HEAD/protocol/serviceworker/types.go -------------------------------------------------------------------------------- /protocol/storage/command.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mafredri/cdp/HEAD/protocol/storage/command.go -------------------------------------------------------------------------------- /protocol/storage/domain.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mafredri/cdp/HEAD/protocol/storage/domain.go -------------------------------------------------------------------------------- /protocol/storage/event.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mafredri/cdp/HEAD/protocol/storage/event.go -------------------------------------------------------------------------------- /protocol/storage/types.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mafredri/cdp/HEAD/protocol/storage/types.go -------------------------------------------------------------------------------- /protocol/systeminfo/command.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mafredri/cdp/HEAD/protocol/systeminfo/command.go -------------------------------------------------------------------------------- /protocol/systeminfo/domain.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mafredri/cdp/HEAD/protocol/systeminfo/domain.go -------------------------------------------------------------------------------- /protocol/systeminfo/types.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mafredri/cdp/HEAD/protocol/systeminfo/types.go -------------------------------------------------------------------------------- /protocol/target/command.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mafredri/cdp/HEAD/protocol/target/command.go -------------------------------------------------------------------------------- /protocol/target/domain.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mafredri/cdp/HEAD/protocol/target/domain.go -------------------------------------------------------------------------------- /protocol/target/event.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mafredri/cdp/HEAD/protocol/target/event.go -------------------------------------------------------------------------------- /protocol/target/types.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mafredri/cdp/HEAD/protocol/target/types.go -------------------------------------------------------------------------------- /protocol/tethering/command.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mafredri/cdp/HEAD/protocol/tethering/command.go -------------------------------------------------------------------------------- /protocol/tethering/domain.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mafredri/cdp/HEAD/protocol/tethering/domain.go -------------------------------------------------------------------------------- /protocol/tethering/event.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mafredri/cdp/HEAD/protocol/tethering/event.go -------------------------------------------------------------------------------- /protocol/tracing/command.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mafredri/cdp/HEAD/protocol/tracing/command.go -------------------------------------------------------------------------------- /protocol/tracing/domain.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mafredri/cdp/HEAD/protocol/tracing/domain.go -------------------------------------------------------------------------------- /protocol/tracing/event.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mafredri/cdp/HEAD/protocol/tracing/event.go -------------------------------------------------------------------------------- /protocol/tracing/types.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mafredri/cdp/HEAD/protocol/tracing/types.go -------------------------------------------------------------------------------- /protocol/webaudio/command.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mafredri/cdp/HEAD/protocol/webaudio/command.go -------------------------------------------------------------------------------- /protocol/webaudio/domain.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mafredri/cdp/HEAD/protocol/webaudio/domain.go -------------------------------------------------------------------------------- /protocol/webaudio/event.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mafredri/cdp/HEAD/protocol/webaudio/event.go -------------------------------------------------------------------------------- /protocol/webaudio/types.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mafredri/cdp/HEAD/protocol/webaudio/types.go -------------------------------------------------------------------------------- /protocol/webauthn/command.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mafredri/cdp/HEAD/protocol/webauthn/command.go -------------------------------------------------------------------------------- /protocol/webauthn/domain.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mafredri/cdp/HEAD/protocol/webauthn/domain.go -------------------------------------------------------------------------------- /protocol/webauthn/event.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mafredri/cdp/HEAD/protocol/webauthn/event.go -------------------------------------------------------------------------------- /protocol/webauthn/types.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mafredri/cdp/HEAD/protocol/webauthn/types.go -------------------------------------------------------------------------------- /rpcc/call.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mafredri/cdp/HEAD/rpcc/call.go -------------------------------------------------------------------------------- /rpcc/conn.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mafredri/cdp/HEAD/rpcc/conn.go -------------------------------------------------------------------------------- /rpcc/conn_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mafredri/cdp/HEAD/rpcc/conn_test.go -------------------------------------------------------------------------------- /rpcc/doc.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mafredri/cdp/HEAD/rpcc/doc.go -------------------------------------------------------------------------------- /rpcc/socket.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mafredri/cdp/HEAD/rpcc/socket.go -------------------------------------------------------------------------------- /rpcc/socket_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mafredri/cdp/HEAD/rpcc/socket_test.go -------------------------------------------------------------------------------- /rpcc/stream.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mafredri/cdp/HEAD/rpcc/stream.go -------------------------------------------------------------------------------- /rpcc/stream_sync.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mafredri/cdp/HEAD/rpcc/stream_sync.go -------------------------------------------------------------------------------- /rpcc/stream_sync_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mafredri/cdp/HEAD/rpcc/stream_sync_test.go -------------------------------------------------------------------------------- /rpcc/stream_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mafredri/cdp/HEAD/rpcc/stream_test.go -------------------------------------------------------------------------------- /session/conn.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mafredri/cdp/HEAD/session/conn.go -------------------------------------------------------------------------------- /session/doc.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mafredri/cdp/HEAD/session/doc.go -------------------------------------------------------------------------------- /session/manager.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mafredri/cdp/HEAD/session/manager.go -------------------------------------------------------------------------------- /session/manager_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mafredri/cdp/HEAD/session/manager_test.go -------------------------------------------------------------------------------- /session/session.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mafredri/cdp/HEAD/session/session.go -------------------------------------------------------------------------------- /session/session_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mafredri/cdp/HEAD/session/session_test.go -------------------------------------------------------------------------------- /sync.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mafredri/cdp/HEAD/sync.go --------------------------------------------------------------------------------