I have a python script that opens firefox. Is there a way I can run it in the background and suppress the window from popping up? Something like &
for running in background?
Asked
Active
Viewed 199 times
0

ford prefect
- 7,096
- 11
- 56
- 83
-
2http://stackoverflow.com/questions/10060417/python-firefox-headless ? – Marc B Sep 02 '15 at 20:18
-
@MarcB My bad voted to close as dupe – ford prefect Sep 02 '15 at 20:20
1 Answers
0
If you are using the webbrowser
module, you could try passing autoraise=False
to the webbrowser.open()
function.

Jordan A.
- 384
- 1
- 4
- 17