Maciej Walanus

Results 9 comments of Maciej Walanus

Hello, I've just started hitting this exact issue in this exact line. Another - maybe unrelated issue is that there history/log for a file that has only been added and...

Hi, Is there an issue with using `Repository.Config` of `Configuration` type. Specifically `Set` family of methods? From the top of my head your call would look like: `repostiory.Config.Set("save.directory", "*");` Or...

I have created a PR for this: https://github.com/microsoft/playwright-dotnet/pull/2577 It is a code breaking change so I strongly request comments on the issue.

Let's assume this kind of snippet: ``` PageRunAndWaitForRequestFinishedOptions options = new() { Predicate = finishedRequest => responseTemplate.Matches(finishedRequest.Url, new HttpMethod(finishedRequest.Method)), Timeout = (float?)timeout?.TotalMilliseconds }; ``` The `Predicate` and similar Request/Response matchers...

I haven't been precise enough. We need to additionally access StatusCode in the Predicate.

So I've created an additional PR for possibly less breaking effect: https://github.com/microsoft/playwright-dotnet/pull/2578

But I don't like that solution, even for compatibilities sake.

The requests/responses are triggered by a normal application operation. The app is somewhat talkative, and it does some async requests for new data. We would like to have access to...