How to pass a Variable into CV click descriptor

Hi Guys,

Currently having an issue with the CV click activity. I am trying to pass a variable to the descriptor in order to click a particular file from a list but I don’t quite get how to do it…
This is what was picked by the activity - “Target: Text ‘2020/263’ (204,525,48,10)”
However, I want to replace the 2020/263 with a variable e.g “Target: Text ‘“jdate”’ (204,525,48,10)” but I do not know what this part “(204,525,48,10)” represent or how to replace it with a variable.

P.s I am using CV because I am remoting to a server to carry out the activities

Not having much experience with CV but guess “(204,525,48,10)” are coordinates.

Cheers

Hi please try this

“Target: Text ‘“+jdate+”’ (204,525,48,10)”

Hi same case here, but I manage to create a variable just today, and I am hoping that it can help you also. You just need to assign the value , assignment activity Example:

name = row.item(“columnnameofdatatablehere”).tostring

and i manage to come up with this code:
“Target: Icon (1320,159,16,12)” +
“Anchor: Text “+”'”+name+“'”+" (1337,160,27,10)"

it may differ from your cvdescriptor to edit. Thank you!

Target: Text ‘2020/263’ (204,525,48,10)”

Please try this on your code:
“Target: Text”+ “‘”+jdate+“’”+"(204,525,48,10)”