awesome, man!! this is the best tuto about debuging!! and ++ you explain how to clon to git !!! thanks you so much!! . I am going crazy with null esxeption in my test!! thakyou for help me!!
Dear Naveen, Never commented on your video, though you helped me a lot to grow in my career and get my dream job(kind of dream job :) still dreaming). Working as a test lead with a great organization. Just wanted to say - "Thank You" from the bottom of my heart. Wishing you more success and happiness!!
good video. If you can't see the Outline, variables, and breakpoints windows, choose: Windows-->Show View-->and choose the window you want to see(while in debug mode)
Excellent tutorial, Naveen! Just what I needed. If you could make another one that addresses debugging the Cucumber Framework, that would complete my life hahaha ;-) . Thanks helping me learn something new!
If you want to see the debug keys then you can choose the Run option in Selenium and you will see Step Into, Step Over, etc. and the keys you should use there.
Hey Naveen, awesome video, there are some cases in which the framework is reading values from environment variables and not the config file, and for such cases we have to execute the script from terminal in order to pass those variables, my question is how can I start the debug mode via terminal or command prompt
Hi Naveen , i hope you are doing good . i have a question for you . What my question is that , if i found any exception while debugging , can i make any changes in the source code to avoid that exception during debugging the code ? As per my knowledge , we can not make any changes in the source code while debugging .
Hi naveen, now that you have debugged it as testng, its working, what if i used any failsafe plugin to exeute my test classes, in that case , i dont use debug as testng or run as testng, but, i shall run use "verify" for my pom.xml , how do i debug in that case? ca you please help me.
Hi Naveen I am facing a lot of challenges in eclipse in my framework, the execution is not breaking on debug point, I am unable to debug code, can u please help me out on this??😢
Hi Naveen, I have a question. I dont know if you are reading or not. I have written my automation code for a website feature using Selenium libraries and all with TestNG where all test scripts are passing. But when I have integrated my code in a framework written by a colleague and called his methods, my code is failing although his methods just wrapped same Selenium libraries. When I debug I found it is because multiple WebElements are there with same name, for which I had to call another get(i) method inside for loop. But I cannot find any explanation for that. My standalone scripts passed with same elements but in framework it failed! If you can share the reason, it would be helpful! And thanks for your awesome free videos on automation!
Hi, we dont recommend to use IF else in testng @test methods. coz if its coming in else condition also, test case will be passed only. Assert will make test case passed to failed on the basis of assertion gets passed or failed.
anil purushothapatnam that's fine. But main feature of assert is to terminate the test cases when it's getting failed and mark test case as failed. Assert is always used for validations.
Hi Naveen bhai pls help me out...I'm working as a manual tester... I've started learning selenium...I have completed urs selenium webdriver videos...now want to move to advanced part like testng cucumber pom maven...but I'm getting confused with the order...can you pls tell me the order to start the advanced part... thanks
You help many guys to start their career in Automation. Just don't know how to thank you.
Naveen you are awesome. You are God of automation. God bless you.
Thank you Naveen. May god bless you
awesome, man!! this is the best tuto about debuging!! and ++ you explain how to clon to git !!! thanks you so much!! . I am going crazy with null esxeption in my test!! thakyou for help me!!
Glad that it was helpful ☺️
Dear Naveen, Never commented on your video, though you helped me a lot to grow in my career and get my dream job(kind of dream job :) still dreaming). Working as a test lead with a great organization. Just wanted to say - "Thank You" from the bottom of my heart. Wishing you more success and happiness!!
Wish you all the best 🙂 keep learning 👍☺️☺️
good video. If you can't see the Outline, variables, and breakpoints windows, choose: Windows-->Show View-->and choose the window you want to see(while in debug mode)
Thank you so much Naveen , God Bless you.
Shukariya...@Navin for your amazing effort.
Thanks a lot Naveen Brother, as you said it will boost up your confidence it really does, Just keep growing and keep posting such quality videos
Thanks Naveen..this video helps me a lot.
Excellent tutorial, Naveen! Just what I needed. If you could make another one that addresses debugging the Cucumber Framework, that would complete my life hahaha ;-) . Thanks helping me learn something new!
Great explanation Naveen. thank you
Thanks a lot Naveen!! God bless you 👏👏👍
The video is of great help. Thank you so much.
Thank you Naveen!!
Awesome great Explanation .. thanks Naveen for this Info :)
Thank you so much Naveen
Naveen knows everything
Helpful vedio ...Thanks...Keep it up :-)
How someone can dislike his videos man😕
Thanks 🙏. Very important, especially F5 F6 buttons.
The best video ever..very much useful if u join a new project
Awesome video
Thank you Naveen 🔥🍻
very nice explanation...
very nice video sir. Thanks a lot
If you want to see the debug keys then you can choose the Run option in Selenium and you will see Step Into, Step Over, etc. and the keys you should use there.
Hey Naveen, awesome video,
there are some cases in which the framework is reading values from environment variables and not the config file, and for such cases we have to execute the script from terminal in order to pass those variables, my question is how can I start the debug mode via terminal or command prompt
Hi Naveen , i hope you are doing good . i have a question for you . What my question is that , if i found any exception while debugging , can i make any changes in the source code to avoid that exception during debugging the code ? As per my knowledge , we can not make any changes in the source code while debugging .
Thank you !!!
Excellent Sir.
Hi navin plz make vdo on verify value between highcharts and table
Dear Naveen, can you please share the video link for designing of above hybrid framework. I am unable to find in your channel.
Hi Sir, Please help make a session on how to debug one BDD with Cucumber Framework structure. Thanks In Advance
Hi naveen, now that you have debugged it as testng, its working, what if i used any failsafe plugin to exeute my test classes, in that case , i dont use debug as testng or run as testng, but, i shall run use "verify" for my pom.xml , how do i debug in that case? ca you please help me.
Sir from where I can get d code as you have not mentioned the github url
Hi Naveen I am facing a lot of challenges in eclipse in my framework, the execution is not breaking on debug point, I am unable to debug code, can u please help me out on this??😢
Hi Naveen, I have a question. I dont know if you are reading or not. I have written my automation code for a website feature using Selenium libraries and all with TestNG where all test scripts are passing. But when I have integrated my code in a framework written by a colleague and called his methods, my code is failing although his methods just wrapped same Selenium libraries. When I debug I found it is because multiple WebElements are there with same name, for which I had to call another get(i) method inside for loop. But I cannot find any explanation for that. My standalone scripts passed with same elements but in framework it failed! If you can share the reason, it would be helpful! And thanks for your awesome free videos on automation!
Sir, do you know how to run chrome browser as different user in selenium?
Hi Naveen,
Why do we use Assertion even if we can verify using if condition,
Hi, we dont recommend to use IF else in testng @test methods. coz if its coming in else condition also, test case will be passed only. Assert will make test case passed to failed on the basis of assertion gets passed or failed.
Can u make a video on exceptions
hi Bro,
Kindly share the GIT url for download the code
Assert give you result in testng report and you can write your customized message in assert class methods
anil purushothapatnam that's fine. But main feature of assert is to terminate the test cases when it's getting failed and mark test case as failed. Assert is always used for validations.
Why do we need to clone existing project from terminal.can not we simply copy and pest in a new project in java
No, you need to clone it first from git remote location to local, so that you can further push the code into the same git repo.
Hi, do you have an idea about debugging existing automation framework in javascript and nodejs?
Yes, ill prepare one video on the same.
Hi Naveen bhai pls help me out...I'm working as a manual tester... I've started learning selenium...I have completed urs selenium webdriver videos...now want to move to advanced part like testng cucumber pom maven...but I'm getting confused with the order...can you pls tell me the order to start the advanced part... thanks
Hey Naveen .. I am facing hell lot of challenges to understand a framework I have to work on 😭can you please help me on that 🙏🙏🙏🙏
Mail me at naveenanimation20@gmail.com
Hi naveen
While debugging my code in super(); method i gotone error as syantax error insert”:” to complete block statement
Note ;- semicolon is alreday inserted. Thanks in advance
I ma sure that Dislikes comes from other RUclipsr
Hi Naveen
Pls provide that git Link
Thank you soo much Naveen