Hello Folks,
Suppose you have created a testng class which has many @Test annotated methods say 10 test methods. You may need to run only one test out of 10 for debug/verify etc. Generally I see people will comment “@Test” annotations or use testng.xml to include required test method using include or exclude tags.
There are some very simple ways to achieve this. I will discuss those ways here:
Refer below video to understand how to do this (Click on Full Screen icon):
TestNG Class:
Output: Selected test method will be run only.
Refer below video to understand how to do this:
Steps to follow:
2. Select your project in “Project” field using browse button.
3. Select TestNG class name in “Class” field using browse button.
4. Select Method name in “Method” field using browse button. When you click on browse button, all methods from above selected class will be shown.
5. Click on “Apply” and “Run”.
You will observe only selected method has run. This is very helpful while creating scripts or bug fixes. Hope it will help you.
More about TestNG in upcoming posts. Stay tuned.
If you have any doubt, feel free to comment below.
If you like my posts, please like, comment, share and subscribe.
#ThanksForReading
#HappySelenium
My name is Amod Mahajan and I am an IT employee with 4+ years of experience in Software testing and staying in Bengaluru. My area of interest is Automation testing. I started from basics and went throw so many selenium tutorials. Thanks to Mukesh Otwani as his tutorials are easy and cover basics to advance. I have habit of exploring concepts by deep diving. I used to make notes. I thought of sharing my knowledge through posts and now I am here. #KeepLearning #ShareLearning
Hello Folks, Recently a guy asked me this question which he was asked in an interview in IBM. What the…
Hello Folks, As part of our API Testing series, we will see “Sending GET request with params in Postman”. In last…
We have learnt in previous posts regarding establishing relationship between test methods. You can go through them below: Dependency in…
In previous post, We have learnt to Establish dependency among test methods. In this post, we will see another concept…
We are going to see another important concept or feature provided by TestNG. This feature is called as Dependency. Suppose,…
A Test method is run for all data set provided by a DataProvider method which is by default one after…