+ 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
5 ответов
+ 37
Use the Test automation.
+ 20
For the HTML can validate using the HTML validation https://validator.w3.org
+ 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.
+ 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.
+ 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.