🔸FREE Training's at training.rcvacademy.com 🔔SUBSCRIBE to CHANNEL: bit.ly/2YGU6JM
@k.nreddy5973Ай бұрын
Nice explanation
@softwaretestingmentorАй бұрын
Glad you liked it!
@softwaretestingmentorАй бұрын
Glad you liked it!
@siddarajus71662 жыл бұрын
Nice teaching sir
@softwaretestingmentor2 жыл бұрын
Thanks and welcome. Keep watching for more videos!
@patilpriya30662 жыл бұрын
Please make a video on extent reports
@marlonnavarretecruz49243 жыл бұрын
Good afternoon, i have a little problem with the reporter output. When i try to print any text from the onTestStart method it doesn't work but if i try to print it from the onTestSuccess method it does print the text in the reporter output, I'm not sure why. Thanks for the tutorial, it's helping me a lot.
@usamakaram51512 жыл бұрын
Please make sure you have the method implemented properly and if using JDK 7 then u need to implement all methods and if using JDK8 then u need to remove @override annotation from on start function. As a precaution, you can clean your project as well and use following cod public void onTestStart(ITestResult result) { Reporter.log("Method Name is: "+result.getName()); }