Click here to Skip to main content
15,891,951 members
Please Sign up or sign in to vote.
0.00/5 (No votes)
By Automatic softwares, I am talking about "bots" that are able to do multiple task on a html page such as grabbing some information or completing a script like login.
Also I would like to create a "bot" that is able to understand Javascript and opens the frame that pops up during html aspect. In this frame the software should be able to press button or complete fields.
Posted
Comments
ThatsAlok 17-Aug-10 2:32am    
yes you can!

I would imagine that C# is a much better choice, given that it has a lot more in it's framework to help you with such a task.
 
Share this answer
 
Comments
Dagro14 11-Aug-10 8:35am    
I know C sharp is better choice but I wish to create such tools in C++ and thus expanding knowledge in this particular language. I was asking this to see if C++ is capable of it even if its long trouble to attain it.
All languages are fine, if you are comfortable with them.

I would recommend a .NET language though, as that is the way things are pointing (No pun intended) just merely that it is easier for project work.
 
Share this answer
 
It depends in my opinion. You can also take firefox's JavaScript engine from it's source. Then you'll be forced to use c/c++
 
Share this answer
 
You could use any language as long as you are happy with using it.
 
Share this answer
 
I would go for JavaScript. Using Firebug with Firefox, you can easily inject JavaScript code into any page (can be done with IE also). Using an open source browser, you could tweak it a bit to inject that code automatically.
 
Share this answer
 
The answer depends on whether or not the code will be executed by the browser or on the server, and if on the server, which web server you are using.

If your code is going to run in the user's browser, then you are pretty much forced to use JavaScript. Internet Explorer can run VBScript, but most other browsers will not.

If it will run server-side and you have IIS, it would probably be easier to write your code with the .Net framework, which means either VB or C#. Older version of IIS, or IIS without one of the .Net frameworks, would probably have to be done using VBScript and Active Server Pages. If you have a non-Microsoft web server like Apache, I think you would need Perl or Java.
 
Share this answer
 

This content, along with any associated source code and files, is licensed under The Code Project Open License (CPOL)



CodeProject, 20 Bay Street, 11th Floor Toronto, Ontario, Canada M5J 2N8 +1 (416) 849-8900