﻿id	summary	reporter	owner	description	type	status	component	version	severity	resolution	keywords	cc	stage	has_patch	needs_docs	needs_tests	needs_better_patch	easy	ui_ux
11797	Test Client Response content form value parsing	Joshua Russo	Joshua Russo	"Added html parsing to the response object created in the test client to extract the initial form field value to facilitate resubmission via post and get. 

Example:
{{{
response = self.client.get('/')
self.failUnlessEqual(response.status_code, 200, 'Failed to retrieve the standard main page.')

# This retrieves the entire set of form values for the form associated with the field (or form) name supplied 
curVals = response.form_data('btnShow')
curVals['pessoaSelect'] = '2'

response = self.client.post('/', curVals)
self.failUnlessEqual(response.status_code, 200, 'Failed to retrieve the list of Matriz records for the PessoaID 2 (1)')
}}}"	New feature	closed	Testing framework	dev	Normal	wontfix	test client content form post get	Randy Barlow Mikhail Korobov	Design decision needed	1	0	0	0	0	0
