Forum Discussion

sivakarthik's avatar
sivakarthik
Contributor
6 years ago
Solved

How to check the pop-up window X button check in GUI

Hello every one,   I would like to do the GUI test for Window application. Actually I am trying to test the window pop- up item.  There I am checking the yes / no  and x buttons . After the Toolb...
  • AlexKaras's avatar
    6 years ago

    Hi SivaKatheek,

     

    > Aliases.OmegaClient2.VCLObject("UserChangePassword").Exists

    When you use the fully qualified object name in your test code, TestComplete assumes that you need this object for subsequent actions and thus reports an error if the object cannot be found.

    If the object may not exists, then you need to try to find it and proceed according to the search result.

    .WaitXXX() method must be used to tell TestComplete to try to search for the object and not report an error if the object is not found.

    Thus,

    Aliases.OmegaClient2.VCLObject("UserChangePassword").Exists

    must be changed to

    Aliases.OmegaClient2.WaitVCLObject("UserChangePassword", 500).Exists

     

  • sivakarthik's avatar
    sivakarthik
    6 years ago

    Dear AlexKaras, 

     

    Thank you very much for the info. Now, it works fine

     

    Thanks again

    Regards

    SivaKartheek Sreeram