Effective scripting option to Automate MKS Integrity

1.4k Views Asked by At

I want to create one script that will open the Windows application to perform some task.

Application is PTC integrity,

I want to write a script that would open the items ( via unique Item ID ) and make changes in one of it's attribute's value and save it.

Tasks that my script should do:

1. Open the application.
2. Open the document using ID.
3. Open the Item via provided ID.
4. Assign a new value to the attribute provided by the script.

I would like to know which scripting language should I use to get the above task done. Can it be done via VBA or Perl or Python etc. Since I'm new I'm open for good suggestions.

NOTE : I've worked on AutoIT before. So, Let me know if it can be of any use for PTC Integrity Automation.

2

There are 2 best solutions below

1
On

Any of the mentioned languages can send keystrokes to other Windows applications, so automating that program using any of them should work:

0
On

I would suggest you to try Python to automate different processes in PTC integrity tool.You can use CLI commands for all your operations.Run those CLI commands from Python using subprocess method. Get your output in your preferable format.

You can do multiple PTC options like create,edit,delete of documents and items.You can also do some difficult options with this.