What does VBS file contain...??? what is VBS file.. ???
Answers were Sorted based on User's Feedback
Answer / surya
vbs file contains the user defined functions which are
reusable that can be used in our test or compnent according
to our requirement
| Is This Answer Correct ? | 11 Yes | 4 No |
Hai sairam i am rajendra
VBS means Visual basic script file
Normally QTP uses VBscript for automation script generation.
You can view this code in expert mode of QTP.
I think you are clear with this answer
if have any doubt regarding testing both manual or
automation you can contact me
rajendra_penumalli@yahoo.com
Mobile;9885162742
Hyderabad
| Is This Answer Correct ? | 8 Yes | 3 No |
Answer / abhesheke
hi sriram
Vbs mean Visual basic script file
open a notepad write a user defined function and save it in
any location open->test tab ->setting->go to resource tab
and u have option there(associtave library files) link .ur
vbs file there and click ok
after that call that function from ur expert view.
if u are not clear ping me i will give u an example
| Is This Answer Correct ? | 5 Yes | 3 No |
Answer / amit
Hi Siva,
Please use the following command in QTP wherever you wish to
call this file.
ExecuteFile("Path")
That's it
| Is This Answer Correct ? | 2 Yes | 0 No |
Answer / sreekanth chilam
VBS file extension is .vbs(Visual Basic Script file)
Basically .vbs file is also called as "Library File" in QTP
A file in which the Code or functions are written in the VB
Script format is called "Library File(.vbs)".
The functions written in library files are called
as "Library Functions"
| Is This Answer Correct ? | 2 Yes | 5 No |
HI
I AM SIVA SARAN
I HAVE ONE DOUGHT IN QTP
CAN ANY ONE HELP ME PLEASE
ACTUALLY I HAVE ONE VBS SCRIPT FOR FINDING WHETHER A PROCESS
IS RUNNING OR NOT
I HAD ASKED THAT BY USING QTP I HAVE TO CALL THAT VBS FILE
I KNOW HOW TO CALL THAT VBS FILE IN QTP
BUT MY QUESTION IS HOW TO CALL THAT VBS FILE AT A PARTICULAR
LINE IN QTP
FOR EXAMPLE IF MY QTP SCRIPT HAVE 100 LINES
HOW TO CALL THAT VBS FILE AFTER EXECUTING THE 75th LINE IN QTP
ALSO THE RESULT OF THAT VBS FILE SHOULD BE DISPLAYED IN THE
RESULT PAGE OF QTP
THIS IS MY VBS FILE
Dim AllProcess
Dim Process
Dim strFoundProcess
strFoundProcess = False
Set AllProcess = getobject("winmgmts:") 'create object
For Each Process In AllProcess.InstancesOf("Win32_process")
'Get all the processes running in your PC
If (Instr (Ucase(Process.Name),"POLRESOLVER.EXE") = 1) Then
'Made all uppercase to remove ambiguity. Replace TASKMGR.EXE
with your application name in CAPS.
msgbox "Application is already running!" 'You can replace
this with Reporter.ReportEvent
strFoundProcess = True
Exit for
End If
Next
If strFoundProcess = False Then
msgbox "Go ahead!Application is not running" 'You can
replace this with Reporter.ReportEvent
End If
Set AllProcess = nothing
CAN ANY ONE HELP ME PLZ
can u send the answer to MY MAIL ID
sivasaran558@gmail.com
| Is This Answer Correct ? | 1 Yes | 5 No |
how can we handle errors other than using recovery scenerios in qtp
What is action split and the purpose of using this in qtp?
Differenece betwen Project and product ? when company need project or product?
1 Folders in VSS 2 In navigation script there are 100 script i want to run first 50 and 37th script also not needed to run how to do this 3 What is navigation script,Driver script, business script what we are loaded in this script 4 use of resource tab 5 Difference between verification and validation give real scenario example 6 file scripting object when to use it 7 what are the problems you are faced while testing web application 8 difference between expert view and keyword view 9 difference between QTP 8.2 and QTP 9.2 navigation frame work please answer these questions from real time working people as early as possible
4. How u will open the build automatically in QTP except using Systemutil.run command
Without QTP (or any Testing tool) can we able to test the GUI part of the Applications. for Example generating the Scripts in Notepad and Executing them Using VB. Is it Possible to do so.. Correct me if iam wrong some where.
How many add-ins comes by default with quicktest professional?
Now it appears to be more than enough... I have learn entire QTP, I did whatever I could do but still facing lots of problem and those problems could be removed only after working in professional atmosphere. But still unable to expose myself as professionaly. It is becoming panic, It has been two years I am in manual testing and looking for the change but all the recruiters ask for QTP, but my problem is I don't have working experience with QTP. Kindly suggest me I really need effective suggestions. I dont have more caliber to work with present organization cause of salary reasons...boo.. hooo...hooo. My email address is alkaa.dugaal@gmail.com
Plz write the code, function will take the parameter as month number, i.e., numerical value, but it returns the last day of the month in string (weekday). example: input: function parameter: 3(march) output: thursday
how can you write a script without using GUI in QTP?
What are the QTP advantages and disadvantages?
If there are 10 notepads opened on desktop. how can we close a particular 2nd notepad using script