用 Selenium Python 下载图片
我们可以使用 Python 中的 Selenium webdriver 下载图像。首先,我们应该使用 id、class、xpath 等定位符识别要下载的图像。
我们将使用open方法以写入和二进制模式打开文件(用wb表示)。然后使用screenshot_as_png方法捕获我们希望捕获的元素的屏幕截图。
最后,必须将捕获的图像写入已打开的文件,方法是使用 write 方法。我们尝试下载一个元素的图像,其代码如下:
语法
with open('Logo.png', 'wb') as file: file.write(driver.find_element_by_xpath('//*[@alt="I"]').screenshot_as_png)
示例
from selenium import webdriver #set chromedriver.exe path driver = webdriver.Chrome(executable_path="C:\chromedriver.exe") driver.implicitly_wait(0.5) #maximize browser driver.maximize_window() #launch URL driver.get("https://tutorialspoint.com/index.htm"); #open file in write and binary mode with open('Logo.png', 'wb') as file: #identify image to be captured l = driver.find_element_by_xpath('//*[@alt="Tutorialspoint"]') #write file file.write(l.screenshot_as_png) #close browser driver.quit()
输出
文件 Logo.png 在项目文件夹中创建。
打开文件后:
广告