Forum Discussion

techgirlbb's avatar
techgirlbb
Contributor
7 years ago
Solved

Check box _ Enable property is capturing as TRUE when object is disabled

I am trying to insert Object Checkpoint for checkbox when it is disabled. when I capture properties it Object Spy is capturing the Enabled = True instead of False.

 

refer the screen shot

 

Guide me if I am  missing any

  • techgirlbb's avatar
    techgirlbb
    7 years ago

    Thanks Robert for reply. I was figiredout the property  for the control

2 Replies

  • tristaanogre's avatar
    tristaanogre
    Esteemed Contributor

    The "enabled" property does not correspond to the state of the checkbox.  It has to do with whether or not the control itself is enabled and available for interaction.  What you want to look for is a property like wState, wChecked, or something similar.  That will indicate whether or not the box is actually checked.

    • techgirlbb's avatar
      techgirlbb
      Contributor

      Thanks Robert for reply. I was figiredout the property  for the control