添加并使用rcptt

时间:2018-06-22 16:51:24

标签: eclipse eclipse-rcptt

我正在使用rcptt来自动化我的应用程序。 一个测试用例是

- add a file 
- then my app will read info from that file and proceed further if
 i click on next button.

为此,我正在使用以下代码

set-dialog-result File  [concat [get-workspace-location | str] "/proj/folder/sample-file.txt"]
get-editor "editor" | get-button Add | click
get-button "Save (M1+S)" | click

它可以添加文件,但是当我继续进行操作时,它无法从文件中读取信息。

显示错误

could not be opened for reading

但是文件在那里,因为我手动检查了。

我在做什么错了?

谢谢

1 个答案:

答案 0 :(得分:0)

如果我没记错,您尝试添加一个新文件,将其保存然后打开保存的文件吗?

您可以使用read-file命令读取文件。

示例:读取文件-uri“ C:/ Users / kaneezr / Desktop / WorkspaceRcptt / XATest / dataFile”

在这里,我可以通过使用read-file选项并为其提供uri来读取文件。

您也可以参考以下内容: https://www.eclipse.org/rcptt/blog/2015/08/12/file-and-clipboard-content.html

我不确定是否会有所帮助,但您可以尝试看看。