Your question
I have a question about codegen, when i use "pwsh .\playwright.ps1 codegen" or "playwright codegen" , allways failed because of Timeout in Version 1.20.1


I don't know how to deal with it.
//here is info
But if run codegen with playwright - 1.17.3 , chorme will start and record operation correctly after 10s.
And if i test playwright in c#code, then chorme auto start correctly both in version 1.17.3 and 1.20.1
await using var browser = await playwright.Chromium.LaunchAsync(new BrowserTypeLaunchOptions
{
Headless = false,
});
//other codes....