Пример #1
0
 public function testAppendFieldDiv()
 {
     $this->module->amOnPage('/form/div_content_editable');
     //make sure we see 'sunrise' which is the default text in the textarea
     $this->module->see('sunrise', '#description');
     //fill in some new text and see if we can see it
     $textarea_value = 'moonrise';
     $this->module->appendField('#description', $textarea_value);
     $this->module->see('sunrise' . $textarea_value, '#description');
 }
Пример #2
0
 public function testAppendFieldRadioButtonByLabelFails()
 {
     $this->shouldFail();
     $this->module->amOnPage('/form/radio');
     $this->module->appendField('form input[name=terms]', 'Get Off123');
 }