Movatterモバイル変換


[0]ホーム

URL:


Skip to content

Navigation Menu

Search code, repositories, users, issues, pull requests...

Provide feedback

We read every piece of feedback, and take your input very seriously.

Saved searches

Use saved searches to filter your results more quickly

Sign up
This repository was archived by the owner on Jul 31, 2018. It is now read-only.
/SWAPYPublic archive
This repository was archived by the owner on Jul 31, 2018. It is now read-only.

Reuseapp variable #63

Open
Open
Assignees
moden-py
Labels
@moden-py

Description

@moden-py

Reuseapp variable for one process owned different top level windows.
Oneapp may be used for all windows owned by one process. For instance:

frompywinauto.applicationimportApplicationapp=Application().Start(cmd_line=u'"C:\\Windows\\system32\\notepad.exe" ')notepad=app.Notepadnotepad.Wait('ready')menu_item=notepad.MenuItem(u'&Help->&About Notepad')menu_item.Click()window=app.Dialogwindow.Wait('ready')button=window.OKbutton.Click()app.Kill_()

Now the same actions code looks:

from pywinauto.application import Applicationapp = Application().Start(cmd_line=u'"C:\\Windows\\system32\\notepad.exe" ')notepad = app.Notepadnotepad.Wait('ready')menu_item = notepad.MenuItem(u'&Help->&About Notepad')menu_item.Click()app2 = Application().Start(cmd_line=u'"C:\\Windows\\system32\\notepad.exe" ')window = app2.Dialogwindow.Wait('ready')button = window.OKbutton.Click()button.Click()app2.Kill_()app.Kill_()

Restarting the same application is probably not the thing you expect.

Metadata

Metadata

Assignees

Labels

Type

No type

Projects

No projects

Milestone

No milestone

Relationships

None yet

Development

No branches or pull requests

Issue actions


    [8]ページ先頭

    ©2009-2025 Movatter.jp