robot framework文本判断

在使用robot framework时需要获取文本,然后对比文本内容来判断操作是否成功,在这里获取文本使用:

Get text或者get value

Get text时后面的地址定位信息(location)如果是span元素,要加[text()]。

对比时有:

Should Be Equal As Integers/ Numbers/Strings,分别是对比整数、数字、字符串的。除了要相同还有不相同,如:Should Not Be Equal As Integers/ Numbers/Strings。

还有以什么字符开头,结尾should start with、should end with。

模糊匹配的:Should Match Regexp,Should Match。

具体使用可以按Ctrl+Alt+空格查看使用解释

你可能感兴趣的:(测试)