Hello,
I’m new to the world of k6 and building out a POC using the OSS version. I have some basic tests running but I’m seeing differences when trying to use code from videos of the k6 dev advocates. I think perhaps they’re a bit outdated and some syntax has changed.
For example I have a browser based test that performs a simple login, similar to the k6 examples I see out there. However, my IDE seems to take issue with what k6 suggests in their documentation:
await Promise.all([page.waitForNavigation(), submitButton.click()]);
Are there any up to date repositories out there that I could check out to get an idea of more nuance here?