Skip to content

Commit 70d67ad

Browse files
authored
fix: hide route calls from tracing (#3032)
1 parent e6e6da4 commit 70d67ad

File tree

2 files changed

+2
-3
lines changed

2 files changed

+2
-3
lines changed

src/Playwright.Tests/TracingTests.cs

-1
Original file line numberDiff line numberDiff line change
@@ -259,7 +259,6 @@ await Context.Tracing.StartAsync(new()
259259
"Page.EvaluateAsync",
260260
"Page.RouteAsync",
261261
"Page.GotoAsync",
262-
"Route.ContinueAsync",
263262
"Page.GotoAsync"
264263
};
265264
Assert.AreEqual(expectedActionApiNames, actualActionApiNames);

src/Playwright/Transport/Connection.cs

+2-2
Original file line numberDiff line numberDiff line change
@@ -131,7 +131,7 @@ internal Task<T> SendMessageToServerAsync<T>(
131131
ChannelOwner @object,
132132
string method,
133133
Dictionary<string, object> args = null,
134-
bool keepNulls = false) => WrapApiCallAsync(() => InnerSendMessageToServerAsync<T>(@object, method, args, keepNulls));
134+
bool keepNulls = false) => WrapApiCallAsync(() => InnerSendMessageToServerAsync<T>(@object, method, args, keepNulls), @object?._isInternalType ?? false);
135135

136136
private async Task<T> InnerSendMessageToServerAsync<T>(
137137
ChannelOwner @object,
@@ -184,7 +184,7 @@ private async Task<T> InnerSendMessageToServerAsync<T>(
184184
};
185185
}
186186

187-
if (_tracingCount > 0 && frames.Count > 0 && !@object._isInternalType)
187+
if (_tracingCount > 0 && frames.Count > 0 && @object.Guid != "localUtils")
188188
{
189189
LocalUtils.AddStackToTracingNoReply(frames, id);
190190
}

0 commit comments

Comments
 (0)