页面上有文件输入字段,应同时附加多个文件。
我尝试使用[WebUI] Upload File,但无法同时处理两个文件。
WebUI.uploadFile(findTestObject('Object Repository/validateFile/input_originalFile'), (d_directory.toString() + '\\') + file1, (d_directory.toString() + '\\') + file2)
答案 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)
检查输入的文件类型是否为=“文件”。