public function TraversableElement::attachFileToField in Zircon Profile 8
Same name and namespace in other branches
- 8.0 vendor/behat/mink/src/Element/TraversableElement.php \Behat\Mink\Element\TraversableElement::attachFileToField()
Attach file to file field with specified locator.
Parameters
string $locator input id, name or label:
string $path path to file:
Throws
See also
NodeElement::attachFile
File
- vendor/
behat/ mink/ src/ Element/ TraversableElement.php, line 287
Class
- TraversableElement
- Traversable element.
Namespace
Behat\Mink\ElementCode
public function attachFileToField($locator, $path) {
$field = $this
->findField($locator);
if (null === $field) {
throw new ElementNotFoundException($this
->getDriver(), 'form field', 'id|name|label|value', $locator);
}
$field
->attachFile($path);
}