Hi Naveen, i am using mac for my learning. Problem is i am unable to add a TestNG library in latest Eclipse IDE (4.12) . Is it true that latest eclipse is not able to support TestNG plug-in ? Description Resource Path Location Type Invalid classpath container: 'TestNG' in project 'LearningSelenium' LearningSelenium Build path Build Path Problem
Hi Naveen , It was very informative video and I am thankful for the same. Just one correction I wish to add here that I have observed in TestNG execution when there are multiple test cases written (without mentioning priority) then execution happens according to alpha-numerical manner of class name ( and not random as mentioned in video). Hope this helps whoever is reading the comment.
This video is very thorough, I was looking all over the Internet for tutorials with clear voice, clear explanations, the speed that will match my typing speed etc., and this is the one. I can just type the code along with you as you narrate. Thank you.
From my heart, i am very much thankful to you. Really a person who can explain simply and effectively, god bless you with all knowledge .I believe that if strong skill knowledge then we can sustain in these competitive world.I strongly believe that if you share knowledge ,it will help to eradicate poverty and we can see towards enlightened.
Hi Naveen your way of teaching is excellent, i have gone through your videos for the first time today. i am impressed.. it was good KT(Knowledge transfer) taken from you for the day.... Appreciate all your efforts , patience and hard work.. keep it up.....
Thank you so much for this clear explanation. Your explanation really eases the complexity that minds perceptually have about TestNG. Your step by Step briefing Framework is simply the best.
@Naveen : At time 39:01 you said that if the annotation is @Test for 3 test cases it will pick them up randomly. Correction it will execute in the alphabetical order of the method name as the default priority set for them is 0.
Thanks Naveen for the awesome tutorial, You are definitely doing a great job...!! One thing from the above video I have a point to share i.e. If we don't write priorities in the Test Annotations they execute it alphabetically, not randomly. Correct me If I have a wrong understanding.
Thank you for sharing your insight on selenium. Selenium looks easy after watching your videos. Your explanation is very layman's perspective especially java topics. Looking for more such videos in coming days. Really appreciate if you can cover framework explanation with sample projects. Thank you once again!
Hi Rajeev, Hybrid + Page Object Model Framework have been uploaded now. Please refer this playlist: ua-cam.com/play/PLFGoYjJG_fqq6cHeqfsDes3pdVh3kpl74.html
@Naveen At 1:00:30 you said when someone will run the testng test without providing the priority, it will run randomly which is incorrect. It will not run randomly, instead, it will sort the test methods alphabetically and then it will execute the test methods.
Yes it's already mentioned in my first comment of the video. It was mentioned incorrectly by me. In later videos of my testng I have corrected it. Thnx for mentioning :)
The video is awesome and very informative. I can have a clear idea about the sequence of the annotation in TestNG framework. Thank you so much Naveen 😊
One small thing . The order of execution of tests will be dependent on the alphabetical order of the methods , if no priority / dependency is specified
I cannot thank enough how helpful your videos are for me as a automation beginner. I don’t knw what i would have done without your channel. Such a detailed explanation of everything from a to z. Are u located in US naveen?
Hi Naveen, Your sessions are very simple and informative. I would like to share one of my understanding here- @Test methods are picked based on alphabetical order of the test method name if priority keywords are not provided and not randomly.
Hi All, First of all, Thanks sir for making such amazing video tutorials. Secondly, Below is the latest replacement for Deprecated Implicitly wait and pageLoadTimeout Code. Hope it will work: driver.manage().timeouts().pageLoadTimeout(Duration.ofSeconds(40)); driver.manage().timeouts().implicitlyWait(Duration.ofSeconds(30)); Thanks and Regards, Jatin Khanna
But there is a doubt in my program one test is depend on previous. so i used depend tag in front of @test.. but i dont want to launch the browser for this method. means i want to run previous method then my dependent method in the same window. plz help what to do in this situation.
Hi Naveen...It's very nice and i would like to tell u one thing that in TestNG, the test cases will be executed based on the ALPHABETICAL ORDER of the test method names but not randomly... In the above example which u have explained the test cases got executed based on the alphabetical order....Thank you and nice work
Just a small note :We need to Change : WebDriver driver = new ChromeDriver(); To : driver = new ChromeDriver(); , so @AfterMethod ,NullPointerException wont arise. Thanks.
very nice video and explanation, thank you for providing these kind of information its very helpful. i want to add a point here @Test are executed according to alphabetical order.
@Naveen sir What would happen if we have two methods @BeforeMethod and @AfterMethod and we have written driver.quit in @BeforeMethod method and System.setProperty("webdriver.chrome.driver", "C:\\Selenium\\chromedriver.exe"); WebDriver driver = new ChromeDriver(); driver.get(""); in @AfterMethod ? Will system gives error message ?
Hello Naveen, I am using a maven project and testng framework. Here I have created 2 classes, First class is for Login on the web application [containing different methods/testcases] and second class is for After Login -> Home page[containing different methods/testcases]. So my question is, do I need to launch browser in each class? because I have declared driver as global variable in second class but getting this error: ===============java.lang.NullPointerException: Cannot invoke "org.openqa.selenium.WebDriver.findElement(org.openqa.selenium.By)" because "this.driver" is null============== Due to above error I am not able to proceed. Please assist.
Hi, Naveen. While executing my test class in eclipse, using TestNg so getting an error as "Can not write result as there is no active result writer attached to this". Can you please look into it and provide any workaround so I can handle it. Thanks
Naveen, great video on selenium tutorial but sorry to say that one thing is explained wrong here, @test is not picked randomly, it gets executed alphabetically if priority is not set.
Hallo naveem, Please consider in upcoming Tutorials may be to increase the font in order to make it readable especially for small devices like smartphones... As orientation how that would look s like i would suggest the mosh hamedani Canal Nevertheless, thanks a lot for sharing your knowledge with us
Hi Naveen can you or anyone else please tell me that why the url that you used to install testNG is not available now? is it not working nw? which url to use?
Hey you use the double -- as well! I use this all the time. My local filesystem is full with files notated as _date-__-area--desc.-_- I also use it extensively in my git commands. My commit msgs are always structured as : "08162020 -- '''/smallestAffectedScope/ -- Description of changes;" And my branches are almost the same : Date--class--name e.g. 08162020--feature--add-new-permission. Enough rambling. I am just happy to see that I am not alone...
Hi Naveen, I have written the same test scripts with the same TestNG annotation as in the video, but the @BeforeClass public void login() { System.out.println("login to app"); } @AfterClass public void closeBrowser() { System.out.println("@AfterClass -- Close Browser"); } are not running. Can you please help to troubleshoot this issue?
Hi Naveen,i love your tutorials.They have helped me a ton to learn,But now i want to implement my knowledge.Let me know some demo sites.Please.Waiting for your reply.
Hi Naveen,In one of interviews I was asked ,if we do not use and excel and text file but we want to provide data to our test cases generating in script itself.How would you do.I remember I have seen it somewhere in your videos.Could you please suggest?
~~~~~~~~~~~~In this video, just a correction: test cases will be executed as per alphabetic order not random order. ~~~~~~~~~~~~~~~~~~~~~~
Hi Naveen, i am using mac for my learning. Problem is i am unable to add a TestNG library in latest Eclipse IDE (4.12) . Is it true that latest eclipse is not able to support TestNG plug-in ?
Description Resource Path Location Type
Invalid classpath container: 'TestNG' in project 'LearningSelenium' LearningSelenium Build path Build Path Problem
no to overcome alphabetic order we can use "priorit
Exactly!!! This is what I wanted to Point out!! Cheer's!
@@nelakantilavanya remove TestNG libraries from project, re install software from help and try, hopefully it should work.
Hi Naveen,
Thanks for sharing this informative video. Could you please share me the URL u used to download the TestNG for eclipse here?
Thanks
This is my third training class - the quality of training I receive continues to be excellent.
Naveen, after visiting this i had crystal clear clarity on subject. Nice voice and nice explanation. Thank you very much
+Bhaskar B.V thanks Bhaskar
@@naveenautomationlabs Hi naveen you have uploaded videos on Selenium+Java
Hi Naveen , It was very informative video and I am thankful for the same. Just one correction I wish to add here that I have observed in TestNG execution when there are multiple test cases written (without mentioning priority) then execution happens according to alpha-numerical manner of class name ( and not random as mentioned in video). Hope this helps whoever is reading the comment.
What do you mean by that, I though it was random?
yes .testNG will take alphabetic order only if we are not provide priority
perfect explanation to know how things work. I really love the way you explain things. Great job bro. Thanks a lot
This video is very thorough, I was looking all over the Internet for tutorials with clear voice, clear explanations, the speed that will match my typing speed etc., and this is the one. I can just type the code along with you as you narrate. Thank you.
Glad it helped!
From my heart, i am very much thankful to you. Really a person who can explain simply and effectively, god bless you with all knowledge .I believe that if strong skill knowledge then we can sustain in these competitive world.I strongly believe that if you share knowledge ,it will help to eradicate poverty and we can see towards enlightened.
Having said that you have equally a big heart for they way you perceive life
Hi Naveen your way of teaching is excellent, i have gone through your videos for the first time today. i am impressed.. it was good KT(Knowledge transfer) taken from you for the day.... Appreciate all your efforts , patience and hard work.. keep it up.....
This is the best video of learning TestNG which I ever see. Thanks a lot Naveen for your hard work.😊
That was a good session , i am new to testng , now i can understand much better .
thanks Naveen
U made life so easy by explaining in such a simple way .. loved way of explaining 👍thank u for making these videos ., it’s so helpful
Thanks for watching :)
man u r such a lifesaver. these Videos are necessary
Very helpful series thanks for the the clear explanation and covering all questions u r amazing 👍🏼👍🏼
Thank you so much for this clear explanation. Your explanation really eases the complexity that minds perceptually have about TestNG. Your step by Step briefing Framework is simply the best.
Thank you so much Naveen. I could easily understand the concepts with crystal clear explanation.
Thanks Naveen! I just fixed it from your lecture. Thanks for giving information.
Hi Naveen.., The way your explaining TestNG Frame Work its too good and Thanks
Thank you, Naveen !! It is a very clear and good teaching skill, I learn a lot from this video.
Hi Naveen, My sincere thanks for this detailed and clear concepts. Thank you so much once again.
@Naveen : At time 39:01 you said that if the annotation is @Test for 3 test cases it will pick them up randomly. Correction it will execute in the alphabetical order of the method name as the default priority set for them is 0.
Thanks Naveen for the awesome tutorial, You are definitely doing a great job...!!
One thing from the above video I have a point to share i.e. If we don't write priorities in the Test Annotations they execute it alphabetically, not randomly. Correct me If I have a wrong understanding.
It will execute alphabetically according to method name.
Yes you are right
Great Explanation Sir.. Thank you Very very much for helping us in learning Automation.
Excellent explanation and clarity .Thank you so much Naveen...
Thank you @naveen , you explained very deep and i was looking all the video but this video gave clear explanation that i needed thankuuu so much
Excellent Tutorial, Thank you so much Naveen!!
Learning in 2022 ☺️ thanks for the wonderful tutorial video sir
Thank you so much... all your videos are well explained. i am so happy i have found your channel
tutorial quality is awesome very very optimistic great
Naveen, you are doing great job.... Thanks for your effort.:)
Great explanation this is printed in my subconscious mind.
Thank you for sharing your insight on selenium. Selenium looks easy after watching your videos. Your explanation is very layman's perspective especially java topics. Looking for more such videos in coming days. Really appreciate if you can cover framework explanation with sample projects. Thank you once again!
+Rajeev V thanks Rajeev! I'm currently working upon vidoes upon framework designing. Will be uploaded soon.
Hi Rajeev, Hybrid + Page Object Model Framework have been uploaded now. Please refer this playlist: ua-cam.com/play/PLFGoYjJG_fqq6cHeqfsDes3pdVh3kpl74.html
Thank you Naveen...very clear and superb teaching.
@Naveen
At 1:00:30 you said when someone will run the testng test without providing the priority, it will run randomly which is incorrect.
It will not run randomly, instead, it will sort the test methods alphabetically and then it will execute the test methods.
Yes it's already mentioned in my first comment of the video. It was mentioned incorrectly by me. In later videos of my testng I have corrected it. Thnx for mentioning :)
@@naveenautomationlabs Oh ! sorry Naveen it's my bad. I just saw.
But thanks a lot for all your playlists and especially for Collections.
The video is awesome and very informative. I can have a clear idea about the sequence of the annotation in TestNG framework. Thank you so much Naveen 😊
Swagatika Das thanks for watching:)
This series help me alot for learning automation testing
Naveen your way of explanation is awesome.you are genius sir
Brother .. spoke nicely and explained well. Thanks a lot ..please do more videos.
Excellent teaching. It's really helpful 👍👍
Hello sir! Thank you so much. You have come up with great explanation in all the videos.
Thank You SIR FOR SUCH A WONDERFUL EXPLANATION
One small thing . The order of execution of tests will be dependent on the alphabetical order of the methods , if no priority / dependency is specified
right....
Awesome tutorials, very helpful for beginners. Thank you so much for the efforts!
Thanks for watching! Keep Learning and Keep Sharing!
Thanka for ur hard work and uploading the videos for the people,. Rey excellent Subject and extradinory explanation
I cannot thank enough how helpful your videos are for me as a automation beginner. I don’t knw what i would have done without your channel. Such a detailed explanation of everything from a to z. Are u located in US naveen?
Thanks for watching. I'm here in Bangalore. Mail me at naveenanimation20@gmail.com in case of any queries.
Naveen AutomationLabs : okay sure thanks naveen
Hi Naveen, Your sessions are very simple and informative. I would like to share one of my understanding here- @Test methods are picked based on alphabetical order of the test method name if priority keywords are not provided and not randomly.
Thank you, sir Excellent tutorial !!!
Glad it was helpful!
Hi All,
First of all, Thanks sir for making such amazing video tutorials.
Secondly,
Below is the latest replacement for Deprecated Implicitly wait and pageLoadTimeout Code. Hope it will work:
driver.manage().timeouts().pageLoadTimeout(Duration.ofSeconds(40));
driver.manage().timeouts().implicitlyWait(Duration.ofSeconds(30));
Thanks and Regards,
Jatin Khanna
Thank you so much, Naveen for your help. These videos are very helpful..:)
Your voice is so good love to watch ur videos :)
+Pooja Pawar thanks for watching pooja
Great content and easy explanation great👍🏻
But there is a doubt in my program one test is depend on previous. so i used depend tag in front of @test.. but i dont want to launch the browser for this method. means i want to run previous method then my dependent method in the same window. plz help what to do in this situation.
Amazing explanation Naveen sir. Thank you so much for this tutorial i really like it
Hi Naveen...It's very nice and i would like to tell u one thing that in TestNG, the test cases will be executed based on the ALPHABETICAL ORDER of the test method names but not randomly... In the above example which u have explained the test cases got executed based on the alphabetical order....Thank you and nice work
thanks for highlighting this.
Yes u r absolutely correct . It is executed based on Ablhabecical order . Thanks naveen
No words are enough to express gratitude
Just a small note :We need to Change : WebDriver driver = new ChromeDriver();
To : driver = new ChromeDriver(); , so @AfterMethod ,NullPointerException wont arise. Thanks.
Thank you so much bro ! This is what I was looking for
Thank you! I was breaking my head on this
very nice video and explanation, thank you for providing these kind of information its very helpful.
i want to add a point here @Test are executed according to alphabetical order.
Yes it was already corrected and mentioned in pinned comment. Thanks
i clearly understand concept of testNG thank you so much sir
Dhanyawad !!! Mr. Naveen!!!
It was great lecture
Best explanation sir🙂
Sir NIce explanation ,
Naveen Sir you are awsome thanks for the info..
You are amazing. Thank you so much the upload.
My pleasure!
Good Explanation. Thank you!
Naveen , great explanation !! I would like to add one thing here , if we don't add priority , test cases run in alphabetical order.
Great Work! Really Helpful, Thanks a ton Naveen!!
perfect 👌 👌 Sir
Excellent videos, thanks a lot
Superbly explained wow:)
Mr. Naveen method number 3 and 4 should be switched cause url should be executed before login.
but other than that, outstanding job sir.
Great Job....Thanks for your video
Great teach 👏
thank you Naveen for all the tutorials , really helpful !!
Nice explanation... Thank you Naveen 😊
Hi Naveen, Test NG can also be used for REST API test? and to test ASP .Net Web application ? Pls Guide
In terms of sequence, should'n the url be launched before login operation? who knows, maybe i am confused!
@Naveen sir What would happen if we have two methods @BeforeMethod and @AfterMethod and we have written driver.quit in @BeforeMethod method and System.setProperty("webdriver.chrome.driver", "C:\\Selenium\\chromedriver.exe");
WebDriver driver = new ChromeDriver(); driver.get(""); in @AfterMethod ? Will system gives error message ?
Can a annotation be linked to only one method? Since when there are multiple pre-conditions /post-conditions how to handle that?
Hi Naveen, Why I can't install testNG on eclipse oxygen or newer version?
Hello Naveen, I am using a maven project and testng framework. Here I have created 2 classes, First class is for Login on the web application [containing different methods/testcases] and second class is for After Login -> Home page[containing different methods/testcases]. So my question is, do I need to launch browser in each class? because I have declared driver as global variable in second class but getting this error: ===============java.lang.NullPointerException: Cannot invoke "org.openqa.selenium.WebDriver.findElement(org.openqa.selenium.By)" because "this.driver" is null============== Due to above error I am not able to proceed. Please assist.
Hi, Naveen.
While executing my test class in eclipse, using TestNg so getting an error as "Can not write result as there is no active result writer attached to this".
Can you please look into it and provide any workaround so I can handle it.
Thanks
Thank you so much sir. it was very useful :)
Naveen, great video on selenium tutorial but sorry to say that one thing is explained wrong here, @test is not picked randomly, it gets executed alphabetically if priority is not set.
yes, i was going to mention the same... this is a minor mistake in otherwise a nice video ..
Yes
Please correct this. If not some one blindly follows
Thank you sir, for sharing your knowledge and stuff.
HI Naveen, I am not able to see run as testng option in my program. Can you please help me what could be the problem
Happy teachers day naveen
Hallo naveem,
Please consider in upcoming Tutorials may be to increase the font in order to make it readable especially for small devices like smartphones...
As orientation how that would look s like i would suggest the mosh hamedani Canal
Nevertheless, thanks a lot for sharing your knowledge with us
Hi Naveen can you or anyone else please tell me that why the url that you used to install testNG is not available now? is it not working nw? which url to use?
Hey you use the double -- as well! I use this all the time. My local filesystem is full with files notated as _date-__-area--desc.-_- I also use it extensively in my git commands. My commit msgs are always structured as : "08162020 -- '''/smallestAffectedScope/ -- Description of changes;"
And my branches are almost the same : Date--class--name e.g. 08162020--feature--add-new-permission.
Enough rambling. I am just happy to see that I am not alone...
Evidently markdown uses it as well! That makes 3.... woo...
I'm not able to install TestNG from the given url directly in eclipse. what's the problem naveen.
Hi Naveen. I have a question. In what order Data Provider annotation executes in testng?
Hi Naveen, I have written the same test scripts with the same TestNG annotation as in the video, but the
@BeforeClass
public void login() {
System.out.println("login to app");
}
@AfterClass
public void closeBrowser() {
System.out.println("@AfterClass -- Close Browser");
}
are not running. Can you please help to troubleshoot this issue?
Hi Naveen , I am not able to install TestNG in eclipse market place . Please help me on this..
God bless you 🙏
Hi , how to launch browser one time and run all our @tests instead of launching browser for every @test
Hi Naveen can you plz help to solve this error I am getting on @BeforeClass annotation "BeforeClass cannot resolved to a type"
Hi Naveen,i love your tutorials.They have helped me a ton to learn,But now i want to implement my knowledge.Let me know some demo sites.Please.Waiting for your reply.
classic.crmpro.com/index.html
very nice explanation!!!!!!!!!
Really helpful....i wanted to know about test management tools as well....if u can tel us about it.
Hi Naveen,In one of interviews I was asked ,if we do not use and excel and text file but we want to provide data to our test cases generating in script itself.How would you do.I remember I have seen it somewhere in your videos.Could you please suggest?