CI/CD Integration with Playwright -Azure DevOps
CI/CD Integration with Playwright (Azure DevOps & GitHub Actions) is one of the most important topics for automation engineers. It enables Playwright tests to run automatically whenever code is pushed, Read more »
CI Best Practices in Playwright
Playwright CI/CD Best Practices: Build Reliable and Scalable Test Pipelines CI (Continuous Integration) is not just about running Playwright tests after every commit—it’s about making your test execution fast, reliable, Read more »
API automation in Playwright: GET call
import {test, Page, Locator, expect,FileChooser } from ‘@playwright/test’; //API automation : Get call test(“API Get call“, async ({ request }) => { const response = await request.get(“https://petstore.swagger.io/v2/pet/findByStatus?status=available”); expect(response.ok()).toBeTruthy(); Read more »
API automation in Playwright: POST method
//API automation in Playwright: POST method test(‘POST API Request’, async ({ request }) => { const response = await request.post( ‘https://petstore.swagger.io/v2/pet’, { Read more »
Upload Files using API in Playwright
Upload the files using API in Playwright In Playwright API testing, file uploads are performed by sending a multipart/form-data request using the multipart option. Unlike UI automation (where you use Read more »
Playwright Interview Questions
Is Playwright better than Selenium? Playwright is generally considered better than Selenium for modern web application testing due to its speed, performance, and ease of use, particularly when testing modern Read more »
Playwright Interview Questions – Part2
Why is Playwright faster than Selenium? Direct communication with browser using browser protocols (CDP/WebSocket) No WebDriver dependency Auto-waiting reduces unnecessary waits Parallel execution by default Multiple browser contexts instead of Read more »
Playwright Interview Questions Cheat sheet
If you’re preparing for a Playwright Automation Tester interview (3–10 years experience), these are some of the most commonly asked questions. Basic Questions What is Playwright? Why do you prefer Read more »
