Automation Testing, Manual Testing, QTP/UFT 11 , QC/ALM 11 ,SAP TAO, Unix, Selenium, Oracle SQL, Shell Scripting and For Online Trinings to contact me : Cell:+91-8897972059 , Email Id : quicktestprotech@gmail.com

Tuesday, November 30, 2010

VB Script Keywords

VBScript Keywords Keyword Description Empty Used to indicate an uninitialized variable value. A variable value is uninitialized when it is first created and no value is assigned to it, or when a variable value is explicitly set to empty.dim x   'the variable x is uninitialized!x="ff"   'the variable x is NOT uninitialized anymorex=empty   'the variable x is uninitialized!Note: This is not the same as Null!! False Has a value equal to 0 Nothing Used to disassociate...

VBScript Keywords

...

Sunday, November 28, 2010

QTP Scripts Best Examples

 Character Search in a Given StringSub Main() ‘Get the string from input box and character from another input boxipbox = InputBox("enter the string to search", "String name")ipbox1 = InputBox("enter the character to search", "Character")ipbox2 = InputBox("enter the character to search", "Character")‘Length of the Stringlen1 = Len(ipbox)j = 0‘For Loop to get character by characterFor i = 1 To len1‘Using Mid(string,start,Length) function to get...

VB Script Built-in functions

VB Script Built-in functions1) Asc FunctionDim Valval=”A”Msgbox Asc(val) ’65Msgbox Asc(“Z”) ’90Msgbox Asc(“a”) ’97Msgbox Asc(“z”) ’122Msgbox Asc(1) ’49Msgbox Asc(“*”) ’42Msgbox Asc(“America”) ’652) Chr FunctionDim Valval=65Msgbox Chr(val) ‘AMsgbox Chr(90) ‘ZMsgbox Chr(97) ‘aMsgbox Chr(122) ‘zMsgbox Chr(49) ’1Msgbox Chr(42) ‘*3) Abs FunctionDim Valval=65.45Msgbox Abs(val) ’65.45val=65.55Msgbox Abs(val) ’65.55val=-65.55Msgbox Abs(val) ’65.554) Round FunctionDim Valval=65.45Msgbox Round(val) ’65val=65.55Msgbox Round(val) ’66val=-65.55Msgbox Round(val)...

An Introduction to Quality Center

An Introduction to Quality CenterQuality Center is a test management tool from HP (takeover from Mercury Interactive in 2007)QC derived from TestDirector tool and developed in J2EE technology and backend database is MS SQL serverTestDirector developed in C++ technology default database is MS Access.TestDirector has single cluster support where as QualityCenter has multi cluster support.Quality Center is a web based test management solution; it supports standalone, Intranet and Internet environments.Quality Center is available for both Windows and...

Loading...