Jump to content

Vipan

Members
  • Posts

    3
  • Joined

  • Last visited

Recent Profile Visitors

The recent visitors block is disabled and is not being shown to other users.

Vipan's Achievements

Seeker

Seeker (1/7)

0

Reputation

  1. Hi, While automating a desktop application, i came accross a window table just like webtable but the CLASS is GridPad_32. The entire table is single control, i can not select a partical row or cell. I want to read the content of the table. Can someone help pls? Can someone tell which commands shall i try? So dar, i tried ControlGetText, _GUICtrlLustView but no luck.
  2. If you are integrating autoIt with Java and if you want to click on a button, pls try below: 1. Ensure you have AutoItX jar added to your java project. 2. Ensure you have registered AutoItX dll file in C:/Windows/System32 folder. 3. Ensure you are loading Jacob.dll in your java project After that, try using autoItx commands AutoItX autoIt= new AutoItX(); autoIt.winActivate("Open"); autoIt.winWaitActive("Open"); autoIt.controlClick("Open","","Button2","left"); For steps 1 to 3, refer to this link https://testguild.com/selenium-autoit/
  3. Hi, I have developed Java maven based framework and integrated AutoIt in it. I am automated a desktop application. During automation, I am facing below issue. Can someone please guide me? 1. I am unable to select a menu option from a nested tree view: Example- TreeTitle1 TreeTitle1.1 TreeOption ToSelect In above case, TreeTitle1 is a folder in which TreeTitle2 is another folder and the TreeOptionToSelect is the one i want to select. I tried below command: AutoItX autoIt = new AutoItX(); autoIt.controlTreeViewExpand(pagetitle,"",treecontrolname,"#0|#0"); autoIt.controlTreeViewSelect(pagetitle,"",treecontrolname,"#0|#0|#0"); But it didn't work... kindly help
×
×
  • Create New...