You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
When trying to open a link having Firefox as the default browser, the "wait" option won't work and any code after will run anyway.
I'm using Linux btw
importopen,{openApp}from"open";// This fails to wait till firefox closesawaitopenApp("firefox",{wait: true});console.log("Firefox quit");// This waits till chrome closesawaitopenApp("google-chrome-stable",{wait: true});console.log("Chrome quit");// This fails to wait having firefox as the default browserawaitopen("https://google.com",{wait: true});console.log("Google closed");
Firefox will open but the code below "await open" will run anyways
The text was updated successfully, but these errors were encountered:
When trying to open a link having Firefox as the default browser, the "wait" option won't work and any code after will run anyway.
I'm using Linux btw
Firefox will open but the code below "await open" will run anyways
The text was updated successfully, but these errors were encountered: