Thursday, 13 June 2013
HP Unified Functional Testing (UFT 11.5) – QTP’s Latest Version
HP has launched the latest version of QuickTest Professional (QTP). This new version of QTP is called HP Unified Functional Testing (UFT) 11.5. Below is the sneak preview of some of the important new features that will be available in UFT 11.5
1) What is UFT 11.5?
The new version of HP QTP is being called HP Unified Functional Testing 11.5 (UFT 11.5). UFT 11.5 is actually a combination of HP QTP (for testing GUI) and HP Service Test (for testing API).
2) Brand New Modern IDE
This point has been discussed so many times at many forums. QTP’s IDE lacked the punch when compared to many modern IDE’s like Eclipse, Microsoft Visual Studio etc. It lacked many must have features that were there in many IDEs available in the market. With UFT 11.5, HP will be introducing a brand new modern IDE, which will
a) have a new IDE aligned with modern dev IDEs (like Eclipse).
b) have many new features such as script editing, coding, MDI, checkpoints, auto completion etc
Image Courtesy: HP Webinar Slides
3) Image Based Automation – Using HP UFT Insight
With what I have understood, this seems to be a real killer. HP claims that, using HP UFT insight, you can simply recognize controls in the application by their appearance. This feature would enable you to record any object displayed on the screen, even if UFT is not able to recognize the Object’s technology.
Image Courtesy: HP Webinar Slides
4) Integration with Open Source CI Systems
This is another very good feature that has been implemented in UFT 11.5. This was one of the key drawbacks due to which QTP was not considered a good tool for automation in Agile Projects. With this new feature, you would be able to -
a) integrate UFT with popular CI systems like Jenkins.
b) automatically execute smoke and regression test cases repeatedly as part of nightly builds.
5) HP UFT Mobile – Extended Support for Mobile Testing
As part of UFT 11.5, HP will be providing lot of new features in mobile testing, where you will be able to -
a) write agnostic scripts, which once written can be used on multiple devices.
b) test your scripts on simulators as well as real devices.
Image Courtesy: HP Webinar Slides
Apart from these major features, there are lots of other features such as pdf checkpoints, graphic UI – canvas, workflows support thanks to integration to QC / ALM, support for latest technologies – Qt apps, Flex, more than 20 new versions etc.
All these new features can be explored when HP releases the trial version of UFT 11.5. The trial version of the software is now available for download. Refer UFT 11.5 download link to see detailed step by step process to download UFT 11.5.
For more information on the above points, refer the HP Webinar Slides.
Wednesday, 12 June 2013
QTP Add-In Manager: Did You Know?
01:19
1 comment
When you open QTP, you would usually come across the Add-in Manager where you can select the add-ins you want to use in your test script. Ever wondered from where QTP loads the Add-in names and their associated descriptions? In case you didn’t know, QTP loads the Add-in names and their descriptions from Windows Registry. Let’s see how you can retrieve and change it.
Below is the screenshot of Add-in Manager that appears at start-up (If you don’t see Add-in manager at start-up, you can refer to How to Enable or Disable Add-In Manager at Startup in QTP article to see how you can enable or disable add-in manager at start-up). Coming back to the topic, you would notice that the add-in manager displays the list of available add-ins and if you click on any add-in name, the Add-in Description field shows the description associated with that particular add-in.
To see where this information is saved -
a) Go to Start -> Run and hit Enter.
b) In the Run Window, enter regedit and click on OK button.
c) In Windows Registry Editor, navigate to HKEY_LOCAL_MACHINE\SOFTWARE\Mercury Interactive\QuickTest Professional\ Add-In Manager
d) Click on any Add-in folder. You would be able to see the ‘Description’ & ‘Display Name’ properties and their values (as shown in the below image)
From the above image, you can see that the Display Name and Description values are same as displayed in the Add-in Manager window at start up.
Now lets try to change these details and see if it gets reflected in the Add-in Manager window. To change the details, double click on Description field, change the value and click on OK button. Repeat the same steps for the Display Name field. Below figure displays the modified details for Web Add-in.
Once this is done, open QTP once again. You would notice that the Add-in Manager now displays the modified values.
Please note that this is just a small bit of info which would not be of much practical use. Also changing the Add-in name and description wouldn’t affect the functionality of your add-in in any way. Hope you liked this info…
QTP Add-In Manager: How to Enable or Disable Add-In Manager at Startup in QTP
01:09
No comments
To create any test script in QTP, you need to have one or more add ins associated with your QTP session. Usually when you open QTP, it first displays the Add-in Manager Screen where you can select your desired add-ins. Once you click on OK button, then only QTP main screen is displayed. But sometimes, you would have noticed that when you open QTP, it directly takes you the main screen without displaying the Add-in Manager Screen. In this article, you will see how you can enable/disable Add-in Manager at Start-up through QTP as well as through Windows Registry Editor.
How to Enable/Disable Add-in Manager through QTP
To enable/disable Add-in Manager through QTP, follow the steps mentioned below -
1. Open QTP.
2. Select Tools -> Options from the Menu bar. ‘Options’ Window should be displayed.
3. Select ‘General’ option from the left hand side pane.
4. If you check ‘Display Add-in Manager on startup‘ checkbox, Add-in Manager screen would be displayed on startup. And if you uncheck ‘Display Add-in Manager on startup’ checkbox, Add-in Manager screen would not be displayed on startup.
How to Enable/Disable Add-in Manager through Windows Registry Editor
Follow the below mentioned steps to enable/disable Add-in Manager through registry editor -
1. Click on Start-> Run. Enter ‘regedit’ (without quotes) in the text box and click on OK button.
2. Select HKEY_CURRENT_USER -> Software -> Mercury Interactive -> QuickTest Professional -> MicTest -> AddIn Manager
3. If the ‘Show on Startup’ value is set to 1 then Add-in Manager will be displayed on Startup. And If the ‘Show on Startup’ value is set to 0 then Add-in Manager will not be displayed on Startup.
4. To set value in ‘Show on Startup’ field, double click on it and enter value 0 0r 1 in the dialog box that opens up.
FileSystemObject in VBA
00:39
No comments
FileSystemObject also called as FSO, provides an easy object based model to access computer’s file system. You simply have to create an instance of FileSystemObject in VBA and then you can generate files, read files, delete files, iterate though folders and do many other operations on your computer’s file system.
The FileSystemObject is present inside the Microsoft Scripting Runtime Library i.e.
Scrrun.dll
. This DLL supports the creation and manipulation of files using TextStream object and this is the reason why FSO doesn’t supports operation on binary files.Uses of File System Object:
FileSystemObject can be used for multiple tasks such as:
- Creating, opening, reading, writing and deleting text files.
- Creating, altering and deleting folders.
- Iterating files and folders.
- Copying and moving files or folders.
- Checking if a location (file path) exists or not.
Accessing FileSystemObject:
The FileSystemObject comprises of several object collections and each of these object collections contain information about a specific aspect of file system. These collections are:
Object | Description |
---|---|
Drive | This object allows you to get information about a drive attached to your system. For instance it can tell you the space available in a drive, its logical name etc. Note that the drive object that we are referring here doesn’t necessarily means the hard disk, it can be a CD-ROM, Flash drive, RAM or even a logically connected drive via LAN. |
Folder | This object allows you to create, delete, move or query a folder hierarchy. |
File | This object allows you to create, delete, move or query a File. |
TextStream | TextStream object allows you to read or write text files. |
So, diagrammatically a FileSystemObject can be shown as:
Please note that FSO communicates with most of the above objects indirectly. It just directly contains the object collection for “Drives”. Each “Drive” object in the “Drives” collection contains a chain of “Folder” objects. And each “Folder” object contains a “File” collection.
To make it more meaningful, let’s say it this way: A FileSystemObject contains three main methods to fetch (read) specific information about Drives, Folders or Files, these methods are
GetDrive
, GetFolder
andGetFile
respectively. Now let’s say you need to find the file size of a particular file, so you will create an instance of the GetFile
method and then fetch its size
property.Note:
GetDrive
, GetFolder
and GetFile
are not the only methods inside FSO, I have just used them to explain things. In the below section we will see all the methods contained inside FileSystemObject.FSO Methods:
Below table gives details about various FileObjectSystem methods and the tasks they perform:
Method | Description |
---|---|
GetDrive, GetFolder and GetFile | These methods are used for fetching information about Drive, Folders and Files respectively. |
CreateFolder and CreateTextFile | Helps in creating new folders or files. |
DeleteFile and DeleteFolder | Helps in deleting exiting files or folders. |
CopyFile and CopyFolder | These methods help in copying files or folders from one location to another. |
MoveFile and MoveFolder | These methods help in moving files or folders from one location to another. |
Creating a FileSystemObject in VBA:
In this section we will deal with two things:
- Creating a reference of Microsoft Scripting Runtime Library i.e. Scrrun.dll
- Creating an FSO Object.
Creating a reference of Microsoft Scripting Runtime Library:
To create a reference of Microsoft Scripting Runtime Library follow the below steps:
- First of all open the VBA editor by pressing “Alt + F11”.
- Next, navigate to “Tools” > “Reference” as shown above.
- This will open a references window. Here select and check the entry “Microsoft Scripting Runtime” and click “OK”.
- Now the reference to Microsoft Scripting Runtime Library has been added.
Creating a FSO Object:
Creating a FSO object is simple, follow the below steps to do this:
- In the VBA editor navigate to “Insert” > “Module”.
- Now in the module window type “
Public FSO As New FileSystemObject
”.
- This will create an object of FileSystemObject with the name FSO.
After this you can simply access the FileSystemObject’s methods using the FSO object.
6 Practical Examples of accessing FileSystemObject to perform different tasks:
Now let’s move to some practical examples of FSO:
Example 1: Use FSO to find the total free space of a drive.
Below is the code to do this:
- 'Creating a FileSystemObject
- Public FSO As New FileSystemObject
- Sub DiskSpace()
- Dim drv As Drive
- Dim Space As Double
- Set drv = FSO.GetDrive("C:") ' Creating the the Drive object
- Space = drv.FreeSpace
- Space = Space / 1073741824 'converting bytes to GB
- Space = WorksheetFunction.Round(Space, 2) ' Rounding
- MsgBox "C: has free space = " & Space & " GB"
- End Sub
Explanation:
In this code first we have created a Drive object using ‘
GetDrive
’ Method and then we have used its ‘FreeSpace
’ property to fetch the free space. Finally we have displayed the free space using a message box.Note that there are two properties to fetch the free space of a drive i.e.
drv.FreeSpace
anddrv.AvailableSpace
.Example 2: Check if a Folder exists or not. If the folder doesn’t exists then create that folder.
Below is the code:
- 'Creating a FileSystemObject
- Public FSO As New FileSystemObject
- Sub ChkFolder()
- Dim Fldr_name As String
- Fldr_name = InputBox("Enter the path of the folder to check :")
- If Len(Fldr_name) > 0 Then
- If FSO.FolderExists(Fldr_name) = True Then
- MsgBox "Folder Exists!"
- Else
- FSO.CreateFolder (Fldr_name)
- MsgBox ("Folder Created!")
- End If
- Else
- MsgBox "Wrong Input"
- End If
- End Sub
Explanation:
In the code we have used an InputBox function to get the path of folder from the user. After this using If statement along with
FolderExists
method we have checked whether that folder is present or not. If the folder is not present then we create that folder using the CreateFolder
method.Note:
CreateFolder
method will only create a single folder at a time. So, if you supply an argument “C:\Folder1\Folder2\Folder3” to it then it will only create the Folder3 inside Folder2. But if Folder2 doesn’t exist then it will throw a path not found error.Example 3: Write a code using FSO to copy a Folder from one location to another.
- Below is the code to accomplish this:
- 'Creating a FileSystemObject
- Public FSO As New FileSystemObject
- Sub CopyFolder()
- FSO.CopyFolder "C:\Source-Folder\", "D:\Destination-Folder\", True
- MsgBox "Copying Done!"
- End Sub
Explanation:
In the code we have used the
CopyFolder
method of FSO, this method accepts three arguments:- Source Path
- Destination path
- A Boolean argument to specify Overwrite Existing.
Example 4: Using FileSystemObject fetch the Temp directory, System folder and Windows folder.
To do this we can use the below code:
- 'Creating a FileSystemObject
- Public FSO As New FileSystemObject
- Sub GetFolderpath()
- Dim Windows_Fldr As String
- Dim System_Fldr As String
- Dim Temp_Fldr As String
- Windows_Fldr = FSO.GetSpecialFolder(0)
- System_Fldr = FSO.GetSpecialFolder(1)
- Temp_Fldr = FSO.GetSpecialFolder(2)
- MsgBox ("Windows folder path = " & Windows_Fldr & vbNewLine & _
- "System folder path = " & System_Fldr & vbNewLine & _
- "Temp folder path = " & Temp_Fldr)
- End Sub
Explanation:
In the code we have used the
GetSpecialFolder
method of FSO, this method accepts a single numerical argument i.e. 0-2.FSO.GetSpecialFolder(0)
– Fetches the path of Windows Folder.FSO.GetSpecialFolder(1)
– Fetches the path of System Folder.FSO.GetSpecialFolder(2)
– Fetches the path of Local Temporary folder.
Example 5: Create a text file, write some content to it, then read the file and finally delete the file.
Below is the code to accomplish this:
- 'Creating a FileSystemObject
- Public FSO As New FileSystemObject
- Sub CreateFile()
- Dim txtstr As TextStream
- Dim FileName As String
- Dim FileContent As String
- Dim File As File
- FileName = "C:\TestDirectory\File.txt" 'File to be created
- 'Creating a file and writing content to it
- FileContent = InputBox("Enter the File Content")
- If Len(FileContent) > 0 Then
- Set txtstr = FSO.CreateTextFile(FileName, True, True)
- txtstr.Write FileContent
- txtstr.Close
- End If
- ' Reading from the file that we have just created
- If FSO.FileExists(FileName) Then
- Set File = FSO.GetFile(FileName)
- Set txtstr = File.OpenAsTextStream(ForReading, TristateUseDefault)
- MsgBox txtstr.ReadAll
- txtstr.Close
- ' Finally Deleting the File
- File.Delete (True)
- End If
- End Sub
Explanation:
This code first creates a text file, adds content to it, then reads it, displays it using a message box and finally deletes that file.
Example 6: Write a VBA Code that can iterate all the files present inside a folder and also fetches their size and modified date.
Following code can accomplish this task:
- 'Creating a FileSystemObject
- Public FSO As New FileSystemObject
- Sub ListFiles()
- 'Declaring variables
- Dim objFolder As Folder
- Dim objFile As File
- Dim strPath As String
- Dim NextRow As Long
- 'Specify the path of the folder
- strPath = "C:\Users\Aniee\Desktop\ExcelTrick\ "
- 'Create the object of this folder
- Set objFolder = FSO.GetFolder(strPath)
- 'Check if the folder is empty or not
- If objFolder.Files.Count = 0 Then
- MsgBox "No files were found...", vbExclamation
- Exit Sub
- End If
- 'Adding Column names for A, B, and C
- Cells(1, "A").Value = "File Name"
- Cells(1, "B").Value = "Size"
- Cells(1, "C").Value = "Modified Date/Time"
- 'Find the next available row
- NextRow = ActiveSheet.Cells(Rows.Count, "A").End(xlUp).Row + 1
- 'Loop through each file in the folder
- For Each objFile In objFolder.Files
- 'List the name, size, and date/time of the current file
- Cells(NextRow, 1).Value = objFile.Name
- Cells(NextRow, 2).Value = objFile.Size
- Cells(NextRow, 3).Value = objFile.DateLastModified
- 'Find the next row
- NextRow = NextRow + 1
- Next objFile
- End Sub
Explanation:
In this code we have created a Folder object and then we are iterating all its files using For Each loop. From the file object we are fetching the
Name
, Size
and DateLastModified
properties and finally we are writing them to the active worksheet.So, this was all about FileSystemObject and how to use it in VBA. Do share your comments related to the topic.
Subscribe to:
Posts (Atom)