disadvantages of automation testing

Solutions on MaxInterview for disadvantages of automation testing by the best coders in the world

showing results for - "disadvantages of automation testing"
Alex
24 May 2019
1// maintenance required
2// higher skilled employee needed since it requires coding knowledge
3// initial time required
Fernando
30 Feb 2016
1There are a few things that automated testing won’t do:
2it won’t fix specific problems that users
3might have. When writing and testing the
4scripts there are just some scenarios that
5are being tested, not all of them. 
6The main purpose of automated testing is
7to find bugs in simple operations, e.g.
8to log into the app, create a new account
9or send email when the password gets forgotten.
10That’s what automated tests do.
11App crashes in specific scenarios must still
12be tested manually. As we know, machines are
13very advanced, but they are not smart, (yet!).
14One other thing that automated testing won’t do
15is test the effective usability of the design,
16e.g. where the buttons are positioned, and
17how easy it is to actually use the app. 
18That still has to be done by manual user-friendly tests.
19In conclusion there are benefits and drawbacks
20to both automated and manual testing.
21To achieve the best results we need a 
22combination of both types: 
23automated testing for repetitive,
24simple use-cases; and manual testing
25for reproducing specific bugs, complicated
26use cases and to ensure the best user experience possible.
27
28
29