You are on page 1of 4

For more QTP Scripts, www.ramupalanki.

com

QTP Certification Details

Visit:

www.ramupalanki.com

for more QTP Scripts

www.ramupalanki.com
For more QTP Scripts, www.ramupalanki.com

Exam Code: HP0-M16


Exam Name: HP QuickTest Professional Software 9.2
Exam Fees : US $60

Total Questions: 58
Passing Criteria : 70 %

Exam Place : Any pro metric center like NIIT etc.

Exam Preparation:

- Just go through the HP user guide.pdf


- You should know the all basic functionality of QTP and how it works
- There are no any questions related to add-ins which are not provided
by default with the QTP.

- visit: www.ramupalanki.com

Note : You have to create HP Student ID before registration. Because


at the time of registration it asks for HP Student ID. Here is the link of
the site to create HP Student No.

To create student No :

http://192.170.77.229/hpcp/English/ProfileCreate.aspx

For other details of the exam, you can refer following link
http://h10017.www1.hp.com/certification/exam_registration.html

One have to clear both exams to get certificate :


- HP0-M15 : HP Quality Center 9.2 Software and
- HP0-M16 : HP QuickTest Professional 9.2 Software.

For more details on the same, refer


http://h10017.www1.hp.com/certification/credential/index.html?
credcode=c122

More details are available on HP Website :


ftp://ftp.hp.com/pub/hpcp/epgs/HP0-M16_EPG.pdf

www.ramupalanki.com
For more QTP Scripts, www.ramupalanki.com

VBScripts for Excel

Add data to a spread sheet cell

Set objExcel = CreateObject("Excel.Application")

objExcel.Visible = True
objExcel.Workbooks.Add
objExcel.Cells(1, 1).Value = "Test value"

Add Formatted Data to a Spreadsheet

Set objExcel = CreateObject("Excel.Application")

objExcel.Visible = True
objExcel.Workbooks.Add
objExcel.Cells(1, 1).Value = "Test value"
objExcel.Cells(1, 1).Font.Bold = TRUE
objExcel.Cells(1, 1).Font.Size = 24
objExcel.Cells(1, 1).Font.ColorIndex = 3

Open an Excel Spreadsheet

Set objExcel = CreateObject("Excel.Application")


Set objWorkbook =
objExcel.Workbooks.Open("C:\Scripts\New_users.xls")

Read an Excel Spreadsheet

Set objExcel = CreateObject("Excel.Application")


Set objWorkbook = objExcel.Workbooks.Open _
("C:\Scripts\New_users.xls")

intRow = 2

Do Until objExcel.Cells(intRow,1).Value = ""


Wscript.Echo "CN: " & objExcel.Cells(intRow, 1).Value

www.ramupalanki.com
For more QTP Scripts, www.ramupalanki.com

Wscript.Echo "sAMAccountName: " & objExcel.Cells(intRow,


2).Value
Wscript.Echo "GivenName: " & objExcel.Cells(intRow, 3).Value
Wscript.Echo "LastName: " & objExcel.Cells(intRow, 4).Value
intRow = intRow + 1
Loop

objExcel.Quit

www.ramupalanki.com

You might also like