0

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?

ford prefect
  • 7,096
  • 11
  • 56
  • 83

1 Answers1

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