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

Overview of Computer Software

Overview of Computer Software 1) Types of Software 2) Types of Software Environments 3) Web Applications or Web Apps 4) Mobile Applications or Mobile Apps 1) Types of Software a) Computer Software: > Set of instructions that directs a computer to perform specific operations. > Software takes input, process the input and provides Output. > … Read more

Selenium Interview Questions-2

Interview Questions on Selenium Test Process Interview Questions and Answers on Selenium Test Process or Selenium Test Life Cycle, Selenium Test Planning, Selenium Environment Setup, Select Test Cases for Automation, Selenium Test Design & Test Case Writing, Selenium Test Execution, Debugging Selenium Test Cases, Running Selenium Tests and Selenium Test Closure. 1) What are the … Read more

Java for Selenium Interview Questions

Java for Selenium Interview Questions and Answers 1) Why we prefer Java for Selenium? • Selenium written in Java, it doesn’t mean that Java only more compatible with selenium, we can use other supported languages also. • Good support for Selenium with Java, You can get more help documents and implementations from Internet. • Majority … Read more

Interview Questions on Selenium Fundamentals

Interview Questions on Selenium Fundamentals 1) What is Selenium? • Selenium is an Open Source Software, used for Test Automation. • Selenium is a suite of tools that automate web browsers. • Selenium suite of tools are mainly used for Functional and Regression Testing of Web Applications. • Selenium supports MS Windows, Linux, Macintosh etc… … Read more

Selenium WebDriver Interview Questions

Interview Questions and Answers on Selenium WebDriver 1) Give a detailed introduction about Selenium WebDriver? Selenium 1 (Selenium IDE + selenium RC + Selenium Grid) Selenium 2 (Selenium IDE + Selenium RC + Selenium WebDriver + Selenium Grid) Note: Selenium WebDriver merged with Selenium 1 and called as Selenium 2. • It is a most … Read more