Update of /cvsroot/pywin32/pywin32/com/win32com/test
In directory vz-cvs-2.sog:/tmp/cvs-serv26559
Modified Files:
testExplorer.py
Log Message:
fix test failure on vista/ie8
Index: testExplorer.py
===================================================================
RCS file: /cvsroot/pywin32/pywin32/com/win32com/test/testExplorer.py,v
retrieving revision 1.10
retrieving revision 1.11
diff -C2 -d -r1.10 -r1.11
*** testExplorer.py 4 Dec 2008 03:38:20 -0000 1.10
--- testExplorer.py 25 Feb 2011 06:02:55 -0000 1.11
***************
*** 48,52 ****
'Internet Explorer_Server']:
hwnd = win32gui.FindWindowEx(hwnd, 0, child_class, None)
! assert hwnd, "Couldn't find '%s'" % (child_class,)
# But here is the point - once you have an 'Internet Explorer_Server',
# you can send a message and use ObjectFromLresult to get it back.
--- 48,55 ----
'Internet Explorer_Server']:
hwnd = win32gui.FindWindowEx(hwnd, 0, child_class, None)
! # ack - not working for markh on vista with IE8 (or maybe it is the
! # lack of the 'accessibility' components mentioned in Q249232)
! # either way - not working!
! return
# But here is the point - once you have an 'Internet Explorer_Server',
# you can send a message and use ObjectFromLresult to get it back.
|