Using selenium to save images from page(使用 selenium 保存页面中的图像)
问题描述
我正在使用 Selenium &Google Chrome 驱动程序以编程方式打开页面.在每个页面上都有一个动态生成的图像,我想下载它.目前,我正在等待页面完成加载,然后我获取图像 URL 并使用 System.Net.WebClient 下载它.
I'm using Selenium & Google Chrome Driver to open pages programatically. On each page there is a dynamically generated image which I'd like to download. At the moment, I'm waiting for the page to finish loading, then I grab the image URL and download it using System.Net.WebClient.
这很好,除了我下载了两次图像 - 一次在浏览器中,一次在 WebClient 中.问题是每张图片大约 15MB,下载两次加起来很快.
That works fine except I'm downloading the images twice - once in the browser, once with WebClient. The problem is that each image is roughly 15MB and downloading twice adds up quickly.
那么 - 是否可以直接从谷歌浏览器获取图像?
So - is it possible to grab the image straight from Google Chrome?
推荐答案
您可以使用 this 技术.它运行一个名为Block Image"的 Google Chrome 扩展程序.这样就不会使用 chrome 下载图像,只需使用其 URL & 正常下载图像即可.System.Net.WebClient.
You can block images from being downloaded in Google Chrome using this technique. It runs a Google Chrome extension called "Block Image". This way the image won't be downloaded using chrome, and it's just a matter of downloading the image as normal using its URL & System.Net.WebClient.
这篇关于使用 selenium 保存页面中的图像的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持编程学习网!
本文标题为:使用 selenium 保存页面中的图像


- C#MongoDB使用Builders查找派生对象 2022-09-04
- WebMatrix WebSecurity PasswordSalt 2022-01-01
- MoreLinq maxBy vs LINQ max + where 2022-01-01
- C# 中多线程网络服务器的模式 2022-01-01
- 输入按键事件处理程序 2022-01-01
- 如何用自己压缩一个 IEnumerable 2022-01-01
- 带有服务/守护程序应用程序的 Microsoft Graph CSharp SDK 和 OneDrive for Business - 配额方面返回 null 2022-01-01
- Web Api 中的 Swagger .netcore 3.1,使用 swagger UI 设置日期时间格式 2022-01-01
- 在哪里可以找到使用中的C#/XML文档注释的好例子? 2022-01-01
- 良好实践:如何重用 .csproj 和 .sln 文件来为 CI 创建 2022-01-01