Tuesday 10 February 2015

UFT 12.02 Latest Features

 
 
 
 

UFT 12.02 Latest Features

 
Unified Functional Testing 12.02 adds the following new features, product enhancements, and supported technologies:
·       Support for Mobile: You can now configure UFT to connect to the HP Mobile Center and record and run functional tests on mobile applications running on real devices hosted on HP Mobile Center.
HP Mobile Center addresses the challenge of optimizing mobile app quality by integrating natively with UFT. Connect your devices to HP Mobile Center and immediately start testing.
·         Enhanced Chrome Support: UFT can now record on Chrome applications in versions of Chrome 31 or higher. In addition, the following Web 2.0 Add-ins now support Chrome: jQueryUI, Dojo, Google Web Toolkits and SiebelOpenUI.
·         Additional Flex Support: Using the Flash Player Debugger, you can now use UFT to test Flex applications without using the Flex Runtime Loader. In addition, UFT can now recognize Flex controls embedded inside list items or table cells.
·         Additional support for SAP applications: UFT can now recognize and interact with objects from SAP NetWeaver Business Client for Desktop applications and additional SAPUI5 objects.
·         Integration with Subversion (SVN) (Technology Preview Level): You can now use SVN to update and commit changes to your testing documents directly from UFT and use other core SVN functionalities as well, including resolving repository conflicts, running diff comparisons between versions of testing assets, and reverting testing assets to a previous revision.
·        New Demo Application: UFT now has a fully unified demo application on which you can practice and demonstrate both GUI and API testing.
·        UFT provides new Web Sockets activities for API testing to test the communication of your application’s web sockets.
·        If your tests and resources are saved in ALM, you can choose to automatically convert relative paths of resources associated with your GUI tests to absolute paths to improve test run performance.
·        You can now use Run conditions for individual components or business process flows in a BPT test.
·        You can use Jenkins environment parameters to specify the path to a UFT test. This parameter in turn enables the Jenkins plugin to run the UFT test.
·        In the HP UFT Object Model Reference for GUI Testing, all of the information about an object’s supported methods is included in the specific object’s help page.

UFT now supports the following technologies:

·         Updated support for the latest versions of Chrome and Firefox
·         Chrome 64-bit (starting from Chrome 37)
·         Flex 4.12
·         Oracle 12.1.3
·         Full support for Windows Server 2012 R2
·         jQueryUI 1.10.4 and 1.11.0
·         Dojo 1.9/1.10
·         Siebel 8.1.1.9
·         SiebelOpenUI 8.1.1.11
·         AngularJS
 
 

HP UFT 12.02 Released or QTP Latest Version


 
Post details Overview:
1) Download UFT 12.02
2) Installation of UFT 12.02

Download UFT 12.02

Package size ( Software_HP_UFT_12.02_MLU_T6510-15086.zip) : 1.66 GB
Step 1: Click on the link below and accept the free trail
 
 
Step 2: Click on I Agree button at the bottom

Step 3: Click on the Download Link (Software, HP UFT 12.02)
Step 4: HP Download Manager will start your downloading

Installing UFT 12.02

  • UFT installation is faster when compared to previous versions. User doesn't need to do any post installation activities
  • The installation process includes all of the configurations needed to run UFT. You no longer have to run additional post-installation programs
Assume the download version of UFT 12.02 is available (usually ZIP file) and it is unzipped. Once Unzipped the content will look like the once shown below

Step 1) Double click on the Setup.exe file to start the installation process
Step 2) HP UFT 12.02 wizard will popup and User can click the option as shown below ( i.e., Unified Functional Testing Setup)

Step 3) Click on the Next button to continue installation


Step 4) Accept the License agreement by selecting the "I accept the terms in the License Agreement" and click on Next


Step 5) Select the add-in needed for your use. Please not Mobile Plugin is now part of Add-in's which is a new change from UFT 12.01 to UFT 12.02 and click on next button



Step 6) Click on the Install button to continue installation.



Step 7) Click on finish button once installation is complete

 
License wizard will help fresh installation users can Choose the type of License.Users can choose Seat or Concurrent license.




Note :- UFT 12.02 will work for 30 days in Trail mode

Happy Reading!
Sreenu Babu

UFT - QTP How to open a Browser using UFT and VB Script

                                        Link to Mandatory QTP /UFT Interview Questions to read before Interview


'~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
'Comments
'Author : Sreenu Babu
'Date :-
'Purpose :- To Open a Browser using UFT and VB Script
'Usage :- Call OpenApplication( www.google.com, google)
'~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
Function OpenApplication( byval WebURL, byval BrowserTitleName)
BrowserTitleName = TitleName
ApplicationName = WebURL
 Set objIe = createobject("internetexplorer.application")
 objIe.visible = true
 objIe.navigate cstr(ApplicationName)
 wait 3
    If browser("name:=.*"& TitleName  &".*").exist(5) Then
  Reporter.ReportEvent 4,"OpenApplication", "Navigagtion to page  " & ApplicationName
  Reporter.ReportEvent micPass,"OpenApplication" , "Opened Applcaiton "&TitleName
  OpenApplication =0
  else
  Reporter.ReportEvent 4,"OpenApplication", "Navigagtion to page " & ApplicationName
  Reporter.ReportEvent micFail,"OpenApplication","Unable to open page "&TitleName
  OpenApplication =1
 End If
End Function


Regards,
Sreenu Babu

Post that you may be interested in
How to maximize Browser using QTP/UFT



                                        Link to Mandatory QTP /UFT Interview Questions to read before Interview

Sunday 8 February 2015

Difference between GetRef and Eval




Difference between GetRef and Eval
We cannot use GetRef when we have the required function call in different library ( Example if we have a sample function with name "TestEval" in a different library apart from where we have called GetRef to the function "TestEval". it will not work). we cannot use GetRef as it expects the function within its scope in the current library

On other hand Eval will work irrespective of where your Function is placed in library ( provided your library is associated to your test)

Example of using EVAL using multiple parameters:-

msg1 = "Hi "
msg2 = "Readers "
FunctionName = "TestEval"
Call Eval(FunctionName & chr(40) & "msg1" & chr(44) & "msg2" & chr(41))

Function TestEval(byval firstmessage, byval SecondMessage)
    msgbox firstmessage
    msgbox SecondMessage
    message = firstmessage & " " &  SecondMessage
     msgbox message
End Function

Example of using GetRef using multiple parameters:-

msg1 = "Hi "
msg2 = "Readers "
FunctionName = "TestEval"

Call GetRef(FunctionName)(msg1,msg2)

Function TestEval(byval firstmessage, byval SecondMessage)
    msgbox firstmessage
    msgbox SecondMessage
    message = firstmessage & " " &  SecondMessage
     msgbox message
End Function

Happy Reading,
Sreenu Babu