forked from pywinauto/pywinauto
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request pywinauto#320 from vasily-v-ryabov/UIA
Add MS Paint example (fix pywinauto#310).
- Loading branch information
Showing
6 changed files
with
105 additions
and
5 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,40 @@ | ||
""" | ||
Example script for listing installed updates on Windows 10 | ||
Requirements: | ||
- Windows 10 (may work on Win7+) | ||
- pywinauto 0.6.1+ | ||
This example opens "Control Panel", navigates to "Installed Updates" page | ||
and lists all updates (for all apps) as well as OS Windows updates only. | ||
""" | ||
|
||
from __future__ import print_function | ||
from pywinauto import Application | ||
|
||
# Open "Control Panel" | ||
Application().start('control.exe') | ||
app = Application(backend='uia').connect(path='explorer.exe', title='Control Panel') | ||
|
||
# Go to "Programs" | ||
app.window(title='Control Panel').ProgramsHyperlink.invoke() | ||
app.wait_cpu_usage_lower(threshold=0.5, timeout=30, usage_interval=1.0) | ||
|
||
# Go to "Installed Updates" | ||
app.window(title='Programs').child_window(title='View installed updates', control_type='Hyperlink').invoke() | ||
app.wait_cpu_usage_lower(threshold=0.5, timeout=30, usage_interval=1.0) | ||
|
||
list_box = app.InstalledUpdates.FolderViewListBox | ||
|
||
# list all updates | ||
items = list_box.descendants(control_type='ListItem') | ||
all_updates = [item.window_text() for item in items] | ||
print('\nAll updates ({}):\n'.format(len(all_updates))) | ||
print(all_updates) | ||
|
||
# list updates from "Microsoft Windows" group only | ||
windows_group_box = list_box.child_window(title_re='^Microsoft Windows.*', control_type='Group') | ||
windows_items = windows_group_box.descendants(control_type='ListItem') | ||
windows_updates = [item.window_text() for item in windows_items] | ||
print('\nWindows updates only ({}):\n'.format(len(windows_updates))) | ||
print(windows_updates) |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,45 @@ | ||
""" | ||
Example script for MS Paint | ||
Requirements: | ||
- tested on Windows 10 (should work on Win7+) | ||
- pywinauto 0.6.1+ | ||
The example shows how to work with MS Paint application. It opens | ||
JPEG image and resizes it using "Resize and Skew" dialog. | ||
""" | ||
|
||
from pywinauto import Application | ||
|
||
app = Application(backend='uia').start(r'mspaint.exe') | ||
dlg = app.window(title_re='.* - Paint') | ||
|
||
# File->Open menu selection | ||
dlg.File_tab.click() | ||
dlg.child_window(title='Open', control_type='MenuItem').invoke() | ||
|
||
# handle Open dialog | ||
file_name_edit = dlg.Open.child_window(title="File name:", control_type="Edit") | ||
file_name_edit.set_text('walter_cat.jpg') | ||
# There are 2 Open buttons: | ||
# dlg.Open.Open.click() will call drop down list of the file name combo box. | ||
# The child_window statement is just copied from print_control_identifiers(). | ||
dlg.Open.child_window(title="Open", auto_id="1", control_type="Button").click() | ||
|
||
dlg.ResizeButton.click() | ||
dlg.ResizeAndSkew.Pixels.select() | ||
if dlg.ResizeAndSkew.Maintain_aspect_ratio.get_toggle_state() != 1: | ||
dlg.ResizeAndSkew.Maintain_aspect_ratio.toggle() | ||
dlg.ResizeAndSkew.HorizontalEdit1.set_text('100') | ||
dlg.ResizeAndSkew.OK.click() | ||
|
||
# Select menu "File->Save as->PNG picture" | ||
dlg.File_tab.click() | ||
dlg.SaveAsGroup.child_window(title="Save as", found_index=1).invoke() | ||
dlg.child_window(title='PNG picture').invoke() | ||
# Type output file name and save | ||
dlg.SaveAs.File_name_ComboBox.Edit.set_text('walter_cat_resized.png') | ||
dlg.SaveAs.Save.click() | ||
|
||
# Close application | ||
dlg.close() |
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -69,10 +69,9 @@ def setup_path(path = ""): | |
packages = ["pywinauto", "pywinauto.linux"] | ||
|
||
setup(name='pywinauto', | ||
version = '0.6.1', | ||
description = 'pywinauto is a set of python ' | ||
'modules to automate the Microsoft Windows GUI', | ||
keywords = "windows automation gui GuiAuto", | ||
version = '0.6.2', | ||
description = 'A set of Python modules to automate the Microsoft Windows GUI', | ||
keywords = "windows gui automation GuiAuto testing test desktop mouse keyboard", | ||
url = "http://pywinauto.github.io/", | ||
author = 'Mark Mc Mahon and Contributors', | ||
author_email = '[email protected]', | ||
|