Skip to main content

Selenium Framework - Lessons Learnt

Before I start going through the lessons I have learnt whilst in the midst of writing a Selenium Framework I would like to say that I am by no means a 'Hard Core Developer'. By this I mean coding is not my day job and I am not up together with all of the latest coding practices and lingo. Yes I have done some coding in the past but it has usually been with the help of more experienced developers.

There is some debate about automated testing vs manual testing. Automated testing (which I believe should be called automated checking) can compliment a more exploratory testing approach and can provide useful information to the test team about the quality of the software under test. I think there is a market for both types of testing and combined they can teach teams a lot about the software they are producing.

Overview
The Selenium framework that I have started writing I have done in any spare time I have managed to
find myself with. As mentioned previously I have done some coding in the past but I am by no means an expert coder. My reason for developing a framework were as follows:

  • Help me develop my coding skills. In my opinion testers do not need to code but I believe it is a useful skill to have.
  • Learn more about coding which will help me when I pair with developers in the future.
  • Learn about a web based system (All of my testing is on done on desktop applications)
  • Give me first hand experience of what automated testing can offer within the umbrella of testing.

The Framework is written in C# and was using Visual Studio as the IDE. I have done a quick Pluralsight course on selenium but the rest of my knowledge was taken from various technical forums and developers that I work with.

In this post I do make the assumption that the people writing the tests are not the same people that are writing the Framework.


Lesson 1 : Use a Base Page Object


A Base Page Object will contain any methods and functions that can be used in any other
page objects that make up your tests. The Base Page Object will contain all of the Selenium syntax and therefore, If selenium gets updated and the changes effect your code the changes only need to be made in this Base Page Object and not in multiple page objects.

Below is an example of the structure I used for the framework which used a Base Page Object:

Base Page Object

public void enterText(IWebElement element, string text)
       {
           element.SendKeys(text);
       }

The Base Page object uses the selenium method sendkeys.  Now if sendkeys for whatever reason was updated in Selenium only the Base Page Object would need updating.

Page Object

public void enterAddress(string address)
       {
           this.enterText(this.findElementById("addressTextBox""), address);
       }

In this page object you see that it uses the enterText method from the Base Page Object. Methods in the Page Object should make sense and the name of the methods should give the people writing the tests a good idea what the method does as they will be using the methods from these page objects.

Testing Class

      this.enterAddress("Address");

The testing class should be as 'un-code' like as possible. It should not be something that can only be read by a seasoned developer.

By using a Base Page Object you are in essence having 3 distinct layers to your Framework.

Lesson 2 : Use the field in the Method name

Now this may sound like common sense but it will make the lives of the people that are using the framework much easier. Imagine you have a log in screen with 2 fields; one for username and one
for password. Now if in the LogIn page object you have the following:

public void enterTextBox1(string text)
    {
      .......

public void enterTextBox2(string text)
    {
      ......

When the test is written it will look something like this:

this.enterTextBox1("JoeBloggs");
this.enterTextBox2("123456");


Now this is not particularly readable and what fields is the text JoeBloggs and 123456 being entered into?

A far better way to do this would be something like the following:

public void enterUsername(string username)
    {
      .......

public void enterPassword(string password)
    {
      ..........

Now when the test is written it will look something like this:

this.enterUsername("JoeBloggs");
this.enterPassword("123456);

Now this makes what the methods do a lot clearer and  will hopefully make sense to the person who is writing the tests. Also in the future if someone else has to change the code it is obvious what field the code is putting data into. It may take a little extra time and effort to name everything with a sensible name but in the long term the benefits are worth it.


Lesson 3 : Use the Action in the Method Name


Use the action that the method will perform in the name of the method. If the method enters text then use 'enter' in the method name. If the method clicks a button then use 'click' in the method name. Now this may sound obvious but I think it makes method names so much easier to read and you don't need to look at the methods code to see what it does.

Below are some examples:

Action of the Method Example of Method Name
entering text into a text box enterUsername
clicking a button clickOKButton
select an option from a combo box selectComboOption

These method names relate to exactly what the method is doing to whatever field it is interacting with. Combine this with the field, button or combobox that the method refers to and you have a clear easy to read method that can be understood by the people writing the tests.


Lesson 4 : Use the Id of the element you want  to work with


Now there are many ways in which you can find an element on a page, such as; Name, Id and Link Text. Ideally you want something that is unique to that particular element so that you know that you are interacting with that element. The best example of this is the id of the element as this is unique across the website. Imagine if you use the Link Text to find an element. What happens if that link text is changed? Your test will fail because it cant be found, This will make your tests brittle and flaky.Although the Id cannot always be used always try to make sure that you pick an element that has the least chance of being changed.

Now I appreciate some of these lessons are pretty obvious to the more experienced developer but I think they are useful all the same. I'm sure I will come up with some more as my Framework grows :)

Please feel free to comment. 

Comments

Popular posts from this blog

How to deal with pauses and timeouts in specflow

So this blogpost is in response to the weekly Specflow blog posts and challenges that have been written by Gojko Adzic. This weeks challenge was how would you rewrite or rephrase the below scenario: Given a user registers successfully When the account page reloads And the user waits 2 seconds Then the account page displays "Account approved" My initial though was something like this: Given a user registers successfully  When the account page reloads   Then the account page is displayed within a satisfactory time period     And the account page displays "Account Approved" Now the problem with this scenario is what defines a satisfactory time? You could add it as a comment or in a scenario outline but over time the time a user waits could change and if this is updated in the code behind but the scenario outline or comments are not, then what the test does and what is described do not match - this would potentially cause issues in the future. My next ide

Testing and Mindfulness

How aware are you? Do you live in the here and now or is your mind always somewhere else? This blog post is about Mindfulness. Mindfulness is a simple meditation and is defined as (According to Wikipedia): "The intentional, accepting and non-judgemental focus of one's attention on the emotions, thoughts and sensations occurring in the present moment" Now Mindfulness has become more popular in the west in recent years as it has shown to have benefits for people who are suffering from Depression and Anxiety. It has been around for a while and is often thought to of originated from Buddhism and some people believe it started thousands of years ago. Now modern life is hectic and I’m sure we all have lots of things going on in our lives that keep our Brains busy and trying to focus on one thing at a time can be a challenge. I can't remember the number of times I've been doing something and my mind is somewhere else entirely. Mindfulness helps you focus on

Building a test strategy for a new team

Teams, we have all been on them. Some are good and some are bad. Some we never wanted to leave and others we probably couldn't wait to leave. Now most of the time (well in my experience anyway) you tend to get put into a team that already exists. Maybe you are a new hire or maybe you have asked to change to a different product team.  When you do this, more than likely there will already be a testing strategy in place. It may be that you adapt it and change it in any way you see fit to improve the testing. But imagine if everyone on the team was new? How would you decide your testing strategy? This post will go through some useful things you can do to help a new team develop a test strategy. Table of Contents ๐Ÿ“ˆ What is a Test Strategy? ๐Ÿค” Where should I start? ๐ŸŽฏ Understand the company and their goals ๐Ÿ’ช Play to the teams strengths ๐Ÿ‘️‍๐Ÿ—จ️ Understand what quality looks like ๐Ÿ“ Understand Scope ๐Ÿงช Understand the type of tests you need ๐Ÿ“Š Measure your success ๐Ÿค Collaborate ๐Ÿ“ Summar