S. A. Malik
S. A. Malik

Reputation: 3655

How to code software for automating purposes?

I want to ask how can one write a software application which can automate browser processes such as logging into a site, posting some content and logging out.

There are a number of software out there in market which do so, but I am familiar with them from a long time ago, they need Internet Explorer to work.

I have searched a lot but could not find, in which language they are coded. Can some one put a guide or an article which will get me started on the process?

Upvotes: 0

Views: 247

Answers (3)

jedi_coder
jedi_coder

Reputation: 1398

You can do it in any language which has libraries that "speak" the HTTP protocol. Most of them do. The implementations vary, from simple things like sending GET/POST requests, to advanced topics like automatic cookie handling and JavaScript engines.

The idea is to pick up a programming language you are comfortable with and start looking for HTTP library options it has.

Upvotes: 1

Sunny
Sunny

Reputation: 6346

I can think of CodedUI, SilkTest, QTP, Watin, Watir & other such software packages which can do this...

HTH.

Upvotes: 0

Alan Haggai Alavi
Alan Haggai Alavi

Reputation: 74252

You could easily make web scrappers/bots using Perl. There are several CPAN modules which will be of help.

For example, WWW::Mechanize module makes most tasks easy.

Upvotes: 0

Related Questions