这篇主要讲GET Text ,Get Element Attribute 和 Input Text这三个关键词
第一个 GET Text 这个关键词的主要用途是获取网页的值,会带一个参数
(写到这里就必须了解一下Xpath,这个是用于定位的工具,后面会写到)
用法 例如:${ret} Get Text xpath=//*[@id='setf']
效果(基于百度首页): 打印${ret} 会出现 把百度设为主页
第二个Get Element Attribute这个关键词主要用于获取标签的属性,带两个参数
用法 例如 : ${ret1} Get Element Attribute xpath=//*[@id='setf'] target
效果 : 打印${ret1}会出现 _blank
第三个 Input Text这个关键词主要用途是把参数input到页面 , 带两个参数
用法 例如: Input Text xpath=//*[@id='kw'] robot framework
效果 : 把robot framework 输入到百度搜索框内
具体代码如下:
*** test cases *** test1 keywords test Open Browser https://www.baidu.com Chrome Sleep 2 ${ret1} Get Text xpath=//*[@id='setf'] Log to console ${ret1} ${ret2} Get Element Attribute xpath=//*[@id='setf'] target Log to console ${ret2} Input Text xpath=//*[@id='kw'] robot framework Sleep 2 Close browser
OK,下篇会介绍怎么点击,进行搜索 :)