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
How is Jmeter tool very useful in projects when it does not have features like online monitoring,WAN emulation,caching like other performance tools.
What are the advantages of automation testing?
How did you use automating testing tools in your job?
What are the advantages of manual testing and automated testing?
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
Tell us how do you get the width of the textbox?
How would you test your own element locator?
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
Tell me what is the purpose of getoptions() method?
Do you think that testing can be done only at the ui level?
Tell me how could the web element attributes be inspected in order to use them in different locators?
List out some of the automation tools which could be integrated with selenium to achieve continuous testing.
what is the difference between Batch test runner and framework ?
Tell us the line of code webdriver driver = new firefoxdriver();.?
What is meant by the automation framework?