While you are aware of many features in OpenScript and OATS to automate scripts, there are some advanced concepts which can help you move to next level. In this article you will be introduced to a utility which was developed by OATS product development team and made it available from OATS 12.3 version. 3 activities…
You should always be careful about how you design / architect your test automation project , it is completely dependent on the size, nature & application landscape to test for a given project, you should make sure it is: Easy to create new automation scripts, especially the E2E(End to End) automation scripts / functional scenarios.…
OATS – Oracle Application testing suite had evolved and improved its stability, performance and features with every release that Oracle had pushed in to market. One of the important aspect which might hurt is that OATS / Openscript might slow down during executions. I would like to introduce to you 2 ways which can help you…
This is one of the error that we encountered during the installation process of Oracle Application Testing Suite, below is the error message that we got: “OUI-10133:Invalid staging area. There are no top level components for Windows NT, Windows 2000 available for installation in this staging area.” The case is when we zipped an existing OATS…
Steps to install OATS – Oracle Application Testing Suite had been same until OATS 12.5.0.3 had come in to existence, i.e. by downloading OATS software and follow the GUI instructions to complete the installation. But as part of the latest version OATS 12.5.0.3 there is a slight modification, which is to first install Oracle XE…
Once the installation of Oracle Application Testing Suite ( a.k.a OATS ) is complete, make sure that the following check list is met. For each of the below Items to check, we have enclosed detailed steps as part of the same article for your reference. Following steps are the ones which you need to do one…
You have to download Oracle XE 11g database download from oracle website, for which you need to have Oracle SSO login credentials. In case you are not registered, follow the simple steps at oracle website and register for free. Once you have registered, login in to Oracle SSO authentication. Navigate to link Oracle XE 11g database download. Accept…
Many a times when working with Oracle EBS forms, automation test engineer wants to bring forms to base state and continue with next steps, this can be achieved very easily using OATS. There is an api given as part of forms object, which is getAllOpenWindows(), this method in forms returns List of AbstractWindows, you can…
Program: Write a program to print all the words starting with an alphabet “a” and also print the location at which the word is present in the list. In this program of Python you would be introduced to usage of lists and iterating through them, lists are one of the important topics in python and…
This program to print first n even numbers can be written in many ways, but as part of this article you will be introduced to a new concept in python, especially with a “for” loop. Value of variable increments or decrements automatically by step which can be given as part of the range function. You…