作者热门文章
- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
有没有办法将 WebDriver
驱动程序嵌入 WPF 窗口,类似于 WPF 的 WebBrowser
控件?
或者,有没有办法在 WebBrowser
控件本身上使用 Selenium?
到目前为止,只能创建一个新的 WebDriver
窗口,与应用程序中的任何其他 WPF 窗口分开。
最佳答案
这是一个小技巧;)
由于 Selenium 大多数时候使用外部应用程序(浏览器),所以没有“本地”解决方案,例如将浏览器 UI 集成到应用程序中。
但是,有特定于 Windows 的 API 可以通过 WinForms 实现这一点。
UnsafeNativeMethods.cs
private static class UnsafeNativeMethods {
[DllImport("user32")]
public static extern IntPtr SetParent(IntPtr hWnd, IntPtr hWndParent);
[DllImport("user32.dll", SetLastError = true)]
public static extern bool MoveWindow(IntPtr hWnd, int X, int Y, int nWidth, int nHeight, bool bRepaint);
}
基本上,这个想法是将外部浏览器“包装”在您应用的用户控件中。
SeleniumHost.cs
public void AttachDriverService(DriverService service) {
//get the process started by selenium
var driverProcess = Process.GetProcessById(service.ProcessId);
//find the first child-process (should be the browser)
var browserProcess = driverProcess.GetChildren()
.Where(p => p.ProcessName != "conhost")
.First();
_BrowserHandle = browserProcess.MainWindowHandle;
//set the parent window utilizing Win32-API
UnsafeNativeMethods.SetParent(_BrowserHandle.Value, this.Handle);
//handle moving/resizing of your appo to be reflected on browser
UnsafeNativeMethods.MoveWindow(_BrowserHandle.Value, 0, 0, Width, Height, true);
this.Resize += (sender, e) => {
UnsafeNativeMethods.MoveWindow(_BrowserHandle.Value, 0, 0, Width, Height, true);
};
}
最后,用于通过 WMI 枚举子进程的扩展:
ProcessExtensions.cs
public static IEnumerable<Process> GetChildren(this Process parent) {
var query = new ManagementObjectSearcher($@"
SELECT *
FROM Win32_Process
WHERE ParentProcessId={parent.Id}");
return from item in query.Get().OfType<ManagementBaseObject>()
let childProcessId = (int)(UInt32)item["ProcessId"]
select Process.GetProcessById(childProcessId);
}
并像这样调用方法:
var host = new SeleniumHost();
var service = InternetExplorerDriverService.CreateDefaultService();
var driver = new InternetExplorerDriver(service);
host.AttachDriverService(service);
完成后,这将解决 WinForms-Part。要将其集成到 WPF 中,您需要利用 WindowsFormsHost显示 WinForms 控件。
查看我最新发布的 repo on GitHub以供进一步引用或直接利用 NuGet-Package .
请多多包涵,因为这些都是非常热门的部分 - 所以肯定会有错误并在未来进行进一步的改进(比如从浏览器中删除 chrome/border)。希望你能得到这个想法和/或可能在 GitHub 上做出贡献。
关于wpf - 如何将 Selenium WebDriver 嵌入为 WPF 控件?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/43842311/
我是一名优秀的程序员,十分优秀!