Process
Library version: | 3.0.4 |
---|---|
Library scope: | global |
Named arguments: | supported |
Introduction
Robot Framework test library for running processes.
This library utilizes Python's subprocess module and its Popen class.
The library has following main usages:
- Running processes in system and waiting for their completion using Run Process keyword.
- Starting processes on background using Start Process.
- Waiting started process to complete using Wait For Process or stopping them with Terminate Process or Terminate All Processes.
This library is new in Robot Framework 2.8.
Table of contents
- Specifying command and arguments
- Process configuration
- Active process
- Result object
- Boolean arguments
- Example
- Shortcuts
- Keywords
Specifying command and arguments
Both Run Process and Start Process accept the command to execute and all arguments passed to the command as separate arguments. This makes usage convenient and also allows these keywords to automatically escape possible spaces and other special characters in commands and arguments. Notice that if a command accepts options that themselves accept values, these options and their values must be given as separate arguments.
When running processes in shell, it is also possible to give the whole command to execute as a single string. The command can then contain multiple commands to be run together. When using this approach, the caller is responsible on escaping.
Examples:
Run Process | ${tools}${/}prog.py | argument | second arg with spaces | ||
Run Process | java | -jar | ${jars}${/}example.jar | --option | value |
Run Process | prog.py "one arg" && tool.sh | shell=yes | cwd=${tools} |
Starting from Robot Framework 2.8.6, possible non-string arguments are converted to strings automatically.
Process configuration
Run Process and Start Process keywords can be configured using optional **configuration
keyword arguments. Configuration arguments must be given after other arguments passed to these keywords and must use syntax like name=value
. Available configuration arguments are listed below and discussed further in sections afterwards.
Name | Explanation |
---|---|
shell | Specifies whether to run the command in shell or not. |
cwd | Specifies the working directory. |
env | Specifies environment variables given to the process. |
env:<name> | Overrides the named environment variable(s) only. |
stdout | Path of a file where to write standard output. |
stderr | Path of a file where to write standard error. |
output_encoding | Encoding to use when reading command outputs. |
alias | Alias given to the process. |
Note that because **configuration
is passed using name=value
syntax, possible equal signs in other arguments passed to Run Process and Start Process must be escaped with a backslash like name\=value
. See Run Process for an example.
Running processes in shell
The shell
argument specifies whether to run the process in a shell or not. By default shell is not used, which means that shell specific commands, like copy
and dir
on Windows, are not available. You can, however, run shell scripts and batch files without using a shell.
Giving the shell
argument any non-false value, such as shell=True
, changes the program to be executed in a shell. It allows using the shell capabilities, but can also make the process invocation operating system dependent. Having a shell between the actually started process and this library can also interfere communication with the process such as stopping it and reading its outputs. Because of these problems, it is recommended to use the shell only when absolutely necessary.
When using a shell it is possible to give the whole command to execute as a single string. See Specifying command and arguments section for examples and more details in general.
Current working directory
By default the child process will be executed in the same directory as the parent process, the process running tests, is executed. This can be changed by giving an alternative location using the cwd
argument. Forward slashes in the given path are automatically converted to backslashes on Windows.
Standard output and error streams, when redirected to files, are also relative to the current working directory possibly set using the cwd
argument.
Example:
Run Process | prog.exe | cwd=${ROOT}/directory | stdout=stdout.txt |
Environment variables
By default the child process will get a copy of the parent process's environment variables. The env
argument can be used to give the child a custom environment as a Python dictionary. If there is a need to specify only certain environment variable, it is possible to use the env:<name>=<value>
format to set or override only that named variables. It is also possible to use these two approaches together.
Examples:
Run Process | program | env=${environ} | |
Run Process | program | env:http_proxy=10.144.1.10:8080 | env:PATH=%{PATH}${:}${PROGDIR} |
Run Process | program | env=${environ} | env:EXTRA=value |
Standard output and error streams
By default processes are run so that their standard output and standard error streams are kept in the memory. This works fine normally, but if there is a lot of output, the output buffers may get full and the program can hang. Additionally on Jython, everything written to these in-memory buffers can be lost if the process is terminated.
To avoid the above mentioned problems, it is possible to use stdout
and stderr
arguments to specify files on the file system where to redirect the outputs. This can also be useful if other processes or other keywords need to read or manipulate the outputs somehow.
Given stdout
and stderr
paths are relative to the current working directory. Forward slashes in the given paths are automatically converted to backslashes on Windows.
As a special feature, it is possible to redirect the standard error to the standard output by using stderr=STDOUT
.
Regardless are outputs redirected to files or not, they are accessible through the result object returned when the process ends. Commands are expected to write outputs using the console encoding, but output encoding can be configured using the output_encoding
argument if needed.
Examples:
${result} = | Run Process | program | stdout=${TEMPDIR}/stdout.txt | stderr=${TEMPDIR}/stderr.txt |
Log Many | stdout: ${result.stdout} | stderr: ${result.stderr} | ||
${result} = | Run Process | program | stderr=STDOUT | |
Log | all output: ${result.stdout} |
Note that the created output files are not automatically removed after the test run. The user is responsible to remove them if needed.
Output encoding
Executed commands are, by default, expected to write outputs to the standard output and error streams using the encoding used by the system console. If the command uses some other encoding, that can be configured using the output_encoding
argument. This is especially useful on Windows where the console uses a different encoding than rest of the system, and many commands use the general system encoding instead of the console encoding.
The value used with the output_encoding
argument must be a valid encoding and must match the encoding actually used by the command. As a convenience, it is possible to use strings CONSOLE
and SYSTEM
to specify that the console or system encoding is used, respectively. If produced outputs use different encoding then configured, values got through the result object will be invalid.
Examples:
Start Process | program | output_encoding=UTF-8 | |
Run Process | program | stdout=${path} | output_encoding=SYSTEM |
The support to set output encoding is new in Robot Framework 3.0.
Alias
A custom name given to the process that can be used when selecting the active process.
Examples:
Start Process | program | alias=example | ||
Run Process | python | -c | print 'hello' | alias=hello |
Active process
The test library keeps record which of the started processes is currently active. By default it is latest process started with Start Process, but Switch Process can be used to select a different one. Using Run Process does not affect the active process.
The keywords that operate on started processes will use the active process by default, but it is possible to explicitly select a different process using the handle
argument. The handle can be the identifier returned by Start Process or an alias
explicitly given to Start Process or Run Process.
Result object
Run Process, Wait For Process and Terminate Process keywords return a result object that contains information about the process execution as its attributes. The same result object, or some of its attributes, can also be get using Get Process Result keyword. Attributes available in the object are documented in the table below.
Attribute | Explanation |
---|---|
rc | Return code of the process as an integer. |
stdout | Contents of the standard output stream. |
stderr | Contents of the standard error stream. |
stdout_path | Path where stdout was redirected or None if not redirected. |
stderr_path | Path where stderr was redirected or None if not redirected. |
Example:
${result} = | Run Process | program |
Should Be Equal As Integers | ${result.rc} | 0 |
Should Match | ${result.stdout} | Some t?xt* |
Should Be Empty | ${result.stderr} | |
${stdout} = | Get File | ${result.stdout_path} |
Should Be Equal | ${stdout} | ${result.stdout} |
File Should Be Empty | ${result.stderr_path} |
Boolean arguments
Some keywords accept arguments that are handled as Boolean values true or false. If such an argument is given as a string, it is considered false if it is either an empty string or case-insensitively equal to false
, none
or no
. Other strings are considered true regardless their value, and other argument types are tested using the same rules as in Python.
True examples:
Terminate Process | kill=True | # Strings are generally true. |
Terminate Process | kill=yes | # Same as the above. |
Terminate Process | kill=${TRUE} | # Python True is true. |
Terminate Process | kill=${42} | # Numbers other than 0 are true. |
False examples:
Terminate Process | kill=False | # String false is false. |
Terminate Process | kill=no | # Also string no is false. |
Terminate Process | kill=${EMPTY} | # Empty string is false. |
Terminate Process | kill=${FALSE} | # Python False is false. |
Prior to Robot Framework 2.9, all non-empty strings, including false
and no
, were considered to be true. Considering none
false is new in Robot Framework 3.0.3.
Example
*** Settings *** Library Process Suite Teardown Terminate All Processes kill=True *** Test Cases *** Example Start Process program arg1 arg2 alias=First ${handle} = Start Process command.sh arg | command2.sh shell=True cwd=/path ${result} = Run Process ${CURDIR}/script.py Should Not Contain ${result.stdout} FAIL Terminate Process ${handle} ${result} = Wait For Process First Should Be Equal As Integers ${result.rc} 0
Shortcuts
Get Process Id · Get Process Object · Get Process Result · Is Process Running · Join Command Line · Process Should Be Running · Process Should Be Stopped · Run Process · Send Signal To Process · Split Command Line · Start Process ·Switch Process · Terminate All Processes · Terminate Process · Wait For Process
Keywords
Keyword | Arguments | Documentation | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
Get Process Id | handle=None | Returns the process ID (pid) of the process as an integer. If Notice that the pid is not the same as the handle returned by Start Process that is used internally by this library. | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
Get Process Object | handle=None | Return the underlying If | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
Get Process Result | handle=None, rc=False,stdout=False, stderr=False,stdout_path=False,stderr_path=False | Returns the specified result object or some of its attributes. The given If no other arguments than the optional Examples:
Although getting results of a previously executed process can be handy in general, the main use case for this keyword is returning results over the remote library interface. The remote interface does not support returning the whole result object, but individual attributes can be returned without problems. New in Robot Framework 2.8.2. | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
Is Process Running | handle=None | Checks is the process running or not. If Returns | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
Join Command Line | *args | Joins arguments into one command line string. In resulting command line string arguments are delimited with a space, arguments containing spaces are surrounded with quotes, and possible quotes are escaped with a backslash. If this keyword is given only one argument and that is a list like object, then the values of that list are joined instead. Example:
New in Robot Framework 2.9.2. | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
Process Should Be Running | handle=None,error_message=Process is not running. | Verifies that the process is running. If Fails if the process has stopped. | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
Process Should Be Stopped | handle=None,error_message=Process is running. | Verifies that the process is not running. If Fails if the process is still running. | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
Run Process | command, *arguments,**configuration | Runs a process and waits for it to complete.
Returns a result object containing information about the execution. Note that possible equal signs in Examples:
This keyword does not change the active process.
| ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
Send Signal To Process | signal, handle=None,group=False | Sends the given If Signal can be specified either as an integer as a signal name. In the latter case it is possible to give the name both with or without
This keyword is only supported on Unix-like machines, not on Windows. What signals are supported depends on the system. For a list of existing signals on your system, see the Unix man pages related to signal handling (typically By default sends the signal only to the parent process, not to possible child processes started by it. Notice that when running processes in shell, the shell is the parent process and it depends on the system does the shell propagate the signal to the actual started process. To send the signal to the whole process group, New in Robot Framework 2.8.2. Support for | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
Split Command Line | args, escaping=False | Splits command line string into a list of arguments. String is split from spaces, but argument surrounded in quotes may contain spaces in them. If Examples:
New in Robot Framework 2.9.2. | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
Start Process | command, *arguments,**configuration | Starts a new process on background. See Specifying command and arguments and Process configuration for more information about the arguments, and Run Process keyword for related examples. Makes the started process new active process. Returns an identifier that can be used as a handle to activate the started process if needed. Starting from Robot Framework 2.8.5, processes are started so that they create a new process group. This allows sending signals to and terminating also possible child processes. This is not supported by Jython in general nor by Python versions prior to 2.7 on Windows. | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
Switch Process | handle | Makes the specified process the current active process. The handle can be an identifier returned by Start Process or the Example:
| ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
Terminate All Processes | kill=False | Terminates all still running processes started by this library. This keyword can be used in suite teardown or elsewhere to make sure that all processes are stopped, By default tries to terminate processes gracefully, but can be configured to forcefully kill them immediately. See Terminate Process that this keyword uses internally for more details. | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
Terminate Process | handle=None, kill=False | Stops the process gracefully or forcefully. If By default first tries to stop the process gracefully. If the process does not stop in 30 seconds, or Waits for the process to stop after terminating it. Returns a result object containing information about the execution similarly as Wait For Process. On Unix-like machines graceful termination is done using On Windows graceful termination is done using Examples:
Limitations:
Automatically killing the process if termination fails as well as returning a result object are new features in Robot Framework 2.8.2. Terminating also possible child processes, including using | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
Wait For Process | handle=None, timeout=None,on_timeout=continue | Waits for the process to complete or to reach the given timeout. The process to wait for must have been started earlier with Start Process. If
See Terminate Process keyword for more details how processes are terminated and killed. If the process ends before the timeout or it is terminated or killed, this keyword returns a result object containing information about the execution. If the process is left running, Python Examples:
|
Altogether 15 keywords.
Generated by Libdoc on 2018-04-25 23:41:29.
处理
图书馆版本: | 3.0.4 |
---|---|
图书馆范围: | 全球 |
命名参数: | 支持的 |
介绍
用于运行进程的Robot Framework测试库。
该图书馆有以下主要用途:
这个库是Robot Framework 2.8中的新增功能。
目录
指定命令和参数
无论运行过程和启动过程接受执行命令,并传递给命令作为独立参数,所有参数。这使得使用方便,并且还允许这些关键字自动转义命令和参数中的可能空格和其他特殊字符。请注意,如果命令接受自己接受值的选项,则必须将这些选项及其值作为单独的参数给出。
当运行在壳进程,它也可以给整个命令来执行作为单个字符串。然后,该命令可以包含多个要一起运行的命令。使用此方法时,调用者负责转义。
例子:
运行流程 | $ {工具} $ {/} prog.py | 论据 | 第二个arg有空格 | ||
运行流程 | java的 | -罐 | $ {罐} $ {/} example.jar | - 选项 | 值 |
运行流程 | prog.py“one arg”&& tool.sh | 壳= YES | CWD = $ {}工具 |
从Robot Framework 2.8.6开始,可能的非字符串参数会自动转换为字符串。
流程配置
可以使用可选的关键字参数配置Run Process和Start Process关键字**configuration
。必须在传递给这些关键字的其他参数之后给出配置参数,并且必须使用类似语法name=value
。下面列出了可用的配置参数,然后在后面的章节中进一步讨论。
名称 | 说明 |
---|---|
贝壳 | 指定是否在shell中运行命令。 |
CWD | 指定工作目录。 |
ENV | 指定为进程指定的环境变量。 |
ENV:<名称> | 仅覆盖指定的环境变量。 |
标准输出 | 文件的路径写入标准输出的位置。 |
标准错误 | 文件的路径在哪里写标准错误。 |
output_encoding | 在读取命令输出时使用的编码。 |
别号 | 别名给予该过程。 |
请注意,因为**configuration
使用name=value
语法传递,所以传递给Run Process和Start Process的其他参数中的可能等号必须使用反斜杠转义name\=value
。有关示例,请参阅运行过程。
在shell中运行进程
该shell
参数指定是否在外壳或无法运行的过程。默认情况下,外壳没有使用,这意味着外壳特定命令,就像copy
和dir
在Windows,不可用。但是,您可以在不使用shell的情况下运行shell脚本和批处理文件。
为shell
参数赋予任何非假值,例如shell=True
,更改要在shell中执行的程序。它允许使用shell功能,但也可以使进程调用操作系统依赖。在实际启动的进程和此库之间具有shell也可能干扰与进程的通信,例如停止它并读取其输出。由于这些问题,建议仅在绝对必要时才使用shell。
使用shell时,可以将整个命令作为单个字符串执行。有关示例和更多详细信息,请参阅指定命令和参数部分。
当前的工作目录
默认情况下,子进程将在与父进程相同的目录中执行,执行运行测试的进程。这可以通过使用cwd
参数提供替代位置来更改。在给定路径中的正斜杠自动转换为Windows上的反斜杠。
重定向到文件时,标准输出和错误流也与可能使用cwd
参数设置的当前工作目录相关。
例:
运行流程 | prog.exe | CWD = $ {ROOT} /目录 | 标准输出= stdout.txt |
环境变量
默认情况下,子进程将获取父进程的环境变量的副本。该env
参数可用于为子项提供自定义环境作为Python字典。如果只需要指定某个环境变量,则可以使用该env:<name>=<value>
格式来设置或仅覆盖该命名变量。也可以将这两种方法结合使用。
例子:
运行流程 | 程序 | ENV = $ {} ENVIRON | |
运行流程 | 程序 | ENV:HTTP_PROXY = 10.144.1.10:8080 | ENV:PATH =%{PATH} $ {:} $ {} PROGDIR |
运行流程 | 程序 | ENV = $ {} ENVIRON | ENV:EXTRA =值 |
标准输出和错误流
默认情况下,运行进程以使其标准输出和标准错误流保留在内存中。这通常工作正常,但如果有很多输出,输出缓冲区可能会满,程序可能会挂起。此外,在Jython上,如果进程终止,写入这些内存缓冲区的所有内容都可能会丢失。
为了避免上述问题,可以使用stdout
和stderr
参数来指定文件系统上重定向输出的文件。如果其他进程或其他关键字需要以某种方式读取或操作输出,这也很有用。
给定stdout
和stderr
路径相对于当前工作目录。在给定路径中的正斜杠自动转换为Windows上的反斜杠。
作为一项特殊功能,可以使用标准错误将标准错误重定向到标准输出stderr=STDOUT
。
无论是否重定向到文件的输出,都可以通过进程结束时返回的结果对象访问它们。命令期望使用控制台编码写入输出,但是如果需要,可以使用参数配置输出编码output_encoding
。
例子:
$ {result} = | 运行流程 | 程序 | 标准输出= $ {TEMPDIR} /stdout.txt | 标准错误= $ {TEMPDIR} /stderr.txt |
记录很多 | stdout:$ {result.stdout} | stderr:$ {result.stderr} | ||
$ {result} = | 运行流程 | 程序 | 标准错误= STDOUT | |
日志 | 所有输出:$ {result.stdout} |
请注意,测试运行后不会自动删除创建的输出文件。如果需要,用户有责任将其删除。
输出编码
默认情况下,执行的命令希望使用系统控制台使用的编码将输出写入标准输出和错误流。如果该命令使用某些其他编码,则可以使用该output_encoding
参数进行配置。这在Windows上使用与系统其他部分不同的编码时非常有用,并且许多命令使用通用系统编码而不是控制台编码。
与output_encoding
参数一起使用的值必须是有效编码,并且必须与命令实际使用的编码匹配。为方便起见,可以使用字符串CONSOLE
并SYSTEM
分别指定使用控制台或系统编码。如果生成的输出使用随后配置的不同编码,则通过结果对象获得的值将无效。
例子:
开始流程 | 程序 | output_encoding = UTF-8 | |
运行流程 | 程序 | 标准输出= $ {路径} | output_encoding = SYSTEM |
设置输出编码的支持是Robot Framework 3.0中的新增功能。
别号
选择活动进程时可以使用的自定义名称。
例子:
开始流程 | 程序 | 别名=示例 | ||
运行流程 | 蟒蛇 | -C | 打印'你好' | 别名=你好 |
积极的过程
测试库记录哪些已启动的进程当前处于活动状态。默认情况下,它是使用Start Process启动的最新流程,但Switch Process可用于选择其他流程。使用“运行进程 ”不会影响活动进程。
默认情况下,对已启动进程执行操作的关键字将使用活动进程,但可以使用该handle
参数显式选择其他进程。该手柄可以是该标识符由返回开始处理或alias
显式地提供给启动过程或运行过程。
结果对象
“运行进程”,“ 等待进程”和“ 终止进程”关键字返回一个结果对象,该对象包含有关进程执行的信息作为其属性。使用Get Process Result关键字也可以获得相同的结果对象或其某些属性。对象中可用的属性记录在下表中。
属性 | 说明 |
---|---|
RC | 将进程的代码作为整数返回。 |
标准输出 | 标准输出流的内容。 |
标准错误 | 标准错误流的内容。 |
stdout_path | stdout被重定向或未重定向的路径None 。 |
stderr_path | 重定向stderr或未重定向的路径None 。 |
例:
$ {result} = | 运行流程 | 程序 |
应该与整数相等 | $ {} result.rc | 0 |
应该匹配 | $ {} result.stdout | 一些t?xt * |
应该是空的 | $ {} result.stderr | |
$ {stdout} = | 获取文件 | $ {} result.stdout_path |
应该是平等的 | $ {}标准输出 | $ {} result.stdout |
文件应该是空的 | $ {} result.stderr_path |
布尔参数
某些关键字接受以布尔值true或false处理的参数。如果这样的参数以字符串形式给出,则如果它是空字符串或不区分大小写,则被视为false false
,none
或no
。无论其值如何,其他字符串都被视为true,其他参数类型使用与Python相同的规则进行测试。
真实的例子:
终止流程 | 杀=真 | #字符串通常是正确的。 |
终止流程 | 杀= YES | #与上述相同。 |
终止流程 | 杀= $ {TRUE} | #Pcthon True 是真的。 |
终止流程 | 杀= $ {42} | #0以外的数字为真。 |
错误的例子:
终止流程 | 杀=假 | #String false 为false。 |
终止流程 | 杀=无 | #字符串no 也是false。 |
终止流程 | 杀= $ {EMPTY} | #Empty字符串为false。 |
终止流程 | 杀= $ {FALSE} | #Python False 是假的。 |
在Robot Framework 2.9之前,所有非空字符串(包括false
和no
)都被认为是真的。none
在Robot Framework 3.0.3中考虑false是新的。
例
***设置***
库进程
套件拆解 终止所有进程 kill = True ***测试用例***
示例启动进程 程序arg1 arg2 alias = First
$ {handle} = 启动进程 command.sh arg | command2.sh shell = True cwd = / path
$ {result} = 运行流程 $ {CURDIR} /script.py
不应包含 $ {result.stdout} FAIL
终止流程 $ {handle}
$ {result} = 等待流程 优先
应该与整数相等
$ {result.rc} 0
快捷键
获取进程ID · 获取进程对象 · 获取进程结果 · 进程正在运行 · 加入命令行 · 进程应该运行 · 进程应该停止 · 运行进程 · 发送信号进行处理 · 拆分命令行 · 启动进程 · 切换进程 · 终止所有进程 · 终止进程 · 等待进程
关键词
关键词 | 参数 | 文档 | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
获取进程ID | 手柄=无 | 以整数形式返回进程的进程ID(pid)。 如果 请注意,pid与此库内部使用的Start Process返回的句柄不同。 | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
获取流程对象 | 手柄=无 | 返回底层 如果 | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
获取流程结果 | handle = None, rc = False, stdout = False, stderr = False, stdout_path = False, stderr_path = False | 返回指定的结果对象或其某些属性。 给定 如果没有 例子:
虽然获取先前执行的进程的结果通常很方便,但此关键字的主要用例是通过远程库接口返回结果。远程接口不支持返回整个结果对象,但可以毫无问题地返回各个属性。 机器人框架2.8.2中的新功能。 | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
流程正在运行 | 手柄=无 | 检查是否正在运行。 如果
| ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
加入命令行 | * ARGS | 将参数连接到一个命令行字符串。 在结果命令行中,字符串参数用空格分隔,包含空格的参数用引号括起来,可能的引号用反斜杠转义。 如果此关键字只给出一个参数,并且是一个像object这样的列表,那么将加入该列表的值。 例:
Robot Framework 2.9.2中的新功能。 | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
流程应该运行 | handle = None, error_message =进程未运行。 | 验证进程是否正在运行。 如果 如果进程已停止,则会失败。 | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
流程应该停止 | handle = None, error_message =进程正在运行。 | 验证进程未运行。 如果 如果进程仍在运行,则会失败。 | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
运行流程 | 命令, *参数, **配置 | 运行一个进程并等待它完成。
返回包含有关执行信息的结果对象。 请注意, 例子:
此关键字不会更改活动进程。
| ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
发送信号进行处理 | signal, handle = None, group = False | 将给定发送 如果 可以将信号指定为整数作为信号名称。在后一种情况下,可以给出带或不带
此关键字仅在类Unix机器上支持,而不在Windows上支持。支持哪些信号取决于系统。有关系统上现有信号的列表,请参阅与信号处理相关的Unix手册页(通常 默认情况下,仅将信号发送到父进程,而不是发送给它启动的子进程。请注意,在shell中运行进程时,shell是父进程,它取决于系统shell是否将信号传播到实际启动的进程。 要将信号发送到整个进程组, 机器人框架2.8.2中的新功能。支持 | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
拆分命令行 | args, escaping = False | 将命令行字符串拆分为参数列表。 字符串从空格中拆分,但用引号括起来的参数可能包含空格。如果 例子:
Robot Framework 2.9.2中的新功能。 | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
开始流程 | 命令, *参数, **配置 | 在后台启动新流程。 有关参数的详细信息,请参阅指定命令和参数以及进程配置 ;有关相关示例,请参阅Run Process关键字。 使启动的进程成为新的活动进程。返回一个标识符,该标识符可用作句柄以在需要时激活已启动的进程。 从Robot Framework 2.8.5开始,启动进程以便创建新的进程组。这允许向可能的子进程发送信号并终止它们。Jython一般也不支持这种方法,也不支持Windows上2.7之前的Python版本。 | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
切换过程 | 处理 | 使指定的进程成为当前活动进程。 该手柄可以是由返回的标识符开始处理或 例:
| ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
终止所有进程 | 杀=假 | 终止此库启动的所有仍在运行的进程。 此关键字可以在套件拆解或其他地方使用,以确保所有进程都已停止, 默认情况下尝试正常终止进程,但可以配置为立即强制终止它们。有关详细信息,请参阅此关键字在内部使用的终止进程。 | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
终止流程 | handle = None, kill = False | 优雅地或强制地停止该过程。 如果 默认情况下,首先尝试正常停止该过程。如果进程在30秒内没有停止,或者 在终止进程后等待进程停止。返回一个结果对象,其中包含与Wait For Process类似的执行信息。 在类似Unix的机器上,使用 在Windows上 例子:
限制:
如果终止失败以及返回结果对象,则自动终止进程是Robot Framework 2.8.2中的新功能。终止可能的子进程,包括 | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
等待过程 | handle = None, timeout = None, on_timeout = continue | 等待进程完成或达到给定的超时。 必须先使用“ 启动过程”启动等待过程。如果
有关如何终止和终止进程的详细信息,请参阅Terminate Process关键字。 如果进程在超时之前结束或者终止或终止,则此关键字返回包含有关执行信息的结果对象。如果进程保持运行, 例子:
|
共有15个关键字。
由Libdoc于2018-04-25 23:41:29 生成。