How to click on a particular check box?

x = find()
click(x.inside().find())

In additional to that, there's an alternative way to do the same thing.

x = find()
click(x.left().find())

Attachments