How to automatically detect errors in a web application?

I have a web application in Vaadin. It has some forms, search fields, buttons, etc. And is supported by the SQL database. I used Selenium, Sahi Open Sourceand some other tools for automatic testing of the graphical interface.

The problem is this: recording GUI actions for automatic testing is not very useful, because it seems more manual than automated, because I still need to record tests manually.

Question: is there a better way to test a web application? How do you test your web application? Is there a free tool that automatically detects errors in my web application?

+4
source share
2 answers

This will not be possible if someone does not invent a reasonable AI, and even this may not be enough. Our company has a separate QA department (they are intelligent people), and they continue to ask questions such as “how should we test this thread” and “this is the expected answer.”

Without a test that knows about the business stream, which you are limited by what the bots do, randomly browse the site and try to get "500 pages", and this is not enough. If you are tired of writing tests, you can:

  • Use a static code analysis tool (such as jshint) to check if your code is written "in the best way".
  • ( , )
  • -, .
+1
0

Source: https://habr.com/ru/post/1622752/


All Articles