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.
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.
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:
I recommend reading the following links:
Related: https://answall.com/a/216574/57801
Browser other questions tagged testing
You are not signed in. Login or sign up in order to post.
What are Unit Tests for and what are the advantages? and Tests, TDD, Unit Test, QA and similar. What is the difference between concepts on tests?
– rray
Possible duplicate of What are Unit Tests for and what are the advantages?
– Victor Stafusa