java - Record and replay interactions with a webpage -
i implementing integration test complex website.
i write tests hand simulate various events on pages, check value of various elements , check fine storing screenshots. server requests mocked.
this works quite well, process of writing tests takes lot of time.
instead want record interactions page able replay them.
i want record:
- the events generated
- the network requests , responses, can mock them later
- the value of , positions of fields displayed on page (could hand-picked)
is there such tool? writing firefox plugin don't want reinvent wheel.
this plugin use: http://www.seleniumhq.org/projects/ide/
it has record function, can export , run test.
when right click element on page can assert on in various ways.
hope looking for,