硒如何找到画布上X Y位置像素的颜色?

2024-04-27 04:41:48 发布

您现在位置:Python中文网/ 问答频道 /正文

我在python中使用selenium,我有一个问题:我想得到画布上x y位置的像素颜色。你知道吗

硒有一些颜色选择器或类似的东西吗?你知道吗

我试着用getCssValue得到一个像素的颜色,但是没有用,因为它是画布。你知道吗

这就是我想要达到的目标

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()

Tags: fromimportaddstream颜色画布driverselenium