_generated\AcceptanceTesterActions::fillField PHP Method

fillField() public method

Fills a text field or textarea with the given string. php fillField("//input[@type='text']", "Hello World!"); $I->fillField(['name' => 'email'], '[email protected]'); ?>
See also: Codeception\Module\WebDriver::fillField()
public fillField ( $field, $value )
$field
$value
    public function fillField($field, $value)
    {
        return $this->getScenario()->runStep(new \Codeception\Step\Action('fillField', func_get_args()));
    }
AcceptanceTesterActions