Whenever I have to brush up my testing knowledge or refer some interview questions, I land to your playlists. Thanks Naveen for your hardwork. This really helps.
Hi Naveen, You have been taken so much efforts in terms of creating all these beautiful videos for us. It means a lot for us. So many testers are and also freshers are watching these videos now a days that you have created 3 years ago. You are helping lots of people enthusiastically. Simply "Sirji tusi great ho ToFA kabul karo" ........lots of love from PUNE MH
Thank u Naveen.You are doing good to the society. I appreciate your efforts n telling about u in my village..soon we can meet you in one event from Andhra pradesh
Thank you so much Naveen. I don't think anywhere in the world get this detailed interview questions. Many of them i ask usually candidates in interview. We use groups concept for all our releases, it's one of the most used feature for our prod releases. Listeners also one more important concept we heavily use. heavily used in TestNG with Java Groups Parallelization Listeners Data Providers Parameters Annotations
Hi Naveen, Content was crisp and clear, but in the video you mentioned twice that TestNg is used for parallel execution and you will create a video for the same. Can you please make a video of parallel execution and help the testing community!
Hi Naveen , we need to push TestNG XML reports to XRAY (test management tool in jira)... Any inputs on pushing the report using shell script in jenkins pipeline
Hello naveen, your videos are really very helpful, thank you so much for sharing bundles of knowledge. #Request Please make video on cucumber interview questions and answers. Pls pls pls...
Hi Naveen, Could you please clarify. Highlevel: I have one @Test method A with assert statements and assertAll() at the end. Inside this method A, I'm calling another method B having assert statements and assertAll() at the end. Current Issue: If any assert statement fails in the called method B, I can see assertion errors in the console, which is good. But the remaining statements in the calling method A are not getting executed. Example... public class class1 { @Test public void test1() throws Exception { class2 obj = new class2(); SoftAssert sassert = new SoftAssert(); sassert.assertNotNull("123", "Failed, It is null"); obj.test2(); sassert.assertNotNull("3456", "Failed, It is null"); sassert.assertAll(); } } public class class2 { public void test2() throws Exception { SoftAssert sassert = new SoftAssert(); sassert.assertNotNull("111", "Failed, It is null"); sassert.assertNotNull("222", "Failed, It is null"); sassert.assertAll(); } }
thanks naveen awesome videos can you please create Interview Questions on java ,TesNG and Cucumber2020 please it will be helpful for us who started recently like me.Thank you so much
Hay, Hi Naveen, What is the difference b/w soft assertion and verify?, both job are same only?, but why they given different names? and, what and when use the assert soft and verify?
Hi Naveen, it would be a great pleasure if you explain how we change the code if number of columns (text box field in the UI to feed data multiple times) increases, example 25 columns in excel sheet.
I have got this interview question recently, can you explain the framework in testng. I couldn't able to crack it up. I have explained neatly why testng, it's advantages, annotations and everything. But interviewer is not happy. why? How should I approach this question?
Hello sir Mai abhi automation testing kr raha hu. Sir kya aap bata sakte ho ki fresher ke liye automation testing me question kaunse important hai aur automation me java kitana aana chahiye
Hi Naveen, I have a big question since many days, and I am unable to get exact answer to this question - in BDD framework if we have hooks then what is the need of TestNG in bdd?
@Naveen Sir, Wht are the Termology used in Organisations/Company for Software Testing... Like Sprint, Scrum, Which Server used for Testing. Who I'll decide Saverity/Priority . Please make a video for such type of things. Thanks
hi naveen , helps a lot in interview, but facing difficult in answering open questions , like any achievements , any sujjestion given to lead , implemented any of u r ideas? Can you pls help in this , how to answer as automation tester rather than manual ...
When both attributes are provided, TestNG first checks the dependsOnMethods attribute to determine the execution order based on the dependencies between the test methods. It ensures that the methods listed in dependsOnMethods are executed before the current test method. After resolving the dependencies, TestNG then considers the priority attribute to determine the execution order among the methods with the same dependency.
Hi Naveen, Interviewer asked me that which type of framework you are using, and my answer was that I am using TestNG Framework with maven project, but he said that TestNG is not a framework. then what will be answer to this question?
Hi Naveen, thanks for this valuable knowledge. Can u tell me how can I run only failed test cases. Hope you will find a moment to help me. Thanks. Rajesh
in the test annotation, you can enable=false to ignore all other tests or virtually use dependsonmethod = method name, in test method. Are you asking to exclude the tests-methods in xml file? Check out minute 32 at TestNG Interview Questions and Answers || TestNG Framework Interview Questions video.
Hello Naveen Sir, Can you please share this TestNG interview question document? I am preparing for interview. It will really help me. Thank you in advance.
Boss, I got Job followed by your Guidance... Thank You so much again :)
S,
Whenever I have to brush up my testing knowledge or refer some interview questions, I land to your playlists. Thanks Naveen for your hardwork. This really helps.
Thanks Erika
@@naveenautomationlabs please share this word document
Hi Naveen, You have been taken so much efforts in terms of creating all these beautiful videos for us. It means a lot for us. So many testers are and also freshers are watching these videos now a days that you have created 3 years ago. You are helping lots of people enthusiastically. Simply "Sirji tusi great ho ToFA kabul karo" ........lots of love from PUNE MH
Naveen, thanks for creating a wonderful session for us to clear the interviews related to Automation. Much help & appreciated. 👍
You Mukesh Otwani and Raghav are the superstar of Automation testing
Keep it Up!
Focused and quick way to learn testng framework. Great efforts here Naveen...! Thanks!
Thank you Naveen for all bull points of TestNG, it helps to refresh the knowledge before taking an interview. Really helpful video.
Very helpful interview question and answers . I salute you keep up the good work!
Thank u Naveen.You are doing good to the society. I appreciate your efforts n telling about u in my village..soon we can meet you in one event from Andhra pradesh
Thank you so much Naveen. I don't think anywhere in the world get this detailed interview questions. Many of them i ask usually candidates in interview. We use groups concept for all our releases, it's one of the most used feature for our prod releases. Listeners also one more important concept we heavily use.
heavily used in TestNG with Java
Groups
Parallelization
Listeners
Data Providers
Parameters
Annotations
Well done!!Nice explanation appreciate your hard work in creating these videos...
Hi Naveen,
Content was crisp and clear, but in the video you mentioned twice that TestNg is used for parallel execution and you will create a video for the same. Can you please make a video of parallel execution and help the testing community!
Very Good Explanation Naveen !!.. Yours Video really help us understand basic of automation !!.. Please keep Posting such amazing video.
I got job followeed by yours videos ... thankyou so much navven
Great video! Thanks for explaining the different levels in interview & for explaining all 30 questions and answers so well. Loved the video entirely.
Hi naveen , you really done excellent work for us....Thank you very much.....
My interview is tomorrow, this video is amazingly helpful :)
Sunrise5 how was your interview?
Hi Naveen, thanks for explaining TestNG in details. Please the list of Questions and answers with us.
Thanks sir nice explain 😊🙏
Nicely Explained .Thank you for sharing this video.
Very Good Explanation Sir.
You are the best on youtube.
Hi Naveen , we need to push TestNG XML reports to XRAY (test management tool in jira)... Any inputs on pushing the report using shell script in jenkins pipeline
Thank you so much for this TestNG Video. Can you please share this interview question Doc with us?
nice keep uploading and also upload a short video on how to explain framework in interview (15 -20 minutes video)
Here is the document: naveenautomationlabs.com/testng-interview-questions/
Awesome video on testNG ..thanks a lot, Naveen
Glad you liked it!
Hello naveen, your videos are really very helpful, thank you so much for sharing bundles of knowledge.
#Request
Please make video on cucumber interview questions and answers.
Pls pls pls...
Thats perfect Naveen sir
Superb explanation
Hi Naveen....Thanks a lot for making this video. This is really helpful.
Can you please share this word document??
Hi Naveen,
Its really awesome automation videos.
Can you please let me know how to execute the even test cases using testng?
Hi Naveen, Could you please clarify.
Highlevel:
I have one @Test method A with assert statements and assertAll() at the end.
Inside this method A, I'm calling another method B having assert statements and assertAll() at the end.
Current Issue:
If any assert statement fails in the called method B, I can see assertion errors in the console, which is good.
But the remaining statements in the calling method A are not getting executed.
Example...
public class class1
{
@Test
public void test1() throws Exception
{
class2 obj = new class2();
SoftAssert sassert = new SoftAssert();
sassert.assertNotNull("123", "Failed, It is null");
obj.test2();
sassert.assertNotNull("3456", "Failed, It is null");
sassert.assertAll();
}
}
public class class2
{
public void test2() throws Exception
{
SoftAssert sassert = new SoftAssert();
sassert.assertNotNull("111", "Failed, It is null");
sassert.assertNotNull("222", "Failed, It is null");
sassert.assertAll();
}
}
Thank you so much....really helpful.
Very useful video..
Hi Naveen,
Thanks for the awesome video. It was really helpful.
Can u please share the document shown in the video.
Thanks.
Instead of by using include/exclude..can we make enable = true/false.. By ignoring the include one....?
You are a gem
God bless you!
Hi Naveen...awesome video Bro....
Very nice videos. Thanks Naveen
Hi Naveen, Very good explanation .. Thank you so much. Btw is there a way to download the TestNg interview questions ?
Hi Naveen, Kindly share the challenges faced and TestNG interview questions document.
Nice one 👍
Hi its too good but only font very small.... please zoom all videos and clearity want
Hi sir
Thanks a ton nicely explanatio
thanks naveen awesome videos can you please create Interview Questions on java ,TesNG and Cucumber2020 please it will be helpful for us who started recently like me.Thank you so much
Hey Naveen,
Can you please share the PDF file for this set of questions, it will be a great help.
Good one. Thanks
You make it very clear
Thanks for watching Sabrin!
Thannks , it was very helpful
Thank you , your videos are amazing
Hi Naveen, Could you please add Document link in description.
Thanks.
do you have a video on parallel execution in TestNG? Didn't find any while I went through the testng playlist
Hay, Hi Naveen, What is the difference b/w soft assertion and verify?, both job are same only?, but why they given different names? and, what and when use the assert soft and verify?
Verify is not provided by TestNG
Hi Naveen, it would be a great pleasure if you explain how we change the code if number of columns (text box field in the UI to feed data multiple times) increases, example 25 columns in excel sheet.
You need to go for hashmap if no of columns increase
hello naveen,
Need tutorial on rest api testing and automating it with rest assured or httpclient
Buddy ur supper helpful. can share the document of the testNG plz. will really be appreciative.v Thanks
I have got this interview question recently, can you explain the framework in testng. I couldn't able to crack it up. I have explained neatly why testng, it's advantages, annotations and everything. But interviewer is not happy. why? How should I approach this question?
Please share the pdf format for this. This video is very helpful. Thanks
Hello sir
Mai abhi automation testing kr raha hu. Sir kya aap bata sakte ho ki fresher ke liye automation testing me question kaunse important hai aur automation me java kitana aana chahiye
Hi Naveen, I have a big question since many days, and I am unable to get exact answer to this question - in BDD framework if we have hooks then what is the need of TestNG in bdd?
It is very useful
Its an Awesome video
Thanks for watching! Keep Learning and Keep Sharing!
super
super thank you sir.
@Naveen Sir, Wht are the Termology used in Organisations/Company for Software Testing... Like Sprint, Scrum, Which Server used for Testing. Who I'll decide Saverity/Priority .
Please make a video for such type of things.
Thanks
If the page is zoom it will be great..
Sir can we do functional testing in automation testing??
Hi Naveen, can you please share the TestNG interview document.
Very helpful!
hi naveen , helps a lot in interview, but facing difficult in answering open questions , like any achievements , any sujjestion given to lead , implemented any of u r ideas? Can you pls help in this , how to answer as automation tester rather than manual ...
sure!
awesome explanation............
Thank you Naveen
Hey Naveen, thank you for this video. Can you please provide PDF/Word file of this?
When is the new batch of paid classes of Selenium and Java starting?
Hi Naveen, You are just awesome. Can you please share this doc..??
Thanks Nikita.. Here is the document: www.naveenautomationlabs.com/2017/11/testng-interview-questions.html
Nikita Kothari.
@@naveenautomationlabs Thanks for making this video.
This document is not available, getting an 404 error.
Plz share it again
Hi Naveen. In testNG after @test if both priority and dependsOnMethods contradicts. Which will take into consideration first?
When both attributes are provided, TestNG first checks the dependsOnMethods attribute to determine the execution order based on the dependencies between the test methods. It ensures that the methods listed in dependsOnMethods are executed before the current test method. After resolving the dependencies, TestNG then considers the priority attribute to determine the execution order among the methods with the same dependency.
Hi Naveen, Interviewer asked me that which type of framework you are using, and my answer was that I am using TestNG Framework with maven project, but he said that TestNG is not a framework. then what will be answer to this question?
Superb..Pl share the document.
did you get this document?
Good Video
Hi naveen,I have been asked a question in Infosys that How to ignore any test in testNG?
u can use exclude tag in testng.xml file
Lokesh Telmasare you can use enabled= false attribute inside @Test
Hi naveen , very helpful video. can u plz share document .
www.naveenautomationlabs.com/2017/11/testng-interview-questions.html
Hi Naveen, Have you shared this word doc file at your Git Hub account ?
Hi Naveen, can you please share the document.
Hi Naveen, thanks for this valuable knowledge.
Can u tell me how can I run only failed test cases.
Hope you will find a moment to help me.
Thanks.
Rajesh
in the test annotation, you can enable=false to ignore all other tests or virtually use dependsonmethod = method name, in test method. Are you asking to exclude the tests-methods in xml file? Check out minute 32 at TestNG Interview Questions and Answers || TestNG Framework Interview Questions video.
Very useful
Hi Naveen,
How to use SoftAssertion with data provider test method?
Hi naveen, please share the doc of these question
Here is the document: www.naveenautomationlabs.com/2017/11/testng-interview-questions.html
Naveen AutomationLabs Thanks for the document 🙏
@@naveenautomationlabs :this [page is not working 404 error
Hello Naveen Sir, Can you please share this TestNG interview question document? I am preparing for interview. It will really help me. Thank you in advance.
Have you cleared interview
Hi Naveen. What if we have 3 test cases of same priority, then how do we approach
Do you sell any courses? I would love to buy a course.
Hi Naveen , Can you please share the interview questions document from the video.
thank you naveen for 6 months
Hi naveen, please share this TestNg interview questions document
@@amenachowdhury8893 thanks for sharing the doc
Hi Naveen, can you please share the doc?
Hi Naveen.. Can you please share the document of TestNG interview question .....
I am tried maximum time to fetch data from excel but not done give some suggestions
I am using ff56 version when I clicked firepath option HTML code is not showing window could pls help me
Naveen, please provide a pdf for this video. It would help a lot.
Please share the list of Questions and answers with us.
Hello sir how can I learn api testing from your lab?