Troubleshooting In check box

image(12)

1 Like

Hey @praveenchintu374

I hope you are not doing an automation in RDP.

With this selector did you try please ?

Thanks
#nK

1 Like

Hi @praveenchintu374 ,

Have you tried enabling the ClickBeforeTyping property of Send Hot Key Activity ?
I do not think this is what you are looking for however, as it also acts similar to a Click Activity but you may check this as well.
image

Let us know your reason for Stricting your task to Send Hot Keys, maybe we could provide a work around.

1 Like

@praveenchintu374

Try →
Check\Unchecked activity.

Try the JavaScript injection activity. Go into the developer tools in your browser, right click on the element and see if there is an ID. If there is, you can use:

document.getElementById("ID_of_element").checked;

If there is not an ID, look at the attributes available on the element and do a little research on JavaScript. There is almost always a way.