gpt4 book ai didi

python - Selenium - 如何在 X Y 位置上找到 Canvas 上像素的颜色?

转载 作者:行者123 更新时间:2023-12-05 06:22:58 25 4
gpt4 key购买 nike

我在使用 selenium 和 python 时遇到问题:我想获取 Canvas 上 x y 位置的像素颜色。

Selenium 有一些颜色选择器或类似的东西吗?

我尝试使用 getCssValue 获取像素的颜色,但它不起作用,因为它是 Canvas 。

这是我想要实现的一个例子

from selenium import webdriver
from selenium.webdriver.chrome.options import Options
from selenium.webdriver.common.action_chains import ActionChains
from selenium.webdriver.common.keys import Keys
import time
chrome_options = Options()

prefs = {'profile.default_content_setting_values': {'images': 1,
'plugins': 2, 'geolocation': 2,
'notifications': 2, 'auto_select_certificate': 2, 'fullscreen': 2,
'mouselock': 2, 'mixed_script': 2, 'media_stream': 2,
'media_stream_mic': 2, 'media_stream_camera': 2, 'protocol_handlers': 2,
'ppapi_broker': 2, 'automatic_downloads': 2, 'midi_sysex': 2,
'push_messaging': 2, 'ssl_cert_decisions': 2, 'metro_switch_to_desktop': 2,
'protected_media_identifier': 2, 'app_banner': 2, 'site_engagement': 2,
'durable_storage': 2}}
chrome_options.add_experimental_option('prefs', prefs)
chrome_options.add_argument("disable-infobars")
chrome_options.add_argument("disable-gpu")

driver = webdriver.Chrome(options=chrome_options, executable_path=r"C:\gecko\chromedriver.exe")
driver.get("https://drawisland.com/")

act = ActionChains(driver)
canvas = driver.find_element_by_tag_name("canvas")
act.move_to_element_with_offset(canvas,100,100).GetColor().perform()

最佳答案

这显然不能直接使用 Selenium 。

关于python - Selenium - 如何在 X Y 位置上找到 Canvas 上像素的颜色?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/58788926/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com