Barney Chambers
Barney Chambers

Reputation: 2783

Automating Command In Browser (IE clicking a button)

How would I go about writing code that would automatically do a command on my browser (for example, click the 'ask question' button on this webpage x times), without using something like an auto-clicker?

I am studying computer science at University, so I know how to code in various languages, but I have no idea where to start looking for the answer to this question, when I hardly know what questions I need to be asking.

Upvotes: 0

Views: 55

Answers (1)

Yosef Weiner
Yosef Weiner

Reputation: 5751

Your want to search for automated testing tools, since that's where this type of feature is frequently used. A popular one is Selenium Webdriver.

Upvotes: 1

Related Questions