自动化测试中FindWindow与FindWindowEx的使用示例
- 1、下载文档前请自行甄别文档内容的完整性,平台不提供额外的编辑、内容补充、找答案等附加服务。
- 2、"仅部分预览"的文档,不可在线预览部分如存在完整性等问题,可反馈申请退款(可完整预览的文档不适用该条件!)。
- 3、如文档侵犯您的权益,请联系客服反馈,我们会尽快为您处理(人工客服工作时间:9:00-18:30)。
⾃动化测试中FindWindow与FindWindowEx的使⽤⽰例
昨天在做⼀个⽹页测试时,它会弹出⼀个对话框(如下图)对⽤户进⾏⼀个认证。
使⽤Spy++侦测这个对话框的结构如下,我们看到两个Edit就在最后两个节点上。
我们现在就可以利⽤FindWindow以及FindWindowEx这两个函数来帮我们找到这个窗体及窗体上所有的控件,然后帮我们完成⾃动化测试。
下⾯这个程序就是帮我们⾃动输⼊⽤户名与密码。
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Runtime.InteropServices;
using System.Threading;
namespace ConsoleApplication79
{
class Program
{
[DllImport("user32.dll", EntryPoint = "FindWindow", CharSet = CharSet.Auto)]
private extern static IntPtr FindWindow(string classname, string captionName);
[DllImport("user32.dll", EntryPoint = "FindWindowEx", CharSet = CharSet.Auto)]
private extern static IntPtr FindWindowEx(IntPtr parent,IntPtr child,string classname, string captionName);
[DllImport("user32.dll")]
static extern IntPtr SendMessage(IntPtr hWnd, UInt32 Msg, IntPtr wParam, [MarshalAs(UnmanagedType.LPStr)] string lParam);
[DllImport("user32.dll")]
[return: MarshalAs(UnmanagedType.Bool)]
static extern bool SetForegroundWindow(IntPtr hWnd);
static void Main(string[] args)
{
IntPtr mwh1 = IntPtr.Zero;
while (mwh1 == IntPtr.Zero)
{
Thread.Sleep(1000);
mwh1 = FindWindow(null, "Windows Security");
}
IntPtr panel = FindWindowEx(mwh1, IntPtr.Zero, "DirectUIHWND", null);
IntPtr CtrlNotifySink = IntPtr.Zero;
CtrlNotifySink = FindWindowEx(panel, IntPtr.Zero, "CtrlNotifySink", null);
for (int i = 1; i < 7; i++)
{
CtrlNotifySink = FindWindowEx(panel, CtrlNotifySink, "CtrlNotifySink", null);
}
IntPtr editor = FindWindowEx(CtrlNotifySink, IntPtr.Zero, null, null);
uint WM_SETTEXT = 0xC;
SendMessage(editor, WM_SETTEXT, IntPtr.Zero, "username");
CtrlNotifySink = FindWindowEx(panel, CtrlNotifySink, "CtrlNotifySink", null);
editor = FindWindowEx(CtrlNotifySink, IntPtr.Zero, null, null);
SendMessage(editor, WM_SETTEXT, IntPtr.Zero, "password");
}
}
}
主要注意的⼀点就是代码⾥使⽤FindWindowEx循环查找⼦控件,因为这些控件都是具有相同类名的。
输⼊好信息后,查找OK那个Button也差不多是这样的⽅法重复。
下⾯介绍⼀下更⽆耻的⽅法哈:
static void Main(string[] args)
{
IntPtr mwh1 = IntPtr.Zero;
while (mwh1 == IntPtr.Zero)
{
Thread.Sleep(1000);
mwh1 = FindWindow(null, "Windows Security");
}
SetForegroundWindow(mwh1);
System.Windows.Forms.SendKeys.SendWait("username");
System.Windows.Forms.SendKeys.SendWait("{TAB}");
System.Windows.Forms.SendKeys.SendWait("password");
System.Windows.Forms.SendKeys.SendWait("{TAB}");
System.Windows.Forms.SendKeys.SendWait("{TAB}");
System.Windows.Forms.SendKeys.SendWait("{ENTER}");
}
呵呵!其实就是将需要处理的窗⼝激活,⽤SendKey处理,这是我同事想出来的,记录⼀下!可能还有更多更好的⽅法,希望各位多多指点了!
这⾥再分享⼀个⽹站,这个⽹站⾮常⽅便我们查找在C#中调⽤Win32中的API。