我们在DotNetBrowser上显示的网站包含一个验证码图像元素。在代码元素中捕获此元素图像类型的方法是什么?
网站地址: https://paydas.its.gov.tr/hesap_yonetimi/giris
browserView = new WinFormsBrowserView(BrowserFactory.Create(BrowserType.LIGHTWEIGHT));
//...
browserView.Browser.SetSize(1024, 768);
Bitmap screenshot = browserView.Browser.ImageProvider.GetImage() as Bitmap;
DOMElement captchaElement = browserView.Browser.GetDocument().GetElementById("imgCaptcha");
pictureBox1.Image = screenshot?.Clone(captchaElement.BoundingClientRect, screenshot.PixelFormat);
此方法不能正常工作。
我找到了解决方案。
我在创建浏览器对象后添加了以下代码片段。
int viewHeight = 20000;
string[] switches = {
"--disable-gpu",
"--max-texture-size=" + viewHeight
};
BrowserPreferences.SetChromiumSwitches(switches);