Lines Matching refs:local_file
383 $local_file = $this->fileDetector->getLocalFile($value);
386 if ($local_file === null) {
409 $fileName = $this->upload($local_file);
411 $fileName = $local_file;
420 'value' => WebDriverKeys::encode($this->upload($local_file)),
598 * @param string $local_file
603 protected function upload($local_file)
605 if (!is_file($local_file)) {
606 throw new WebDriverException('You may only upload files: ' . $local_file);
609 $temp_zip_path = $this->createTemporaryZipArchive($local_file);