Get Matching Xpath Count 不 return 匹配元素的数量

Get Matching Xpath Count doesn't return the number of matching elements

我正在使用 RobotFramework 并尝试获取匹配 'xpath' 的元素数量。

${count}=    Get Matching Xpath Count    //*[@id="alertForm:alertDetailTabSet:0:neTable:tbody"]/tr

'xpath' 必须正确。当我在网站上通过 xpath 搜索时,它找到了 18 个元素,没关系。当我开始测试然后查看日志输出时 ${count} 等于零。应该也是十八吧

有谁知道这是怎么回事?提前致谢!!!

你试过 Get Count 了吗?

${count}    Get Count    ${YourXpath}
log ${count}

尝试使用关键字获取元素计数

${count} 获取元素计数 ${YourXpath}

日志 ${count}