tags:

views:

45

answers:

1

I need to automate some tasks on a website that does not have an API, and uses a substantial amount of JavaScript, without any graceful fall-back, so is it possible to parse over content added to a page via JS, with C#, I assumed that this would be done with a WebBrowser object but so far I've been unsuccessful.

A: 

Try SWAT or WatiN

Both are unit testing frameworks for automating web site front end testing, but can easily be used to traverse the DOM on a website as you want to do.

Rob Stevenson-Leggett