As a student, I have just got my first co-op job as a manual tester. I know it is as intellectual and demanding a job as a coder, but I cannot help thinking the other way around. I love being a coder but it is my first job. So I am asking you for any advice on how I can get the most out of the manual black-box testing job, i.e how can I use it to improve my coding skills. Many thanks.
|
2
|
|
|
|
|
|
Testing is sometimes more challenging and rewarding than the development. In the teams I work with quite a lot of best developers come from the test engineer background. First of all this work could give you a unique perspective on the development prospect. Some developers believe that tester are mean and picky and find issues in perfectly nice code. Some testers believe that the developers are lazybones and are happy with half-cooked code. Seeing the situation from both sides of the fence is definitely an experience worth having as it will reduce the amount of miscommunication and misunderstanding later on in your career. Second of all tester get to write test cases. Test cases are great because they help you to think about the functionality of the system, instead of the classes and their methods and properties etc. The goal of writing the software is to make good useful software and not to achieve the excellence with your coding skills. Therefore thinking about your application from that angle is definitely helpful. Writing test cases now will help you to write good architectural documents later. You could pusth your team/company to move towards testing automatisation. Sometimes this fails because testers don't know how to write automation code and try to use record-and-play interfaces. But if you could actually code the tests you have much better chance of success. Just be aware that the automation is a significant effort and should not be taken lightly. Classic books say that the effort doubles then the manual testing is done in parallel with automating it. I tend to agree. |
|||
|
|
|
|
Try to break it as a coder:) Sql Injection, Script injection, etc,etc:) It should make it funnier:) |
||
|
|
|
|
Automate the simple things you do frequently when manual testing. This doesn't always mean the actual testing, in most cases automated functional testing becomes harder and you get less for your time the further away you get from the code and the closer you get to the interface and the human brain. So for example; when testing do you need to copy files and enter some values to run the software? Automate that. Do you need to have data populated in a database to help your tests? Automate that. Once simple stuff is automated and running smoothly you can tackle harder stuff. Another bit of advice is to read and understand the source code commits that fix the bugs that you find if possible. You can learn a lot this way. |
||||||||
|
|
|
I was in the same position that you some years ago, and for me being tester helped me a lot when coding, it will happen without you noticing it. Mostly you will be more careful with user input, orphan links, etc and generally you will be more detailed. From my experience, it was a very good position and I think it definitely changed my style of programming |
||
|
|
|
|
Maybe you can try to automate some of the testing? Write some scripts that will prepare the application for the manual test (start it, log on, load test data set, etc), Write some regression scripts that will compare the output from the previous version with the output from the version you are testing. |
||
|
|
|
|
If you've been hired to do manual testing, then that's what you should focus on. Automated testing is great, and if your company isn't doing that they really should be. However, you're not there to tell them how to run their business. The number one thing on any job is to do the assigned work. That's especially true at entry level. My suggestion for how to make this a learning experience that will help you with a future career as a developer is to take note of what kinds of problems you find in other people's code. Knowing what the common mistakes are can help you avoid making the same ones in your own code. For example, some bugs are just coding errors, such as being off by one when looping through an array. Others are misunderstood requirements, flaws in the high-level design, or failure to check for unexpected/invalid inputs. Also, try to follow up with the developers after a bug has been reported to try to get more info about the root cause of the problem, how they went about fixing it, and what the impact to the project was. Just be careful about this: programmers and QA testers tend to have an adverserial relationship. They're not going to like you telling them that they're stuff doesn't work, especially the senior-level ones. Make sure they know you're trying to learn from this, not criticize. If possible, pick a "mentor" from among the developers to help with this part. That way you have one main contact who is expecting to have this kind of conversation with you. The main thing you can probably get out of this co-op is to see how software development is done in the real world. From your seat as a tester, you'll get a chance to see more of the "big picture" than you would as an entry-level developer, which is a really good thing when you're first starting out. If you think you've got a future with this company, either in QA or as a programmer, this is a good opportunity to learn about their product and industry. The best programmers aren't just heads-down bit monkeys. They know not only what their code does, but why, and how that benefits the people who pay money to use it. Good luck. |
||
|
|
|
|
During planning:
During testing:
|
||
|
|
|
|
In addition to what has been said about automation, make sure you show interest in the entire lifecycle. Chances are that anything you find in a test was not properly documented in requirements and wasn't properly unit or integration tested prior to you ever seeing it. Anything you can do to help improve the earlier chain of events will help to educate you and make everyone's life easier. Just watch out for egos and tread carefully when you find them. |
||
|
|
|
|
If it's web related, find one of those frameworks where you can script your keystrokes and/or mouseclicks to do a sort of faux unit testing. It will increase your productivity and you can become something of a ninja with it, using it to get to the thing you really need to test without having to deal with the fifty pages that came before it. It could wind up getting your foot into the door of automated testing and, if you impress folks, you may be able to get into the development department since it's obvious you can script really well. |
||
|
|
|
|
You can:
I truly believe that all programmers - including senior ones - should spend some time doing manual testing every year, if only to see things from a different perspective, and to gain some respect for the testers they work with (and I put that in practice myself) |
||
|
|
|
|
Learn a *Unit framework and plug the different cases in as you go. |
||
|
|
|
Multitask and practice programming every spare second you have. When I had a boring job maintaining some crufty old Perl build scripts, any time I wasn't doing work, I was learning more advanced Perl, looking up new algorithms, writing prototypes in Haskell, etc. |
||
|
|
