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
  • 6,478
  • 10
  • 54
  • 83

1 Answers1

0

If you are using the webbrowser module, you could try passing autoraise=False to the webbrowser.open() function.

JAW
  • 366
  • 3
  • 15