1. 程式人生 > >robot framework文字判斷

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+空格檢視使用解釋