Forum Discussion
Thank you for your reply. Earlier we used click() but we need to give x,y coordinates in that click. Problem with that method is if the coordinates of that node changes then the script will fail. If I new node is added then coordinates will change. Looking for a more long-term solution.
I didn't find ClickChecked method for either grid or nodes.
Thanks.
You don't need to include co-ordinates. If you have
checkboxObj.Click() that will click in the center of the checkbox.
Now, if that doesn't work for you, you will still need to somehow trigger the event that populates the checkbox. Look through the methods your object to see if there is something like "on click" or "on checked" or something like that. This is what it comes down to. Without knowing more details about teh specific component type you're working with, we can't give more specific answers.