pywinauto help Programming Software Development by vinayj85 hi, i am trying to control the windows media player using pywinauto. I am able to do some controlling using the menu tabs, but i want to control the WMP with the taskbar that is present on the left side, and when those buttons are clicked their respective operations i should be able to control them. Please any one can help me with this... pywinauto for ubuntu Programming Software Development by now0pen I am playing (and learning a lot) with pywinauto on my windows vista pc. Is there a module like pywinauto that I can use for ubuntu? Thanks! Re: pywinauto for ubuntu Programming Software Development by JasonHippy I'm not familiar with pywinauto, but [url="http://pypi.python.org/pypi/pexpect/"]pexpect[/url] is the closest thing on Linux that I can think of offhand! pywinauto for python 3.1 Programming Software Development by danholding … it, it states that there is no module names "pywinauto" am i missing something. also i tried deleting it… Re: pywinauto for python 3.1 Programming Software Development by danholding … have given up trying to convert all the files in pywinauto up to 3.1 as its a never ending circle… Re: pywinauto for python 3.1 Programming Software Development by cghtkh I am not sure what is your main objective for using pywinauto. But you can consider win32com module, it also allows for some level of automation. Re: pywinauto help Programming Software Development by richieking can you post your code so far. :) Re: pywinauto for python 3.1 Programming Software Development by cghtkh Did you install SendKeys module? I think it is a pre-requisite. Re: pywinauto for python 3.1 Programming Software Development by danholding no, due to the fact that the latest version is for 2.5 and cant seem to find an alternative module for it any help would be great as this function is required in order to complete my work Re: pywinauto for python 3.1 Programming Software Development by cghtkh If that is the case, why don't you install python 2.5? Many modules are not compatible with 3.x as of now. That's why you still see 2.7 being rolled out. Re: pywinauto for python 3.1 Programming Software Development by cghtkh How about pywin32? I think it has support for 3.1. Re: pywinauto for python 3.1 Programming Software Development by danholding pywin32 is installed as part of the basic download as far as i can tell and if it wasn't i have it installed already but with no luck i am really stumped on what to do now is there any other functions for calling programs and controlling them? any help would be great how to give filename in the script Programming Software Development by kumar86 … want to save the file in text format. from pywinauto import application from pywinauto import application app=application.Application() app.start_('Notepad… Best language for AUTOMATION ? Programming Computer Science by TF401 … the code, not with the help of a program, like Pywinauto. Hmmm , I'm interested most in c++, python or delphi… Is this automation possible in PYTHON ? Programming Software Development by TF401 … events/automation with a Python code( without any program like Pywinauto ), so I could compile the python code: 1. [B]sending… Python GUI automation java based apps Programming Software Development by Ragunath_1 … developed in java and swing controls using python. I tried pywinauto but it is not able to detect java objects. I… Re: how to send python result to a notepad Programming Software Development by snippsat With pywinauto sending the source code html to notepad,not that i … have to break up source code. [CODE]import urllib from pywinauto import application url = urllib.urlopen("http://beans.itcarlow.ie… Re: How to find a file from a directory by Python? Programming Software Development by denniskhor i use pywinauto, so will be like tat... ur answer din point to my question... Re: How to find a file from a directory by Python? Programming Software Development by jlm699 [QUOTE=denniskhor;916508]i use pywinauto, so will be like tat... ur answer din point to … Re: [split] Saving file Programming Software Development by kumar86 … i want to save the file in text format. from pywinauto import application [code]app=application.Application() app.start_('Notepad.exe… Re: how to give filename in the script Programming Software Development by WildBamaBoy You don't have to open Notepad or use extra modules to write and save a text file. It's all built in. [CODE] # Opens a file called Hello.txt for writing. f = open("Hello.txt", "w") #Filename #Mode # Write the text to the file. f.write("Hello world!") # Close the file f.close() [/CODE] This will work just… Re: how to give filename in the script Programming Software Development by kumar86 thanks wildbamaboy Re: how to give filename in the script Programming Software Development by kumar86 hello guys, I am writing automated python script. How can i propagate the result of each script in XL sheet, whether the script is passed or failed. could you please help me For example , my first script is to verify 'open an existing project' and second script to verify the 'to close the opened project'. so each script should propagate … Re: Best language for AUTOMATION ? Programming Computer Science by seema123 Hi, i would prefer C++, C# & VB.Net for bot programming. Thanks Re: Best language for AUTOMATION ? Programming Computer Science by TF401 [QUOTE=seema123;1750559]Hi, i would prefer C++, C# & VB.Net for bot programming. Thanks[/QUOTE] Oh sry I forgot to mention that I can't code in [B].NET dependent[/B] languages and vb6 is a dying language,so no vb for me :icon_neutral: I want to know what language is best for automating GUIs : Perl , Python or Delphi ? Thankyou Re: Is this automation possible in PYTHON ? Programming Software Development by Gribouillis Why don't you want to use existing programs ? It simply means rewriting these programs in your own code. Re: Is this automation possible in PYTHON ? Programming Software Development by TF401 [QUOTE=Gribouillis;1750851]Why don't you want to use existing programs ? It simply means rewriting these programs in your own code.[/QUOTE] I just need to code something that would do that automation, without a GUI or user interaction and at the final, to compile it. Just like autoit, code the events and after that I can compile the script, but … Re: Is this automation possible in PYTHON ? Programming Software Development by ihatehippies I would look into SendKeys [URL="http://www.networkautomation.com/automate/urc/resources/help/instructions/Sbe6_000SendKeys_Instruction.htm"]Here[/URL] or [URL="http://www.autoitscript.com/autoit3/docs/appendix/SendKeys.htm"]Here[/URL] The code is pretty straightforward [CODE=python] from win32com.client import Dispatch … Re: Python GUI automation java based apps Programming Software Development by vegaseat Just a wild guess, look into Jython.