我想使用Behat Framework(Mink Extension)将CSV文件附加到“file”类型的输入字段中。
输入字段的html ----输入id =“edit-ab-csv-file”class =“form-file”type =“file”size =“60”name =“files [ab_csv_file]”>
第一种方法我们尝试过 我尝试在Driverinterface
中使用attachfile()方法/**
* Attaches file to field with specified id|name|label|value.
*
* @When /^(?:|I )attach the file "(?P<path>[^"]*)" to "(?P<field>(?:[^"]|\\")*)"$/
*/
public function attachFileToField($field, $path)
{
$field = $this->fixStepArgument($field);
if ($this->getMinkParameter('files_path')) {
$fullPath = rtrim(realpath($this->getMinkParameter('files_path')), DIRECTORY_SEPARATOR).DIRECTORY_SEPARATOR.$path;
if (is_file($fullPath)) {
$path = $fullPath;
}
}
$this->getSession()->getPage()->attachFileToField($field, $path);
}
}
第二种方法--WE尝试使用Java脚本
$jscript = "document.getElementById('edit-ab-csv-file').value='//home//developer//build//tools//behat//Invaliduploadfile.csv';";
$this->getSession()->getDriver()->executeScript($jscript);
我有例外说
The operation is insecure. (WARNING: The server did not provide any stack trace information)
Command duration or timeout: 10 milliseconds
任何人都可以帮忙解决这个问题。
答案 0 :(得分:0)
第一种方法对我有用。不要忘记使用文件的完整路径或使用files_path Mink配置设置。
查看此论坛帖子: https://groups.google.com/forum/#!topic/behat/vxZAssi2Nf8
Mink需要一个绝对路径来上传文件,但很明显 路径可能无法在其他环境中工作。相反,你可以 为您的Yaml配置文件提供“file_paths”属性:
扩展:
Behat\MinkExtension\Extension: files_path: "path/to/files"