Library version: | 3.0.4 |
---|---|
Library scope: | global |
Named arguments: | supported |
Robot Framework test library for running processes.html
This library utilizes Python's subprocess module and its Popen class.java
The library has following main usages:python
This library is new in Robot Framework 2.8.shell
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.api
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.app
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.less
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.ide
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.函數
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.
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 |
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 |
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.
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.
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 |
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.
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} |
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.
*** 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
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
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
參數指定是否在外殼或沒法運行的過程。默認狀況下,外殼沒有使用,這意味着外殼特定命令,就像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 生成。