User Defined Functions in VBScript

 User Defined Functions in VBScript  VBScript Functions > In Structured Programming (Ex: C Language) we use Functions (Built-in and user defined). > In Object Oriented Programming (ex: Java) we use Methods (Built-in and user defined). > In VBScript we use Functions and Methods (Object based language). What is Function? A reusable code. When we choose … Read more

VBScript Built in Functions

VBScript Built in Functions 1) Asc Function It returns ANSI character code for first letter of a string or number. ‘A to z (65 to 90) ‘a to z (97 to 122) ‘0 to 9 (48 to 57) Example: Dim a a =”ABCD” Msgbox Asc(a) ’65 Msgbox Asc(“A”) ’65 Msgbox Asc(“Z”) ’90 Msgbox Asc(“a”) ’97 … Read more

Software Testing Job Responsibilities

Software Testing Job Responsibilities 11:23 AM G C REDDY NO COMMENTS Software Testing Job Responsibilities Software Testing Job Responsibilities may vary from one project another and one company to another, the following responsibilities are standard responsibility according to Software Quality Standards. These are overall Responsibilities for Software Testing Teams. I) Manual Testing / Software Testing … Read more

UFT Object Repository

UFT Object Repository 7:52 AM G C REDDY 1 COMMENT UFT Object Repository 1) What is Object Repository? It is a storage place to store Test Objects information. 2) What type of Object repositories available in UFT? UFT has 2 types of Object Repositories, i) Local Object Repository ii) Shared Object Repository 3) What is … Read more

VBScript FileSystemObject

VBScript FileSystemObject File System Operations i) What is Computer File System? It is a feature of Operating system used to work with Drives, Folders and Files. ii) Examples for File System Operations Create a Folder Copy a Folder Delete a Folder Create a Text file Delete a Text file Read data Write data Comparisons Search … Read more