fix(trace-viewer): make 'hide route actions' work for .NET (#31961)

This commit is contained in:
Max Schmitt 2024-08-01 21:02:47 +02:00 committed by GitHub
parent 73e0e92a7e
commit 69561a194a
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

View File

@ -411,9 +411,28 @@ function collectSources(actions: trace.ActionTraceEvent[], errorDescriptors: Err
}
const kRouteMethods = new Set([
'page.route', 'page.routefromhar', 'page.unroute', 'page.unrouteall',
'browsercontext.route', 'browsercontext.routefromhar', 'browsercontext.unroute', 'browsercontext.unrouteall',
'page.route',
'page.routefromhar',
'page.unroute',
'page.unrouteall',
'browsercontext.route',
'browsercontext.routefromhar',
'browsercontext.unroute',
'browsercontext.unrouteall',
]);
{
// .NET adds async suffix.
for (const method of [...kRouteMethods])
kRouteMethods.add(method + 'async');
// Python methods which contain underscores.
for (const method of [
'page.route_from_har',
'page.unroute_all',
'context.route_from_har',
'context.unroute_all',
])
kRouteMethods.add(method);
}
export function isRouteAction(action: ActionTraceEventInContext) {
return action.class === 'Route' || kRouteMethods.has(action.apiName.toLowerCase());
}