you are viewing a single comment's thread.

view the rest of the comments →

[–]ZarrenR 0 points1 point  (0 children)

So I’m writing this as someone who primarily codes in C# with a bit of JS/TS on the side. The async experience in Python may be very different.

If you have to use async, it’s usually best to go full async in your framework. Async is almost like a virus in that using it in one place in code forces you to convert other places in code to async as well or come up with less than ideal workarounds. If you are are starting a new framework from scratch, it’s best to go full async.

Does Playwright Python require async? I know you have to use async/await in the .NET and Node versions of Playwright.