What is an automated test?

Asked

Viewed 3,666 times

6

Looking over the top, the term in question seems to me essential in the development routine, so simply, what is an automated test and what are the advantages? if possible a practical example of how to make them.

1 answer

4


Automated testing is the use of software to control the execution of software testing by comparing expected results with actual results. Where I work we use Testcomplete to automate testing in desktop applications, but there are numerous others available for both desktop and web applications. Examples: Microsoft Test Manager, Soapui, Selenium Web Driver, etc.

The automation of tests brings several advantages: it is faster, decreases the chance of human error (but it is necessary to pay attention so that the scripts do not present flaws) and reduces the effort with repetitive tasks, freeing the testers for activities that require human reasoning.

Examples of tests that can be done with automation tools:

  1. Relate the item
  2. Performance
  3. Stress
  4. Security
  5. Monitoring of resource utilization
  6. Data management

I recommend reading the following links:

  1. Introduction to test automation
  2. Automated testing, where I start?
  • Related: https://answall.com/a/216574/57801

Browser other questions tagged

You are not signed in. Login or sign up in order to post.