Tagged Questions

Windows GUI automation library written in Python

learn more… | top users | synonyms

2
votes
3answers
975 views

PyWinAuto still useful?

I've been playing with PyWinAuto today and having fun automating all sorts GUI tests. I was wondering if it is still state of the art or if there might be something else (also free) which does ...
1
vote
1answer
105 views

reading content from a cmd window via python

I'm trying to connect to an existing cmd window and read its content. It is an arbitrary cmd window and not a child process. Any ideas how this can be done with python? Thanks in advance, Omer.
1
vote
1answer
243 views

Automating Flash Program with Python using Pywinauto

I am trying to send a couple basic text commands to a flash program running in Firefox on Windows 7, but I am unable to get pywinauto working for me. Right now, I have just been able to accomplish ...
1
vote
2answers
116 views

error using pywinauto

I am new to python and have just installed pywinauto using easy_install. I am trying to execute a simple code as follow: from pywinauto import application app = application.Application.start ...
1
vote
1answer
182 views

How to print the Control identifiers of a window to a document in Pywinauto

I am trying to automate installation of an application using Pywinauto.During the installation the last window shows some warning or error messages in few cases and later the system begins to ...
0
votes
0answers
23 views

Automating Web based Siebel Application using PYWINAUTO

I am performing feasibility study of Pywinauto with web based siebel application, In this I am able to open the web browser with proper URL but I am not getting any clue to interact with any objects ...
0
votes
0answers
63 views

Pywin clicking on a pop up and then entering text

I am using Pywin to try to emulate keyboard mouse movements. How do I click on a pop up then proceed to fill out text box, is this possible? I just got pywin loaded and can't get it to work. any ...
0
votes
1answer
82 views

pywinauto with Remote Desktop

I have just started to use the pywinauto module to automate GUI tasks. One of them is to launch the remote desktop exe (mstsc.exe)->Login->Invoke another tool there. However, I manged to connect to ...
0
votes
0answers
36 views

How can i find available dialogs ,controls of an application in pywinauto?

I am using pywinauto in windows 7 and I am searching for a way to find the available dialogs and controls of an application.The following is an example: from pywinauto import application import time ...
0
votes
3answers
103 views

Automate downloading a file in Firefox using Python

I'm researching about pywinauto and pywin32. I want to write a script to automate downloading a file in Firefox. When downloading a file in Firefox, it will show a popup to ask you to open or save the ...
0
votes
0answers
69 views

python script wouldn't run on vista

I am learning python -> pywinauto. I wrote this script that opens another program called pokerstars. Testing it on IDLE, the script was able to open pokerstars. But after I save the file on my ...
0
votes
1answer
111 views

no module named pywinauto

when I type the following on python2.5 IDLE (windows vista 32-bit)-- from pywinauto import Application I get this error message-- Traceback (most recent call last): File "<pyshell#1>", ...
0
votes
1answer
161 views

Is it possible to send data to a minimized window use pywinauto?

Several months ago, I wrote a Python GUI app that reads a file containing vehicle data. It then uses the sendkeys module to enter the data on a green house gas model app. I've converted the code to ...
0
votes
0answers
94 views

pywinauto - How to detect an ap crash/hang/freeze?

I have written a script to automate few benchmark test programs. The programs would be running for long hours (e.g. 3DMark06). How do I detect if one of the apps have crashed using any methods from ...
0
votes
1answer
363 views

How to access the control identifiers in pywinauto

i am trying to access the control identifiers that gets displayed but i am unable to do so. when a Open window gets popped up only the OK and Cancel button i am able to access.. not able to acccess ...
0
votes
1answer
263 views

Pywinauto to control the media player

i am trying to control the windows media player using python with pywinauto framework. I am able to access the menu for example with app.WindowsMediaPlayer.MenuSelect("View->GoTo->Library") but when i ...
0
votes
1answer
169 views

dependencies for pywinauto

hey do i need the sendkeys and ctypes to be installed prior to installing pywinauto for python 2.7.1... as ctypes is already present in the python.. are there any other dependencies for pywinauto....
0
votes
1answer
367 views

pywinauto: taking more than one app windows

I have a GUI application which can create many similar windows on desktop. All windows have same title. I have to enumerate all dialogs with same title and make some tests against each of such ...