【发布时间】:2019-07-18 23:11:28
【问题描述】:
在最近将我的机器人框架版本从 3.0 升级到 3.1.1 之后,我用来直接连接的变量就像
Element Should Be Visible ${el}[contains(@class,'icon-expanded')] 不再起作用。
我找到了一种解决方法,需要我显式连接变量,而不是像上面指定的那样直接使用它
${el1} = Catenate SEPARATOR= ${el} [contains(@class,'icon-expanded')]
Element Should Be Visible ${el1}
我在发行说明中看不到任何说明这不再有效的内容。除了使用显式连接之外,还有其他方法吗?
【问题讨论】:
标签: automated-tests robotframework