what is fire event method in qtp?
Answers were Sorted based on User's Feedback
Answer / pravati
fire event is used for mouse operation. when in some where click operation is not working we use fireevent for mouse operation.
| Is This Answer Correct ? | 4 Yes | 0 No |
Answer / srivalli
SwfWindow("").SwfWindow("").SwfObject("").FireEvent "onclick"
| Is This Answer Correct ? | 3 Yes | 3 No |
Answer / srividya
Few times click method is not working so at the time we can
use the Fire event method
For example
SwfWindow("").SwfWindow("").SwfObject("").FireEvent "Click"
any body try it will work
| Is This Answer Correct ? | 8 Yes | 11 No |
create a form to accept username and password validate the username and password with using message box, display the corresponding user message
How to create a cookie using vbscript?
What are the 2 ways to pass a value to the function?
What is event handling in vbscript?
Hi anyone Can Send Solution to the Question wt m posting now Prepare Script for the Bellow Scenario? Login to Gmail Page Open Inbox check Mails save them in a Folder
What are the uses of vb script?
How will you generate Reports using Vb Script?it asked in testing(QTP)Interview.Plz Any Body Let me know. Thanks uday Uday_testing@yahoo.co.in
Mention what is byref and byval parameters in vbscript?
write a vb script to display the code "vbscripting" alphabet by alphabet(i e 1st v then b and up to g)
What are the differences between sub procedures and function procedures?
How to get the background color of a weblist?
i have developed the below QTP script to count the no of items available in the web list "Select a product" in www.bankrate.com and also want to print what are the items??? can any one help me to rectify the below script??? SystemUtil.Run "iexplore.exe","www.bankrate.com" a=Browser("title:=Mortgage Rates Credit Cards Refinance Home CD Rates by Bankrate.com").page("title:=Mortgage Rates Credit Cards Refinance Home CD Rates by Bankrate.com").Weblist("name:=select").GetTOProperty("items count") msgbox a Dim List() ReDim List(a-1) For i = 1 To a List(i-1)=Browser("title:=Mortgage Rates Credit Cards Refinance Home CD Rates by Bankrate.com").page ("title:=Mortgage Rates Credit Cards Refinance Home CD Rates by Bankrate.com").Weblist("name:=select").GetItem(i) Print List(i-1) Next