【问题标题】:Selenium - How to find color of a pixel on canvas on X Y position?Selenium - 如何在画布上的 X Y 位置找到像素的颜色?
【发布时间】:2019-11-10 13:01:07
【问题描述】:

我在 python 中使用 selenium,我有一个问题:我想在画布上获取 x y 位置的像素颜色。

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

我尝试使用 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()

【问题讨论】:

  • 赞成您的问题。你找到解决办法了吗?

标签: python selenium canvas colors


【解决方案1】:

这显然不能直接使用 selenium。

【讨论】:

    猜你喜欢
    • 2018-04-08
    • 1970-01-01
    • 1970-01-01
    • 2012-06-19
    • 1970-01-01
    • 1970-01-01
    • 1970-01-01
    • 2015-02-18
    • 1970-01-01
    相关资源
    最近更新 更多