create your own

QTP Script for Data Driven Testing using Notepad

63
rate or flag this page

By snigdha_123


QTP Script

 

My Article in Ezine Articles

 Script for data driven testing

Set f=createobject("scripting.filesystemobject")

Set f1=f.createtextfile("d://file1.txt")

f1.writeline"aaa bbb"

f1.writeline"ccc ddd"

f1.writeline"eee fff"

f1.writeline"ggg hhh"

f1.writeline"iii jjj"

 

The above script creates a notepad in "d" drive with name file1

 

aaa bbb

ccc ddd

eee fff

ggg hhh

iii jjj

 

values are stored in file1.txt.

 

Set f2=f.opentextfile("d://file1.txt")

While f2.atendofstream<>true

f3=f2.readline

x=split(f3," ")

msgbox x(0)

msgbox x(1)

Wend

 

The above script is used for data driven using notepad directly.here we are not importing data to excel sheet.

directly values are retreived from notepad.

 

we are using while loop and reading each line till the end.

split function splits the line where space(" ")occurs.

line is divided to 2 parts.one before space and other after space

for example we have 1st line in notepad as aaa bbb

 

here aaa is 1st part and bbb is 2nd part

x(0)=aaa

x(1)=bbb

 

all values are read this way using while loop.

 

One point to note here is if any line is empty in notepad datadriven testing is stopped before that line.

It will not proceed further.so we have to give values without any empty lines in notepad.

 

to make u more clear

 

suppose u have

aaa bbb

 

 

 

ccc ddd

 

datadriven is stopped at aaa and bbb only because next line is empty.datadriven is stopped after 1st line.

SQL Queries Collection

Hindi and Telugu Movie Songs Lyrics

Script for connecting to database

for more descriptive programs(qtp) check QTP Scripts

Datatable Methods



QTP Scripts

Print   —   Rate it:  up  down  flag this hub

Comments

RSS for comments on this Hub

snigdha_123 profile image

snigdha_123  says:
2 years ago

Thanx srinivas

rathin  says:
17 months ago

Very good script. I a beginner. I have got more information from you.

snigdha_123 profile image

snigdha_123  says:
13 months ago

No sumit they are not redirected to same page check them carefully.

Anyway if ur looking for other qtp scripts check this one

www.funandknowledge.blogspot.com

Submit a Comment

Members and Guests

Sign in or sign up and post using a hubpages account.


optional


  • No HTML is allowed in comments, but URLs will be hyperlinked
  • Comments are not for promoting your hubs or other sites

working