WishInfinite
WishInfinite
  • 108
  • 31 753
Playwright Tutorial | In Built Reporters | List, Line, Dot, HTML,Blob, Json, Junit, Github Reporters
HTML report in Playwright,
Generate Reports with Playwright,
Reports in Playwright
Reporter in Playwright
Generate Reports with Playwright
#playwright #typescript #javascript #tutorial #automation #testing #coding #selenium #cypress
playwright, playwright tutorial, playwright testing
===============================================================================
Chapters
00:00 - Introduction Of In Built Reporters in Playwright
01:08 - List Reporter in Playwright
06:39 - line Reporter in Playwright
09:21 - Dot Reporter in Playwright
12:51 - HTML Reporter in Playwright
18:00 - HTML Reporter in Playwright
21:28 - JSON Reporter in Playwright
31:10 - JUnit Reporter in Playwright
40:13 - GitHub Reporter in Playwright
41:35 - Reportr on CI in Playwright
42:41 - Multiple Report generation in Playwright
44:47 - Recap
================================================================================
Playwright with TypeScript / JavaScript Series - ua-cam.com/play/PL83cimSRP5ZmwhC6u255huRwSi9tlP-nc.html
Playwright API Testing - ua-cam.com/play/PL83cimSRP5ZlwSHlydctQ2njy0nTtjpPZ.html
Learn Playwright in 60 Seconds (Shorts Playlist) - ua-cam.com/play/PL83cimSRP5ZlgDL11AGCufbTmADTOwHhO.html
Playwright Quiz - www.youtube.com/@WishInfinite/community
Playwright Notes - docs.google.com/document/d/1O5NSFhHGc9icU3rfERSolAhLUxy2NxyiujsztN3ICL8/edit?usp=sharing
HTML Reporter in Playwright - ua-cam.com/video/o5JN_jP10Tk/v-deo.html
Handle Multiple Environment in Playwright - ua-cam.com/video/c-TC9QEuMuo/v-deo.html
============================================================================================================
Playwright with TypeScript | In Built Reporters | List, Line, Dot, HTML,Blob, Json, Junit, Github Reporters
Playwright Test comes with a few built-in reporters for different needs and ability to provide custom reporters.
All built-in reporters show detailed information about failures, and mostly differ in verbosity for successful runs.
List Reporter - List reporter is default reporter (except on CI where the dot reporter is default). It prints a line for each test being run.
Line Reporters - Line reporter is more concise than the list reporter. It uses a single line to report the last finished test, and prints failures when they occur. Line reporter is useful for large test suites where it shows the progress but does not spam the output by listing all the tests.
Dot Reporter - Dot reporter is very concise - it only produces a single character per successful test run. List reporter is default (except on CI where the dot reporter is default).
HTML Reporter - HTML reporter produces a self-contained folder that contains report for the test run that can be served as a web page.
Blob reporter​ - Blob reports contain all the details about the test run and can be used later to produce any other report.
JSON reporter​ -JSON reporter produces an object with all information about the test run.Most likely you want to write the JSON to a file. When running with --reporter=json, use PLAYWRIGHT_JSON_OUTPUT_NAME environment variable.
JUnit reporter​ - JUnit reporter produces a JUnit-style xml report. Most likely you want to write the report to an xml file.When running with --reporter=junit, use PLAYWRIGHT_JUNIT_OUTPUT_NAME environment variable:
GitHub Actions annotations​ - You can use the built in github reporter to get automatic failure annotations when running in GitHub actions.
Reporters on CI​ - You can use different reporters locally and on CI. For example, using concise 'dot' reporter avoids too much output. This is the default on CI.
import { defineConfig } from '@playwright/test';
export default defineConfig({
// Concise 'dot' for CI, default 'list' when running locally
reporter: process.env.CI ? 'dot' : 'list',
});
Переглядів: 74

Відео

Playwright Tutorial | Execute Test in Multiple Environments with Playwright | Handle Multiple Env
Переглядів 19821 день тому
How to Work with Multiple Environments with Playwright, Handle Multiple Environments in Playwright Handling Multiple Environments in Playwright Scripts using Dotenv Run Test with Multiple Environments in Playwright Manage Multiple Environments with Playwright #playwright #typescript #javascript #tutorial #automation #testing #coding #selenium #cypress playwright, playwright tutorial, playwright...
Playwright Tutorial | Basic Authentication Token for API Testing with Playwright | API Key Auth
Переглядів 353Місяць тому
Generate and Use Basic Authentication Token for API Testing API key Authentication with Playwright Basic Auth with Playwright Handle Basic Auth Tokens with Playwright API Access Token with with Playwright #playwright #typescript #javascript #tutorial #automation #testing #coding #selenium #cypress playwright, playwright tutorial, playwright testing Chapters 00:00 - Introduction Of Authenticatio...
Playwright Tutorial | Fetch and Validate API Response headers in Playwright
Переглядів 117Місяць тому
API Testing with Playwright, Fetch and Validate API Response headers with Playwright, API Validation with Playwright #playwright #typescript #javascript #tutorial #automation #testing #coding #selenium #cypress playwright, playwright tutorial, playwright testing Chapters 00:00 - Introduction Of Fetch and Validate API Response headers 01:22 - Fetch API Response headers in Postman tool 02:53 - Fe...
Playwright Tutorial | Delete Call For API Testing with Playwright
Переглядів 89Місяць тому
Playwright Tutorial | Delete Call For API Testing with Playwright
Playwright Tutorial | Pass Request Body - Request Payload Using JSON file | Patch Call Introduction
Переглядів 131Місяць тому
Playwright Tutorial | Pass Request Body - Request Payload Using JSON file | Patch Call Introduction
Playwright Tutorial | Put Call For API Testing with Playwright
Переглядів 95Місяць тому
Playwright Tutorial | Put Call For API Testing with Playwright
Playwright Tutorial | Post Call For API Testing with Playwright
Переглядів 1862 місяці тому
Playwright Tutorial | Post Call For API Testing with Playwright
Playwright Tutorial | Get Call for API Testing with Playwright | Pass BaseURL and Headers
Переглядів 3112 місяці тому
Playwright Tutorial | Get Call for API Testing with Playwright | Pass BaseURL and Headers
Playwright Tutorial | Introduction of API | Rest API
Переглядів 2702 місяці тому
Playwright Tutorial | Introduction of API | Rest API
Playwright Tutorial | Visual Testing in Playwright | Visually Compare Screenshot
Переглядів 4403 місяці тому
Playwright Tutorial | Visual Testing in Playwright | Visually Compare Screenshot
Playwright Tutorial | Annotate Test in Playwright | Provide Single or Multiple Annotation
Переглядів 1583 місяці тому
Playwright Tutorial | Annotate Test in Playwright | Provide Single or Multiple Annotation
Playwright Tutorial | Flexible Test Execution: Running Tests with Either or Both Tags in Playwright
Переглядів 1423 місяці тому
Playwright Tutorial | Flexible Test Execution: Running Tests with Either or Both Tags in Playwright
Playwright Tutorial | Tags in Playwright | Tagging Tests
Переглядів 1823 місяці тому
Playwright Tutorial | Tags in Playwright | Tagging Tests
Playwright Tutorial | Upload Single File / Multiple Files Playwright
Переглядів 1443 місяці тому
Playwright Tutorial | Upload Single File / Multiple Files Playwright
Playwright Tutorial | Keyboard Actions in Playwright
Переглядів 1584 місяці тому
Playwright Tutorial | Keyboard Actions in Playwright
Playwright Tutorial | Drag & Drop Action in Playwright
Переглядів 2044 місяці тому
Playwright Tutorial | Drag & Drop Action in Playwright
Playwright Tutorial | Perform Mouse Hover action in Playwright
Переглядів 1714 місяці тому
Playwright Tutorial | Perform Mouse Hover action in Playwright
Playwright Tutorial | Pass Test data as Fixtures
Переглядів 9724 місяці тому
Playwright Tutorial | Pass Test data as Fixtures
Playwright Tutorial | Read Test data from CSV file | Parameterize Tests
Переглядів 1,7 тис.4 місяці тому
Playwright Tutorial | Read Test data from CSV file | Parameterize Tests
Playwright With TypeScript / JavaScript | Introduction of Playwright | Playlist Content Overview
Переглядів 3,5 тис.5 місяців тому
Playwright With TypeScript / JavaScript | Introduction of Playwright | Playlist Content Overview
Playwright Tutorial | Read Test data from JSON File | Parameterize Tests
Переглядів 9895 місяців тому
Playwright Tutorial | Read Test data from JSON File | Parameterize Tests
Playwright Tutorial | Save and Reuse Authentication State | Skip Login
Переглядів 1,9 тис.5 місяців тому
Playwright Tutorial | Save and Reuse Authentication State | Skip Login
Playwright Tutorial | UI Mode in Playwright
Переглядів 1635 місяців тому
Playwright Tutorial | UI Mode in Playwright
Playwright Tutorial | Trace Viewer in Playwright
Переглядів 1345 місяців тому
Playwright Tutorial | Trace Viewer in Playwright
Playwright Tutorial | Debug Test using Playwright Inspector
Переглядів 1445 місяців тому
Playwright Tutorial | Debug Test using Playwright Inspector
Playwright Tutorial | Debug Test with Playwright VS Code Extension
Переглядів 1525 місяців тому
Playwright Tutorial | Debug Test with Playwright VS Code Extension
Playwright Tutorial | Automatically Find Locator | Pick Locator
Переглядів 5756 місяців тому
Playwright Tutorial | Automatically Find Locator | Pick Locator
Playwright Tutorial | Codeless Automation | Playwright Test Generator | Record Test Script
Переглядів 1836 місяців тому
Playwright Tutorial | Codeless Automation | Playwright Test Generator | Record Test Script
Playwright Tutorial | Fixtures over BeforeEach / AfterEach hooks
Переглядів 5756 місяців тому
Playwright Tutorial | Fixtures over BeforeEach / AfterEach hooks

КОМЕНТАРІ

  • @rakshithkotian3202
    @rakshithkotian3202 День тому

    Great info 💯

  • @AyyAppA_009
    @AyyAppA_009 День тому

    Hi Thanks for the session., May I know which extension your using for file Icons in VS code

    • @WishInfinite
      @WishInfinite День тому

      @AyyAppA_009 , Using "VSCode icons vscode-icons" currently.

    • @AyyAppA_009
      @AyyAppA_009 22 години тому

      @@WishInfinite Thanks

  • @rakshithkotian3202
    @rakshithkotian3202 3 дні тому

    You are doing great work ,its very helpful for my learning ,keep going 🔥

    • @WishInfinite
      @WishInfinite День тому

      @rakshithkotian3202 Thank you so much for the encouragement! I'm glad to hear that I can help with your learning. If you have any more questions or need further assistance, feel free to ask!

  • @WishInfinite
    @WishInfinite 8 днів тому

    Playwright with TypeScript / JavaScript Series - ua-cam.com/play/PL83cimSRP5ZmwhC6u255huRwSi9tlP-nc.html Playwright API Testing - ua-cam.com/play/PL83cimSRP5ZlwSHlydctQ2njy0nTtjpPZ.html Learn Playwright in 60 Seconds (Shorts Playlist) - ua-cam.com/users/playlist? list=PL83cimSRP5ZlgDL11AGCufbTmADTOwHhO Playwright Quiz - www.youtube.com/@WishInfinite/community Playwright Notes - docs.google.com/document/d/1O5NSFhHGc9icU3rfERSolAhLUxy2NxyiujsztN3ICL8/edit?usp=sharing SauceDemo Practice Site - www.saucedemo.com/ Dotenv Package - www.npmjs.com/package/dotenv Cross-Env Package - www.npmjs.com/package/cross-env

  • @WishInfinite
    @WishInfinite 8 днів тому

    Playwright with TypeScript / JavaScript Series - ua-cam.com/play/PL83cimSRP5ZmwhC6u255huRwSi9tlP-nc.html Playwright API Testing - ua-cam.com/play/PL83cimSRP5ZlwSHlydctQ2njy0nTtjpPZ.html Learn Playwright in 60 Seconds (Shorts Playlist) - ua-cam.com/play/PL83cimSRP5ZlgDL11AGCufbTmADTOwHhO.html Playwright Quiz - www.youtube.com/@WishInfinite/community Playwright Notes - docs.google.com/document/d/1O5NSFhHGc9icU3rfERSolAhLUxy2NxyiujsztN3ICL8/edit?usp=sharing HTML Reporter in Playwright - ua-cam.com/video/o5JN_jP10Tk/v-deo.html Handle Multiple Environment in Playwright - ua-cam.com/video/c-TC9QEuMuo/v-deo.html

  • @user-oi8wr9nk4b
    @user-oi8wr9nk4b 14 днів тому

    Thank you for the video, sir can you also make videos to explain more details about composing fixtures, Fixtures-options, Overriding fixtures, Combine custom fixtures from multiple modules, etc ?

    • @WishInfinite
      @WishInfinite 11 днів тому

      @user-oi8wr9nk4b Welcome and Noted, will check how I can include these topics into Playlist. . And on Fixtures I have following videos, you can watch. Playwright Tutorial | Understanding of Custom Fixtures - ua-cam.com/video/bSCiaWQx-Wo/v-deo.html Playwright Tutorial | Page Object Models with Fixtures | POM + Fixtures - ua-cam.com/video/qyCPtbEztvw/v-deo.html Playwright Tutorial | Fixtures over BeforeEach / AfterEach hooks - ua-cam.com/video/qNrt_2L-xnU/v-deo.html Playwright Tutorial | Pass Test data as Fixtures - ua-cam.com/video/71NlOaroxnE/v-deo.html

  • @user-oi8wr9nk4b
    @user-oi8wr9nk4b 14 днів тому

    Thank you for the video, sir can you also make videos to explain more details about composing fixtures, Fixtures-options, Overriding fixtures, Combine custom fixtures from multiple modules, etc ?

    • @WishInfinite
      @WishInfinite 11 днів тому

      @user-oi8wr9nk4b Welcome and Noted, will check how I can include these topics into Playlist. . And on Fixtures I have following videos, you can watch. Playwright Tutorial | Understanding of Custom Fixtures - ua-cam.com/video/bSCiaWQx-Wo/v-deo.html Playwright Tutorial | Page Object Models with Fixtures | POM + Fixtures - ua-cam.com/video/qyCPtbEztvw/v-deo.html Playwright Tutorial | Fixtures over BeforeEach / AfterEach hooks - ua-cam.com/video/qNrt_2L-xnU/v-deo.html Playwright Tutorial | Pass Test data as Fixtures - ua-cam.com/video/71NlOaroxnE/v-deo.html

  • @AmruthaValliSibyala
    @AmruthaValliSibyala 14 днів тому

    Could you post playwright interview questions sir

    • @WishInfinite
      @WishInfinite 14 днів тому

      Thanks for your comment! I'll be creating a video soon that covers common playwright interview questions. For now you can Visit My channel's community tab at www.youtube.com/@WishInfinite/community and go through the quiz which is related to Playwright only.

  • @SrishtiSharma-p6d
    @SrishtiSharma-p6d 16 днів тому

    Your content is awesome!!. Keep it up!!

  • @parthsaluja125
    @parthsaluja125 18 днів тому

    Very useful! thanks!

  • @santhiyac4032
    @santhiyac4032 20 днів тому

    I saw your Playwright with TypeScript videos and found them really useful. Could you please make videos on Lambda Test certification exam, including the types of questions, how to submit the code in the exam, and other relevant details?

    • @WishInfinite
      @WishInfinite 14 днів тому

      Thanks a lot, Glad to hear that and Noted your request.

  • @alishaakhouri9863
    @alishaakhouri9863 27 днів тому

    Hi ,I need help on comparing 2 .png images in project directory using playwright with typescript - My case is - 1.i have uploaded one .webp image Image1 from my project directory (it supports only .webp image) 2.converted this .webp into png using sharp 3.i have download that file from browser as image2 and stored into my project directory (note- cannot take screenshot because logo is embedded over this image) 4.both image 1& image2 are in my project directory Question is- how to compare these two images to make sure that both are same to make my test pass?

    • @WishInfinite
      @WishInfinite 25 днів тому

      @alishaakhouri9863 let me check this scenario, I will get back to you.

  • @WishInfinite
    @WishInfinite Місяць тому

    Playwright with TypeScript / JavaScript Series - ua-cam.com/play/PL83cimSRP5ZmwhC6u255huRwSi9tlP-nc.html Playwright API Testing - ua-cam.com/play/PL83cimSRP5ZlwSHlydctQ2njy0nTtjpPZ.html Learn Playwright in 60 Seconds (Shorts Playlist) - ua-cam.com/play/PL83cimSRP5ZlgDL11AGCufbTmADTOwHhO.html Playwright Quiz - www.youtube.com/@WishInfinite/community Introduction of API - ua-cam.com/video/BbgwxmnO_RA/v-deo.html Get call for API Testing - ua-cam.com/video/GrQiVGaYpWo/v-deo.html Post call for API Testing - ua-cam.com/video/mIc4WP9Qxrg/v-deo.html Put call for API Testing - ua-cam.com/video/DtYMRd7Bu4o/v-deo.html Pass Request Body For API Testing / Patch Call - ua-cam.com/video/7tYhNmeU0yY/v-deo.html Read Test Data from JSON file - ua-cam.com/video/8Xk48boYUJs/v-deo.html Delete call for API Testing - ua-cam.com/video/PhHR-ZEOVSA/v-deo.html Fetch and Validate API Response headers in Playwright - ua-cam.com/video/SgKXJxxdd3I/v-deo.html Playwright Notes - docs.google.com/document/d/1O5NSFhHGc9icU3rfERSolAhLUxy2NxyiujsztN3ICL8/edit?usp=sharing

  • @harish1990kumar
    @harish1990kumar Місяць тому

    Useful content

  • @chandanav1290
    @chandanav1290 Місяць тому

    Thanks sir 😊

  • @WishInfinite
    @WishInfinite Місяць тому

    Playwright with TypeScript / JavaScript Series - ua-cam.com/play/PL83cimSRP5ZmwhC6u255huRwSi9tlP-nc.html Playwright API Testing - ua-cam.com/play/PL83cimSRP5ZlwSHlydctQ2njy0nTtjpPZ.html Introduction of API - ua-cam.com/video/BbgwxmnO_RA/v-deo.html Get call for API Testing - ua-cam.com/video/GrQiVGaYpWo/v-deo.html Post call for API Testing - ua-cam.com/video/mIc4WP9Qxrg/v-deo.html Put call for API Testing - ua-cam.com/video/DtYMRd7Bu4o/v-deo.html Pass Request Body For API Testing / Patch Call - ua-cam.com/video/7tYhNmeU0yY/v-deo.html Read Test Data from JSON file - ua-cam.com/video/8Xk48boYUJs/v-deo.html Delete call for API Testing - ua-cam.com/video/PhHR-ZEOVSA/v-deo.html Learn Playwright in 60 Seconds (Shorts Playlist) - ua-cam.com/play/PL83cimSRP5ZlgDL11AGCufbTmADTOwHhO.html Playwright Notes - docs.google.com/document/d/1O5NSFhHGc9icU3rfERSolAhLUxy2NxyiujsztN3ICL8/edit?usp=sharing

  • @Trendi_Vibes
    @Trendi_Vibes Місяць тому

    Great 👍but make video in hindi

  • @WishInfinite
    @WishInfinite Місяць тому

    Playwright with TypeScript / JavaScript Series - ua-cam.com/play/PL83cimSRP5ZmwhC6u255huRwSi9tlP-nc.html Playwright API Testing - ua-cam.com/play/PL83cimSRP5ZlwSHlydctQ2njy0nTtjpPZ.html Introduction of API - ua-cam.com/video/BbgwxmnO_RA/v-deo.html Get call for API Testing - ua-cam.com/video/GrQiVGaYpWo/v-deo.html Post call for API Testing - ua-cam.com/video/mIc4WP9Qxrg/v-deo.html Put call for API Testing - ua-cam.com/video/DtYMRd7Bu4o/v-deo.html Pass Request Body For API Testing / Patch Call - ua-cam.com/video/7tYhNmeU0yY/v-deo.html Read Test Data from JSON file - ua-cam.com/video/8Xk48boYUJs/v-deo.html Learn Playwright in 60 Seconds (Shorts Playlist) - ua-cam.com/play/PL83cimSRP5ZlgDL11AGCufbTmADTOwHhO.html Playwright Notes - docs.google.com/document/d/1O5NSFhHGc9icU3rfERSolAhLUxy2NxyiujsztN3ICL8/edit?usp=sharing Restful Booker Practice site - restful-booker.herokuapp.com/apidoc/index.html Playwright Quiz - www.youtube.com/@WishInfinite/community

  • @BrunoRodrigueslol
    @BrunoRodrigueslol Місяць тому

    Hello !! Can you help me ? I need to create a put method passing the ID field that is automatically generated with the post method. How do I get the ID that was generated by the post method? I'm asking this because I need to do a CRUD and when I generate a new "product", its ID field is generated randomly I need to create a way to create a post method, which makes it store the fields so that I can use the fields again in the put method

    • @WishInfinite
      @WishInfinite Місяць тому

      @BrunoRodrigueslol In Previous Video , Where we learnt about Post call ( Video - ua-cam.com/video/mIc4WP9Qxrg/v-deo.html ), 1 - There we are saving response of post call into one variable. like below example - const resp = await request.post(----); 2 - You can use this resp variable name, (it can be any name which you want to use), and then convert response into JSON format, like below example - await responseJson = await resp.json(); 3 - Then you can use this Json responce to get the data of specific key , in your case dynamically generated ID, like below example. const idVar = responseJson.idKeyName; 4 - Then you can use this above variable for your next call (now this idVar contain your dynamic ID), for you it is PUT call as you said. request.put(baseURL/idVar ); hope this will help you. If you get stuck again you can let me know in comment section of any video.

  • @WishInfinite
    @WishInfinite Місяць тому

    Playwright with TypeScript / JavaScript Series - ua-cam.com/play/PL83cimSRP5ZmwhC6u255huRwSi9tlP-nc.html Playwright API Testing - ua-cam.com/play/PL83cimSRP5ZlwSHlydctQ2njy0nTtjpPZ.html Introduction of API - ua-cam.com/video/BbgwxmnO_RA/v-deo.html Get call for API Testing - ua-cam.com/video/GrQiVGaYpWo/v-deo.html Post call for API Testing - ua-cam.com/video/mIc4WP9Qxrg/v-deo.html Put call for API Testing - ua-cam.com/video/DtYMRd7Bu4o/v-deo.html Read Test Data from JSON file - ua-cam.com/video/8Xk48boYUJs/v-deo.html Learn Playwright in 60 Seconds (Shorts Playlist) - ua-cam.com/play/PL83cimSRP5ZlgDL11AGCufbTmADTOwHhO.html Playwright Notes - docs.google.com/document/d/1O5NSFhHGc9icU3rfERSolAhLUxy2NxyiujsztN3ICL8/edit?usp=sharing Restful Booker Practice site - restful-booker.herokuapp.com/apidoc/index.html

  • @MaksudaIslamLima
    @MaksudaIslamLima Місяць тому

    what if I want to pass the value of login credentials as parameter?

    • @WishInfinite
      @WishInfinite Місяць тому

      You can pass login credentials as by including them in a JSON file. I explain this process in my video at ua-cam.com/video/8Xk48boYUJs/v-deo.html. If you want to configure different credentials for different environments, you can use DotEnv. I'll be adding a video about this to my playlist.

    • @MaksudaIslamLima
      @MaksudaIslamLima Місяць тому

      @@WishInfinite Thanks for the reply. I will look into it. Meanwhile another question, suppose I have different login credentials for different spec and one spec file can even have multiple login session. How can I handle it using global setup? N.B: What is Spec? Suppose I want to run the spec file for Login functionality, then I will run this comment: " npx playwright test --headed --project=chromium login.spec.js" Here, I am referring login.spec.js as spec file.

    • @WishInfinite
      @WishInfinite Місяць тому

      @@MaksudaIslamLima I would be creating one video for using different credentials for different environment, that should solve your problem of using different login credentials. And for running multiple session you can use parallel execution by setting fullyParallel and workers values in playwright.config.ts file.

  • @chandanav1290
    @chandanav1290 Місяць тому

    Help full tq 😊

  • @WishInfinite
    @WishInfinite 2 місяці тому

    Playwright with TypeScript / JavaScript Series - ua-cam.com/play/PL83cimSRP5ZmwhC6u255huRwSi9tlP-nc.html Playwright API Testing - ua-cam.com/play/PL83cimSRP5ZlwSHlydctQ2njy0nTtjpPZ.html Introduction of API - ua-cam.com/video/BbgwxmnO_RA/v-deo.html Get call for API Testing - ua-cam.com/video/GrQiVGaYpWo/v-deo.html Post call for API Testing - ua-cam.com/video/mIc4WP9Qxrg/v-deo.html Learn Playwright in 60 Seconds (Shorts Playlist) - ua-cam.com/play/PL83cimSRP5ZlgDL11AGCufbTmADTOwHhO.html Playwright Notes - docs.google.com/document/d/1O5NSFhHGc9icU3rfERSolAhLUxy2NxyiujsztN3ICL8/edit?usp=sharing Resful Booker Practice site - restful-booker.herokuapp.com/apidoc/index.html

  • @DiRo0566
    @DiRo0566 2 місяці тому

    Well explained!

  • @chandanav1290
    @chandanav1290 2 місяці тому

    Tq

  • @WishInfinite
    @WishInfinite 2 місяці тому

    Playwright with TypeScript / JavaScript Series - ua-cam.com/play/PL83cimSRP5ZmwhC6u255huRwSi9tlP-nc.html Playwright API Testing - ua-cam.com/play/PL83cimSRP5ZlwSHlydctQ2njy0nTtjpPZ.html Introduction of API - ua-cam.com/video/BbgwxmnO_RA/v-deo.html Get call for API Testing - ua-cam.com/video/GrQiVGaYpWo/v-deo.html Learn Playwright in 60 Seconds (Shorts Playlist) - ua-cam.com/play/PL83cimSRP5ZlgDL11AGCufbTmADTOwHhO.html Playwright Notes - docs.google.com/document/d/1O5NSFhHGc9icU3rfERSolAhLUxy2NxyiujsztN3ICL8/edit?usp=sharing

  • @chandanav1290
    @chandanav1290 2 місяці тому

    Only for get 1hrs video ur so much knowledge person thanks for sharing with us 😊

  • @igorek9191
    @igorek9191 2 місяці тому

    Didn't work for me. Logout steps were trying to be executed right after login steps.

    • @WishInfinite
      @WishInfinite 2 місяці тому

      @igorek9191 Sorry to hear you're having trouble!, Can you please share your code snippet on email wishinfinity01@gmail.com. I can have a look at it.

  • @Unnameddde2
    @Unnameddde2 2 місяці тому

    awesome

  • @Unnameddde2
    @Unnameddde2 2 місяці тому

    awesome

  • @UserUnkown-do1ji
    @UserUnkown-do1ji 2 місяці тому

    thanks

  • @polyconhousewares1187
    @polyconhousewares1187 2 місяці тому

    Excellento!!!🤗

  • @paulofabiano6966
    @paulofabiano6966 2 місяці тому

    Hello, I am facing the following problem. When I use codegen I can capture Cookies and use the authentication state to perform other tests. However, when I try to use the other two ways, a JSON file is generated, but I cannot use the authentication state because the "value" field has no data. Would you help me

    • @WishInfinite
      @WishInfinite 2 місяці тому

      @paulofabiano6966 As you are getting blank storage state , what I am able to understand is that you are saving auth state before user is getting logged in properly. Into your Global.setup.js file just after logging in v you should provide waitForUrl and also one assertion for the element which is appearing after logging in successfully. These 2 lines of code should be there before using the storageState method. In this video at 30:49 I have mentioned it, try adding it and let me know the result.

    • @paulofabiano6966
      @paulofabiano6966 2 місяці тому

      @@WishInfinite Thank you my friend, the problem was with the variable. My code was not correctly inserting the login and password, when I passed the information instead of a variable, the JSON file saved the browser state and I was able to use it in subsequent tests. Thanks again for your help. Have a good day.

  • @chandanav1290
    @chandanav1290 2 місяці тому

    Thank you 😊

    • @WishInfinite
      @WishInfinite 2 місяці тому

      @chandanav1290 Welcome and Stay tuned, More videos coming soon related to API Testing with Playwright.

    • @chandanav1290
      @chandanav1290 2 місяці тому

      @@WishInfinite Ya😍

  • @WishInfinite
    @WishInfinite 2 місяці тому

    Playwright with TypeScript / JavaScript Series - ua-cam.com/play/PL83cimSRP5ZmwhC6u255huRwSi9tlP-nc.html Playwright API Testing - ua-cam.com/play/PL83cimSRP5ZlwSHlydctQ2njy0nTtjpPZ.html Learn Playwright in 60 Seconds (Shorts Playlist) - ua-cam.com/play/PL83cimSRP5ZlgDL11AGCufbTmADTOwHhO.html Playwright Notes - docs.google.com/document/d/1O5NSFhHGc9icU3rfERSolAhLUxy2NxyiujsztN3ICL8/edit?usp=sharing

  • @abhishekbhardwaj7764
    @abhishekbhardwaj7764 2 місяці тому

    awesome...even small details covered...;please start with framework soon...can't wait

    • @WishInfinite
      @WishInfinite 2 місяці тому

      Thank you so much for the kind words! 🙌 We're thrilled to hear you enjoyed the attention to detail. Currently I am working on Videos related to API Testing with Playwright , then would be looking into framework related videos. Stay tuned for updates. 😊🎉

  • @maheshtekawade3952
    @maheshtekawade3952 3 місяці тому

    What about elements related to page2 ?

    • @WishInfinite
      @WishInfinite 3 місяці тому

      @maheshtekawade3952 in this video I have explained that how to handle new page ua-cam.com/video/GIVk9zH1-Cw/v-deo.html. you can pass that newly created page while creating object of page class. Please check and let me know if you face any issue. 😊 and for more details on POM you can follow video - ua-cam.com/video/IvaPYWteABc/v-deo.html.

  • @chandanav1290
    @chandanav1290 3 місяці тому

    Can you upload same for Java script asap😊

    • @WishInfinite
      @WishInfinite 3 місяці тому

      @chandanav1290 Sure, Let me check, Probably I am planning to cover both JavaScript/TypeScript while covering Playwright framework.

  • @abhishekbhardwaj7764
    @abhishekbhardwaj7764 3 місяці тому

    This video is just awesome......Hats off bro...

    • @WishInfinite
      @WishInfinite 3 місяці тому

      @abhishekbhardwaj7764 Thank you so much for the kind words! I'm thrilled you enjoyed the video. Feel free to share it with your friends and spread the awesomeness! Let's keep the positivity flowing! 🚀✨

  • @chandanav1290
    @chandanav1290 3 місяці тому

    Can you make api testing using playwright complete tutorial please sir

    • @WishInfinite
      @WishInfinite 3 місяці тому

      @chandanav1290 My upcoming videos are going to be on API Testing only. Please stay tuned 😊

    • @chandanav1290
      @chandanav1290 3 місяці тому

      @@WishInfinite using playwright?

    • @WishInfinite
      @WishInfinite 3 місяці тому

      @@chandanav1290 Yes.

    • @chandanav1290
      @chandanav1290 3 місяці тому

      @@WishInfinite thank you waiting for the video plz upload ur videos ASAP thanks for knowledge with us 🙏💌

    • @WishInfinite
      @WishInfinite 3 місяці тому

      @chandanav1290 You're welcome! I'm glad you're excited for the next video. I'll do my best to get it up ASAP. Thanks for your patience and for being part of our knowledge-sharing community!

  • @IshantRajput-xy5vy
    @IshantRajput-xy5vy 3 місяці тому

    Please provide github link for reference and code download

    • @WishInfinite
      @WishInfinite 3 місяці тому

      @IshantRajput-xy5vy Till now I have not uploaded this code on GitHub, actually My Plan is to create a video on "how to upload Playwright Project code on GitHub" and would be making that repo public for the use. Till then if you need any specific code please let me know, I can mail you the same.

  • @venkateshm5181
    @venkateshm5181 3 місяці тому

    toMatchSnapshot (deprecated in v1.38, use toHaveScreenshot): Purpose: Originally used for comparing screenshots against reference screenshots stored in the test project directory. Deprecated: While still functional in older Playwright versions, it's recommended to use toHaveScreenshot for new projects.

    • @WishInfinite
      @WishInfinite 3 місяці тому

      @venkateshm5181, Thank you for the information, We have also used toHaveScreenshot method only for visual comparison of screenshots. But still for Non-Image snapshot testing we need to use toMatchSnapshot method only as there we are generating txt file as reference/golden file on the basis of given value with expect and using generated reference file for further comparison as mentioned after 56:16 in video.

  • @WishInfinite
    @WishInfinite 3 місяці тому

    Playwright with TypeScript / JavaScript Series - ua-cam.com/play/PL83cimSRP5ZmwhC6u255huRwSi9tlP-nc.html Locator method using selector - ua-cam.com/video/k3ttTwa8L_o/v-deo.html Learn Playwright in 60 Seconds (Shorts Playlist) - ua-cam.com/play/PL83cimSRP5ZlgDL11AGCufbTmADTOwHhO.html Playwright Notes - docs.google.com/document/d/1O5NSFhHGc9icU3rfERSolAhLUxy2NxyiujsztN3ICL8/edit?usp=sharing

  • @abhishekbhardwaj7764
    @abhishekbhardwaj7764 3 місяці тому

    Bro make a video on wait for response method .Like my scenario is : I click a button, in background it triggers an API and gets the response. I want to wait for response code to be 200. Once I verify that response is 200, then only I want to proceed to next step. Thanks in advance. Make the video in little detail please with making us understand why we don't use await keyword while using wait for response and all.

    • @WishInfinite
      @WishInfinite 3 місяці тому

      @abhishekbhardwaj7764 Thank you for suggestion , let me check where I can fit this particular scenario into Playlist, will let you know once i release video for this. 😊

    • @kyaswanth8789
      @kyaswanth8789 3 місяці тому

      Is possible to access the repo

    • @WishInfinite
      @WishInfinite 3 місяці тому

      @@kyaswanth8789 Till now I have not uploaded this code on GitHub, actually My Plan is to create a video on "how to upload Playwright Project code on GitHub" and would be making that repo public for the use. Till then if you need any specific code please let me know, I can mail you the same.

  • @roblesrt
    @roblesrt 3 місяці тому

    Thanks for sharing!

  • @luckytima2315
    @luckytima2315 3 місяці тому

    I don't know why, but this particular site takes a very long time to load, I had to do practice on another one, in any case, thank you for your efforts

    • @WishInfinite
      @WishInfinite 3 місяці тому

      @luckytima2315 Ok , If you need I can share other list of sites where you can practice.