TE
TechEcho
Home24h TopNewestBestAskShowJobs
GitHubTwitter
Home

TechEcho

A tech news platform built with Next.js, providing global tech news and discussions.

GitHubTwitter

Home

HomeNewestBestAskShowJobs

Resources

HackerNews APIOriginal HackerNewsNext.js

© 2025 TechEcho. All rights reserved.

Interview questions for QA managers

87 pointsby jgillmanabout 10 years ago

10 comments

insertionabout 10 years ago
This doesn&#x27;t seem right to me:<p>&gt; 3) How do you determine which devices and OS versions we should test on?<p>&gt; This should generally be an easy question for the candidate. Good candidates will point to app analytics as the best measure, looking for the most used devices for their particular app. Another good answer would be to check the app reviews where people might have complained about specific issues happening on their devices. Less creative candidates might simply suggest “looking at the top devices” on the market<p>Looking at top devices is also incredibly important, and it seems foolish to dismiss that strategy.<p>What if your website doesn&#x27;t work on iPhones, and so you have no iPhone users? What if, because people can&#x27;t even sign up on an iPhone, they don&#x27;t bother complaining about specific features not working?<p>Surely it makes more sense to test based on your target market, rather than the subset of people who are self-selecting to use your product?<p>Ideally you should be looking at both usage and market data. If your target market contains lots of iPhone users, but everyone&#x27;s on Android, this points to a potential problem.
评论 #9158809 未加载
评论 #9160759 未加载
评论 #9160278 未加载
tootieabout 10 years ago
This is actually awful. A QA manager should be asked how testing is integrated into the development process, how to infuse quality into everything, how to hire&#x2F;train&#x2F;retain testers, how to estimate for QA. Writing test plans is an antiquated approach so I&#x27;d rather hear what they&#x27;ve done that works and why.
jakubpabout 10 years ago
Hmm. I find proposed answers to these questions somewhat... unexpected. Lacking, in fact. They focus so much on technical ability, and seem to ignore the human side of being a manager. Starting with the first one... &quot;1) Let’s say you are the first QA manager joining our startup. What are the first three things you would do?&quot; The kind of things I&#x27;d expect to hear here would never be of the kind &#x27;write a test plan&#x27;. And I hardly believe anyone would be able to contribute a test plan right away, would they? I expect ability to write a test plan, or setup a process where it is created and managed, to be rather easy to check by just asking someone to do a test plan on an imagined scenario. The answer I would like much more would be: &#x27;1. meet the team&#x27;, &#x27;2. understand the product, its vision, goals&#x27;, &#x27;3. understand current dev&#x2F;QA setup and code before I proceed&#x27;.<p>In other words, it seems to me that the first things to do should be to see where we are, connect with people rather than making things up. How can you propose first actions without at least basic understanding of where you are?<p>I like questions 5+ much better, but still these seem more suited for interviewing an experienced individual contributor, not a team manager.<p>How about setting up a team? How about hiring? How would you define and split tasks, assuming we agree on tasks? What kind of testing would you personally do, which would you delegate to QAs and which would you require to stay on the dev team? What would you do in situation X? (any difficult multi-optimization problem where people, technical and philosophical issues are to be considered)<p>I can imagine a great individual contributor to ace every single question on ths list, and then fail utterly when he has to manage even 2 people effectively.
评论 #9159373 未加载
评论 #9159456 未加载
grandalfabout 10 years ago
The issue of where to draw the line between developer testing and QA testing is an interesting one.<p>I think it&#x27;s best to answer it in reverse and start with a bug.<p>Did the bug make it to production? Is it a critical path? Was it covered by the test plan? Was it covered by a functional&#x2F;unit&#x2F;integration test? Was it clearly defined in the product requirements? Was the behavior clearly defined as part of a business objective?<p>Most bugs could have been discovered earlier in the chain. The earlier the better. Many times bugs are a result of systems failure, bad communication, assumptions, etc.<p>I think the two most important concepts in QA are 1) answering the question of &quot;can we ship this now?&quot; and 2) encouraging systems thinking so that all of the processes related to executing business goals in a software company can be continuously improved upon.
评论 #9158846 未加载
philk10about 10 years ago
Pretty much stopped reading when the answer to the first question involved writing test cases. Testing does not have to mean churning out hundreds of test cases, they are inefficient and not that effective at finding bugs. If a QA Manager ( or tester ) had such a strong attachment to them then the interview would be over. Definitely stopped reading when answer2 was &#x27;detailed test cases&#x27;
评论 #9159826 未加载
评论 #9159034 未加载
3amabout 10 years ago
This is a pretty good list. It&#x27;s a bit self-serving on the technology questions as well as the general line of questioning for TestMunk (understandably).<p>If you are really hiring a QA Manager, also consider asking them about their team structure&#x2F;building philosophy, elaborate on the technical requirements for those roles, if they have experience developing a testing process that works with your company&#x2F;group&#x27;s development process. What experience they have with problem hires and how they&#x27;ve dealt with them.<p>This is really a list of questions of a principal test engineer. A good manager should be able to answer them, too, but it&#x27;s far more important that they can make a group of QA engineers perform well (otherwise you should be hiring a QA lead).
YourCupOTeaabout 10 years ago
11. There are two number 3s. Or this is an attention to detail trick for QA managers.
geoelectricabout 10 years ago
Most of this is pretty good. Some of this is a little old-school.<p>There are a couple of things I disagree with, speaking from my own experience as a test lead. The biggest is the definition of &quot;a good testcase.&quot;<p>If you define your test cases at the specific UI widget level, they have to be updated whenever any UI change happens, period. Since you usually end up with a number of test scenarios for a given area of the UI, that usually means that a UI update actually requires a number of test updates.<p>That has the same maintenance as UI automation tests, but without the benefit of a widget map, reusable functions, or an automated callout when the test is wrong. And as anyone familiar with the test automation pyramid knows, UI automation tests provide a huge scaling issue with maintenance even <i>with</i> those. Echoing that scaling issue into your test documentation is a huge mistake.<p>Tests should be defined at the level that makes the intent of the test clear to an experienced tester or user--no more, no less--unless for some reason you&#x27;re shipping them to an inexperienced audience like an outsourcing firm. That usually means being very specific about input data, and -if- it&#x27;s microtesting UI behavior (tab from here, end up here) being specific about that. Everything else, generalize. You do not need to spell out stuff 123abc for the person who&#x27;s been running tests for you on a daily basis.<p>Maybe you don&#x27;t write it at &quot;check that signin works,&quot; but maybe more like &quot;check that sign-in works with a valid username&#x2F;pw, at no more than 2 seconds latency.&quot;<p>But you know, if you don&#x27;t care about latency, just say &quot;Check that valid sign in works.&quot; That&#x27;s <i>fine</i>. You only have to get specific about what kind of <i>invalid</i> data should trip it up, and even then &quot;without a digit,&quot; &quot;without a symbol,&quot; &quot;with less than 8 characters,&quot; that&#x27;s all fine too. The test will get executed correctly if your tester isn&#x27;t a total loss.<p>Also, people suck at manual regression testing but are great at shortcutting and will wander off a script that specific anyway. So you may as well accept that and write them at the level they&#x27;d execute. What you lose in repeatability, you 100% gain in maintenance and productivity.<p>Repeatability is overrated when humans do it: take advantage of the fuzziness. It&#x27;s more coverage. Just make sure they can write a good enough bug report to tell you what they actually did that caused the issue. If you want that level of repeatability and definition on the tests, do it with automation. At least there you can define a widget map and some flow-encapsulation methods.<p>Honestly, if I didn&#x27;t get the job with at least the nice and less-ranty version of that answer, probably not the right company for me anyway. If you&#x27;re not legally IEEE-compliant or an aerospace&#x2F;medical company, wasting time benefits nobody.<p>One of the most exciting movements in QA is context-driven testing. It has 7 tenets here:<p><a href="http://context-driven-testing.com/" rel="nofollow">http:&#x2F;&#x2F;context-driven-testing.com&#x2F;</a><p>...but they all boil down to &quot;do the right thing for what you want done, and quit being so damned dogmatic about it.&quot; That includes not generating artifacts if nobody else will read them, and not defining tests past the level of detail needed to make them effective.<p>QA has a crappy reputation because it&#x27;s slow, ponderous, and often not very effective. Maybe part of that is because people are updating overly-detailed docs all the time because other people have told them they should, rather than because they really need to.<p>If you need that level of product documentation, write the product documentation and refer the tests to it. At least that way you have &quot;single point of truth&quot; for flow. Fragmenting and repeating the docs across a bunch of disparate tests is just like copy-paste coding: a maintenance nightmare.<p>I&#x27;m personally in the middle of helping my org move to checklist-based tests. They can be used as loose regression tests, or as missions for exploratory testing, and only have to be updated when the basic layout of the app changes instead of every single flow detail. It&#x27;ll get us out from the currently crushing maintenance of reviewing and potentially updating 6000+ micro-documented UI tests on every release, and will be a huge win.<p>People really should compare this sort of thing to coding maintenance. We&#x27;ve learned so much there that can be applied here as well.
评论 #9158853 未加载
评论 #9158797 未加载
jhwhiteabout 10 years ago
I haven&#x27;t worked in a continuous integration environment but why would that fall on QA?
评论 #9158594 未加载
评论 #9158611 未加载
评论 #9158604 未加载
logunathabout 10 years ago
May be any personal question which may express your sense on &quot;compromise&quot;. If you say i am deep rooted with perfection, have a added value.