AutoIt 与 wpf
我的 wpf 应用程序有以下示例代码。 我需要用字符串填写表单的文本字段。
Run('AutoItWpfTesting.exe')
WinWaitActive("Window1", "")
$hHwnd = WinGetHandle("Window1")
MsgBox(0, "Message", $hHwnd)
$returnVal1=ControlGetHandle ( "$hHwnd", "", "[NAME:txtVersion]")
$returnVal2=ControlSend($hHwnd,"","[NAME:txtVersion]","blahblah")
MsgBox(0, "Message", $returnVal2)
对于 $returnVal2 返回 0,对于 $returnValue1 返回空字符串。 不过,这对于我的示例 winform 应用程序来说效果很好。
任何关于此行为的线索......以及任何可用于获取精确文本框以自动填充 wpfa 应用程序数据的调整。
I have below sample code for my wpf app.
I need to fill in text fields of form with strings.
Run('AutoItWpfTesting.exe')
WinWaitActive("Window1", "")
$hHwnd = WinGetHandle("Window1")
MsgBox(0, "Message", $hHwnd)
$returnVal1=ControlGetHandle ( "$hHwnd", "", "[NAME:txtVersion]")
$returnVal2=ControlSend($hHwnd,"","[NAME:txtVersion]","blahblah")
MsgBox(0, "Message", $returnVal2)
it returns 0 for $returnVal2 and Empty string for $returnValue1.
However this works fine for my sample winform application.
Any clues why this behaviour is..and Any tweaks available to get exact text-box to auto fill data for wpfa app.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
WPF 应用程序不使用 Windows 控件和控件句柄。您可以使用 Spy++ 看到这一点。 Spy++ 的 WPF 替代方案
如果您想自动化 WPF 应用程序 <一个href="http://social.msdn.microsoft.com/Forums/en-US/windowsaccessibilityandautomation/thread/09153b49-1958-4543-be4f-4ac0fc9a39d1/" rel="nofollow noreferrer">您将需要另一个工具 或使用 UI 自动化 API 来构建一个。
WPF applications do not use Windows' controls and handles for the controls. You can see that by using Spy++. WPF Alternatives for Spy++
If you want to automate WPF applications you will need another tool or use the UI Automation API to build one.