Is there any way to open a browser window with a specified URL, then close the browser at a later point?
Yes, use python's builtin webbrowser module for this.
>>> import webbrowser
>>> url = 'http://www.python.org/'
>>> webbrowser.open_new(url)
If you love us? You can donate to us via Paypal or buy me a coffee so we can maintain and grow! Thank you!
Donate Us With