Is it possible to identify whether an external URL is loaded successfully or not from the main process, when window.open("http://example.com")
is called from the renderer process?
Something like...
mainWindow.webContents.on('did-url-load', () => {
// Do something
});
mainWindow.webContents.on('did-url-loading-failed', () => {
// Do something
});
I worked this out by creating a new BrowserWindow object to load the URL sent from the renderer process and then used the loadURL promise to identify whether the external URL is loaded successfully or not. I am not sure if anything simpler than this can be done.