Export_png webdriver issue

I’d been using export_png in jupyter notebooks with no problem, and with no need to import any chromedriver functions.

To solve a chromedriver issue unrelated to anything with bokeh I started to use this solution in other jupyter notebooks:

from selenium import webdriver
from selenium.webdriver.chrome.service import Service
from webdriver_manager.chrome import ChromeDriverManager
from selenium.webdriver.common.by import By

driver_manager = ChromeDriverManager()
chrome_service = Service(driver_manager.install())
driver = webdriver.Chrome(service=chrome_service)

But it seems that now having installed webdriver manager, export_png is no longer working.

Any ideas what has happened? Thanks.

I have never encountered this and don’t have any ideas offhand, all I can suggest is filing a GitHub Issue with full details in case other core devs have any idea. Otherwise, just the usual suggestions: re-try things in a new clean python env, etc.

Thanks. I’ll try that.

This topic was automatically closed 90 days after the last reply. New replies are no longer allowed.