query('xpath:./input')->waitUntilVisible()->one(); } /** * Select composite input value. * * @inheritdoc */ public function selectValue() { $this->getInput()->selectValue(); return $this; } /** * Overwrite composite input value. * * @inheritdoc */ public function overwrite($text) { $this->getInput()->overwrite($text); return $this; } /** * Alias for getValue. * @see self::getValue * * @return string */ public function getText() { return $this->getValue(); } /** * @inheritdoc */ public function isEnabled($enabled = true) { return $this->getInput()->isEnabled($enabled); } /** * @inheritdoc */ public function getValue() { return $this->getInput()->getValue(); } /** * @inheritdoc */ public function checkValue($expected, $raise_exception = true) { return $this->getInput()->checkValue($expected, $raise_exception); } }