I am using the undetected chromedriver in python selenium, my problem is that it always closes the window after ending the program.
For example I have a line of code like:
driver.get('www.google.com')
It obviously opens google but then immediately closes the window. When I use my own chromedriver, the window stays open and I can still surf on that window even when the program ends.
Any solutions?