Skip to main content

Posts

Showing posts from January, 2016

Differences between Severity ,Priority and Status

In market there are many bug tracking and project management tools available. These tools allow us to keep essential information of a bug or task. You will see there are three places have to fill when key in a task. Those three places are Status, Priority and Status of a bug/task. Let's see what those stand for.  Severity Priority Status Connotation Severity of a bug means how much it affecting to functionality of the software. Total damage it can do. Priority means how fast a bug or task should be resolve. Status means the current position of the bug/task. Types            Critical            Major            Moderate            Minor           Cosmetic           Low           Medium           High           New           Active/Open           Resolved/Fixed           QA In progress           Reopen           Closed/Completed 

Selenium WebDriver : How to write test cases to search anything in Google (c#)

using System; using Microsoft.VisualStudio.TestTools.UnitTesting; using OpenQA.Selenium; using OpenQA.Selenium.Chrome; using OpenQA.Selenium.Support; using OpenQA.Selenium.Support.UI;

Selenium 2.0 (WebDriver)

WebDriver or selenium 2.0 is the most widely used tool of selenium family.  This API fit with the same role played by Selenium RC.  In simple way can be express webdriver in following format, Selenium 1.0 (IDE) + RC = Selenium 2.0 This has come to address to reduce limitations of RC server and to overcome the IDE drawbacks (only support for Firefox browser). In the long run WebDriver goal is to provide fully object oriented supporting testing tool which will give the durable solution to many modern advanced web application testing difficulties.   Supporting browsers Firefox, Internet Explorer, Chrome, Safari, Opera, Android, iPhone (Calls native methods of the browsers).    Supporting programming languages C#, Java, Ruby, Python, JavaScript  Supporting operating system Windows, Solaris, Linux