SystemUtil.Run "iexplore","www.yahoo.com"
Set b= Browser("Name:=yahoo.*").Page("Title:=Yahoo.*")
b.Link("Name:=Sign In").Click
b.WebEdit("Name:=Login").set "abc"
b.WebEdit("Name:=Passwd").set "def"
b.WebButton("Name:=Sign In").Click
b.Link("Name:=Mail").Click
b.Webtable("Name:=Check Mail").WebButton("Name:=Compose").Click
b.WebEdit("Name:=To").Click
b.WebEdit("Name:=To").Set"xyz@gmail.com"
b.WebEdit("Name:=Subj").Set"helloooo"
b.WebEdit("Name:=BODY").Set"See This Message"
Descriptive Programming(QTP Script) for Yahoo Login Page
QTP Script For Composing Mail in Yahoo
Subscribe to:
Post Comments (Atom)
2 comments:
Thanx jack
I am automating test cases using QTP, my application is a trading application. Now, there's a test case of Order Amend, for which one needs to enter an order, then open the orderbook and highlight the specific order and click on Amend. Now, when I record this, it doesn't record the step for highlighting/selecting the right order in the rows of the orders in orderbook. But, even if I just want to select the topmost in that row, its not doing it. How'd I go about this problem?
Post a Comment