I’m having trouble using the data source for Uxer tables.
Write operations work fine, but I can’t get the click action to work.
Is this possible? How should I write the code?
I’ve already tried these two options without success:
Click Text “{Postos[1].itau}”
Click Text {Postos[1].itau}
Hi @dudupst , Seems we have an issue there.
Could you please try this as an alternative solution. It is working.
{MyData} = {Postos[1][“Itau”]}
Click Text {MyData}
This will also work:
{MyData} = {Postos[1].itau}
Click Text {MyData}
Make sure there is no parameter with the same name: {MyData}.
It works perfectly—even for running in a loop, which is exactly what I have in mind for this formula.
Thanks @Zekeriya
For {idx} in 1 to 14
{VARIAVEL} = {Postos[{idx}].itau}
Click Text {VARIAVEL}
1 Like