what is stlc and its contents?
STLC means software test life cycle
Stages in Test life cycle are
Test Initiation
Test Planning
Testcase designing
Test case Preparation
Test case Execution
Bug Tracking
Bug rectification
Test reporting
Test closure
Contents
Test plan documents, Testcase Templates, Bugreports
| Is This Answer Correct ? | 2 Yes | 0 No |
How reliable are the site's Internet connections required to be? And how does that affect backup system or redundant connection requirements and testing?
How can i check all the button that are enabled in a widnows based application ? What script should i write for this ?
How u perform exception handling in QTp,what is other name for ths
In real time whenever we found bug , after that where you send to that bug. send to T.Lead or Directly Developer. Plz explain me?
Why bpt?
What is the extension of QTP local Repository? If it is .mtr then what is .bdb extension stands for?
What is FRAME WORK? How many Frameworks can QTP supports?
Hi, i have a string like "INDIA". I need to display this string vertically in Msgbox?
Does quicktest professional is unicode compatible?
what is the present location of nageshwara rao's institute in hydrabad along with institute phone no. and name of institute.He has shifted from S.R Nagar.
WHAT IS THE DIFF BTW KEYWORD DRIVEN TESTING AND DATA DRIVEN TESTING?
Hi I have created a table in the MS access database. I want to access the table in this database through QTP. The code is given below. The code is not working.The following error is displayed "Data source name not found and no default driver specified". Any one can correct the code. Thanks in advance. Dim dbconnection, rs Dim ca, sname Set dbconnection = createobject("ADODB.Connection") Set rs = createobject("ADODB.Recordset") dbconnection.open "DSN = MS Access Database","", "" rs.open "select * from Research", dbconnection rs.movefirst If rs.EOF <> True AND rs.BOF<> True then ca = rs("order_number") sname = rs("customer_number") rs.movenext msgbox ca msgbox sname End If