i want to when we will write the scripts
either after getting the build or after getting the SRS?

Answer Posted / suma

it depends on u r project in our company first we write the
test cases after that we automate the testcases

Is This Answer Correct ?    1 Yes 0 No



Post New Answer       View All Answers


Please Help Members By Posting Answers For Below Questions

Explain about vb script?

742


What is the use of the recordset object and which statement is used to create such an object?

525


What are the rules to name variable in vbscript?

579


What is the event handling in vbscript?

555


How to scroll down a page while recording in qtp. suggest me any method apart from low level recording.

2565






How to Import data from a file (file is on the desktop) to the data table

1571


How will you get a random number between 0 and 1 in vbscript?

710


Explain about the support of asp for vb script functionality?

520


Explain sga memory structures?

568


Which operator is used to concatenate the 2 values in the vbscript language?

548


What is the use of option explicit statement?

576


I want to run QTP script on Linux server is it possible to do this by connecting Windows to Linux through VPN/Terminal Server and just run the script on Linux server.

1778


Why to use option explicit in vb script?

592


How will you get a string with the specified character the specified number of times in vbscript?

567


Sub link() Dim k As Integer Dim rand As Integer Dim URL As String Dim foldernum As Integer Dim folderstring As String Dim filenum As Integer Dim filestring As String k = 1 'for AC Numbers For i = 11 To 40 foldernum = 0 foldernum = 1000 + i folderstring = CStr(foldernum) folderstring = Mid(folderstring, 2, 3) folder = "ac" & folderstring 'folderstring = Sheets(2).Cells(i, 1) ' for Number of Random files For j = 1 To 10 rand = Int(Rnd * (200 - 1) + 1) filenum = 0 filenum = 1000 + rand filestring = CStr(filenum) filestring = Mid(filestring, 2, 3) 'URL = "http://ceobihar.nic.in/PSCDROM/ac" & folderstring & "/i" & folderstring & "0" & filestring & ".pdf" URL = "http://www.elections.tn.gov.in/pdfs/dt1/" & folder & "/" & folder & filestring & ".pdf" ' URL =http://www.wb.nic.in/wbeco/EROLLS/PDF/English/A001/a0010105 .pdf Cells(k, 1) = folderstring Cells(k, 2) = folder Cells(k, 3) = filestring Cells(k, 3) = URL k = k + 1 Next j Next i End Sub plz define it

2229