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?
- Chiradeep Das
- PowerBuilder
- Friday, 18 May 2018 19:43 PM UTC
- Page :
- 1
There are no replies made for this question yet.
However, you are not allowed to reply to this question.
However, you are not allowed to reply to this question.
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.