跳转到内容

PlanoTse 求职自动化手册/PlanoTseScript 表达式

来自维基教科书,开放的书籍,开放的世界
PlanoTse 求职自动化手册
PlanoTseScript 语言参考 PlanoTseScript 表达式 PlanoTseScript 基本命令

PlanoTseScript 表达式

[编辑 | 编辑源代码]
missing
根据命令“expect”声明的文件是否存在,设置为真或假。

{ expect script 12345; if missing then exit; }

newid
新创建项目的项目编号

{ new script My Third Testbed; expect script newid; if missing then exit; }

no
根据命令“yesno”提出的是/否问题的最后答案设置为真或假。

{ yesno Do you want to do that?; if no then say The answer was NO; }

realdata
如果当前使用的是真实数据根目录,则设置为真。

{ if realdata then exit; }

si.bookmark
主窗口树视图中当前选定项目的书签;书签是一个字符串,从左到右包含项目类型、项目编号和项目标题。

{ say The type, ID and title of the selected item are si.bookmark; }

si.handle
主窗口树视图中当前选定项目的句柄;句柄是一个字符串,从左到右包含项目类型和项目编号。

{ say The type and ID of the selected item are si.handle; }

si.id
主窗口树视图中当前选定项目的项目编号

{ say ID of the selected item is si.id; }

si.title
主窗口树视图中当前选定项目的标题

{ say Title of the selected item is si.title; }

testdata
如果当前使用的是测试数据根目录,则设置为真。

{ if testdata then exit; }

yes
根据命令“yesno”提出的是/否问题的最后答案设置为真或假。

{ yesno Do you want to do this?; if yes then say The answer was YES; }

PlanoTse 求职自动化手册
PlanoTseScript 语言参考 PlanoTseScript 表达式 PlanoTseScript 基本命令
华夏公益教科书