Similar Posts
Working with Files and Folders in UFT – User friendly Tech help
It has been a while that we tend to post something relevant to operating with files and folders. Fortuitously we stumbled on a task of looking out a specific kind of files in our system drives. n nSo we leveraged that opportunity to share the simplified ideation for the same. As we all recognize that…
Understanding Class in VBScripting – User friendly Tech help
n What is a Class? n A Class is a template or a blueprint for an object. An object exists only in memory at runtime; a class is a programming construct that we can work only directly during design time. Now for using object at runtime we need to define a class at design time….
How to compare values in Custom Metadata with given object in Apex – User friendly Tech help
Problem- Admin wants some value as configurable and set in custom metadata, now as a developer, we want to perform an action based on the matching of this mdt with values in say platform field on the account object n public Boolean validatePlatform() {n System.debug(‘Inside validatePlatform’);n List lstOfPlatforms = new List(); n Boolean isValidPlatform =…
Image-based object identification in UFT(Insight Recording) – User friendly Tech help
This is my first video on UFT, hope all the automation lovers gain something into the practical aspect of new feature (Image based identification ). n Please share your feedback or suggestions on [email protected] friends voice quality is not as good, i need to improve on my recorder thing .nnnJust a Brief summary of topics…
How we can load function libraries at Runtime in UFT? – User friendly Tech help
Loading function libraries at runtime was introduced in QTP-11. This feature enables loading of libraries when step runs instead of at the beginning of Run session.nnThis is helpful incase you need only particular set of function libraries based on the environment of AUT.nnFor example:- we are doing localization testing of our AUT, so instead of associating all the function libraries to…
Sending Keyboard strokes in UFT 11.5 – User friendly Tech help
Scenario:-nHow we can perform events like Click down Arrow Enter, Tab Using UFT?nnApproach:-nWe need to use “SendKeys” method of “Wscript”nnDefinition:-nSendkeys, is used to send one or more keystrokes to the active window as if they were typed at the keyboardnnSyntax:-nObject.Sendkeys KeystrokesnnExample:-nHow to activate windows Key /Startup Program?nnNote:-Shortcut for Windows Key in Windows 7 is “CTRL+ESC“.nnCode:-n n…