E2E\WebDriverShortcuts::typeIn PHP Method

typeIn() protected method

Type into an element.
protected typeIn ( $element, $string )
$element
$string
    protected function typeIn($element, $string)
    {
        $this->click($element)->clear();
        return $this->type($string);
    }