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…
In this SOAPUI free online tutorials or course you will learn how to test web services using SOAPUI. Its been decades testers needed a tool to test soa, rest services and SOAPUI is the only tool which stood for long in the market and is still the market leader. SOAPUI tool was constantly improved by…
This program to print the first n number, introduces you to the usage of looping structures in python. One of the important thing to remember in python is, it does not have any “{” for marking the code blocks like in any other programming languages. In python it is handled completely differently, set of statements are…
In this program you will be making use of methods and creating an object of a class and calling the method. So you will see one method by name “isPrime” which takes an integer as an input and returns a boolean value, the returned boolean value evaluates to true if the given input number is…
This program you will learn how to use both conditional and looping constructs in a nested format, that is a conditional statement would be present inside a for loop. As mentioned in other articles, there would be several ways to write logic for any problem / program, here I am showing some of the simple…
This program helps to introduce the usage of looping structures in java, the following program will print the first n numbers from the number system, you can change the value of n by editing the value that is assigned to the variable “n”, ideally this parameter could be passed from outside and make the program…