diff --git a/pywinauto/controls/HwndWrapper.py b/pywinauto/controls/HwndWrapper.py index e31ba47..a3d64a8 100644 --- a/pywinauto/controls/HwndWrapper.py +++ b/pywinauto/controls/HwndWrapper.py @@ -833,10 +833,14 @@ class HwndWrapper(object): Path can be a string in the form "MenuItem->MenuItem->MenuItem..." where each MenuItem is the text of an item at that level of the menu. - E.g. - "File->Export->ExportAsPNG" - spaces are not important so you could also have written... - "File -> Export -> Export As PNG" + E.g. :: + + File->Export->ExportAsPNG + + spaces are not important so you could also have written... :: + + File -> Export -> Export As PNG + """ return self.Menu().GetMenuPath(path)[-1] diff --git a/pywinauto/controls/menuwrapper.py b/pywinauto/controls/menuwrapper.py index 854242f..4b021e8 100644 --- a/pywinauto/controls/menuwrapper.py +++ b/pywinauto/controls/menuwrapper.py @@ -22,7 +22,8 @@ These wrappers allow you to work easily with menu items. You can select or click on items and check if they are -checked or unchecked.""" +checked or unchecked. +""" __revision__ = "$Revision: 330 $" @@ -50,6 +51,7 @@ class MenuItem(object): :menu: The menu that this item is on :index: The Index of this menuitem on the menu :on_main_menu: True if the item is on the main menu + """ self.index = index self.menu = menu @@ -61,7 +63,7 @@ class MenuItem(object): """Read the menu item info See http://msdn.microsoft.com/library/default.asp?url=/library/en-us/winui/winui/windowsuserinterface/resources/menus/menureference/menufunctions/getmenuiteminfo.asp - for more information""" + for more information.""" menu_info = win32structures.MENUITEMINFOW() menu_info.cbSize = ctypes.sizeof (menu_info) menu_info.fMask = \ @@ -119,8 +121,9 @@ class MenuItem(object): """Return the Type of this menu item Main types are MF_STRING, MF_BITMAP, MF_SEPARATOR. + See http://msdn.microsoft.com/library/default.asp?url=/library/en-us/winui/winui/windowsuserinterface/resources/menus/menureference/menustructures/menuiteminfo.asp - for further information""" + for further information.""" return self._read_item().fType def Text(self): @@ -219,7 +222,8 @@ class MenuItem(object): """Select the menu item This will send a message to the parent window that the - item was picked""" + item was picked + """ if not self.IsEnabled(): raise MenuItemNotEnabled(