I am using Insight Reporting Software where I am writing a process to open report and change a few fields before exporting into excel.
When I use the click activity, it does not recognize each option on the top panel as an element. I understand there is an OCR method but its not very reliable since the smallest change on the screen might lead to an error.
Does anyone know of an alternative solution to read specific options on the screen.
When the application is build with multiple form elements inside a main form element, each form element will be considered as one group and the elements inside that form will not be accessible directly. As you mentioned, image automation comes into picture.
For a successful automation, try,
Figure out all the shortcut keys in the application and try accessing elements with those shortcut key.
Use click element or element accessible activities
Use click text or text related activities
Select the nearest accessible element and then use shortcut keys(up, down, tab, left, right) to reach the element you want to access.