RobotFramework-关键字
地址:https://github.com/NitorCreations/RobotFramework-EclipseIDE/tree/master/plugin/robot-indices
Collections-2.6.3
Append To List
Combine Lists
Convert To List
Copy Dictionary
Copy List
Count Values In List
Create Dictionary
Dictionaries Should Be Equal
Dictionary Should Contain Key
Dictionary Should Contain Sub Dictionary
Dictionary Should Contain Value
Dictionary Should Not Contain Key
Dictionary Should Not Contain Value
Get Dictionary Items
Get Dictionary Keys
Get Dictionary Values
Get From Dictionary
Get From List
Get Index From List
Get Slice From List
Insert Into List
Keep In Dictionary
List Should Contain Sub List
List Should Contain Value
List Should Not Contain Duplicates
List Should Not Contain Value
Lists Should Be Equal
Log Dictionary
Log List
Remove From Dictionary
Remove From List
Remove Values From List
Reverse List
Set List Value
Set To Dictionary
Sort List
DatabaseLibrary-1.0
Check If Exists In Database
Check If Not Exists In Database
Connect To Database
Disconnect From Database
Execute Sql Script
Query
RobotFramework-2.6.3
Call Method
Catenate
Comment
Convert To Binary
Convert To Boolean
Convert To Hex
Convert To Integer
Convert To Number
Convert To Octal
Convert To String
Create List
Evaluate
Exit For Loop
Fail
Fatal Error
Get Count
Get Length
Get Library Instance
Get Time
Get Variable Value
Get Variables
Import Library
Import Resource
Import Variables
Keyword Should Exist
Length Should Be
Log
Log Many
Log Variables
No Operation
Regexp Escape
Remove Tags
Repeat Keyword
Replace Variables
Run Keyword
Run Keyword And Continue On Failure
Run Keyword And Expect Error
Run Keyword And Ignore Error
Run Keyword If
Run Keyword If All Critical Tests Passed
Run Keyword If All Tests Passed
Run Keyword If Any Critical Tests Failed
Run Keyword If Any Tests Failed
Run Keyword If Test Failed
Run Keyword If Test Passed
Run Keyword If Timeout Occurred
Run Keyword Unless
Run Keywords
Set Global Variable
Set Library Search Order
Set Log Level
Set Suite Variable
Set Tags
Set Test Message
Set Test Variable
Set Variable
Set Variable If
Should Be Empty
Should Be Equal
Should Be Equal As Integers
Should Be Equal As Numbers
Should Be Equal As Strings
Should Be True
Should Contain
Should Contain X Times
Should End With
Should Match
Should Match Regexp
Should Not Be Empty
Should Not Be Equal
Should Not Be Equal As Integers
Should Not Be Equal As Numbers
Should Not Be Equal As Strings
Should Not Be True
Should Not Contain
Should Not End With
Should Not Match
Should Not Match Regexp
Should Not Start With
Should Start With
Sleep
Variable Should Exist
Variable Should Not Exist
Wait Until Keyword Succeeds
${CURDIR}
${TEMPDIR}
${EXECDIR}
${/}
${:}
SeleniumLibrary-2.8
Add Location Strategy
Alert Should Be Present
Assign Id To Element
Call Selenium Api
Capture Page Screenshot
Capture Screenshot
Checkbox Should Be Selected
Checkbox Should Not Be Selected
Choose Cancel On Next Confirmation
Choose File
Click Button
Click Element
Click Flex Element
Click Image
Click Link
Close All Browsers
Close Browser
Close Window
Confirm Action
Current Frame Contains
Current Frame Should Contain
Delete All Cookies
Delete Cookie
Double Click Element
Double Click Flex Element
Drag And Drop
Element Should Be Disabled
Element Should Be Enabled
Element Should Be Visible
Element Should Contain
Element Should Not Be Visible
Element Text Should Be
Execute Javascript
Flex Element Property Should Be
Flex Element Should Exist
Flex Element Should Not Exist
Flex Element Text Should Be
Focus
Frame Should Contain
Frame Should Contain Text
Get Alert Message
Get All Links
Get Cookie Value
Get Cookies
Get Element Attribute
Get Horizontal Position
Get List Items
Get Location
Get Matching Xpath Count
Get Selected List Label
Get Selected List Labels
Get Selected List Value
Get Selected List Values
Get Source
Get Table Cell
Get Text
Get Title
Get Value
Get Vertical Position
Get Window Identifiers
Get Window Names
Get Window Titles
Go Back
Go To
Input Password
Input Text
Input Text Into Flex Element
List Selection Should Be
List Should Have No Selections
Location Should Be
Location Should Contain
Log Source
Maximize Browser Window
Mouse Down
Mouse Down On Image
Mouse Down On Link
Mouse Out
Mouse Over
Mouse Up
Open Browser
Open Context Menu
Page Should Contain
Page Should Contain Button
Page Should Contain Checkbox
Page Should Contain Element
Page Should Contain Image
Page Should Contain Link
Page Should Contain List
Page Should Contain Radio Button
Page Should Contain Textfield
Page Should Not Contain
Page Should Not Contain Button
Page Should Not Contain Checkbox
Page Should Not Contain Element
Page Should Not Contain Image
Page Should Not Contain Link
Page Should Not Contain List
Page Should Not Contain Radio Button
Page Should Not Contain Textfield
Press Key
Press Key Native
Radio Button Should Be Set To
Radio Button Should Not Be Selected
Register Keyword To Run On Failure
Reload Page
Select All From List
Select Checkbox
Select Flex Application
Select Frame
Select From Flex Element
Select From List
Select Radio Button
Select Window
Set Selenium Speed
Set Selenium Timeout
Simulate
Start Selenium Server
Stop Selenium Server
Submit Form
Switch Browser
Table Cell Should Contain
Table Column Should Contain
Table Footer Should Contain
Table Header Should Contain
Table Row Should Contain
Table Should Contain
Textfield Should Contain
Textfield Value Should Be
Title Should Be
Unselect Checkbox
Unselect Frame
Unselect From List
Wait For Condition
Wait For Flex Element
Wait Until Page Contains
Wait Until Page Contains Element
Wait Until Page Loaded
Xpath Should Match X Times
RobotFramework-关键字的更多相关文章
- 测试工具之RobotFramework关键字和快捷键
RF中关键字很多,即使经常使用也有些关键字没有使用过,所以我们就需要记住一些常用的关键字,在使用中本人整理了部分关键字.快捷键和部分RF的常识 1.F5 如果只记得关键字部分,可以通过F5呼出关键字查 ...
- RobotFramework关键字返回参数
业务关键字[登录]返回参数 调用时直接把return的参数值写在业务关键字的最前面,就可以使用关键字的返回值了
- robotframework关键字
*** Settings ***Library Selenium2Library *** Keywords ***Checkbox应该不被选择 [Arguments] ${locator} Check ...
- robotframework常用关键字
robotframework关键字 可以将关键字看作是处理数据的方法.robotframework的关键字和测试数据组成了测试用例. robotframework关键字包括系统关键字和用户关键字.用户 ...
- 自动化测试框架Cucumber和RobotFramework的实战对比
转自: http://www.infoq.com/cn/articles/cucumber-robotframework-comparison 一.摘要 自动化测试可以快速自动完成大量测试用例,节 ...
- Robot Framework自动化测试框架核心指南-如何使用Java编写自定义的RobotFramework Lib
如何使用Java编写自定义的RobotFramework Lib 本文包括2个章节 1. Robot Frdamwork中如何调用java Lib库 2.使用 java编写自定义的Lib 本文作者为: ...
- Robotframework-Appium系列:登录操作
之前Appium的环境已经配置完成(参考Robotframework-Appium系列:安装配置),接下来就是如何使用Appium来完成我们的apk的测试工作. 一.环境准备 所需的软件列表如下 Ro ...
- 自动化测试框架Cucumber和Robot Framework的实战对比
自动化测试框架Cucumber和RobotFramework的实战对比 一.摘要 自动化测试可以快速自动完成大量测试用例,节约巨大的人工测试成本:同时它需要拥有专业开发技能的人才能完成开发,且需要大量 ...
- 作为一个新手的Oracle(DBA)学习笔记【转】
一.Oracle的使用 1).启动 *DQL:数据查询语言 *DML:数据操作语言 *DDL:数据定义语言 DCL:数据控制语言 TPL:事务处理语言 CCL:指针控制语言 1.登录 Win+R—cm ...
- RobotFramework自动化测试框架的基础关键字(五)
1.1.1 Run Keyword If判断的使用 Run Keyword If是一个常用的用来做逻辑判断的关键字,意思是如果满足了某一个判断条件,然后就会执行关键字,我们对list3中 ...
随机推荐
- Mysql远程登录授权
1.改表法. 请使用mysql管理工具,如:SQLyog Enterprise 可能是你的帐号不允许从远程登陆,只能在localhost.这个时候只要在localhost的那台电脑使用mysql管理工 ...
- js ajax乱码查看\u8fdb\u53e3
document.write('\u8fdb\u53e3') //在页面上看乱码转为中文 或在按F12 在console里查看 直接打'\u8fdb\u53e3'
- TextField 限定只输入数字的方法
func textField(textField: UITextField, shouldChangeCharactersInRange range: NSRange, replacementStri ...
- php异常处理示例
php异常处理使用示例,代码说明了普通错误和致命错误捕获及处理的方法. 代码如下: <?php //禁止错误输出 error_reporting(0); //设置错误处理器 set_error ...
- js构造函数,索引数组和属性的属性
本文主要介绍和小结js的构造函数,关联数组的实现方式和使用,及不可变对象和它的实现方式及他们使用过程中要注意的点 <script> function p(){ var len=argume ...
- 相比于汇编语言的准确性c语言延时精确度如何提升
只要合理的运用,C还是可以达到意想不到的效果.很多朋友抱怨C效率比汇编差了很多,其实如果对Keil C的编译原理有一个较深入的理解,是可以通过恰当的语法运用,让生成的C代码达到最优化.即使这看起来不大 ...
- 第七章 管理类型(In .net4.5) 之 使用类型
1. 概述 本章介绍 值类型的装箱拆箱.类型转换 以及 C#4.0新推出的 dynamic 关键字. 2. 主要内容 2.1 装箱和拆箱 2.2 类型转换 有四种方式可以实现类型转换: ① 隐式转换: ...
- 7.python字符串-内置方法分析
上篇对python中的字符串内置方法进行了列举和简单说明,但这些方法太多,逐一背下效率实在太低,下面我来对这些方法按照其功能进行总结: 1.字母大小写相关(中文无效) 1.1 S.upper() -& ...
- JQuery ----文档处理
1.append(content|fn) 概述 向每个匹配的元素内部追加内容. 这个操作与对指定的元素执行appendChild方法,将它们添加到文档中的情况类似. 2.appendTo(conten ...
- hdu 1427 速算24点
题目连接 http://acm.hdu.edu.cn/showproblem.php?pid=1427 速算24点 Description 速算24点相信绝大多数人都玩过.就是随机给你四张牌,包括A( ...