tags:

views:

243

answers:

1

Looking into doing some PHP script automation, Need something that will login to a system, enter some values, submit a form and return a success/failed message. Don't know if this is a factor but the website is heavy on AJAX as well.

Looking for help in where to get started, maybe some tutorials, code examples, Am I looking at the problem correctly, etc...

Thanks in advance, --Phill

+1  A: 

Answered many times before:

Byron Whitlock
Sorry, I thought screen scraping is when you want to get values from a webpage into another script via PHP. But what I want is the reverse, does screen scraping logic do this? instead of getting info from a page I need to fill out a page, submit and check the results
Phill Pafford
Take a look at fiddler (google it) and watch what gets submitted. you might be able to get away with just posting without scraping. but if you need to grab values from the form, you need to scrape.
Byron Whitlock