My code worked fine until a few days ago. But now I'm facing an error as follows:
Fatal Python error: Cannot recover from stack overflow
with the minimal code:

Error:

What's the cause of the sudden errors?
My code worked fine until a few days ago. But now I'm facing an error as follows:
Fatal Python error: Cannot recover from stack overflow
with the minimal code:

Error:

What's the cause of the sudden errors?
Copyright © 2021 Jogjafile Inc.
This error message...
...indicates that ChromeDriverManager is initiating multiple threads while trying to download the ChromeDriver and is reaching the limit of the interpreter stack during that infinite recursive
loop.This usecase
I don't see any significant error in your code block as I was able to execute similar lines of code on my windows-10 box perfecto:
Code block:
Console output:
Solution
As a preventive measure you can:
References
A few helpful documentations: