How to disable all pop-ups in Chrome, Firefox, and Edge for desktop devices?

Let me know the code to disable every pop-ups in web browsers.

Hello Noah,

You can use the code below to disable the pop-ups:

"chromeOptions" : {
    "excludeSwitches" : ["disable-popup-blocking"],
    "args" : ["incognito"]
  }

"edgeOptions" : {
    "excludeSwitches" : ["disable-popup-blocking"],
    "args" : ["incognito"]
  }

'moz:firefoxOptions': {
        prefs: {
          'dom.disable_beforeunload': true,
          'dom.disable_open_during_load': true,
        }