1

I need to login and parse, then insert data to some web page. I know php, ruby, java, c#. In ruby I know mechanize - it's emulating webbrowser, without starting it. Is good for me, but it didn't work with page's with js.

Also I tried with watir - but it is only desktop-based app, because it runs ibrowser.

Are there any other solutions with js, but without starting browser on php, ruby, java, c# to put it on server?

Frank van Puffelen
  • 565,676
  • 79
  • 828
  • 807
brabertaser19
  • 5,678
  • 16
  • 78
  • 184

1 Answers1

0

For .NET: Headless browser for C# (.NET)?

An interesting headless browser implementation exists for node js (server side javascript) http://zombie.labnotes.org/

Just search for <[programming language], headless browser>

Community
  • 1
  • 1
Louis Ricci
  • 20,804
  • 5
  • 48
  • 62
  • @brabertaser1992 - A "headless browser" means the browser's UI is never loaded only the page parsing and script rendering engine like webkit V8 is loaded. – Louis Ricci Jan 07 '13 at 16:03