Skip to main content

Stuck in the Comfort Zone?

I was recently reading a good friend of mines blog Helen Meek where she discusses 3 zones that are related to how you work, i'll briefly explain them here, but you can read the blog to find out more:


Comfort Zone: This is where you're effectively coasting along, not challenging yourself in your day to day job.

Learning Zone: This is where you challenge yourself and are learning new things constantly.

Panic Zone: Where there's just panic, you may be challenging yourself, but probably not having the time to learn new things.

I think, that too many people in Engineering are stuck in the Comfort Zone. They are bored easily, but don't want to do anything to change that as it involves challenging themselves and what they know. I want to help get people out of the comfort zone, but doing so isn't necessarily easy.

To me, like most people I would bet, I'm most happy when I'm in the Learning Zone, I get bored and restless in the Comfort Zone, and the Panic zone isn't healthy for anyone! It's just not sustainable.

How can we encourage people out of the Comfort Zone?

I think first you need to find out what people find engaging and what interests people, if you find that then you can engage with them to help get them out of the comfort zone.

Secondly, by working closely with them you can learn how to push their buttons and challenge them on a daily basis, i'm not necessarily talking about setting objectives, but more about finding out about what makes them tick and why they do what they do, if they can rediscover what they love about testing then pushing them into the learning zone will be that little bit easier.

Finally by offering them an environment where they can do what they love, and recognising success and rewarding it as such, will help people come out of the comfort zone and hopefully thrive.

I have been lucky in that I currently have an environment where I do what I love, and people are aware of what interests me and what makes me tick. The next step is really offering this opportunity to others and hopefully move them out of the comfort zone and into the learning zone.





Comments

Post a Comment

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...