active questions tagged qa - Stack Overflow most recent 30 from stackoverflow.com 2009-12-22T17:25:55Z http://stackoverflow.com/feeds/tag/qa http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/1945486/continous-integration-and-qa 2 Continous integration and QA swapna123 2009-12-22T10:27:00Z 2009-12-22T11:03:25Z <p>in my project, we are setting up continous integration environment and as part of this process, propose simultaneous fixing of defects during the QA test cycles.</p> <p>What is the generally practiced process when it to releasing this into the QA environment. Are these fixes immediately deployed into the QA environment (after itnegration testing) or are they accumulated till the completion of the current test cycle.</p> http://stackoverflow.com/questions/1772900/how-can-one-get-a-qa-team-more-involved-in-the-sdlc 5 How can one get a QA team more involved in the SDLC? Sean 2009-11-20T20:00:19Z 2009-12-21T22:48:10Z <p>I have worked in environments where the QA team has been actively involved in the development process from the onset of a project through maintenance. I generally have found this to be effective as the QA team has an idea of what is going on from a business prospective early on in the process. They can start working on test scripts very early on. </p> <p>However, I have also worked in environments where the QA team has been very disjointed from the development team. They have no interest in the process, and simply get involved toward the end of the 'development' phase, scrambling to come up with tests and then executing a limited set of tests based on their own understanding of the business requirements.</p> <p>What are your feelings on this? How involved do you think the QA team needs to be in the process? How can one transition a team that is accustomed to being 'uninvolved' to one that actively participates in the process?</p> http://stackoverflow.com/questions/1661908/qa-function-whos-responsibilty-what-skills-to-look-for 1 QA Function - Who's Responsibilty? What skills to look for? Rob 2009-11-02T15:22:03Z 2009-12-21T03:54:31Z <p>Our company is exploring hiring a QA specialist and I had a couple of questions. I'm not sure if there are any cut and dry answers here but any input is appreciated. Here are my questions:</p> <ol> <li><p>Would a QA tester report to the business side or the IT side? It seems like there may be benefits to either. </p></li> <li><p>What skills are best - should we look for a veteran tester and expect to teach them the business, or should I look for someone who is familliar with the business and expect to turn them into a tester? </p></li> </ol> <p>Any additional tips or suggestions. Thanks.</p> http://stackoverflow.com/questions/662605/parsing-a-flex-application-object-hierarchy-using-funfx 0 Parsing a Flex Application Object Hierarchy Using FunFX bedwyr 2009-03-19T15:19:08Z 2009-12-03T00:33:53Z <p>I'm attempting to test a Flex application in which Objects do not have static IDs. I'd like to use FunFX for automation, since it can easily be kicked off from a Linux shell.</p> <p>This said, FunFX doesn't appear to contain functions which allow users to access children via their parent objects (e.g. <code>parent.get_child_at(&lt;index&gt;)</code> or <code>parent.children()</code> for iteration). I see methods which return the <em>number</em> of children beneath a parent, but I don't see any iteration functionality which would allow me to parse the hierarchical structure.</p> <p>Has anyone used FunFX to test a black-box Flex app where object IDs are not known? If so, how did you accomplish accessing the various objects &amp; components to drive their functionality?</p> http://stackoverflow.com/questions/1835889/does-molybdenum-work-with-flash-flex 0 does molybdenum work with flash/flex? KosmoDoyle 2009-12-02T21:16:20Z 2009-12-02T22:26:57Z <p>no, it's not a chemistry question :-|</p> <p>came across this firefox add-on, molybdenum, a capture replay testing tool (I guess it's a play on selenium), and would like to know if anyone has had any luck using it in flash/flex apps? Thanks.</p> http://stackoverflow.com/questions/1819916/firefox-and-qa-testing-tools 2 Firefox and QA Testing tools? llaskin 2009-11-30T13:46:25Z 2009-12-02T19:43:13Z <p>Can anyone suggest good testing tools/plugins for use with Firefox? Currently I use firebug and SQLInjector. Are there any others that people enjoy using for QA testing of web based systems?</p> <p>I know selenium, but we don't currently use it. </p> http://stackoverflow.com/questions/1833558/anyone-been-to-the-stareast-qa-conference 0 Anyone been to the StarEast QA conference? llaskin 2009-12-02T15:18:01Z 2009-12-02T15:18:01Z <p>The stareast conference is coming up in April of 2010 and I'm trying to make a business case for it being worthwhile to go to. Has anyone been to a past one? Was it worthwhile? Did you gain anything from it?</p> http://stackoverflow.com/questions/550242/should-we-always-reproduce-the-bugs-to-verify-the-fixes 10 Should we always reproduce the bugs to verify the fixes ? webclimber 2009-02-15T03:18:16Z 2009-11-28T20:40:39Z <p>From time to time we get bugs on production that can be fixed by for example by changing a configuration, disabling some part of the logic, and such.</p> <p>I've argued with my manager that we should reproduce the bugs locally to ensure the fix works, and more importantly so developers and QA can include the check for these cases as part of the regular release.</p> <p>My manager thinks is a waste of time, as the solution works so there is no need to reproduce locally.</p> <p>So: Should we try to reproduce locally to verify the fixes ? Any pointers on how to sell this point to my manager if you agree with me ?</p> http://stackoverflow.com/questions/402161/black-box-vs-white-box-testing 5 Black box vs White box Testing TM 2008-12-31T02:37:22Z 2009-11-27T10:56:17Z <p>Which type of testing would you say should be the emphasis (for testers/QAs), and why?</p> <p>A quick set of definitions from wikipedia:</p> <p><strong>Black box testing</strong> </p> <ul> <li>takes an external perspective of the test object to derive test cases. These tests can be functional or non-functional, though usually functional. The test designer selects valid and invalid input and determines the correct output. There is no knowledge of the test object's internal structure.</li> </ul> <p><strong>White box testing</strong> </p> <ul> <li>uses an internal perspective of the system to design test cases based on internal structure. It requires programming skills to identify all paths through the software. The tester chooses test case inputs to exercise paths through the code and determines the appropriate outputs. In electrical hardware testing, every node in a circuit may be probed and measured; an example is in-circuit testing (ICT).</li> </ul> <p>edit: just to clarify a bit more, I realize that both are important, but usually they are separate between dev and QA. </p> <p>Is internal knowledge important for the tester/QA? I've heard arguments that testing with this knowledge in mind enables them to better test for problems, but I've also heard arguments that this knowledge can distract from functional needs and promote "testing to to the code" rather than to the intended solution.</p> http://stackoverflow.com/questions/1071762/what-are-software-practices-in-mission-critical-industries-e-g-nuclear-power-pl 56 What are software practices in mission-critical industries (e.g. nuclear power plant)? Pavel Chuchuva 2009-07-01T23:07:30Z 2009-11-25T04:44:12Z <p><strong>Edit</strong><br /> What software practices are being used in mission-critical industries where safety is paramount? For example nuclear power plant.</p> <p><strong>Update</strong><br /> Originally this question was: <em>How would you develop software for a nuclear plant?</em> I have changed it to save good answers. I'm also making this question community wiki. Please help to word it better!</p> http://stackoverflow.com/questions/1772649/year-end-budget-what-development-software-should-be-considered 4 Year end budget - what development software should be considered? Adam Davis 2009-11-20T19:13:42Z 2009-11-24T18:41:51Z <p>My department, and I assume many others, have an unusual year end problem: they haven't consumed all their budget. If they don't spend it all, then next year the budget will be reduced.</p> <p>We've recommended numerous small pieces of software, but they've been rejected as "too inexpensive - we need to buy software development tools that cost thousands of dollars per seat!"</p> <ul> <li>What software development tools (or kind of software development tools) are on your 'wish list' - ie, you can't justify the cost, but you would be able to put to good use if you had them.</li> <li>I'm particularly interested in those tools that are stratospheric in terms of cost - you would never be able to justify them for any given project, but can be extraordinarily useful for most development work.</li> </ul> <p>In my case I'd be targeting C code for high reliability use, and .NET tools for in-house use, but please contribute tools for all areas of software development.</p> <p>One tool per answer, please don't duplicate, and explain what the tool does, what applications/platforms/languages/frameworks/etc it applies to.</p> http://stackoverflow.com/questions/1450106/startups-and-qa 4 Startups and QA Eric J. 2009-09-20T02:15:04Z 2009-11-08T22:58:18Z <p>Startups should have dedicated QA early in the process. Often, QA is added fairly late.</p> <p>My two-part question is:</p> <ul> <li>When should dedicated QA first be part of a startup effort and why?</li> <li>What skills should the first QA members have (create and execute test scripts, test automation using common tools, write unit tests, plan and execute complex load and stability tests, etc.)?</li> </ul> http://stackoverflow.com/questions/1646136/website-qa-software 2 Website QA Software goodespeler 2009-10-29T19:49:50Z 2009-11-08T22:38:22Z <p>Is there any software that anyone can recommend that we run nightly to check for 404's and/or any other types of errors that might affect our production site?</p> http://stackoverflow.com/questions/943711/qa-stuff-certification-why-where-how 0 QA stuff certification? Why/where/how? Dandikas 2009-06-03T08:47:03Z 2009-11-04T00:02:02Z <p>We are looking for ways to certificate our QA department. What courses/certificates could you recommend?</p> <p>What QA certificates are respected (in Europ/world wide)? Did you pass any QA certification ... was it worth the effort/money? Perhaps there are some certificates you do not recommend?</p> <p>Any other useful info is appreciated. </p> http://stackoverflow.com/questions/1132141/is-there-an-eclipse-plugin-that-covers-all-qa-process 0 Is there an Eclipse plugin that covers all QA process? MikeG 2009-07-15T15:28:25Z 2009-11-03T23:57:59Z <p>We are looking to improve our QA process. Can we rely only on Eclipse plugins or should we consider other "external" tools? I would be interested in QA tools for Java / Grails using Eclipse IDE.</p> http://stackoverflow.com/questions/166103/free-program-for-building-managing-test-plans 2 Free program for building/Managing Test Plans? Omar Kooheji 2008-10-03T09:39:35Z 2009-11-03T23:42:28Z <p>Is there a free tool to manage/write test plans? At the moment my firm uses an excel spreadsheet, but it's less than Ideal.</p> <p>I'm not talking about Unit tests but functional testing.</p> <p>If there isn't a Free peice of software available what features should such software have. What needs to be recorded. Becuase I might just build something myself if I can't find anything suitable.</p> http://stackoverflow.com/questions/1462665/processes-and-tools-for-testing-large-projects-with-multiple-branches 1 Processes and tools for testing large projects with multiple branches Luke H 2009-09-22T21:17:18Z 2009-11-03T23:26:32Z <p>We make use of a significant number of branches (a fairly traditional mainline model) for development, and it's proved extremely effective as a way of organising things and keeping developers efficient on a large team. We have QA test development branches before pushing them back to the main line, which ensures the main line is always stable.</p> <p>Now there are some interesting problems related specifically to testing. The most common one is this: suppose a tester encounters a bug during testing, that's already marked as fixed. Is that because the fix failed (in which case they should reopen the bug), or because the fix hasn't reached the branch being tested?</p> <p>As perforce users, we're looking at solving these issues with perforce jobs. It's quite a "raw" tool though - it more or less provides the underlying functionality for this, but not an easy interface, particularly for testers to use. So I'm wondering if there are more user-friendly methods out there, or different approaches entirely (I don't think "avoid branching" is a practical answer for us in this case though!)</p> <p>What are the best practices for performing effective QA on multiple branches? Are there any good tools out there that provide automation and support for these issues?</p> http://stackoverflow.com/questions/1670518/video-or-slide-show-capture-tool-for-record-sequence-of-actions-causes-bugs 0 Video or slide-show capture tool for record sequence of actions causes bugs Max 2009-11-03T22:21:54Z 2009-11-03T23:08:43Z <p>During QA process we usually need to describe a sequence of actions, that causes some bugs.</p> <p>Usually the best way to do it is describe a situation by text messages. Sometimes screen-shots are helps. But i believe that video or slide-show should to help QA team and should to reduce time loss on QA-team - developers iterations.</p> <p>Some time in our team(we have most of QA team in other city), we are use <a href="http://www.teamviewer.com/index.aspx" rel="nofollow">TeamView</a> to describe significant situations. But it takes a lot of time to setup connection, and require to stop developer's work for show time. And if you have to show this bug to other developer, you should repeat this process again. Video cuts is good item for novice-developer, who can't to know new project fully. I think we can to find many pluses of this approach.</p> <p>The minus of this approach is big size of describes. </p> <p>Is there some tool, that allow to record an user screen actions into video or slide-show? Better if this tool will be free.</p> <p>Good feature for this tool is "get slides of last 2 minutes". For example QA-engineer keeps it working in background, and try to do smth that cause a bug. QAE is believe that actions of last 1 minute cause a bug. If the tool will allow to save that 1 minute ago actions, it will be very useful. </p> http://stackoverflow.com/questions/870590/recommended-tools-for-test-engineering 2 Recommended tools for test engineering Tom 2009-05-15T19:58:43Z 2009-11-03T22:32:45Z <p>Does anyone have any recommendations for software to assist with the management of test cases - those created and maintained by quality engineers, not a part of the developers work?</p> http://stackoverflow.com/questions/912710/how-to-make-qa-test-my-web-service-instead-of-forcing-me-to-test-their-web-servic 2 How to make QA test my web service instead of forcing me to test their web service client? Jherico 2009-05-26T20:53:19Z 2009-11-03T22:28:52Z <p>I work on a number of web services and virtually every time I produce a major build, QA starts throwing up bugs that I frequently find have nothing to do with the server side code, but rather with their crap client library. I've tried to at least make it policy that they don't file bugs without the XML that they're pushing to the server, but they frequently ignore this requirement. </p> http://stackoverflow.com/questions/1090411/language-for-scripts-used-by-testers 3 Language for scripts used by testers Brian Feel 2009-07-07T04:54:26Z 2009-11-03T22:02:56Z <p>What languages do your testers use for writing complex testing scripts/simulators? </p> http://stackoverflow.com/questions/1308689/what-is-the-single-most-effective-thing-you-did-to-improve-your-qa-skills 3 What is the single most effective thing you did to improve your QA skills? Andrei 2009-08-20T20:41:15Z 2009-11-03T21:59:53Z <p>Looking back at my career and life as a QA engineer, there were plenty of different ways I improved my QA skills and testplans- reading other people's testplans, readings specs, reading books, listening to podcasts, watching screencasts.</p> <p>My question is: What is the most effective thing you have done that improved your QA skills? What would you recommend to others that want to improve?</p> <p>I do expect varied answers here and no single "one size fits all" answer - I would like to know what worked for different people.</p> http://stackoverflow.com/questions/779370/should-qa-report-to-development 5 Should QA report to development ? gareth_bowles 2009-04-22T21:43:47Z 2009-11-03T21:40:49Z <p>Here's a question I've run across in many, many companies; should a QA team report to the development organization, or be equivalent to development in the company hierarchy ?</p> http://stackoverflow.com/questions/1111119/how-do-you-ensure-the-same-bug-does-not-creep-into-the-product-the-second-time 4 How do you ensure the same bug does not creep into the product the second time? msvcyc 2009-07-10T18:10:44Z 2009-11-03T21:05:42Z <p>I understand the short answer to it is by doing testing but still how do you do this testing? Do you modify your test cases to include the bugs as additional test cases to run or do you just verify all the bugs in your bug tracking system starting from the oldest to the newest releases.</p> <p>Thanks for the answers. Looks like my question was not clear. I understand we need to write bug report, fix the bug &amp; do the testing for fix verification. However, under which test phase should this test go so that during the next version release, we are sure to re-run the test again to make sure none of the new changes have re-introduced the bug. Should it go under regression testing or should it go under integration testing for that specific project or should we just test all the bugs in the bug tracking system since version 1.0?</p> http://stackoverflow.com/questions/1370714/what-tools-are-available-for-qa-a-website-that-is-treated-as-a-unit-testing 4 What tools are available for QA a Website? That is treated as a Unit Testing Geo 2009-09-02T23:33:22Z 2009-11-03T20:32:17Z <p>We are looking for QA tool that allow us to test functionality in our web applications. At this moment we QA all our work/enhancements/defects by hand, but we have so many webapps that is difficult to QA the entire site for a few changes. </p> <p>We want to have a list of Test Cases that we will run every time we will push a change to development to at least build a confidence level before the push.</p> <p>I am sure that this is an issue that is normal among us, the web development community. </p> http://stackoverflow.com/questions/513478/recording-software-for-qa 5 Recording software for QA JoelFan 2009-02-04T21:36:00Z 2009-11-03T20:31:25Z <p>Is there any software available on Windows that could record what a QA person is doing? It would not need to be able to <strong>replay</strong> the actions... it would just need to be able to be <strong>viewed</strong> (like a video).</p> <p>The problem I'm trying to solve is that sometimes QA runs into an error but can't remember exactly what they did to get it. With this tool they could just replay what they were doing.</p> <p>Ideally, it should record in a "circular buffer" (e.g. half an hour long) so that only the last half hour is available for replay. That would eliminate the need to maintain the recording (i.e. delete it periodically).</p> <p>Obviously, free or low cost is best :)</p> http://stackoverflow.com/questions/518180/when-is-it-time-to-have-a-qa-department 6 When is it time to have a QA department ? David 2009-02-05T22:04:43Z 2009-11-03T19:56:13Z <p>The Quality Assurance (QA) department is roughly a bunch of testers debunking your app(s) all day, giving the green light for releases, handling Alpha / Beta programs. And much more.</p> <p>But without a QA department in a software company, issues arises too often in the field, and problems costs more to fix. However, most companies starts in a garage, with 1 employee being yourself, and then grows into a software company.</p> <p>When do you tell it's to create such department ? Anything to do with the size of the company, the problems it encounters ? </p> http://stackoverflow.com/questions/61532/tips-for-hiring-good-testers 29 Tips for hiring good testers? Darren 2008-09-14T18:21:38Z 2009-11-03T18:53:39Z <p>Hi all,</p> <p>We're looking to add a few good testers (err "qa engineers") to our team.</p> <p>It's been my experience in the past that the "10-1" rule for developers (good devs are 10 times more productive than mediocre devs) is even more prevalent for testers. Most testers I've worked with found a decent amount of issues, but there's a few stand-out testers that I've worked with that could rip applications apart and make the dev team cry.</p> <p>So the question is -- how do you find these rockstar testers? The web is full of exams and tips to separate out the great from mediocre developers, but whats the magic interview questions and tests to find the amazing testers?</p> <p>We're about to start the second round of interviewing with the people that have passed the phone screen (aka idiot test) and any suggestions you have for this challenge greatly appreciated. </p> http://stackoverflow.com/questions/1007081/monitoring-and-bisecting-changes-of-output-of-some-commands-ran-on-a-source-code 0 Monitoring and bisecting changes of output of some commands ran on a source code repository jpalecek 2009-06-17T13:37:22Z 2009-10-26T16:00:03Z <p>I'd like to know if there is some tool to monitor changes that a patch does to a project.</p> <p>I have a source code repository, and I'd like to do things like:</p> <ol> <li>see what a patch changes in (text) output of an arbitrary program, eg. compiler output, or testsuite output etc. when applied</li> <li>given a line in some of these outputs, I'd like to bisect the history and find the change that introduced, or changed, this particular line (eg. a specific warning in compiler output)</li> </ol> <p>I don't want to store the information in the repository, because it would clobber my patches (produced from the repository), and it would risk the info to be out of date (eg. rebases), or create unnecessary problems (eg. merges).</p> <p>I'd like it to work with arbitrary programs, that were possibly unknown when the changes were made (eg. a new static source code checker, a new compiler version that adds a new warning, a new architecture to run tests on). Also, I'd like to quickly review a patch (eg. how much does this new testcase raise test coverage) in some UI.</p> <p>I use git, but I'd like to hear about tools for others too.</p> http://stackoverflow.com/questions/1603980/best-php-qa-tools 5 Best php qa tools Alexandre Victoor 2009-10-21T22:15:45Z 2009-10-22T00:36:03Z <p>Hello,</p> <p>I am looking for qa tools for php. I am used to pmd, findbugs and checkstyle in the java world. Do you know some similar tools for php doing code analysis ? So far I have found but not tested yet :</p> <ul> <li>phplint</li> <li>pmd's cpd module</li> <li>PHP_CodeSniffer</li> </ul> <p>Thanks in advance for your help</p>