PlanoTse 工作搜索自动化手册/PlanoTseScript 基础命令
外观
在 PlanoTseScript 中,每个语句都以一个基本命令开头。基本命令是一个或两个关键字。此页面提供了 PlanoTseScript 中所有基本命令的列表。除非另有说明,所有命令都必须用小写字母编写。
- aw
- PlanoTseScript WSA 命令
- bookmark value2
- 将树状视图中第一个编号为 value2 的项目添加到书签。
{ bookmark si.id; say The selected item has been bookmarked.; }
- bookmarks [ on | off ]
- 选择 [视图 » 书签] 在树状视图中打开或关闭书签节点。
- clear [ keyword2 | 数据项集合 ]
- keyword2 必须是一个有效的 PlanoTse 数据项集合 或者以下之一:
- all
- 从主菜单中选择 [视图 » 清除所有]。
- bookmarks
- 删除所有书签。
- go
- 清除当前的 Go 脚本。
- startup
- 清除当前的启动脚本。
- trace
- 清除当前的 PlanoTseScript 执行跟踪日志。
- websearch
- 删除所有未处理的网络搜索结果。
- collapse all
- 从主菜单中选择 [视图 » 折叠所有]。
- dragdrop [ on | off ]
- 从主菜单中选择 [视图 » 启用拖放] 在树状视图中启用或禁用拖放功能。
- edit [ 项目类型 项目编号 | 项目标题 ]
- 打开指定类型和编号的项目,或指定标题的项目。
{ edit script 12345; }
{ edit Templateless Domains; }
- exit
- 停止解释当前跳板中剩余的源代码。
- expand all
- 从主菜单中选择 [视图 » 展开所有]。
- expect 项目类型 项目编号
- 表达式 missing 如果未找到指定类型和编号的项目,则为真。
{ expect script 12345; if missing then ext; }
- find
- PlanoTseScript WSA 命令
- focus 项目编号
- 选择树状视图中第一个编号为指定的项目。
{ focus 12345; say Item 12345 has been selected in the tree view.; }
- folder keyword2
- keyword2 必须是以下之一:
- 数据项集合
- 打开包含声明数据项的文件夹,例如 responses 或 notes。
- dataroot
- 打开当前数据根文件夹。
- reports
- 打开报告文件夹。
- trace
- 打开跟踪日志文件夹。
- websearch
- 打开网络搜索结果文件夹。
- given
- PlanoTseScript WSA 命令
- goto url2
- 转到指定的 URL。
{ goto google.com; }
- if condition2 then statement4
- 如果 condition2 为真,则执行 statement4;condition2 必须是以下关键字之一: [ yes | no | missing | testdata | realtest ]。
- 条件 'yes' 和 'no' 由命令 'yesno' 设置。
- 条件 'missing' 由命令 'expect' 设置。
- 条件 'testdata' 和 'realdata' 默认设置为匹配目录模式:当前使用测试或真实数据根目录。
{ expect script 12345; if missing then exit; }
- load all
- 加载树状视图中的所有数据,或树状视图可以处理的尽可能多的数据。
- load collection2
- 加载 collection2 中指定数据类型的项目。
{ load notes; load scripts; }
- main press button steps
- 按下主窗口上的 步骤 按钮。
- new item-type item-title
- 创建一个新的项目,其数据类型和标题如指定。
{ new script My New Testbed; }
- notice message2
- 在主窗口底部的状态栏上显示 message2。
{ notice The script is still running; }
- panel [ 1 | 2 | 3 | 12 | 23 | 13 | 123 ]
- 仅显示树状视图 (1)、节点编辑器 (2) 或白板面板,或任意两个,或所有三个。
- realdata directory2
- 将 directory2 存储为真实数据根文件夹,并立即使用它。
- replace key2 value3
- 此后,在代码中的任何地方,将 key2 替换为 value3。如果未指定 value3,则从现在开始,停止将 key2 替换为任何其他内容。
- run [ go | startup ]
- 运行 Go 脚本或启动脚本。
- run item-type item-number
- 运行指定类型和编号的数据项的数据方向(步骤)中的 PlanoTseScript 代码。
{ run script 12345; }
- say message2
- 弹出一个消息框,显示 message2。
- searches [ on | off ]
- 在树状视图中打开或关闭搜索节点。
- testdata directory2
- 将 directory2 保存为测试数据根文件夹并立即使用它。
- trace message2
- 将 message2 发布到 PlanoTseScript 执行跟踪日志中。
- unload collection2
- 从树状视图中清除所有 collection2 指定类型的项目。
{ unload notes; unload scripts; }
- use [ realdata | testdata ]
- 切换到真实或测试数据根目录。
- view trace
- 显示 PlanoTseScript 执行跟踪日志 的内容。
- web search search-string-3
- 使用 search-string-3 作为搜索条件进行网络搜索。
{ web search Management Dallas Retail job-description -resume -hardware; }
- ws search-string-2
- 网络搜索的缩写;使用 search-string-2 作为搜索条件进行网络搜索。
{ ws Management Dallas Retail job-description -resume -hardware; }
- yesno question2
- 提出一个是或否问题,并保存“是”和“否”条件,供“if”命令使用。
{ yesno Stop running this script?; if yes then exit; }