Skip to main content

The state of QA today

I recently read a blog post about the state of QA in general, and it really opened my eyes to realise that it isn't just in my current company where testing is in a state of anarchy almost, but at least for my own sanity it appears to be in a number of places.

The blog in question is here, and it references an article available here. Like the blog, I do not agree with everything in the article, but I will elaborate and discuss the key topics in this blog post.

I was going to write a similar blog post, around the state of QA contractors, however, I feel that it can now be coupled together into this blog post.

To be honest, first things first, it was a bit of a relief to realise that this is an industry wide problem, and not just isolated to where I am at currently. It is something that I care passionately about, as all too often, I see people hired by companies as QA professionals, but in reality, I have no idea how they can claim to be one.

In the blog post, it's mentioned that approximately 50% of people in software QA business shouldn't be. This is something I have felt for a long time (maybe not as high as 50%), they seem to get by going from contract to contract or job to job, and  somehow keep getting hired. I also don't believe that it's just contractors, a lot of people just don't have the passion/knowledge for the job that they should have.

I do believe that, (in my current company at least), it is being addressed, recruitment is becoming more stringent, but obviously this has an impact on resource availability if we are spending more time recruiting we have less time for other things, but hopefully we will start reaping the rewards of this, unfortunately this does not rectify the problem across the industry.

Firstly, let me state, I've had the pleasure of working with some incredibly knowledgeable QA Contractors, on the flip side to that I have also had the pain of working with bad contractors, as a matter of fact, this isn't just a QA centric post, it could be aimed at Developer contractors and even any contractor in a professional role.


The reason why it is so obviously highlighted for QA I feel, is that we are the quality check. If a developer develops bad code, then providing it isn't buggy and does what it should, then it's quite possible that by the time someone comes to work with that area of the system again, the contractor is long gone. However, if a bad QA is employed, and they write bad tests, and have bad analysis skills, then bugs will be missed, and bugs will go into production, and this in turn makes the entire QA department look bad, not just the QA Contractor, but any QA who works at the organisation.

Why are poor QAs getting hired?

I think a lot of it is down to the interview process, it's hard to gather enough information about someones QA skills in a 2 hr face to face interview, this is why where I am at currently, we have a phone interview and a written test all to be completed before attending a face to face interview. Once at the face to face interview the interviewee will complete a technical test as well as complete an oral task of analysing a made up User Story, and answering multiple questions about their experiences.

However, even with this, it is possible that mistakes are made, and the wrong people are hired for the wrong job. The important thing is that this is realised early and can be rectified.

There's also a big misunderstanding still around that of exploratory testing, which I discuss here, it's viewed that anyone can do it, and it's aimless, when in fact, it's the exact opposite. Exploratory testing is at it's most useful when it is performed by people who know the systems and have some form of charter/direction in place.

Let's also talk about qualifications, they are all well and good, they show that people know the theory of something, but they unfortunately do not show that someone understands the theory in real life scenarios, and when everyone has the same certificate, is it still useful? Is it still a useful tool for certifying someones skills?  I have worked with people in the past who have no idea how to view the source of a page, or what a 404 page was, but guess what they were certified. 

So, these are the reasons why I feel that the state of QA is in anarchy, however it has been reassuring to know that it isn't only myself who feels this way, but it's felt across the industry. I don't want this to sound too negative, as there are many positives about QA, which I will address in future posts, I promise in more detail, but I love working as a QA and there are a lot of very good QA and I am lucky enough to work with some, and have worked with many in the past, automation is really driving things forward and challenging me every day. I am sure that things will eventually change for the better, and I will be doing everything I can to help improve things sooner rather than later. I would like to think that by even reading this blog, and making people aware of the problem, then they can act on it and try and improve things themselves somehow.

Comments

Popular posts from this blog

Coding something simple.... or not! Taking a screenshot on error using Selenium WebDriver

I recently wrote a little function that takes a screenshot at the end of a test if it has errored. What sounded very simple at the start turned out to be quite a bit of work, and quite a few lines of code to handle certain scenarios! It's now over 50 lines of code! I'll start with what I had at the beginning, this was to simply take a screenshot in the working directory, we are using SpecFlow and Selenium to run the tests, so we are going to check if the ScenarioContext.Current.TestError isn't null, if it is, then using Selenium, take a screenshot (note the below code is a simplified version of what I had at the beginning). [AfterScenario]         public static void TakeScreenShotOnError()         {             if (ScenarioContext.Current.TestError == null) return;             var screenshotDriver = Driver as ITakesScreenshot;             if (screenshotD...

How to manage resources within new teams?

Working where I work we are constantly spinning up new teams to take on new workloads as business come up with new demands and new features they want developed and tested. The problem with this is how do we ensure the work of the newly spun up team is of sufficient quality. One method is by taking people from other established teams and placing them on the new team. This works great for the new team, but unfortunately it will oftenl eave the established team lacking in a resource whilst they try and fill the gap left by the person who has left. We are seeing this often with our offshore teams, it can be damaging to the team structure and the teams velocity, but try as I might, I can't think of another way around it. It's far easier to take 1 person from a team that is established than it is to build a whole new team from scratch. At least by leaving the core of a team in place, you should be guaranteeing that the new team are aware of any coding standards or any QA standard...

Considerations when creating automated tests

We recently released to a number of teams our automated regression pack that has been worked on over the past few months. This regression pack tests legacy code, but contains a large number of tests.  As a bit of background, a number of teams are working on new solutions whilst some are still working on legacy code. With this in mind we constructed an email with a list of guidelines when creating new tests that need to be added to this regression pack.  I figured that these can be quite broad so should apply for any organisation, so thought it would make an interesting blog post...  So here goes,  when creating automated tests, it's important to consider and adhere to the following: - Think about data . The tests need to retrieve or set the data they need without any manual intervention - This should help them be more robust and easier to run without manual intervention. - The tests need to be idempotent - By making it so that each test is standalone and does...