Questions

What test case management systems are useful for both automated and manual test cases?

We're looking to ramp up our automated testing and use one interface to manage both automated and manual tests. When either kind of test is performed, it needs to be done in different browsers. So, when a test passes in one browser, it could fail in another. What tools are good for both of these requirements?

2answers

I've built this kind of system before for more than one company. What you want to build is a continuous integration system (and this is what my company specializes in). This allows you to trigger tests each time a developer submits code. The test you describe would fire up several environments in parallel (i.e. one for each browser) and you would get high level status reports about test coverage and success.
Don't hesitate to contact me and I'll do my best to walk you through the process via phone, email, and how we see fit.


Answered 9 years ago

In short, Continuous Integration (CI) is where you are heading. Remember that CI is a set of good practices that include automation, committing many times in a short period of time, running tests, communicating all parts involved in the project, using a source code management system, using a close of the production environment to execute your tests plus others.

Without much information about your team and the philosophy in which they develop its a bit more difficult to impose any sort of framework on you without stressing some part of your process.

Most automated testing can reach any sort of test case management system that has an API or integration.

You want to be able to adjust for when integrating a CI process with test management:

1. Detail > screen shots, log files, details on the environment and other data available

2. Direction > the build server can be used to trigger the execution, manual or automated, of tests.

3. Granularity > From one test case to executing all the builds related to a certain test case in your test management tool.

Without knowing the whole process from end-to-end the above might not help. The goal is to break your software and as early as possible. Once interface is possible as the automation is generally placed as early as possible in the development cycle.

If you are referring to automating the manual testing, there are a host of tools on that front with integrations into most of the leading tools.

My team can easily advise, put together a solution and/or framework with a bit more information. I'd prefer to have a chat in order to build a true quality assurance system that doesn't expose any risk and breaks your software sooner and faster under one roof.


Answered 8 years ago

Unlock Startups Unlimited

Access 20,000+ Startup Experts, 650+ masterclass videos, 1,000+ in-depth guides, and all the software tools you need to launch and grow quickly.

Already a member? Sign in

Copyright © 2024 Startups.com LLC. All rights reserved.