Need to create automated regression test scripts for desktop application UI created with PowerBuilder 2017. Is there any automated testing tool with out of the box support for PowerBuilder 2017?
Need to create automated regression test scripts for desktop application UI created with PowerBuilder 2017. Is there any automated testing tool with out of the box support for PowerBuilder 2017?
Here is an example of differences in HPE UFT vision, after compilation, on TreeView objects with the same powerbuilder code.
New version
PbWindow("PbWindow").WinObject("PBTreeView32_100").Click 13,42
PbWindow("PbWindow").WinObject("PBTreeView32_100").DblClick 88,74
Treeview entry name is missing, we obtain only click position
Old versions
PbWindow("w_mainwindow").PbTreeView("tv_menu").Expand "Market"
PbWindow("w_mainwindow").PbTreeView("tv_menu").Activate "Market;Deal Capture"
We were able to get the entry names in old versions and our testing scripts are build using those entries.