Sagarpreet Chadhaforsagarpreet.hashnode.net·Nov 22, 2022When Playwright met PollyJS...The Beginning: Hi there, I recently worked on building an E2E testing framework with the only objective in my mind - "I want to write E2E tests fast. Very fast." I am sharing my approach and learnings in this blog post. This approach is amalgam of 2 ...Discuss·39 likes·670 readsReact
David PengforDavid Pengdavipon.hashnode.net·Jul 27, 2022FeaturedTest Svelte Component Using Vitest & PlaywrightHi 👋, I'm David Peng. It's been a while since my last blog post. In the last two months, I added 100+ unit/ component/ e2e tests in my Svelte project (yeah, I didn't do TDD because I wasn't familiar with testing enough 😅). I experimented with diffe...Discuss·21 likes·7.4K readsSvelteSvelte
Luca Del PuppoforRun, Code & Learnpuppo92.hashnode.net·Feb 16, 2023Playwright - Not just for FrontendIn this path with Playwright we spent a lot of time speaking about e2e tests and component testing in the frontend world. But now it’s time to spill the beans and tell you a secret. Playwright can be used on the backend side too. API Testing Playwri...Discuss·13 likes·463 readsPlaywright Getting Startedplaywright
Md Moeen Ajaz KhanforMd Moeen Ajaz Khanmdmoeenajazkhan.hashnode.net·Mar 26, 2024How I can do API automation using Playwright?Playwright is primarily designed for browser automation, so it doesn’t natively support API automation out of the box like tools such as Postman or Insomnia. However, you can still perform API automation using Playwright by leveraging its capabilitie...Discussplaywright
Madeline CaplesforMadeline's Machine Learning Logmadelinecaples.hashnode.net·Apr 24, 2023Getting Started with PlaywrightWhat is Playwright? Playwright is a testing library built by Microsoft for frontend end-to-end testing. End-to-end testing simulates a real-world scenario from the end user's perspective. Installation To get started you'll need to install Playwright....Discuss·26 readsend to end testing
Artur ChukhraiforKing Artur's blog 👑chukhraiartur.hashnode.net·Apr 21, 2023Scrape Google Flights with PythonWhat will be scraped Full Code from playwright.sync_api import sync_playwright from selectolax.lexbor import LexborHTMLParser import json, time def get_page(playwright, from_place, to_place, departure_date, return_date): page = playwright.chro...DiscussPython
Denisha Surjoodeenforthe niche testernichetester.hashnode.net·Apr 14, 2023Introducing Playwright to TestRail ReporterIn the ever-evolving landscape of software development, test automation has become a crucial aspect of ensuring the quality and reliability of applications. Engineers and teams are constantly looking for tools that streamline the testing life cycle a...DiscussTesting
Luca Del PuppoforRun, Code & Learnpuppo92.hashnode.net·Apr 6, 2023Playwright - UI ModeHi folks,In release 1.32, Playwright released a new cool feature for us, the UI Mode! This feature is still in beta yet, but you can use it by adding a simple option in the CLI --ui. $ npx playwright test --ui The result of this command is a new win...Discuss·87 readsPlaywright Getting Startedplaywright
Gagneet SinghforThoughts @ Workthoughtsatwork.hashnode.net·Mar 31, 2023Cypress and Playwright: Two Powerful Tools for Web TestingWeb applications are complex and dynamic, and they need to work well across different browsers and devices. Testing web applications is challenging, but also essential to ensure quality and user satisfaction. Fortunately, there are many tools and fra...Discuss·1 likeCypress
Theo VasilisforApify Blogapify.hashnode.net·Mar 16, 2023Scraping single-page applications with PlaywrightSwitching to Playwright with headless Chrome provides a more powerful and flexible way to scrape SPAs. Automate browser interactions, wait for dynamic content updates, intercept API requests, and extract data using the DOM API. Scraping data from sin...Discussweb scraping
Harish RajoraforHarish Rajora'sharishdevops.hashnode.net·Mar 16, 2023Material UI Testing: A Detailed Guide With ExamplesOrganizations have consistently adopted existing technologies only when developing the same software product or a bit differently. For instance, when creating a responsive design using CSS, Bootstrap becomes a de facto choice for us. It helps us not ...Discussselenium
Theo VasilisforApify Blogapify.hashnode.net·Feb 27, 2023Playwright testing: how to write and run E2E tests properlyEnd-to-end tests are an essential part of any comprehensive testing strategy, but creating them can be a time-consuming and tedious process. What if we told you there’s a better way? As a member of a web development team, you probably understand the ...DiscussTesting
Bogdan BujdeaforBogdan Bujdeabogdan.hashnode.net·Feb 24, 2023Running e2e tests with Playwright in Azure YAML PipelinesMy team is working on a product with a React website as the client and a C# ASP.NET Web API as the server. It's important to run end-to-end (e2e) tests with Playwright before each release to ensure that we didn't break anything. Running them from the...Discuss·197 readsAzure DevOpsplaywright