04-13-2011, 11:41 PM
IE8
QTP10
XP
I have a TEST that calls a pop-up calendar. It requires 'manual selection'. Sometimes when the test gets to that spot, the outline of the calendar is there; but unable to view. Closing the calendar and reopening the calendar fixes this.
My work around, was to create a message box to tell the testor to select a date.
This was how I coded it after the calendar launches:
Yet when I run it - QTP ignores it completely. Why is my button not working?
*Also restated QTP w VB turned on? nothing changed
QTP10
XP
I have a TEST that calls a pop-up calendar. It requires 'manual selection'. Sometimes when the test gets to that spot, the outline of the calendar is there; but unable to view. Closing the calendar and reopening the calendar fixes this.
My work around, was to create a message box to tell the testor to select a date.
This was how I coded it after the calendar launches:
Code:
Sub AddWorksheet ()
Worksheets.Add
MsgBox "May need to launch it again." _
, vbInformation + vbOKOnly, "Choose Date on the Calendar screen "
End Sub
Yet when I run it - QTP ignores it completely. Why is my button not working?
*Also restated QTP w VB turned on? nothing changed