08-13-2010, 07:19 AM
I did true this solution and it did not work:
The following with the WAIT statements worked:
Thanks for all the helpful posts.
Code:
Browser("Browser").Page("GeneralInformation").PSFrame("ContractHeader").WebEdit("txtAssign").Click
Browser("Browser").Page("GeneralInformation").PSFrame("ContractHeader").WebEdit("txtAssign").Set "Test"
Browser("Browser").Page("GeneralInformation").PSFrame("ContractHeader").WebEdit("txtAssign").Click
The following with the WAIT statements worked:
Code:
Browser("Browser").Page("GeneralInformation").PSFrame("ContractHeader").WebEdit("txtAssign").Click
Wait(2)
Browser("Browser").Page("GeneralInformation").PSFrame("ContractHeader").WebEdit("txtAssign").Set "Test"
Wait(2)
Browser("Browser").Page("GeneralInformation").PSFrame("ContractHeader").WebEdit("txtAssign").Click
Thanks for all the helpful posts.