everyone, after updating chromedriver from 136 to 137, I caught:
{"code":-32000,"message":"Browser window not found"}
I found that the problem with --auto-open-devtools-for-tabs flag, without this flag everything works fine.
python: 3.13.1
selenium: 4.33.0
chrome_args = [
'disable-infobars',
'disable-notifications',
'incognito',
'disable-dev-shm-usage',
'start-fullscreen',
'remote-allow-origins=*'
]
Does anybody know how to use the latest chromedriver with --auto-open-devtools-for-tabs ?
Thanks in advance.