When I first start using Cypress, I was frequently getting errors with "undefined" values after calling a function. The function was returning before the previous assignment was completed. Later, I realized it was due to asynchronous working way. It means, basically all the commands are queued and called sequentially. There is still no issues. However whenever we mix sync and async code, then we start to mix the execution order. In Playwright there is a trivial way to ensure the completion of a call with 'await' keyword. But in Cypess, it is a bit different. Let's see how it works.
1. Sync and Async Code together