Monday, August 3, 2015

UFT Description and .GetChildObjects | Working with multiple objects with similar or the same set of properties

It is a best practice to make your automation script as Dynamic as possible. Here's a sample when dealing with search results or blog post or list of articles. In this example, I use the google.com search results. Scenario: I'd like to automate the searching capability of google search and click the first search result (not the featured) no matter what title or text it has. Figure 1.0 Search results in google.com Tip: You can get...

Wednesday, July 29, 2015

Visual Studio C# | Converting String to Integer

Values you enter on the text fields are considered strings or series of characters regardless if it is a number or integer. The sample application above converts string to number and them up then displays it on the label component. Code:    The action was triggered upon clicking the 'Add' button. note:    variable 'total' is declared as global variable with double type. Tip:    set 'FullRowSelect'...

Visual Studio C# | Allow Integer Input Only

There are certain field that you only want the user to input integer or numbers but there is always that doubt that they will accidentally press a non-numeric characters. The best way to catch that one is to forbid the user to input a letters, special characters and any other characters that is not needed for your specific field. For example, you are doing a form for a product and part of it's fields is the 'Price'. We all know  that the...

Monday, July 27, 2015

UFT GetROProperty and CheckProperty | Comparing Expected Text with Actual Text

There are times when you need to check if the Expected Text is displayed against Actual Text displayed on the actual applications. For intance: You need to check the exact page title description in the www.w3schools.com website. Figure 1: w3schools.com homepage screenshot Text that needs to check : 'The language for building web pages." You need also to consider that this part is a content maintainable. Which means, it is possible that...

Sunday, July 26, 2015

Android Studio

Few months ago, I started my android development exercises and trying to understand and learn the android application. Then one of my officemates introduce me to this Google's new application for android development. For those who didn't know, Eclipse is the most common android development tool which runs by java. And now, Google releases the 'Android Studio' in May 2013. I am trying to create my first android app and love to share it for you...

Friday, July 24, 2015

Visual Studio C# | Communicating with MS Access

One of the important thing when developing an application is to have a data storage where you can store all you important data whether it is from the user or for the user. This post is all about connecting with MS Access as Database with Visual Studio C# and populate the retrieved data to the ListView component. //initialize database connection private OleDbConnection dbConn = new OleDbConnection(); //Connection string string strConnString...

Wednesday, July 22, 2015

UFT Datatables | Accessing Datatables ~ Tips and Tricks

I've been working with DataTables for quite long time now, and there are instances that you will think of the ways to maximize the use of those rows and columns of the table. For a usual scenario, you use the DataTable for the sets of data that is used for each iteration of the code like for instance, User Profile, etc. To have a quick overview of what I am talking about, here's the sample view of a usual usage of the DataTable. Figure 1.0...