mirror of
https://github.com/silverstripe/silverstripe-framework
synced 2024-10-22 14:05:37 +02:00
MINOR Documentation in FunctionalTest and TestSession
git-svn-id: svn://svn.silverstripe.com/silverstripe/open/modules/sapphire/trunk@114140 467b73ca-7a2a-4603-9d3b-597d59a354a9
This commit is contained in:
parent
eeed9ce189
commit
41dad508e4
@ -101,7 +101,22 @@ class FunctionalTest extends SapphireTest {
|
||||
|
||||
/**
|
||||
* Submit the form with the given HTML ID, filling it out with the given data.
|
||||
* Acts on the most recent response
|
||||
* Acts on the most recent response.
|
||||
*
|
||||
* Any data parameters have to be present in the form, with exact form field name
|
||||
* and values, otherwise they are removed from the submission.
|
||||
*
|
||||
* Caution: Parameter names have to be formatted
|
||||
* as they are in the form submission, not as they are interpreted by PHP.
|
||||
* Wrong: array('mycheckboxvalues' => array(1 => 'one', 2 => 'two'))
|
||||
* Right: array('mycheckboxvalues[1]' => 'one', 'mycheckboxvalues[2]' => 'two')
|
||||
*
|
||||
* @see http://www.simpletest.org/en/form_testing_documentation.html
|
||||
*
|
||||
* @param String $formID HTML 'id' attribute of a form (loaded through a previous response)
|
||||
* @param String $button HTML 'name' attribute of the button (NOT the 'id' attribute)
|
||||
* @param Array $data Map of GET/POST data.
|
||||
* @return SS_HTTPResponse
|
||||
*/
|
||||
function submitForm($formID, $button = null, $data = array()) {
|
||||
$this->cssParser = null;
|
||||
|
@ -65,7 +65,22 @@ class TestSession {
|
||||
|
||||
/**
|
||||
* Submit the form with the given HTML ID, filling it out with the given data.
|
||||
* Acts on the most recent response
|
||||
* Acts on the most recent response.
|
||||
*
|
||||
* Any data parameters have to be present in the form, with exact form field name
|
||||
* and values, otherwise they are removed from the submission.
|
||||
*
|
||||
* Caution: Parameter names have to be formatted
|
||||
* as they are in the form submission, not as they are interpreted by PHP.
|
||||
* Wrong: array('mycheckboxvalues' => array(1 => 'one', 2 => 'two'))
|
||||
* Right: array('mycheckboxvalues[1]' => 'one', 'mycheckboxvalues[2]' => 'two')
|
||||
*
|
||||
* @see http://www.simpletest.org/en/form_testing_documentation.html
|
||||
*
|
||||
* @param String $formID HTML 'id' attribute of a form (loaded through a previous response)
|
||||
* @param String $button HTML 'name' attribute of the button (NOT the 'id' attribute)
|
||||
* @param Array $data Map of GET/POST data.
|
||||
* @return SS_HTTPResponse
|
||||
*/
|
||||
function submitForm($formID, $button = null, $data = array()) {
|
||||
$page = $this->lastPage();
|
||||
|
Loading…
Reference in New Issue
Block a user