
Data Structure
Networking
RDBMS
Operating System
Java
MS Excel
iOS
HTML
CSS
Android
Python
C Programming
C++
C#
MongoDB
MySQL
Javascript
PHP
- Selected Reading
- UPSC IAS Exams Notes
- Developer's Best Practices
- Questions and Answers
- Effective Resume Writing
- HR Interview Questions
- Computer Glossary
- Who is Who
Ashish Anand has Published 213 Articles

Ashish Anand
2K+ Views
TestNG supports multi−threading i.e. a @Test methods can be invoked parallelly. A test or multiple test methods can be invoked from multiple threads. Therefore, multiVthread is useful if @Test methods need to be run asynchronously in parallel. Multi−threading can be achieved by using keyword − thread−count = at Testng.xml. Thread ... Read More

Ashish Anand
1K+ Views
JUnit and TestNG are the most popular testing frameworks for Java applications. Both frameworks are easy to use. So, when it comes to choose the testing framework for your application, it’s better to have a high−level idea of what features are present in one or the other and then take ... Read More

Ashish Anand
480 Views
TestNG can automatically recognize and run JUnit tests, so that you can use TestNG as a runner for all your existing tests and write new tests using TestNG. All you must do is to put JUnit library on the TestNG classpath, so it can find and use JUnit classes, change ... Read More

Ashish Anand
229 Views
A TestNG class can have different tests like test1, test2, test3 etc. and these tests can be grouped based on different groups like unit, integration or both or any bug number. User may want to run the @Test method based on groups. And, it is always convenient to know which ... Read More

Ashish Anand
253 Views
A TestNG class can have different tests like test1, test2, test3 etc. and these tests can be grouped based on different groups like unit, integration or both or any bug number. User may want to run the @Test method based on groups. And, it is always convenient to know which ... Read More

Ashish Anand
394 Views
A TestNG class can have different tests like test1, test2, test3 etc. There could be some failure while running the test suite and user may get failures in between of @Test methods. Once a test method gets failed, it skip remaining code of the @Test method and moves to the ... Read More

Ashish Anand
575 Views
TestNG is a powerful testing framework, an enhanced version of JUnit which was in use for a long time before TestNG came into existence. NG stands for 'Next Generation'. TestNG framework provides the following features − Annotations help us organize the tests easily. Flexible test configuration. Test cases can ... Read More

Ashish Anand
190 Views
The best practices for Selenium web test automation framework are listed below − Use of dynamic waits like implicit wait and explicit wait instead of using Thread.sleep() in the framework to handle sync issues in the application. Usage of Page Object Model framework design to segregate the test scripts ... Read More

Ashish Anand
998 Views
TestNG is a powerful testing framework, an enhanced version of JUnit which was in use for a long time before TestNG came into existence. NG stands for 'Next Generation'. A website should be tested across multiple browsers like IE, Chrome, Firefox, Safari to validate the compatibility of website and functionality. ... Read More

Ashish Anand
2K+ Views
TestNG is a testing framework and can use Maven as build tool. It helps to maintain dependencies and their version at one place in pom.xml Maven provides flexibility to run using surefire plugin. If a user has multiple testng.xml files (please note one testng files contains only one test suite), ... Read More