如何在 Selenium 中将 canvas 保存为 PNG?

How to save a canvas as PNG in Selenium?

我正在尝试将 canvas 元素保存为 png 图像。这是我现在的代码,但不幸的是,它不起作用:

import time
from selenium import webdriver
# From PIL import Imag.


driver = webdriver.Firefox()
driver.get('http://www.agar.io')
driver.maximize_window()
driver.find_element_by_id('freeCoins').click()

time.sleep(2)

# The part below does not seem to work properly.

driver.execute_script('function download_image(){var canvas = document.getElementByTagName("canvas");canvas.toBlob(function(blob) {saveAs(blob, "../images/output.png");}, "image/png");};')

我想在 Python 中查看解决方案。我也想看到一个不需要在截图末尾裁剪的解决方案。

您可以调用 HTMLCanvasElement.toDataURL() 来获取 canvas 作为 PNG base64 字符串。这是一个工作示例:

import base64
from selenium import webdriver

driver = webdriver.Chrome()
driver.get("http://curran.github.io/HTML5Examples/canvas/smileyFace.html")

canvas = driver.find_element_by_css_selector("#canvas")

# get the canvas as a PNG base64 string
canvas_base64 = driver.execute_script("return arguments[0].toDataURL('image/png').substring(21);", canvas)

# decode
canvas_png = base64.b64decode(canvas_base64)

# save to a file
with open(r"canvas.png", 'wb') as f:
    f.write(canvas_png)