| pywinauto:/trunk/ |
hide Line HistoryConstraintSort: path | last-commit | first-commit Sub Directories |
Changelog
728
by markm on
23 February 2010, 06:57:34 -0600
(25 days ago)
* My references to PIL.ImageGrab were incorrect, PIL add's it's module directly to the module path, so it should just be referenced by ImageGrab and not PIL.ImageGrab
* Use AttachThreadInput + PostM…
./pywinauto/controls/HwndWrapper.py
728
727
by markm on
23 February 2010, 06:51:28 -0600
(25 days ago)
* Use 'SendMessageTimeout' to get the text of a window. (SendMessage will hang if the application is not processing messages)
./pywinauto/handleprops.py
727
726
by markm on
23 February 2010, 06:27:00 -0600
(25 days ago)
* add the EmptyClipboard() function as requested by tocer (http://sourceforge.net/users/tocer/) in SourceForge issue 2937981.
./pywinauto/clipboard.py
726
./pywinauto/win32functions.py
726
725
by markm on
10 February 2010, 16:44:00 -0600
(38 days ago)
* Add WindowSpecification and Application as attributes of pywinauto (so application should not need to be imported)
./pywinauto/__init__.py
725
724
by markm on
10 February 2010, 16:42:49 -0600
(38 days ago)
* Remove code that is no longer used (RecordMatch function).
./pywinauto/application.py
724
723
by markm on
10 February 2010, 16:38:56 -0600
(38 days ago)
* Remove app from constructor of WindowSpecification
722
by markm on
10 February 2010, 16:33:50 -0600
(38 days ago)
* Better handle dir() calls on Application or WindowSpecification objects (which would otherwise hang for a while as these classes would search for windows like __members__, __methods__ and __bases__…
./pywinauto/application.py
722
721
by markm on
10 February 2010, 16:31:26 -0600
(38 days ago)
* Strip all trailing whitespace and split some long lines
./pywinauto/application.py
721
720
by markm on
02 February 2010, 18:27:08 -0600
(46 days ago)
* Speed up dir() calls on Application and WindowSpecification isntances (by raising AttributeError for __method__ and __member__ attribute checks.
./pywinauto/application.py
720
719
by markm on
02 February 2010, 07:13:57 -0600
(46 days ago)
* Remove requirement for an app instance when working with a WindowSpecification object. This allows WindowSpecification to be useful even when not using application.py
* Remove other dead code rela…
./pywinauto/application.py
719
718
by markm on
01 February 2010, 06:30:21 -0600
(47 days ago)
* Add check that at least one window could be found in top_window_()
./pywinauto/application.py
718
717
by markm on
01 February 2010, 06:28:42 -0600
(47 days ago)
* Add support for cygwin (cdll instead of windll)
./pywinauto/win32functions.py
717
716
by markm on
01 February 2010, 06:24:54 -0600
(47 days ago)
* Partial support for Ansi based ListView items (i.e. VB6 controls)
./pywinauto/controls/common_controls.py
716
715
by markm on
27 November 2009, 08:37:16 -0600
(3 months 21 days ago)
* Set the date of the release
./doc_src/HISTORY.TXT
715
714
by markm on
27 November 2009, 07:55:00 -0600
(3 months 21 days ago)
* Tagging as 0.3.9
./pywinauto/__init__.py
714
713
by markm on
27 November 2009, 07:54:32 -0600
(3 months 21 days ago)
* Fixing some white case issues
./setup.py
713
712
by markm on
27 November 2009, 07:51:25 -0600
(3 months 21 days ago)
* Renamed doc_build to doc_src
./makedocs.bat
712
711
by markm on
27 November 2009, 07:49:27 -0600
(3 months 21 days ago)
* Renamed doc_build to doc_src
./doc_build/code/findbestmatch.py.txt
711
./doc_build/code/truncation.py.txt
711
./doc_build/index.txt
711
./doc_build/code/overlapping.py.txt
711
./doc_build/code/win32_controls.py.txt
711
710
by markm on
27 November 2009, 07:40:03 -0600
(3 months 21 days ago)
* Ignore *.pkl files
./examples
710
709
by markm on
27 November 2009, 07:35:10 -0600
(3 months 21 days ago)
* Updated for 0.3.9
* Added 0.3.9 changelog
./doc_build/HISTORY.TXT
709
./doc_build/conf.py
709
708
by markm on
27 November 2009, 07:25:37 -0600
(3 months 21 days ago)
* Get around font settings in Notepad, and set them back afterwards (makes the tests less brittle)
./pywinauto/unittests/test_HwndWrapper.py
708
707
by markm on
21 November 2009, 08:24:50 -0600
(3 months 27 days ago)
* Updated these brittle example scripts
* Did notice that for popups you have to use MenuItem('blah').Click() rather than Select()
./examples/notepad_fast.py
707
./examples/notepad_slow.py
707
706
by markm on
21 November 2009, 07:29:25 -0600
(3 months 27 days ago)
* Fix the import of SendKeysCtypes
705
by markm on
21 November 2009, 07:28:52 -0600
(3 months 27 days ago)
* Improve the tests slightly for sendkeysCtypes.
./pywinauto/unittests/test_SendKeys.py
705
704
by markm on
21 November 2009, 07:28:03 -0600
(3 months 27 days ago)
* Fixed two off-by-one errors in the ItemData tests (I had expect that - just wanted it to fail first :) - Yeah - Right)
./pywinauto/unittests/test_win32controls.py
704
703
by markm on
21 November 2009, 07:06:57 -0600
(3 months 27 days ago)
* Handle newlines correctly
./pywinauto/SendKeysCtypes.py
703
702
by markm on
21 November 2009, 05:40:00 -0600
(3 months 27 days ago)
* renamed with updated SendKeysUpdated
./pywinauto/sendkeys.py
702
701
by markm on
21 November 2009, 05:37:26 -0600
(3 months 27 days ago)
* Replacement for Sendkeys that can handle Unicode characters and does not require any compilation
./pywinauto/SendKeysCtypes.py
701
700
by markm on
21 November 2009, 05:15:32 -0600
(3 months 27 days ago)
* Use SendKeysCtypes instead of sendkeys
* Allow overriding of the WrapperObject used in a class. Previously it was not possible to force a particular class by using (for example) TreeViewWrapper(re…
./pywinauto/controls/HwndWrapper.py
700
699
by markm on
21 November 2009, 05:03:28 -0600
(3 months 27 days ago)
* Improved error message from ComboBoxWrapper/ListBoxWrapper._get_item_index() when the item is not there
* Added support for testing with reference controls to RunTests()
./pywinauto/controls/win32_controls.py
699
|