cherry-pick(#31961): fix(trace-viewer): make 'hide route actions' work for .NET
This commit is contained in:
parent
5fdf97658e
commit
2cfe733e30
|
|
@ -411,9 +411,28 @@ function collectSources(actions: trace.ActionTraceEvent[], errorDescriptors: Err
|
||||||
}
|
}
|
||||||
|
|
||||||
const kRouteMethods = new Set([
|
const kRouteMethods = new Set([
|
||||||
'page.route', 'page.routefromhar', 'page.unroute', 'page.unrouteall',
|
'page.route',
|
||||||
'browsercontext.route', 'browsercontext.routefromhar', 'browsercontext.unroute', 'browsercontext.unrouteall',
|
'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) {
|
export function isRouteAction(action: ActionTraceEventInContext) {
|
||||||
return action.class === 'Route' || kRouteMethods.has(action.apiName.toLowerCase());
|
return action.class === 'Route' || kRouteMethods.has(action.apiName.toLowerCase());
|
||||||
}
|
}
|
||||||
|
|
|
||||||
Loading…
Reference in a new issue