I'm a Selenium n00b... it's clear how easy it is to run a test and verify a particular response, but how can I take a value from one response and use it in the next test?
an example might be a contact creation form...
- type in name/email and click submit
- response arrives with new ContactID
- grab the ContactID that was returned and put it into "get" textbox and click "submit"
- response arrives with contact details
- verfy the name/email match the first set
how might I go about doing this in Selenium?