Steve Worthamstevewortham.hashnode.dev·Nov 15, 2024Guide to Playwright Debugging – Tips and TechniquesPlaywright is a powerful test automation tool that is gaining popularity in the software development world. The tool allows to automate browser tasks and test web applications. With automation, comes the need to ensure seamless execution of the scrip...Discussplaywright
Animesh PathakforKeploy Community Blogkeploy.hashnode.dev·Nov 13, 2024Playwright vs Cypress: Choosing the Best E2E Testing FrameworkIn the world of web application testing, end-to-end (E2E) testing frameworks play a critical role. They allow teams to automate tests that simulate real user interactions, ensuring that applications behave as expected from start to finish. Two of the...Discussplaywright
Anix LynchProanixblog.hashnode.dev·Nov 12, 2024Playwright Python and Pytest for Web Automation TestingGetting Start 1. Playwright Installation Run this in your terminal: pip install playwright playwright install 2. Launching the Browser Create a Python script and add: from playwright.sync_api import sync_playwright with sync_playwright() as p: ...DiscussWeb Automation
Sakshi from KushoAIforSoftwareDeepDivessoftware-deep-dives.hashnode.dev·Nov 7, 2024Comparison of UI automation frameworks and what’s best for each use case!This blog is written by Akshat Virmani at KushoAI. We're building the fastest way to test your APIs. It's completely free and you can sign up here. Testing has become a major part of software development in the growing world of technological advancem...Discussautomation testing
Steve Worthamstevewortham.hashnode.dev·Nov 5, 2024Visual Regression Testing Using PlaywrightAmid the fast-moving process of delivering software, the time spent on reviewing web pages manually is progressively reducing. In order to maintain the speed of modern development, we require tools that help keep our designs and layouts preserved and...Discuss#Regression
Steve Worthamstevewortham.hashnode.dev·Nov 4, 2024Playwright vs. Puppeteer: Choosing the Right Browser Automation LibraryBoth these Node.js libraries are designed to facilitate browser automation for testing purposes, and they both do a fantastic job. Each comes with its own offerings and specific benefits, which makes choosing one a bit of a challenge, especially for ...Discussplaywright
satyaprakash beherasatyabehera.hashnode.dev·Nov 1, 2024A Beginner’s Guide to Component Testing with PlaywrightWith the growing complexity of web applications, performing end-to-end testing on them is equally complex. The traditional strategy of testing the application UI can be flaky and may require regular maintenance. A paradigm shift towards component tes...DiscussTesting
Tally Baraktallybarak.com·Oct 30, 2024Common Questions About Software TestingRecently, I was approached by an automation developer who was considering transitioning from Cypress to Playwright (smart developer!), asking me for some advice on the transition. He shared a set of questions, and as those were pretty generic, I took...Discussplaywright
Canopascanopas.hashnode.dev·Oct 29, 2024How to write E2E tests for Next.js Application using PlaywrightBackground Imagine building a house without carefully reviewing the blueprints or measuring the materials. You might have misaligned walls, incorrectly sized windows, or structural issues. Similarly, while developing an application, neglecting tests ...DiscussWeb Development
Thananjayan RajasekaranforA Little drops from Opsthanan.hashnode.dev·Oct 26, 2024Distroless: Efficient Playwright Testing with Minimal Docker ImagesSize comparison between images When setting up Playwright tests in a CI/CD pipeline, it’s common to configure the test scripts to execute in an isolated environment. In today’s tech landscape, containerization using Docker is one of the best options,...DiscussDevops