_generated\AcceptanceTesterActions::appendField PHP Method

appendField() public method

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'); ?>
See also: 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