我正在尝试检查元素是否可见,如果可见,则仅检查 UI 属性,但以下命令给出错误“异常是 com.galenframework.parser.SyntaxException:JavaScript 错误内部语句”
@forEach [stats_count-*] as itemName, index as i
@if ${isVisible("stats_count-"+{index})}
${itemName}:
height 30 to 35 px
width 35 to 45 px
css font-size is "16px"
css font-family contains "NeoRegular"
css color is "rgba(82, 82, 82, 1)"
我也尝试了下面的代码,虽然它没有给出错误,但它也跳过了所有可见元素。
@if ${isVisible("stats_count-*")}
有什么我想念的吗?