11-29-2015, 12:07 PM
Hey All -
I was automating one of the portals which was developed using PEGA7 CPM framework. The page had country auto-complete drop box where typing into the box two or three letters will display list of related countries.
I was able to see the list showing up during recording with UFT 12.0. However, when I play back, the list is not getting displayed
Below is complete code for the page
Any clue on fixing this will be appreciated!
Thanks much,
Charan
I was automating one of the portals which was developed using PEGA7 CPM framework. The page had country auto-complete drop box where typing into the box two or three letters will display list of related countries.
I was able to see the list showing up during recording with UFT 12.0. However, when I play back, the list is not getting displayed
Below is complete code for the page
Code:
Browser("Pega 7").Page("Pega 7").WebEdit("UserIdentifier").Set "user3@sedgwick"
Browser("Pega 7").Page("Pega 7").WebEdit("Password").SetSecure "565a7c3c5d52ba74ceb5adf22fa723d1da7d2c5e93a3b2ac"
Browser("Pega 7").Page("Pega 7").WebButton("Log In").Click
Browser("Pega 7").Page("CPMInteractionPortal").Link("New").Click
Browser("Pega 7").Page("CPMInteractionPortal").Link("Intake").Click
Browser("Pega 7").Page("CPMInteractionPortal").Frame("PegaGadget1Ifr").WebEdit("$PpyWorkPage$pClient$pClientNa").Set "golden"
Browser("Pega 7").Page("CPMInteractionPortal").Frame("PegaGadget1Ifr").WebButton("Search").Click
Browser("Pega 7").Page("CPMInteractionPortal").Frame("PegaGadget1Ifr").WebButton("Select").Click
wait 5
Browser("Pega 7").Page("CPMInteractionPortal").Frame("PegaGadget1Ifr").WebEdit("$PpyWorkPage$pCallBackDetails$_4").Set "Ind"
wait 5
Browser("Pega 7").Page("CPMInteractionPortal").Frame("PegaGadget1Ifr").WebEdit("$PpyWorkPage$pCallBackDetails$_4").Set "India"
wait 10
Browser("Pega 7").Page("CPMInteractionPortal").Frame("PegaGadget1Ifr").WebEdit("$PpyWorkPage$pCallBackDetails$_5").Set "9989976892"
Browser("Pega 7").Page("CPMInteractionPortal").Frame("PegaGadget1Ifr").WebButton("Save").Click
Browser("Pega 7").CloseAllTabs
Any clue on fixing this will be appreciated!
Thanks much,
Charan