HOW TO OPEN NEW TAB USING VB SCRIPT IN QTP?

Answer Posted / shashank shekhar raj

Hai Buddy,

I just to inform you that QTP support Internet Explorer and
IE earlier versions don't have TAB functionality up to IE-7

Internet explorer just open the new BROWSER always not TAB
so,if functionality is not available then how you open
this.....

Is This Answer Correct ?    4 Yes 18 No



Post New Answer       View All Answers


Please Help Members By Posting Answers For Below Questions

A folder is there inside no of textfiles are avilable. How do count the textfiles. Normally folder means we are using subfolder methods but textfiles is not working for subfolder methods and how do get file name also.

1506


What aspects of vbscript make it safe so that a web page using vbscript cannot destroy or corrupt information on a user's computer?

577


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

1556


Mention what if you do not specify anything when you call a procedure?

570


How to create a cookie using vbscript?

589






Which operator can be used to do an xor operation in vbscript?

677


If else for do while select in vb script?

640


How you can call vbscript functions?

577


Explain vbscript in detail?

615


Could Anybody Please tell me What is the script for Find 3rd Largest element in the Array without using a SORT function int Find(int arr[], int size); Thanks in Advance..

2020


How will you get a subset of a array in vbscript?

587


What purpose does ‘on error resume next’ serves?

546


Is vbscript a case-sensitive or case-insensitive?

750


Can we create Crystal Report object in QTP?If yes then what it is and what are its various properties?

3032


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

2236