How can I validate Print button in webbased application? (ex if i click Print button how we know wheather the print is coming or not )
NOTE : [This question was asked by venkatrao]
How can I validate Print button in webbased application? (ex if i click Print button how we know wheather the print is coming or not )
NOTE : [This question was asked by venkatrao]
This is a suggestion.
What you can do is open the print dialogue window on your computer before you click on the print button. You will need to record the action of opening the print dialog window (i.e start--> printer and faxes-->select printer -->open) and record checking if the doc was displayed when you click the print button, and if the doc exits.
Hi All,
You can validate Print button in web based application by giving this Message box or Reporter.Report Event.
If obj.fileexists("C:\Program Files\ Application\ Instrument Data - Excel Format 2")Then
Windows("C:\Program Files\ Application\ Instrument Data - Excel Format2").Click
Msgbox" Report is Clicked Succesfully"
Else
Msgbox"Report Failed Click cannot Print"
End If
Last edited by Fahed9090; 07-08-2008 at 05:39 PM.