UFT Interview Questions and Answers

UFT Interview Questions and Answers

UFT Interview Questions and Answers, UFT Installation, UFT Tool Fundamentals, VBScript for UFT, and UFT Automation Framework. UFT Interview Questions and Answers 1) What is UFT Tool? HP Unified Functional Testing (UFT) is a Functional and Regression Test Tool, an upgraded version of QTP Tool. UFT = QTP + Service Tools QTP (QuickTest Professional) supports … Read more

Introduction to Micro Focus UFT

Introduction to Micro Focus UFT

Introduction to Micro Focus UFT, UFT Tool Fundamentals, VBScript for UFT, UFT Test Design, UFT Test Execution, and UFT Automation Framework. Introduction to UFT/QTP Test Tool 1. Introduction 2. Version History 3. UFT Product Information 4. UFT Supporting Environments 5. UFT Add-ins 6. UFT License 7. UFT IDE 8. Limitations of UFT 1. Introduction Unified … 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

UFT Class 30

UFT Class 30 (VBScript File System Operations Part-2, Excel Object Model Part-1) ‘Read Test Data from a Text file and perform Data Driven Testing for Login Functionality. Dim objFso, objTextstream, myLine, myField Set objFso = CreateObject(“Scripting.FileSystemObject”) Set objTextstream = objFso.OpenTextFile(“C:\Users\G C Reddy\Desktop\UFT.txt”) objTextstream.SkipLine Do Until objTextstream.AtEndOfStream = True myLine = objTextstream.ReadLine myField = Split(myLine, “, … Read more

UFT Class 24

UFT Class 24 I) VBScript Operators a) Arithmetic Operators: Arithmetic Operators return value based result. ————————— 1) Exponentiation ^ 2) Multiplication * 3) Division / 4) Integer Division \ 5) Modules mod 6) Addition 7) Subtraction 8) Concatenation ———————- Example: Dim a, b, c a = 10 b = 3 c = a ^ b … Read more

UFT Class 23

UFT Class 23 (VBScript variables, Operators-1) III) VBScript Variables 1) What is Variable? A named memory location to store the data. Two types of Memory in Computer Environment: i) Primary Memory – RAM ii) Secondary Memory – HDD, DVD, USB drives etc… 2) Declaration of Variables Variables can be declared using either Public or Private … Read more

UFT Class 3

UFT Class 3: UFT Test Process Part-2 ( UFT Test Process Part -2, UFT Tool window Architecture Part-1) 12) Using Automation Objects (VBScript) a) File System Object It is used to work with Drives, Folders and files. i) What is Computer File system? It is a feature of Operating system used to work with Drives, … Read more

UFT Interview Questions

UFT Interview Questions and Answers 1) What is UFT? Unified Functional Testing is a Functional and Regression Test Tool from HP. 2) What is the difference between QTP and UFT? • UFT is an advanced version of QTP • UFT = QTP + Service Tools • QTP Supports GUI testing only, but UFT Supports GUI … Read more