Golgappa.net | Golgappa.org | BagIndia.net | BodyIndia.Com | CabIndia.net | CarsBikes.net | CarsBikes.org | CashIndia.net | ConsumerIndia.net | CookingIndia.net | DataIndia.net | DealIndia.net | EmailIndia.net | FirstTablet.com | FirstTourist.com | ForsaleIndia.net | IndiaBody.Com | IndiaCab.net | IndiaCash.net | IndiaModel.net | KidForum.net | OfficeIndia.net | PaysIndia.com | RestaurantIndia.net | RestaurantsIndia.net | SaleForum.net | SellForum.net | SoldIndia.com | StarIndia.net | TomatoCab.com | TomatoCabs.com | TownIndia.com
Interested to Buy Any Domain ? << Click Here >> for more details...

Sevirity & priority levels in bugzilla

Answer Posted / jacob

Hai Guys I am Jacob a Test Engineer who also happens to be
the admin of Bugzilla in my company

Severity and Priority are tow important points in weighing a bug

Bugzilla has many default parameters for both.. Basically in
most of the companies we use those only so I ll stick to that

Severity

This field describes the impact of a bug.

Blocker Blocks development and/or testing work

Critical crashes, loss of data, severe memory leak
Major major loss of function

Normal regular issue, some loss of functionality under
specific circumstances

Minor minor loss of function, or other problem where easy
workaround is present

Trivial cosmetic problem like misspelled words or
misaligned text

Enhancement Request for enhancement


Priority

Priority
This field describes the importance and order in which a bug
should be fixed. This field is utilized by the
programmers/engineers to prioritize their work to be done.
The available priorities range from

P1 (most important) to P5 (least important).

Feel free to punch back with any clarifications

Is This Answer Correct ?    12 Yes 1 No



Post New Answer       View All Answers


Please Help Members By Posting Answers For Below Questions

How is Jmeter tool very useful in projects when it does not have features like online monitoring,WAN emulation,caching like other performance tools.

2430


What are the advantages of automation testing?

986


How did you use automating testing tools in your job?

2115


What are the advantages of manual testing and automated testing?

907


Hi, Below is the code that i ran on selenium RC using eclipse IDE and java coding.: package source; import org.testng.annotations.BeforeSuite; import org.testng.annotations.Test; import com.thoughtworks.selenium.*; public class parameterized extends SeleneseTestCase { private Selenium browser; public static void main(String []args) { String arr[] = new String[5]; arr[0]= "bert"; arr[1]= "regular"; arr[2]= "copyonly"; arr[3]= "doert"; arr[4]= "inter"; parameterized obj = new parameterized(); obj.setUp(); obj.login_parameterize(arr); } @BeforeSuite public void setUp() { browser = new DefaultSelenium("localhost",4444, "*chrome", "http://goolge.com"); browser.start(); browser.open("http://goolge.com"); browser.waitForPageToLoad("30000"); browser.windowMaximize(); browser.open("/"); browser.click("gb_23"); } @Test public void login_parameterize(String[] arr ) { for(int i=0;i<=5;i++) { for(int j=0;j<=2; j++) { browser.type("//input[@id='Email']", arr[i]); browser.type("//input[@id='Passwd']", arr[i]); browser.click("//input[@id='signIn']"); browser.waitForPageToLoad("30000"); } } } public void EnterValuesIntoTextField_CheckWithGetValue() throws Exception { selenium.open("http://www.essaywriter.co.uk"); assertEquals("", selenium.getValue("id=textInput")); selenium.type("id=textInput", "Text In The Field"); assertEquals("Text In The Field", selenium.getValue("id=textInput")); } } When i ran this test i got an error which says: "Method login_parameterize requires 1 parameters but 0 were supplied in the @Test annotation." Any help is much appreciated. thank Gab

2608


Tell us how do you get the width of the textbox?

966


How would you test your own element locator?

1019


Hi, I want to learn DataBase Testing. So please some document or path so that i can get some material on DataBase Testing concepts (preferably SQL Server 2000). Thanks in advance, Guru

3780


Tell me what is the purpose of getoptions() method?

968


Do you think that testing can be done only at the ui level?

1091


Tell me how could the web element attributes be inspected in order to use them in different locators?

1046


List out some of the automation tools which could be integrated with selenium to achieve continuous testing.

920


what is the difference between Batch test runner and framework ?

2153


Tell us the line of code webdriver driver = new firefoxdriver();.?

922


What is meant by the automation framework?

979