要素が表示されているかどうかを確認しようとしています。表示されている場合はUIプロパティのみを確認しますが、以下のコマンドはエラー「Exception is com.galenframework.parser.SyntaxException: JavaScript error inside statement」を示しています
@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-*")}
私が欠けているものはありますか?