Forum Discussion

shilpi_agarwal's avatar
shilpi_agarwal
Contributor
8 years ago

Recognition of GUI Controls from TestComplete tool

Can you please confirm Whether Test Complete tool recognize the GUI's widgets? GUI application is Windows Desktop developed in OpenEdge 11.6 and I am not unable to recognize the Window widget or fill-in widget from the Test Complete. Script is written in VBScripting language. Sub Test1 Dim prowin Dim CWin Dim DEFAULTFRAME Dim tbUserName Dim tbPassword TestedApps.prowin.Run Set prowin = Aliases.prowin Set CWin = prowin.C-Win End Sub Here C-Win -- GUI ?Window Name. Please suggest How to use GUI application Control from Test Complete tool. I really need your help team.

8 Replies

    • shilpi_agarwal's avatar
      shilpi_agarwal
      Contributor

      Object spy for the Window

       

       

      Object spy for UserName (fill-in)  widget

       

       

       

      Obje

      • baxatob's avatar
        baxatob
        Community Hero

        Hi,

         

        As I can see, your GUI elements are perfectly recognized and you can start interact with them.

        E.g. if you want to type "Name" into the UserName textbox, just try:

         

        Set textbox = Aliases.prowin.wndProMainWin.ProClientWin.ProFrame.Edit
        
        textbox.Keys "Name"

        etc...