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中 ...
随机推荐
- Eruda——手机网页前端调试面板
前言 进行移动端网页开发时,想要查看手机浏览器信息从来都不是一件容易的事.特别是当目标环境为APP内置WebView,需要调用特定的JsBridge接口时,你根本都干不了什么,只能一遍又一遍地修改代码 ...
- Java应用架构的演化之路
Java应用架构的演化之路 当我们架设一个系统的时候通常需要考虑到如何与其他系统交互,所以我们首先需要知道各种系统之间是如何交互的,使用何种技术实现. 1. 不同系统不同语言之间的交互 现 在我们常见 ...
- 【Windows】如何判断当前鼠标是否按下左键或右键
在delphi中,很多窗体和控件的鼠标事件里面已经将鼠标按键状态封装好传给响应事件的函数,所以这种情况直接使用就可以,但在某些时候,我们没有这些事件可以处理时,想判断鼠标按键是否按下的状态,就需要借助 ...
- 计算系数 (codevs 1137) 题解
[问题描述] 给定一个多项式(ax + by)^k,给定a.b.k.n.m,请求出多项式展开后x^n y^m项的系数. [样例输入] 1 1 3 1 2 [样例输出] 3 [解题思路] 本题为NOIP ...
- mini2440裸机之MMU(二)(mmu.c) (转)
分类: 嵌入式 http://blog.chinaunix.net/uid-26435987-id-3082166.html(转) /********************************* ...
- Node.js中的模块化
每天一篇文章来记录记录自己的成长吧.大二,该静心了.加油~ 好了,废话不多说,今天说说nodejs中的模块化.(注:此文为自己对书nodejs实战的总结) nodejs一个重要的特性就是模块化,模块就 ...
- super的用法
1.调用父类的构造方法子类可以调用由父类声明的构造方法.但是必须在子类的构造方法中使用super关键字来调用. 2.操作被隐藏的成员变量和被覆盖的成员方法如果想在子类中操作父类中被隐藏的成员变量和被覆 ...
- hdu 5311 Hidden String
题目连接 http://acm.hdu.edu.cn/showproblem.php?pid=5311 Hidden String Description Today is the 1st anniv ...
- hdu 1880 魔咒词典
题目连接 http://acm.hdu.edu.cn/showproblem.php?pid=1880 魔咒词典 Description 哈利波特在魔法学校的必修课之一就是学习魔咒.据说魔法世界有10 ...
- ViewSwitcher使用范例
一.简介 ViewSwitcher适用于两个视图带动画效果的切换.这里实现两个视图切换的功能,并附带滑屏效果. 二.截图 二.范例代码 带动画效果的切换视图一和视图二. xml <ViewSwi ...