mirror of
https://github.com/puppeteer/puppeteer
synced 2024-06-14 14:02:48 +00:00
chore: update code for chromium-bidi update (#10467)
This commit is contained in:
parent
919f0e8e7f
commit
1175fe98c1
@ -41,7 +41,7 @@ export class Browser extends BrowserBase {
|
||||
'network',
|
||||
'log',
|
||||
];
|
||||
static readonly subscribeCdpEvents: Bidi.CDP.EventNames[] = [
|
||||
static readonly subscribeCdpEvents: Bidi.Cdp.EventNames[] = [
|
||||
// Coverage
|
||||
'cdp.Debugger.scriptParsed',
|
||||
'cdp.CSS.styleSheetAdded',
|
||||
|
@ -136,12 +136,12 @@ interface Commands {
|
||||
returnType: Bidi.Message.EmptyResult;
|
||||
};
|
||||
'cdp.sendCommand': {
|
||||
params: Bidi.CDP.SendCommandParams;
|
||||
returnType: Bidi.CDP.SendCommandResult;
|
||||
params: Bidi.Cdp.SendCommandParams;
|
||||
returnType: Bidi.Cdp.SendCommandResult;
|
||||
};
|
||||
'cdp.getSession': {
|
||||
params: Bidi.CDP.GetSessionParams;
|
||||
returnType: Bidi.CDP.GetSessionResult;
|
||||
params: Bidi.Cdp.GetSessionParams;
|
||||
returnType: Bidi.Cdp.GetSessionResult;
|
||||
};
|
||||
}
|
||||
|
||||
@ -285,6 +285,6 @@ function createProtocolError(object: Bidi.Message.ErrorResult): string {
|
||||
|
||||
function isCDPEvent(
|
||||
event: Bidi.Message.EventMessage
|
||||
): event is Bidi.CDP.EventReceivedEvent {
|
||||
): event is Bidi.Cdp.EventReceivedEvent {
|
||||
return event.method.startsWith('cdp.');
|
||||
}
|
||||
|
Loading…
Reference in New Issue
Block a user