Katalon Studio将多个文件上传到同一输入字段

时间:2019-06-12 11:39:27

标签: groovy katalon-studio

页面上有文件输入字段,应同时附加多个文件。

我尝试使用[WebUI] Upload File,但无法同时处理两个文件。

WebUI.uploadFile(findTestObject('Object Repository/validateFile/input_originalFile'), (d_directory.toString() + '\\') + file1, (d_directory.toString() + '\\') + file2)

2 个答案:

答案 0 :(得分:2)

file1 = "C:\\path\\file.extension";
file2 = "C:\\path\\file.extension";
multipleFiles = file1 + "\n" + file2;

WebUI.uploadFile(findTestObject('yourTestObject'), multipleFiles)

希望这会有所帮助

此外,此列表将来可能会对您有所帮助

Escape Sequence Description
\t  Insert a tab in the text at this point.
\b  Insert a backspace in the text at this point.
\n  Insert a newline in the text at this point.
\r  Insert a carriage return in the text at this point.
\f  Insert a formfeed in the text at this point.

答案 1 :(得分:1)

检查输入的文件类型是否为=“文件”。