views:

39

answers:

2

I am looking for a tool that helps me click a button in a windows form(ASP.NET) periodically.Any ideas??? Basically I depeloped a Web Form using ASP.Net (C#). There is a button on this form. I am looking for a tool that clicks on this button every 10 seconds automatically(For testing purposes)

A: 

Maybe you can do it yourself. If it was a web page, you can read the contents of the webpage and fire the event as if you clicked the button every certain period of time you choose. I don't remember how it was exactly but I once did that by parsing HTTP from a website and doing the same functionality the website do through a windows Form application. Sorry I couldn't give you detailed answer more than that.

Ahmad Farid
A: 

Well!!! I think there are enough comments asking you to provide more information. But here is my part.

You can use any automated testing tools and record your activity once and then use the testing tool to click the button periodically.

This page lists 420 testing tools ;-) choose which you think suits your need.

Another option is to develop a .net windows application and call the button action web page periodically using a timer.

Hope this helps.

Shoban