Thread Rating:
  • 0 Vote(s) - 0 Average
  • 1
  • 2
  • 3
  • 4
  • 5
Data Driven Concept
#1
Not Solved
Hi All,

I am learning QTP through various references. I have created a script which will creates an excel sheet, store username and password. Later same sheet is used to login to "Flight GUI". I am able to go through 1 row or valid scenario. However, I am not able to proceed further with rest of the username and password combination.

Below is code for your reference:

Code:
Objopen.Application.Quit
Set Objopen=nothing

Set objExcel=CreateObject("Excel.Application")
Set objWB=objExcel.Workbooks.Open("C:\Logindetails.xlsx")
Set objWS=objExcel.ActiveWorkbook.Worksheets("Sheet1")
objExcel.Visible=true

***************** I believe I am going wrong some where from here *****************

vRows=objWS.usedrange.rows.count

Datatable.SetCurrentRow(1)
rowcount=Datatable.GetSheet("Sheet 1").GetRowCount
For i = 1 To rowcount
SystemUtil.Run "C:\Program Files\HP\Unified Functional Testing\samples\flight\app\flight4a.exe"
dialog("Login").WinEdit("Agent Name:").Set rowcount
dialog("Login").WinEdit("Password:").Set rowcount
dialog("Login").WinButton("OK").Click
If window("Flight Reservation").Exist(5) Then
    msgbox "Test Passed"
    window("Flight Reservation").Close
    Else msgbox "Test Failed"
End If    
Next
objExcel.Application.Quit
Set objWB=nothing
Set objWS=nothing

Please advise?
Reply


Messages In This Thread
Data Driven Concept - by s.tambi - 04-23-2015, 01:55 PM
RE: Data Driven Concept - by s.tambi - 04-23-2015, 03:00 PM

Possibly Related Threads…
Thread Author Replies Views Last Post
  Need an Excel Driven web Program - Ready to Pay as well mayajain 0 1,705 04-22-2015, 05:21 PM
Last Post: mayajain
  Branching in Keyword driven... vIns 2 3,098 12-23-2011, 06:56 AM
Last Post: vIns
  "Keyword-Driven framework" suresz449 0 2,818 08-26-2011, 11:00 AM
Last Post: suresz449
  key word driven testing goka 0 3,016 02-18-2011, 01:36 AM
Last Post: goka
  keyword driven methodology sim 1 3,264 01-10-2011, 10:41 AM
Last Post: Saket

Forum Jump:


Users browsing this thread: 1 Guest(s)