mirror of
https://github.com/microsoft/playwright.git
synced 2024-11-28 09:23:42 +03:00
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([
|
||||
'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());
|
||||
}
|
||||
|
Loading…
Reference in New Issue
Block a user