RE: How to auto submit a jsp page after loading

2019-10-03 Thread Anurag Singh {अनुराग सिंह}
Can use Javascript to achieve it. Sample code as follows --- -- window.onload = function() { document.getElementById("frm").submit(); } -Original Message- From: albert kao [mailto:albertk...@gmail.com] Sent: Thursday, October 03, 2019 17:19 To: Struts Users

Re: How to auto submit a jsp page after loading

2019-10-03 Thread Dave Newton
On Thu, Oct 3, 2019 at 7:57 AM albert kao wrote: > This is desired for saving time when testing a web application. > Two points: * You'd no longer be testing the page. * You'd introduce *additional* functionality not present on the real page. Dave

Re: How to auto submit a jsp page after loading

2019-10-03 Thread Lukasz Lenart
czw., 3 paź 2019 o 13:57 albert kao napisał(a): > > How to auto submit a jsp page after loading is done? > i.e. after a jsp page is completely loading, it will auto submit - advance > to the next page without one of the Submit buttons is pressed or a link is > clicked. > This is desired for

How to auto submit a jsp page after loading

2019-10-03 Thread albert kao
How to auto submit a jsp page after loading is done? i.e. after a jsp page is completely loading, it will auto submit - advance to the next page without one of the Submit buttons is pressed or a link is clicked. This is desired for saving time when testing a web application.