Introduction to TypeScript
Introduction to TypeScript 1.1 What is TypeScript? Introduction to TypeScript History of TypeScript Why TypeScript was created Features of TypeScript TypeScript vs JavaScript 1.2 Benefits of TypeScript Strong Typing Better Read more »
TypeScript Training @ Techtutorialz
TypeScript Training @ Techtutorialz TypeScript training roadmap Introduction to TypeScript Installing Node.js and TypeScript Variables (let, const) Data types Arrays and Tuples Enums Functions Optional and Default Parameters Interfaces 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 »
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 »
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 »
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 »
Playwright APIs
Playwright APIs One of Playwright’s biggest strengths is that Microsoft has built a very rich API. Instead of relying on third-party libraries, Playwright provides hundreds of built-in methods covering almost Read more »
Handling Cookies in Playwright
Handling Cookies in Playwright Handling cookies is one of the most common tasks in Playwright. Here are the most useful operations with examples. Get All Cookies import { test } Read more »
Playwright Reports
Playwright Reports Playwright provides powerful reporting features that help you analyze test execution, identify failures, debug issues, and share results with your team. Why are Playwright Reports Important? ✅ View Read more »
Timeouts in Playwright
Timeouts Playwright Test has multiple configurable timeouts for various tasks. Timeout Default Description Test timeout 30_000 ms Timeout for each test Set in config { timeout: 60_000 } Override in Read more »
