Pawan Gangwaniblogs.pgangwani.co.in·Sep 30, 2024Achieving Asynchronous Parameterized Tests in Playwright with API DataIntroduction In modern web development, automated testing is crucial for ensuring the reliability and performance of applications. Playwright, a powerful end-to-end testing framework, offers robust features for writing and running tests. One advanced...31 readsplaywright
Danny Crastoblog.danwald.me·Sep 5, 2024Shorten pytest's test namesI noticed that the unittest pipeline was failing. I opened up the logs and saw a wall of text that took about 20 pages to scroll through to see what was failing. It turned out to be an Assert failure where the input wasn't raising an exception. The p...Python
Eleonora Belovaqualitymatters.hashnode.dev·Jan 31, 2024How to parameterize projects in PlaywrightIntroduction Today, I encountered an interesting challenge while working on a Playwright project at work, and I’d like to document my findings. The task was to simultaneously run multiple projects, each with different sets of data. Thankfully, Playwr...10 likes·535 readstest-automation
Sébastien NOIROTiwtyo.today·Jun 26, 2023JUnit5 and Parameterized TestsIntroduction JUnit is an essential framework in the Java world for unit testing. You might already be familiar with writing test cases, assertions, and handling expected exceptions in JUnit. However, there is a powerful feature that you might be miss...10 likes·1.5K readsbest practices