QA Automation Classes
QA Automation Classes
  • 299
  • 47 459
28. Parallel execution of rest assured api test scripts
Parallel execution of automation scripts is crucial for improving test efficiency and reducing the total execution time of your test suite, especially in large test automation frameworks. By running tests concurrently rather than sequentially, you can achieve faster feedback in Continuous Integration (CI) pipelines and utilize your system's resources better.
You can implement parallel execution in several types of automation frameworks, including UI testing (Selenium, Playwright), API testing (Rest Assured, Postman), and others. Below are various strategies and methods to achieve parallel execution:
Strategies for Parallel Execution
Parallel Test Methods or Classes:
Run individual test methods or classes concurrently across different threads.
Parallel Browser Sessions (for UI Tests):
Parallel Test Suites:
Execute multiple test suites at the same time, either on the same machine or distributed across multiple machines (e.g., using Selenium Grid).
Parallel Testing in CI Pipelines:
Configure your CI tool (e.g., Jenkins, GitLab CI) to run different parts of your test suite in parallel using parallel jobs.
ABOUT OUR CHANNEL
Our channel is about transforming yourself from a manual test engineer to SDET. We have already covered lots of cool stuff such as Linux, Functional Programming and Streams in Java, Docker selenium Integration and new contents are added regularly. If you have already completed courses for automation tools like selenium and rest assured and still find SDET interviews are tough or you are missing real time use cases and scenarios then this channel is your go- to resource.
Check out our channel here:
www.youtube.com/@qaautomationclasses
Don’t forget to subscribe!
CHECK OUT OUR OTHER Playlist
Advanced REST Assured: Framework Design and Best Practices:ua-cam.com/play/PLtxmKJT15Kz45NQO8aHJHUrhASdLcatZz.html
Real Time Selenium BDD Framework Development From Scratch-2024:ua-cam.com/play/PLtxmKJT15Kz52HzWZIqa0XFYNkhd7Vf1d.html
Building a Robust Selenium Automation Framework: A Step-by-Step Guide-2024
ua-cam.com/play/PLtxmKJT15Kz6Hu9m78DXhddhTQQv6Mqxe.html
Mastering Git with IntelliJ IDEA
ua-cam.com/video/9o8QbVOhMHU/v-deo.html
Cracking Git Interview with Real time Q&A
ua-cam.com/play/PLtxmKJT15Kz45IGrsYQzwxuCyav1QGyAl.html
Functional Programming in Java - Unlock the Power of Functional Paradigm:
ua-cam.com/play/PLtxmKJT15Kz5MdJhf72LRvJ3Uls9LuD2s.html
Mastering Java Stream API
ua-cam.com/play/PLtxmKJT15Kz6xJ2-pusbPYO9MwK-hosZn.html
Functional Programming Interview Questions And Answers
ua-cam.com/play/PLtxmKJT15Kz5dwvNW020pcuSmI6uu_DGM.html
Selenium Docker Integration - Effortless Test Automation at Scale:
ua-cam.com/play/PLtxmKJT15Kz6FHv3GK0jfldNXVEiGOyJS.html
Linux Complete Course - Master the Fundamentals and Beyond
ua-cam.com/play/PLtxmKJT15Kz6margg9UxMbdoDEGomEa39.html
GET IN TOUCH / FOLLOW US ON
e-mail:smrutisdet@gmail.com
Telegram: t.me/qaautomationclasses
Whats App group:chat.whatsapp.com/DXfAgacOoFkDgGI4Jk5JGD
Whats App channel:whatsapp.com/channel/0029Va4fm40GZNClpuTPq50S
instagram: qaautomationclasses?igshid=OGQ5ZDc2ODk2ZA==
Your Queries -
parallel execution,parallel test execution,testng parallel execution,parallel,cucumber parallel execution,parallel execution in testng,parallel execution in selenium,parallel execution in selenium webdriver,parallel execution testng,parallel testing,selenium parallel execution,parallel methods execution,junit parallel execution maven,protractor parallel execution,parallel execution protractor,cucumber jvm parallel execution,how to achieve parallel execution
#restassured #softwaretesting #qaautomationclasses #smrutisdet #sdet #framework #automationtesting #qa
Переглядів: 32

Відео

27. Extent Report in Java Rest Assured Cucumber BDD Framework
Переглядів 7512 годин тому
Enhanced Test Reporting with Extent Reports in Selenium: Step-by-Step Integration Tutorial Description: Welcome to our comprehensive guide on integrating Extent Reports into your Rest Assured BDD framework! In this tutorial, we explore the power of Extent Reports to elevate your test reporting capabilities and streamline your API test automation projects. Key Highlights: Introduction to Extent ...
26.Reports in bdd rest assured framework
Переглядів 5321 годину тому
Cucumber reports provide insights into the execution of your Cucumber tests, helping teams analyze results, view the success and failure of scenarios, and generate well-structured reports. Cucumber supports different types of reports, such as console output, HTML reports, and JSON reports, which can be integrated with third-party reporting tools. Types of Cucumber Reports Basic Console Reports:...
25. Logging with log4j in Rest Assured Framework
Переглядів 60День тому
Implementing Log4j in an automation framework enhances the ability to capture and manage logs in a structured way. Logs are essential for debugging, tracking test execution, and generating reports. Here’s how you can integrate Log4j into an automation framework, typically for frameworks based on Selenium/WebDriver, TestNG, JUnit, or other similar testing tools. You can use the logger in any cla...
24 maven runner & tags overriding from command line
Переглядів 7614 днів тому
In Cucumber, a tool for Behavior-Driven Development (BDD), tags are used to organize and manage scenarios in feature files. Tags allow you to control which scenarios (or features) should be executed, skipped, or grouped in various ways. Tags are added in the feature files and can be very useful when managing large test suites. How Tags Work: Definition: Tags are defined using @ followed by a ta...
23. Rest Assured Cucumber Tags
Переглядів 5014 днів тому
In Cucumber, a tool for Behavior-Driven Development (BDD), tags are used to organize and manage scenarios in feature files. Tags allow you to control which scenarios (or features) should be executed, skipped, or grouped in various ways. Tags are added in the feature files and can be very useful when managing large test suites. How Tags Work: Definition: Tags are defined using @ followed by a ta...
22. Background & Inline data Passing
Переглядів 4321 день тому
In This video we will be moving common steps used in different scenario in the feature file to a common background section and we will learn how to pass data in line from feature file. ABOUT OUR CHANNEL Our channel is about transforming yourself from a manual test engineer to SDET. We have already covered lots of cool stuff such as Linux, Functional Programming and Streams in Java, Docker selen...
21. HTTP Method Call Chaining
Переглядів 5921 день тому
In this video we will cover how to call all the methods in a sequential manner. ABOUT OUR CHANNEL Our channel is about transforming yourself from a manual test engineer to SDET. We have already covered lots of cool stuff such as Linux, Functional Programming and Streams in Java, Docker selenium Integration and new contents are added regularly. If you have already completed courses for automatio...
20. Delete Method in Rest Assured
Переглядів 69Місяць тому
The HTTP DELETE method is used to delete a resource from the server. When using the DELETE method, the client sends a request to the server to remove a specified resource, such as a user, post, or other object. DELETE requests are usually idempotent, meaning sending the same request multiple times will result in the same outcome (i.e., the resource is deleted or already gone). Key Characteristi...
19 Patch Method use in Rest Assured
Переглядів 52Місяць тому
The HTTP PATCH method is used to partially update an existing resource on the server. Unlike the HTTP PUT method, which typically updates the entire resource, PATCH allows you to send only the changes or partial updates, making it more efficient for specific updates. Key Characteristics of the HTTP PATCH Method Partial Update: PATCH is used to modify or update specific fields in a resource, rat...
18. Validate Object Update By Put Method
Переглядів 84Місяць тому
The HTTP PUT method is used to update an existing resource or create a new resource if it does not already exist. It's part of the HTTP methods used in RESTful services for CRUD (Create, Read, Update, Delete) operations. Key Characteristics of the HTTP PUT Method Idempotent: This means that sending the same PUT request multiple times will result in the same outcome. For example, updating a user...
17. HTTP PUT Method in Rest Assured
Переглядів 62Місяць тому
The HTTP PUT method is used to update an existing resource or create a new resource if it does not already exist. It's part of the HTTP methods used in RESTful services for CRUD (Create, Read, Update, Delete) operations. Key Characteristics of the HTTP PUT Method Idempotent: This means that sending the same PUT request multiple times will result in the same outcome. For example, updating a user...
16. Automation Utilities | Base Class Implementation
Переглядів 1102 місяці тому
ABOUT OUR CHANNEL Our channel is about transforming yourself from a manual test engineer to SDET. We have already covered lots of cool stuff such as Linux, Functional Programming and Streams in Java, Docker selenium Integration and new contents are added regularly. If you have already completed courses for automation tools like selenium and rest assured and still find SDET interviews are tough ...
15. JSON Path Assertion in rest assured
Переглядів 1032 місяці тому
Asserting an API response through JSON Path is a common practice in API testing. JSON Path is a syntax used to navigate and extract data from JSON documents, similar to how XPath is used for XML/HTML. When using Rest Assured in Java, you can easily assert specific values within a JSON response using JSON Path. ABOUT OUR CHANNEL Our channel is about transforming yourself from a manual test engin...
14. HTTP Post Method Through Hash Map in Rest Assured
Переглядів 812 місяці тому
14. HTTP Post Method Through Hash Map in Rest Assured
13. Http post method | Validate Object created
Переглядів 772 місяці тому
13. Http post method | Validate Object created
12.HTTP Post Method in rest Assured With POJO Class
Переглядів 932 місяці тому
12.HTTP Post Method in rest Assured With POJO Class
11.Rest Assured Cucumber Runner | API Class Methods
Переглядів 1232 місяці тому
11.Rest Assured Cucumber Runner | API Class Methods
10.Design Properties File and API Classes
Переглядів 1053 місяці тому
10.Design Properties File and API Classes
9.Setting up rest assured framework with cucumber | feature file and step definition design
Переглядів 2693 місяці тому
9.Setting up rest assured framework with cucumber | feature file and step definition design
8.Rest Assured Framework Architecture
Переглядів 2333 місяці тому
8.Rest Assured Framework Architecture
7.Rest Assured Framework Components
Переглядів 1353 місяці тому
7.Rest Assured Framework Components
6.http methods in rest api |get | post | put | delete
Переглядів 1183 місяці тому
6.http methods in rest api |get | post | put | delete
5.Create your own rest api end points in local system| How to install node js and JSON Server
Переглядів 693 місяці тому
5.Create your own rest api end points in local system| How to install node js and JSON Server
4.JSON Path | Filter | Relational Operator | Wildcard Matching
Переглядів 693 місяці тому
4.JSON Path | Filter | Relational Operator | Wildcard Matching
3.JSON PATH tutorial | Identify Nested Child Node
Переглядів 813 місяці тому
3.JSON PATH tutorial | Identify Nested Child Node
2.How to Decode Complex jsons
Переглядів 794 місяці тому
2.How to Decode Complex jsons
1.Introduction To Rest Assured and JSON
Переглядів 1454 місяці тому
1.Introduction To Rest Assured and JSON
28. GitHub Link For BDD Framework
Переглядів 1304 місяці тому
28. GitHub Link For BDD Framework
27. Parallel Execution of all Scenarios in Cucumber using Thread Safety Feature
Переглядів 2134 місяці тому
27. Parallel Execution of all Scenarios in Cucumber using Thread Safety Feature

КОМЕНТАРІ

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

    is it possible to do this in Junit?

  • @AlekhyaKakileti
    @AlekhyaKakileti 5 днів тому

    Thankyou so much

  • @radhikaN-v8d
    @radhikaN-v8d 22 дні тому

    i am geting the error as "TestRun.initializationError » ServiceConfiguration io.cucumber.core.gherkin.FeatureParser: Provider io.cucumber.core.gherkin.messages.GherkinMessagesFeatureParser not found" when i run it using runner class can you please help me

    • @qaautomationclasses
      @qaautomationclasses 22 дні тому

      It seems your feature file is having some issue, please look for any mistake in feature file

  • @radhikaN-v8d
    @radhikaN-v8d 22 дні тому

    I am geting the error "TestRun.initializationError » ServiceConfiguration io.cucumber.core.gherkin.FeatureParser: Provider io.cucumber.core.gherkin.messages.GherkinMessagesFeatureParser not found' after i run using runner class could you please help

    • @qaautomationclasses
      @qaautomationclasses 6 днів тому

      Please check your feature file. It seems to be an issue with your feature file

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

    Thank you. I am getting error when handling rerun failed scenarios for the pdf report and ran thru mvn command.. could you pls help

    • @qaautomationclasses
      @qaautomationclasses 23 дні тому

      Can you please share the error and let me know how you are running the failed scenarios

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

    I'm getting couldn't find or load main class ExtentReportListener.Reports error

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

      Please download the source code from my GitHub and try to run it . You can find the link to GitHub in the last video of this playlist

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

    Hey please start creating playlist and also add lesson number in the title it will be helpful . Thanks

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

      Hi, Thanks for your input. These rest assured videos are part of the advanced rest assured framework playlist. Lesson numbers were missing which I have added now. please check

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

    Please share Github URL for all session. thanks for wonderful videos

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

    How to change colour of pass fail type

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

      Hi, We need to use ExtentTest class and we can use log method with this class reference and specify which color to select in case of pass or fail condition Please do check my other framework code base in GitHub github.com/smrutisdet/seleniumFrameworkDemo/blob/master/src/test/java/com/automationexcercise/automationUtilities/CustomListener.java

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

    Video good video

  • @J.Ramanathan
    @J.Ramanathan 2 місяці тому

    Great video Thanks

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

    thank you

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

    Thanks for the great tutorial Just a quick question, does the pdf report getting refreshed because I can only see one pdf that is not being refreshed on my side

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

      For every run both html and pdf report gets updated with run result. Please take the code from GitHub and try once. It should work

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

    Can we use instead of cucumber junit ,cucumber testng

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

      Yes we can use testing as well. Only the runner file will get changed and we can change the @Before @After annotations in hooks to a suitable annotation from testng. Remaining structure or architecture will remain same. For assertion we can use testng assertions instead of junit assertions

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

      @@qaautomationclasses Thankq very much..😀

    • @DSA-n-Design
      @DSA-n-Design 3 місяці тому

      Nicely explained!

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

      @DSA-n-Design Thanks

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

    Great learning!

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

    The word 'src' is not cThe word 'src' is not correctly spelledorrectly spelled coming this error in properties file

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

      Please download the code from my GitHub account. It should work. There might be a typo due to which it is coming like this.

  • @DeepakMahapatra-kz4uz
    @DeepakMahapatra-kz4uz 4 місяці тому

    I was searching for this video and no one explained the way u r ..Thanks a lot for putting these kind of videos

  • @vikrantshingne8761
    @vikrantshingne8761 4 місяці тому

    Very Informative

  • @tanujkandpal4421
    @tanujkandpal4421 4 місяці тому

    Your voice is too low..

    • @qaautomationclasses
      @qaautomationclasses 4 місяці тому

      I am able to hear the voice properly, However from the next video I will try to boost the sound. Hope that will help.

  • @selvamariairudayam5197
    @selvamariairudayam5197 4 місяці тому

    hi will you share the github source code for this framework

    • @qaautomationclasses
      @qaautomationclasses 4 місяці тому

      Hi, in the last video of this playlist you can get the GitHub link to the entire framework in the description section

  • @ujjwalshrivastava-s6z
    @ujjwalshrivastava-s6z 4 місяці тому

    hey sir for this concepts do we need to know multithreading ur view on this?how much multithreading we should know.?

    • @qaautomationclasses
      @qaautomationclasses 4 місяці тому

      Not required for this as maven-failsafe-plugin is going to take care the thread level execution and We have Thread local and Thread Guard so that there won't be any racing condition and it makes sure that all threads runs independent of each other

  • @ujjwalshrivastava-s6z
    @ujjwalshrivastava-s6z 4 місяці тому

    Make a video how to run code with the help of docker in parallel and how to implement infrastructure level things like jenkins docker git ..and how to impelement ci/cd ...as u hve build both kinds of framework now at the en we hve to this things also so it will help us?

    • @qaautomationclasses
      @qaautomationclasses 4 місяці тому

      It is in pipeline. I have planned for it. You will get rest assured as next playlist after that I will cover CI CD Docker and jenkins

  • @ujjwalshrivastava-s6z
    @ujjwalshrivastava-s6z 4 місяці тому

    Can you explain why we use pico container in bdd?

    • @qaautomationclasses
      @qaautomationclasses 4 місяці тому

      Pico container is used to Share state between scenarios which is a bad practice. So scenarios should be independent of each other . If you see the framework you can observe that all our test scenarios are independent of each other and we do not need to share state between scenario. Lets consider the Single Responsibility Principle i.e. in last video we have separated all the step definitions to respective classes instead of keeping all astep definitions in one class. Now consider one scenario which interacts with ,Multiple step definitions then we need to share the driver among them which can also be achieved using pico container via dependency injection, but in our code base if you see we are also passing the driver to the respective page class when we are creating the object of that page class through the constructor. Please go through official documentation here. cucumber.io/docs/cucumber/state/?lang=java

  • @etlqalabs5048
    @etlqalabs5048 5 місяців тому

    Extremely invaluable series specially for people who want to understand the core concepts in detail. I am sure people will discover this jackpot one day !! Thanks Smruti for your wonderful contribution to QA community.

  • @maulord4
    @maulord4 5 місяців тому

    Thank you sir, love this

  • @ujjwalshrivastava3594
    @ujjwalshrivastava3594 5 місяців тому

    Hve u get the answer of my question sor

  • @ujjwalshrivastava3594
    @ujjwalshrivastava3594 5 місяців тому

    I want to know one thing u know in testng we hve depends on scenario where if there is any test dependent on each other we can put @ depends on methods,now suppose I want to do same on cucumber..like a scenario is dependent on each other how we can do that i want particular scenarios to excited first then my scenario how I can do that in cucumber or it is not possible?and can we set priority in cucumber tests?

    • @qaautomationclasses
      @qaautomationclasses 5 місяців тому

      Hi Ujjwal, Thanks for reaching out. Please find my answer. I believe you are talking about dependsOnGroups & dependsOnMethods for @Test annotated individual test. In TestNG we use them both with @Test annotation when we want to make test to be dependent on other method or group. There is no scenario concept in TestNG. In Cucumber we design feature files and in each feature file we design corresponding scenarios or scenario outline and by default, order of execution of scenarios are the order in which they are defined in feature file. If you want scenario-Y to be executed after scenario-X then in feature file you need to maintain it in same order, i.e. you can keep scenario-x first and then Scenario-Y after that. We can set order for hooks in cucumber. @Before(order=1) & @Before(order=0) where lower priority number will run first. if @After(order=1) & @After(order=0) are also defined then execution order will be @Before(order=0) then @Before(order=1) then scenario/outline then @After(order=1) then @After(order=0) And if all your scenarios are dependent on common steps you need to put those steps in Background section as we have covered them in previous sessions. Hope this helps.

    • @ujjwalshrivastava3594
      @ujjwalshrivastava3594 5 місяців тому

      @@qaautomationclasses got the idea little bit about that ...I think depends on methods help...as there can be instance that test 5 is dependent on test 1...but as we are writing scenarios....we just write the independent test between 2,3,4 and 5 is dependent on 1

    • @qaautomationclasses
      @qaautomationclasses 5 місяців тому

      We do not have any depends on method when we use cucumber with junit, we can use testng with cucumber to achieve that

  • @renekwango2993
    @renekwango2993 6 місяців тому

    Can you please make a rest assured API course?

    • @qaautomationclasses
      @qaautomationclasses 6 місяців тому

      After BDD cucumber framework is complete I will start with rest assured.

    • @renekwango2993
      @renekwango2993 6 місяців тому

      Thanks I subscribe already and join WhatsApp group

  • @ujjwalshrivastava-s6z
    @ujjwalshrivastava-s6z 6 місяців тому

    where i the link?

  • @billakantiranjith6213
    @billakantiranjith6213 6 місяців тому

    Good able to implement extent reports thanks.

  • @gandhigeerthana2058
    @gandhigeerthana2058 6 місяців тому

    for me the report showing black and white only

    • @qaautomationclasses
      @qaautomationclasses 6 місяців тому

      Hi, I think there is some issue with extent report configuration. Please download the framework from GitHub and try to configure extent report and please do let me know if it worked. ua-cam.com/video/z0my2d8KvmI/v-deo.htmlsi=0oAdd0vN2gjbH2MP

  • @vikassingh-ql7ef
    @vikassingh-ql7ef 6 місяців тому

    Please make a video on how to retrieve values from Excel in step defination of cucumber fime

    • @qaautomationclasses
      @qaautomationclasses 6 місяців тому

      Please refer the video from framework development sessions where I have covered reading data from Excel. We can implement same in step definition as well and get data from Excel ua-cam.com/video/pD333VrdJSc/v-deo.htmlsi=AZ0fD_kweQ06g0av

    • @vikassingh-ql7ef
      @vikassingh-ql7ef 6 місяців тому

      @@qaautomationclasses i am trying but I am seeing testng don't support data provider I think I want to do with the help of data provider but it is not happening?

    • @qaautomationclasses
      @qaautomationclasses 6 місяців тому

      @vikassingh-ql7ef Please refer this video where I have explained how to use data provider from testng to read data from Excel. Same can be implemented in step definition with testng ua-cam.com/video/pD333VrdJSc/v-deo.htmlsi=4PDK4BQK9iHXCdAN

  • @logeshj5171
    @logeshj5171 7 місяців тому

    Good followup video from previous one... Please continue posting this series😊

  • @logeshj5171
    @logeshj5171 7 місяців тому

    Great session it was! Please continue posting this series. I've never seen many channels trying to clear the errors in console and also teaching with IntelIJ. Kudos! 👏

  • @logeshj5171
    @logeshj5171 7 місяців тому

    Good content... Please continue posting the videos definitely this channel will grow big one day😊 kudos and congrats🎉

    • @qaautomationclasses
      @qaautomationclasses 7 місяців тому

      Thanks for appreciating my work.I will continue to post videos.

  • @elliott177
    @elliott177 7 місяців тому

    🎊 *promosm*

  • @dineshkarki3893
    @dineshkarki3893 7 місяців тому

    Sir, concepts is very clear and can follow it.. unfortunately Its not working for me.. do you have any email to share my code with you and get help please? I am using Eclipse IDE, should the code or log4j2.xml file be any different?

    • @qaautomationclasses
      @qaautomationclasses 7 місяців тому

      Hi Dinesh, Thanks for appreciating our work. Please download the framework from out GitHub page and use it. You can always reach me out on the contact e mail id given in description section of the video. xml file will be same irrespective of any ide you are using. Same xml file should work for both eclipse and Intellij as well. Here is the framework link github.com/smrutisdet/seleniumFrameworkDemo Or you can see the last video in playlist to see the code pushed to git hub as well. Please do let me know if it works for you. Thanks

  • @tamilselvanm7418
    @tamilselvanm7418 7 місяців тому

    I would like configure extent report in BDD framework

    • @qaautomationclasses
      @qaautomationclasses 7 місяців тому

      Thanks for your question. We have started bdd framework development from scratch where we will be integrating extent report to our cucumber framework.please stay tune to channel for upcoming bdd framework development sessions

  • @VinayKumar-cc7mb
    @VinayKumar-cc7mb 8 місяців тому

    can i use the application u have used in the video for My practice project?

    • @qaautomationclasses
      @qaautomationclasses 8 місяців тому

      Hi Vinay, you can use it for your personal testing as in site they have mentioned qa engineers can use this website for automation practice. Thanks to site creator for keeping site freely accessible to qa community.

    • @VinayKumar-cc7mb
      @VinayKumar-cc7mb 8 місяців тому

      @@qaautomationclasses tq and Your videos are also helpful for a beginner and an experienced guy.

    • @qaautomationclasses
      @qaautomationclasses 8 місяців тому

      @VinayKumar-cc7mb Thanks a lot for appreciating our effort.please stay tuned to channel for upcoming sessions .

  • @umeshmohapatra1431
    @umeshmohapatra1431 8 місяців тому

    Good

  • @nirupamasarangi6479
    @nirupamasarangi6479 8 місяців тому

    Nice ❤❤

  • @umeshmohapatra1431
    @umeshmohapatra1431 8 місяців тому

    Beautiful 🙏🙏

  • @santanudasmohapatra1020
    @santanudasmohapatra1020 8 місяців тому

    Well very nice 👍

  • @umeshmohapatra1431
    @umeshmohapatra1431 9 місяців тому

    Good

  • @umeshmohapatra1431
    @umeshmohapatra1431 9 місяців тому

    Good ❤