|
From: Marcus B. <ma...@la...> - 2004-04-16 01:08:24
|
Hi... Thomas Carrié wrote: > PS : why does getBrowser returns TestBrowser according to the phpdoc whereas > there is only a SimpleBrowser class in the phpdoc and no TestBrowser ? Because the code docs are often done by me and I keep getting things wrong :). I'll fix the code now... > According to http://www.lastcraft.com/form_testing_documentation.php#multiple > I have done this : > > $this->setField('confirm', array('value' => '1')); That is for selection fields and check boxes that can have multiple values. As radio groups can only have one value at a time you can go... $this->setField('confirm', 1); yours, Marcus -- Marcus Baker, ma...@la..., no...@ap... |