_generated\AcceptanceTesterActions::appendField PHP Метод

appendField() публичный метод

Append the given text to the given element. Can also add a selection to a select box. php appendField('#mySelectbox', 'SelectValue'); $I->appendField('#myTextField', 'appended'); ?>
См. также: Codeception\Module\WebDriver::appendField()
public appendField ( string $field, string $value )
$field string
$value string
    public function appendField($field, $value)
    {
        return $this->getScenario()->runStep(new \Codeception\Step\Action('appendField', func_get_args()));
    }
AcceptanceTesterActions