
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
Found 869 Articles for Automation Testing

2K+ Views
As we know that testing is the most important stage in the process of delivery of any application or software as it is only testing which not only validate the quality of an application but also provides an opportunity to the developer to improve its product.Every application is being developed by comprising development of its constituents different components. Now as we know that Integration testing is the testing in which all components are tested in an integrated environment i.e testing is done collectively of all components with their individual functionalities working altogether.Along with this as we know that all these ... Read More

1K+ Views
As we know that testing is the most important stage in the process of delivery of any application or software as it is only testing which not only validate the quality of an application but also provides an opportunity to the developer to improve its product.Every application is being developed in some high or low level language which means some code has been written for its development so on the basis of knowledge to the tester about the application there is classification of testing namely Black Box Testing and White Box Testing.Following are the important differences between Black Box Testing ... Read More

3K+ Views
Testing is the most important stage in the process of delivery of any software product, as it not only validates the quality of the product but also provides an opportunity to the developer to improve it further. Unit testing and integration testing are both software testing techniques, but they are quite different from each other in their scope and they focus on different parts of the software. Read this article to learn more about unit testing and integration testing and how they are different from each other. What is Unit Testing? Unit testing is a type of testing technique in ... Read More

1K+ Views
In general, we can say that both Testing and Checking are used to evaluate a software product to make sure it behaves as expected. Both these processes are performed before the delivery of the product to ensure the delivery of correct and genuine product. Read this article to learn more about Testing and Checking and how they are different from each other. What is Testing? Testing is defined as a process of validating a product along with learning about that product by investigating and exploring the product during the process. Thus, testing is the process that motivate the tester to ... Read More

5K+ Views
As we know that testing is the most important stage in the process of delivery of any application or software. Testing not only validates the quality of an application but also provides an opportunity to the developer to improve its product. Every application is being developed in some high or low level language which means some code has been written for its development so on the basis of execution of code written for the application there is classification of testing namely static testing and dynamic testing. In this article, we will discuss all the important differences between static ... Read More

324 Views
We are now living in a world of Cloud and Digital business. Application Development of almost all the platform is in boom. For providing utmost customer satisfaction, the application has to be seamless and bug-free.We have been living in the age of manual testing since very long. We have new requirements pitching in every now-and-then from the clients where there is either enhancement in the application or any modification. For testing these new requirements, we need to run the older test cases repeatedly to test if it is not affected by the new change. And we end up testing the ... Read More

624 Views
This Question comes to many professionals who are not actually into core technical and want to pursue their career in Selenium Automation. The term coding makes the non-programmers a bit scare to even start off with something like automation. There is a perception that a non-programmer cannot excel in Automation, but it is only in head. Many deserving and capable manual testers shy away from Selenium just thinking that it require some special skills.There are various many languages in which Selenium Scripts are designed such as Python, Ruby, C#, JavaScript and Java is one such of them. Knowing the popularity ... Read More

147 Views
Functional TestingAll the user requirements as specified by the business should be well tested as a part of functional testing. Functional Testing demands Testing in the environment similar to that of client’s requirement. All the boundary conditions, negative scenario are accounted for. Each functionality of the application should be working well with minimal probability of any bug.Objective of Functional TestingThe basic requirement which is expected out of a well running application should be tested. The UI should be user friendly and easy to navigate. Error messages should pop-up in case any unwanted entry is entered.A bug free application with the ... Read More

239 Views
To ensure smooth, speedy and effective testing and delivery of a project, automation plays a crucial role. It becomes very essential in this digital business that continuous testing and delivery are ensured.Automation requires tools which control and compare the actual and the expected results. Repetitive execution as a part of Regression is also considered when Automation is talked about.While handling a huge project, automation plays a key role where few areas needs to be tested again and again in periodic interval. End-to-end testing result ensure the robust working of the application.When Automation is considers, it becomes very significant to identify ... Read More

431 Views
IntroductionAmong the four flavors of Selenium, Selenium Grid is one such flavor. The facility to run multiple tests on multiple machines, on multiple browsers simultaneously is made possible by Selenium Grid. It also allows running test cases on multiple browsers in parallel.Selenium Grid has 2 versions- older Grid 1 and older Grid 2. Old Grid 1 is obsolete now, hence Grid 2 is used.Selenium 2 is bundled with Selenium Server jar file. There is no need to install Apache Ant unlike Grid 1.How it worksSelenium Grid consists of hub and multiple nodes. Test runs on single machine called Hub and ... Read More