Skip to main content

SELENIUM: Creating a Basic Test


By now you must be pretty confident of what actually selenium is, how we can set up an environment to build an automation framework and what kind of things we should have in our mind before we start building a framework. Also, you know few of the basic concepts too.

I think now it's a good time to start building our framework. The approach I will be using to build the framework is that I will be just creating a basic test first. After that by the course of time I will be adding more tests in it and in this way our framework will start growing in size with each test added.

I will be doing lots of refactoring as and when required so that the framework remains well structured and easy to use.

As to build a framework we need an application, I will be using WordPress for this purpose. You can use any application but if you need to get a start on WordPress too you can download and setup from this link.

Instead of adding all the required things in the framework what I will be doing is I will be creating tests and then adding the required things to execute this test in the framework. Hence, we are choosing the test driven framework rather then framework driven tests.

First Basic Test

 As a first basic test, lets create the below test and then corresponding framework.
  • User can login to application
  • Verify it
For this,  Add a class e.g. "LoginTests" in UITests project. Create a test method as shown below



Here you can see that I have created a test "User_Can_Login_Successfully" and in this test I have added required steps to check login.

It is a good practice not to declare variables in tests. Rather all these kind of things should be kept in framework which makes much easier to understand and use.

In test there should be a logical flow which a tester need to perform while executing particular test rest should be handled by the framework itself.

Driver class is already known to you as shown in my "Hello Selenium" post.

Create LoginPage and HomePage classes in "TestFramework" project as shown below

LoginPage class:



HomePage class:



Execution of test:

This test has below steps
  • Driver.GoTo(@"http://localhost:26382/wp-login.php");
  • LoginPage.Login("testuser", "testpasword");
  • Assert.IsTrue(HomePage.IsAt,"Login not successful"); 
When you run this test, first it will navigate to  "http://localhost:26382/wp-login.php" i.e. login page of wordpress.

After this it will call Login method of LoginPage and pass username and password as parameters. Further,  login method calls the private methods i.e. EnterUser(), EnterPassword() and then ClickLogin().

After login step, there is one assert step that basically verifies whether user is on home page or not. If it is not on home page then tests fails with assert message as "Login not successful".

That's it....you have just setup your framework and added first test to it. Great...!!!!

In this example, I located the web elements in the methods itself which can be refactored so that we don't have to bother for this in methods. In my later posts we will be refactoring our framework more and more until it becomes easier, less complex and well structured.Also, I will be writing about locators in brief for those who don't have much idea about it. We will also learn about selenium's PageFactory in details too.


Thanks for reading this post and see you in the next post very soon. cya!







Comments

Popular posts from this blog

Logging in Selenium

Any application is incomplete until it's activities are traceable. Here comes the use of logging. By logging important actions you can later on track anything you want especially when there are some error situations. It becomes easy to debug the issues if logs are generated properly. Similarly, it is very important that our automation framework generates logs so that whenever any test fails, we can track the issue by tracing it's logs. In this post, I will be explaining you how we can log using log4net in selenium. Before using methods of this library we need to configure this to our application. Let's do this first then. Configuring log4net in selenium: First of all you need to download this library so that this can be used. You can read about log4net and then download it from this link and save the dll file after extracting it to folder that is under your project folder. After downloading this library you need to add references of this in you project. To do ...

"Hello Selenium"

Now, as we have already setup the required environment, let's just start with a hello world test with selenium. In this let's just write a basic test to make sure that our environment is working properly. For this hello selenium test we will be automating below test: Navigate to " https:// www.google.com  " Write "Hello selenium" in search box Press search button Below are the code snippets: Test class UnitTest1 containing required test. Here in this class, at the top I have used two statements i.e.     using Microsoft.VisualStudio.TestTools.UnitTesting;     using TestFramework; First using statement is required in for writing unit tests and second using statement is required so that we can access methods from class under TestFramework namespace. There is [TestClass] attribute used with this class. This is required so that tests written in this class can be recognized. If you miss this attribute then your tests are not going ...

About Selenium

Let's start with a basic information about Selenium . Selenium: It is basically a tool or framework that is used to automate web browsers. By using selenium you can automate a lots of web browsers like Firefox, IE, Chrome etc.  It is possibly most widely used open source solution. Sel enium is basically a set of different tools with different purpose and role . E.g. Selenium IDE Selenium 1 (Selenium RC) Selenium 2 ( Selenium Webdriver) Selenium-Grid Sel enium webdriver is the one which we will be using during this course. It supports fol lowing bro wsers: Google Chrome Internet Explorer Firefox Safari Opera HtmlUnit phantomjs Android iOS So, it is the one that allows you to automate these web browsers. If we talk little bit technically, then it is basically an API for web browsers. Using this you can program web browsers in a way that you want them to do. If you want to learn more about selenium then you can go through this link . Archite...