What is the best way to test a software? | Sololearn: Learn to code for FREE!
New course! Every coder should learn Generative AI!
Try a free lesson
+ 3

What is the best way to test a software?

Im testing a web software, but I want to find bugs that crush the software

19th Jan 2018, 8:59 PM
Alejandro Esaú Álvarez Ruiz
Alejandro Esaú Álvarez Ruiz - avatar
5 Answers
+ 37
Use the Test automation.
19th Jan 2018, 10:53 PM
Igor Makarsky
Igor Makarsky - avatar
+ 20
For the HTML can validate using the HTML validation https://validator.w3.org
19th Jan 2018, 9:11 PM
Nilavarasan
Nilavarasan  - avatar
+ 7
Use dev tools to debug your codes(possibly best options). It's available for all major desktop browsers. For Chrome it comes as a built-in feature. But for other browsers such as Firefox, opera and IE , it's a browser extension that you have to install separately. You'll find enough documentation about it.
19th Jan 2018, 9:45 PM
Ranjan Bagri
Ranjan Bagri - avatar
+ 3
You have to think over many ways to use our software and check if there are bugs, maybe friends can test too, so you have more chances to find hidden bugs.
19th Jan 2018, 9:38 PM
Jonas Schröter
Jonas Schröter - avatar
+ 3
Don't forget _humans_ here. Get testers with mixed setups: i386, AMD64, different OSes and browsers. Run you stuff with profiling software and loggers. Ultimately, you'll still have bugs (Bluez stack went unnoticed for years) so when you release your first public version, make it "rc1" until all the other bugs are toast. Then release v1.0. Development is not a walk in the park and no magic tools will make it.
19th Jan 2018, 11:24 PM
non