You should be aware of several things when working on test automation of Oracle EBS applications using OATS. One important thing among them is to capture value from oracle forms and use it later. Let me explain it with an example here. Assume that you are automating an order to cash end to end business…
In order to automate Oracle EBS Application, we should be aware of some intricacies, out of which one of them is “How to automate Oracle EBS Forms table – iterate between rows”. You can view that a table has 8 / 9 / 10 / etc.. rows filled with data, but in real you have…
Especially when you are working with web applications supported by JRE, they will always refer to cached (i.e. in java deployment folder ) JRE dependencies @ your machine / laptop, but in case nothing is cached, all the dependencies will be loaded in to cache and then referred for usage. In case there is no…
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…